summaryrefslogtreecommitdiffstats
path: root/parsers
diff options
context:
space:
mode:
Diffstat (limited to 'parsers')
-rw-r--r--parsers/ParserList.java1
-rw-r--r--parsers/Source.java36
2 files changed, 37 insertions, 0 deletions
diff --git a/parsers/ParserList.java b/parsers/ParserList.java
index 85e3d17..999dadc 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 Source());
parsers.add(new BackButton());
parsers.add(new Header());
}
diff --git a/parsers/Source.java b/parsers/Source.java
new file mode 100644
index 0000000..4dbe303
--- /dev/null
+++ b/parsers/Source.java
@@ -0,0 +1,36 @@
+/*+
+ * Copyright 2012 rsiddharth
+ * Email: <rsiddharth@ninthfloor.org>
+ *
+ * This file is part of Scruf.
+ *
+ * Scruf is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+
+package scruf.parsers;
+
+import scruf.status.*;
+
+public class Source implements Parser {
+ private StringBuilder sbuilder;
+ public String parse(String fileContent) {
+ sbuilder = new StringBuilder(fileContent);
+ // append a link to the source.
+ sbuilder.append("\n <div class=\"source\"> \n");
+ sbuilder.append("\n <a href=\"./"+PresentFile.file.getName()+
+ "\">source</a> \n </div>");
+ return sbuilder.toString();
+ }
+}