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
_______________________________________________
To unsubscribe, email [EMAIL PROTECTED] with 
"unsubscribe <password> <address>"
in the subject or body of the message.  
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc

Reply via email to