1
0
Fork 0
This commit is contained in:
neingeist 2006-10-13 21:24:42 +00:00
parent d0ffc55b65
commit 2f9bf1edec

View file

@ -11,6 +11,7 @@ require 'neinomat.lib.rb'
# Constants
RFC822 = "%a, %d %b %Y %T %z" # for Date::strftime
RSS_FILENAME = "/home/webroot/entropia.de/podcast.xml"
require "#{$0}.templates.rb"
#----------------------------------------------------------------------------
@ -103,6 +104,6 @@ end
rss = ERB.new(TPL_RSS).result;
#puts rss #DEBUG
rssfile = File.new("/home/neingeist/public_html/chaotica.xml", "w")
rssfile = File.new(RSS_FILENAME, "w")
rssfile.puts rss
rssfile.close