[Ilugc] how to disable the rss auto "subscribe"option - my builder template as follows

  • From: ushapramoth@xxxxxxxxx (Usha Murali)
  • Date: Wed Aug 13 18:00:17 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

Other related posts:

  • » [Ilugc] how to disable the rss auto "subscribe"option - my builder template as follows - Usha Murali