From 7ca8e99fd3d8b217eba5319febbc2439dee11b0f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Sun, 17 Aug 2008 22:34:33 +0000 Subject: [PATCH] * dug out the missing RSS Templats from uncensored --- webcit/static/rss_browser.css | 56 +++++++++++++++++++++++++++++++ webcit/static/t/rss_head.html | 13 +++++++ webcit/static/t/rss_item.html | 6 ++++ webcit/static/t/rss_item_end.html | 2 ++ 4 files changed, 77 insertions(+) create mode 100755 webcit/static/rss_browser.css create mode 100644 webcit/static/t/rss_head.html create mode 100644 webcit/static/t/rss_item.html create mode 100644 webcit/static/t/rss_item_end.html diff --git a/webcit/static/rss_browser.css b/webcit/static/rss_browser.css new file mode 100755 index 000000000..f3867f135 --- /dev/null +++ b/webcit/static/rss_browser.css @@ -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 index 000000000..2707d5be1 --- /dev/null +++ b/webcit/static/t/rss_head.html @@ -0,0 +1,13 @@ + + + + + <?ROOM> - <?NODE> + + + + + http://blogs.law.harvard.edu/tech/rss + 30 + + diff --git a/webcit/static/t/rss_item.html b/webcit/static/t/rss_item.html new file mode 100644 index 000000000..821455403 --- /dev/null +++ b/webcit/static/t/rss_item.html @@ -0,0 +1,6 @@ + +<?SUBJ> <?IN_ROOM> <?NODE> + + + + -- 2.39.2