summaryrefslogtreecommitdiffstats
path: root/parsers/ParserList.java
diff options
context:
space:
mode:
authorrsiddharth <rsiddharth@ninthfloor.org>2012-11-27 20:57:12 +0530
committerrsiddharth <rsiddharth@ninthfloor.org>2012-11-27 20:57:12 +0530
commit07e79180d6a9d1aeb5805d61dcd2687209af51ef (patch)
tree530ecc80c102b4866cf1db9e83e56d71231bbd09 /parsers/ParserList.java
parent16ab7e080e48c07c4ed4d1d1822cfad193a5e506 (diff)
new feature: Now Scruf appends a 'last updated' string at the end of
all html files, it generates. parsers/LastUpdate.java does this job. added: parsers/LastUpdate.java (new parser) modified: parsers/ParserList.java (added new Parser: see above) todo (now scruf todos are in org-mode)
Diffstat (limited to 'parsers/ParserList.java')
-rw-r--r--parsers/ParserList.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/parsers/ParserList.java b/parsers/ParserList.java
index 685de25..2fba376 100644
--- a/parsers/ParserList.java
+++ b/parsers/ParserList.java
@@ -38,6 +38,7 @@ public class ParserList {
parsers.add(new Images());
parsers.add(new Footer());
parsers.add(new Paragraphs());
+ parsers.add(new LastUpdate());
parsers.add(new Source());
parsers.add(new BackButton());
parsers.add(new Header());