about summary refs log tree commit homepage
path: root/site
diff options
context:
space:
mode:
Diffstat (limited to 'site')
-rw-r--r--site/atom.rb86
-rw-r--r--site/src/default.template7
2 files changed, 3 insertions, 90 deletions
diff --git a/site/atom.rb b/site/atom.rb
deleted file mode 100644
index 0c9702f..0000000
--- a/site/atom.rb
+++ /dev/null
@@ -1,86 +0,0 @@
-require 'rubygems'
-require 'atom/collection'
-require 'find'
-require 'yaml'
-require 'redcloth'
-
-$site ="http://mongrel.rubyforge.org/"
-
-zed = Atom::Author.new
-zed.name = "Zed A. Shaw"
-zed.uri = $site
-zed.email = "zedNOSPAMshaw A-T zedNOSPAMshaw.com"
-
-
-f = Atom::Feed.new
-f.id = $site
-f.authors << zed
-
-link = Atom::Link.new
-link["href"] = $site + "/feed.atom"
-link["rel"] = "self"
-f.links << link
-link = Atom::Link.new
-link["href"] = $site
-link["rel"] = "via"
-f.links << link
-
-f.title = "Mongrel Web Server"
-f.subtitle = "Faster Is Possible"
-f.updated = Time.now
-f.generator = "atom-tools"
-f.rights = "Copyright Zed A. Shaw with contributors.  All rights reserved."
-
-class Page
-  attr_accessor :path
-  attr_accessor :stat
-  attr_accessor :uri
-  attr_accessor :info
-
-  def initialize(path)
-    @path = path
-    @stat = File.stat(path)
-    @uri = $site + path.match(/^src(.*)\.page/)[1] + ".html"
-    @info = YAML.load_file(path)
-  end
-
-  def <=>(other)
-    other.stat.mtime <=> self.stat.mtime
-  end
-
-  def to_html
-    if not @html
-      content = open(path) { |f| f.read(1024) }
-      content.gsub!(/^---.*---/m,"")
-      content = content + "...\n\"Read more\":#{uri}"
-      r = RedCloth.new(content)
-      @html = r.to_html
-    end
-
-    @html
-  end
-end
-
-pages = []
-
-Find.find("src") do |path|
-  if /.page$/ === path and !path.index("index.page")
-    pages << Page.new(path)
-  end
-end
-
-pages.sort!
-
-pages[0 .. 30].each do |p|
-  e = Atom::Entry.new
-  e.id = p.uri
-  e.title = p.info["title"]
-  link = Atom::Link.new
-  link["href"] = p.uri
-  e.links << link
-  e.updated = p.stat.mtime
-  f.entries << e
-end
-
-
-puts f.to_s
diff --git a/site/src/default.template b/site/src/default.template
index d8e391e..eb793de 100644
--- a/site/src/default.template
+++ b/site/src/default.template
@@ -4,10 +4,9 @@
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <title>Mongrel: {title: }</title>
-    <link rel="stylesheet" href="{relocatable: default.css}" type="text/css" media=
-    "screen" />
-    <meta http-equiv="Content-Type" content=
-    "text/html; charset=us-ascii" />
+    <link rel="stylesheet" href="{relocatable: default.css}" type="text/css" media="screen" />
+    <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="http://mongrel.rubyforge.org/rss.xml" />
+    <meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
   </head>
 
   <body>