[Ilugc] how to disable the rss auto "subscribe"option - my builder
template as follows
Usha Murali
ushapramoth at gmail.com
Wed Aug 13 17:59:51 IST 2008
Hi all,
I have written a rss builder template in ruby as follows , in which
I am not able to disable the auto "subscribe"option, Please can anyone
help me in this,
xml.instruct! :xml, :version=>"1.0"
xml.rss(:version=>"2.0"){
xml.channel{
xml.title("RSS Feed Title")
xml.link("http://www.yoursite.tld/")
xml.language('en-us')
count = 0
for display_rss in @display_rss
xml.item do
count = count + 1
title = count.to_s + ". " + display_rss.title
xml.title(title)
end
end
}
}
TIA,
Usha
More information about the ilugc
mailing list