* dug out the missing RSS Templats from uncensored
authorWilfried Göesgens <willi@citadel.org>
Sun, 17 Aug 2008 22:34:33 +0000 (22:34 +0000)
committerWilfried Göesgens <willi@citadel.org>
Sun, 17 Aug 2008 22:34:33 +0000 (22:34 +0000)
webcit/static/rss_browser.css [new file with mode: 0755]
webcit/static/t/rss_head.html [new file with mode: 0644]
webcit/static/t/rss_item.html [new file with mode: 0644]
webcit/static/t/rss_item_end.html [new file with mode: 0644]

diff --git a/webcit/static/rss_browser.css b/webcit/static/rss_browser.css
new file mode 100755 (executable)
index 0000000..f3867f1
--- /dev/null
@@ -0,0 +1,56 @@
+* {
+display: block;
+}
+
+:root {
+margin: 50px;
+}
+
+channel > title {
+font-size: x-large;
+text-align: center;
+}
+
+channel > title:after {
+display: block;
+padding: 50px;
+content: "This is an RSS feed, designed to be read in an RSS application.";
+background-color: grey;
+color: white;
+}
+
+item {
+margin: 25px 0 20px 0;
+}
+
+item > title {
+font-size: medium;
+margin-bottom: 20px;
+}
+
+item > link {
+font-size: small;
+margin-top: 6px;
+margin-bottom: 6px;
+}
+
+item > description {
+font-size: small;
+}
+
+item > pubDate {
+font-size: small;
+}
+
+channel > link,
+channel > copyright, 
+channel > lastBuildDate, 
+channel > generator, 
+channel > docs,
+language,
+lastBuildDate,
+ttl,
+guid,
+category {
+display: none;
+}
diff --git a/webcit/static/t/rss_head.html b/webcit/static/t/rss_head.html
new file mode 100644 (file)
index 0000000..2707d5b
--- /dev/null
@@ -0,0 +1,13 @@
+<?XML_HEAD>
+<?XML_STYLE>
+<rss version="2.0">
+       <channel>
+               <title><?ROOM> - <?NODE></title>
+               <link><?ROOM_LINK></link>
+               <description><?ROOM_DESCRIPTION></description>
+               <pubDate><?822_PUB_DATE></pubDate>
+               <generator><?GENERATOR></generator>
+               <docs>http://blogs.law.harvard.edu/tech/rss</docs>
+               <ttl>30</ttl>
+   
+
diff --git a/webcit/static/t/rss_item.html b/webcit/static/t/rss_item.html
new file mode 100644 (file)
index 0000000..8214554
--- /dev/null
@@ -0,0 +1,6 @@
+<item>
+<title><?SUBJ> <?IN_ROOM> <?NODE></title>
+<pubDate><?822_PUB_DATE></pubDate>
+<guid isPermaLink="false"><?GUID></guid>
+<description><![CDATA[
+
diff --git a/webcit/static/t/rss_item_end.html b/webcit/static/t/rss_item_end.html
new file mode 100644 (file)
index 0000000..aad5a48
--- /dev/null
@@ -0,0 +1,2 @@
+]]></description>
+</item>