summaryrefslogtreecommitdiffstats
path: root/conversion/ConvertDirectory.java
diff options
context:
space:
mode:
authorrsiddharth <rsiddharth@ninthfloor.org>2012-06-24 21:44:10 +0530
committerrsiddharth <rsiddharth@ninthfloor.org>2012-06-24 21:44:10 +0530
commit1a886ec82f13a01253e5611aeb18e3c845e2668d (patch)
tree32567177f7b4b91b14947c903b330bad7673e726 /conversion/ConvertDirectory.java
parent250cf4befea71a2ec6d917d104d20c702e7d4551 (diff)
conversion/ConvertDirectory.java: only a small addition -- to print out the file that is under "conversion"
conversion/FileSieve.java: update the regex to ignore hidden files, ".ttf" files. parsers/Header.java: * Now the blog post goes bettween the <article> & </article> tag, Header class was modified to reflect this change. * "Powered by scruf" line must go at the bottom of every html page that is generated by this program, Header class was modified to reflect this. parsers/Images.java: I have modified the "regex" and relevant code to make the "image description" optional.
Diffstat (limited to 'conversion/ConvertDirectory.java')
-rw-r--r--conversion/ConvertDirectory.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/conversion/ConvertDirectory.java b/conversion/ConvertDirectory.java
index 063bd87..838b746 100644
--- a/conversion/ConvertDirectory.java
+++ b/conversion/ConvertDirectory.java
@@ -24,6 +24,7 @@ public class ConvertDirectory {
if(file.isFile()) {
can = canConvert.check(file);
if(can) {
+ System.out.println("Converting..."+file.getName());
html.convert(file);
index.add(file);
}