aboutsummaryrefslogtreecommitdiff
path: root/opml.st
diff options
context:
space:
mode:
authorchristoph <christoph@debian.uxul.homelinux.org>2009-02-21 02:26:59 +0100
committerchristoph <christoph@debian.uxul.homelinux.org>2009-02-21 02:26:59 +0100
commit2c2e8de50c5b362891a40a1a727262d742b97c21 (patch)
tree90c463fa6343055b7e5773b5d0915e1b206a19c4 /opml.st
parent5b3fac97c77c5c9945d08d98cb19251ca7736980 (diff)
Adding an OPML-Export /feedlist.opml which is session-aware.
Unfortunately I couldnt create a class fitting to StringTemplate's needs, unfortunately Clojure seems not to be able to create Interfaces on-the-fly and one has to compile them before using them. I couldnt manage to do so, so I decided to create an OPML-String directly. So far, this works. Anyway, added opml.st and opmlclass.clj - which somehow reflect my trial of doing this.
Diffstat (limited to 'opml.st')
-rw-r--r--opml.st17
1 files changed, 17 insertions, 0 deletions
diff --git a/opml.st b/opml.st
new file mode 100644
index 0000000..3fd6360
--- /dev/null
+++ b/opml.st
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="utf-8"?>
+<opml version="1.0">
+ <head>
+ <dateCreated>$date$</dateCreated>
+ <title>G&ouml;del-Gentzen Clojure Syndication Services Super System Feed Export</title>
+ </head>
+ <body>
+ $feeds:{f |
+ <outline
+ text="$f.text$"
+ xmlUrl="$f.xmlurl$"
+ htmlUrl="$f.htmlurl$"
+ /> }$
+ </body>
+</opml>
+
+