How to configure RSS feed to allow HTML

Discussion in 'XML & RSS' started by Tom_e_rock, Jul 8, 2006.

  1. daily jobs

    daily jobs Peon

    Messages:
    1
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #61
    This is basically an all purpose script that will change any input file into a format that an RSS reader can see. The best results are seen when the input file has each status on individual an line. You could technically combine both the router and computer scripts into one (both are shell scripts), located only on the router, but you can not host a non-html file in the /tmp/www and access it's contents without telnet/ssh. Without additional resources (samba, mmc, ect.) there aren't many other places to access the file. You could also probably setup a script to login via telnet/ssh to gather the settings as needed only utilizing the computer, which maybe an interesting alternative which doesn't rewrite to the flash as much (which technically burns out over time).
     
    daily jobs, Feb 4, 2009 IP
  2. miccy

    miccy Well-Known Member

    Messages:
    850
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    128
    #62
    Man, this is a great idea to implement in my site, thanks
     
    miccy, Feb 8, 2009 IP
  3. Dendy Young

    Dendy Young Peon

    Messages:
    132
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #63
    I'll try it on my site.. thanks dude :D
     
    Dendy Young, Feb 11, 2009 IP
  4. Ilkin

    Ilkin Peon

    Messages:
    24
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #64
    I also deeply appreciate it.

    But what i really need is just to allow " \' " character, may be it can be done easyer?

    Or is it problem just with drupal?
     
    Ilkin, Feb 12, 2009 IP
  5. miccy

    miccy Well-Known Member

    Messages:
    850
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    128
    #65
    miccy, Feb 23, 2009 IP
  6. nurjihan2009

    nurjihan2009 Peon

    Messages:
    10
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #66
    thanks for the tips

    Regards

    <a href="http://alatpenghematbbm.com" title="alat hemat bbm">
     
    nurjihan2009, Mar 16, 2009 IP
  7. hello-21

    hello-21 Peon

    Messages:
    17
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #67
    thank you for this information
     
    hello-21, Mar 28, 2009 IP
  8. infomalaya

    infomalaya Banned

    Messages:
    103
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #68
    Pretty damn easy, thanks for the info bro!
     
    infomalaya, Mar 30, 2009 IP
  9. halo2and34u1

    halo2and34u1 Peon

    Messages:
    85
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #69
    if ur using rss 2.0 it won't allow you to add html
     
    halo2and34u1, May 1, 2009 IP
  10. reddoggabi48

    reddoggabi48 Peon

    Messages:
    15
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #70
    Can you tell me for what reason? Please reply.
     
    reddoggabi48, May 19, 2009 IP
  11. onlywin

    onlywin Greenhorn

    Messages:
    97
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    18
    #71
    If you are going to use some language different than english who has cutes, remember to use &icute, &acute, etc...
     
    onlywin, May 21, 2009 IP
  12. shae marks

    shae marks Peon

    Messages:
    2
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #72
    This script will parse out various peices of status information from the files located on the router. If you need more or less of the information or different formatting, you can edit this down to please you. The other script that will read this is independent so it can take more or less lines of information as needed without a hicup. The only syntax requirement for proper reading in the other script is that each status must be fully contained on its own line (but even that isn't really manditory). The output is stored in the file:
    mkdir -p /tmp/www
    while [ 1 ];
    do
    sed -n 's%.* src=\(192.168.[0-9.]*\).*%\1%p' /proc/net/ip_conntrack | sort | uniq -c | awk '{t++; print "Connection",t":",$2,"has",$1,"connections open.";}' | tee /tmp/www/stat.html
    awk '/MemTotal:/ {mt = $2} /MemFree:/ {mf = $2} /Buffers:/ {mb = $2} /^Cached:/ {mc = $2} END { printf( "Free: %2d%%\n",(mf/mt)*100); printf( "Used: %2d%%\n",((mt-mf)/mt)*100); printf( "Buffers: %2d%%\n",(mb/(mt-mf))*100); printf( "Cached: %2d%%\n",(mc/(mt-mf))*100); }' /proc/meminfo | tee -a /tmp/www/stat.html
    awk '{ printf( "Load: %3d%%\n",$1*100); }' /proc/loadavg | tee -a /tmp/www/stat.html
    awk '{ printf( "Uptime: %2.2f Hours\n", $2/3600); }' /proc/uptime | tee -a /tmp/www/stat.html
    sleep 30;
    done;
     
    shae marks, May 29, 2009 IP
  13. halo2and34u1

    halo2and34u1 Peon

    Messages:
    85
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #73
    Nice KSS! This is gonna help me a lot!
     
    halo2and34u1, May 30, 2009 IP
  14. budz

    budz Active Member

    Messages:
    154
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    53
    #74
    thanks that helped me much :D
     
    budz, Jun 5, 2009 IP
  15. kaizersuzi

    kaizersuzi Peon

    Messages:
    15
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #75
    Sorry for this newbie question. But what is killer RSS? what does it do? and where to get it?
     
    kaizersuzi, Jun 9, 2009 IP
  16. LOD

    LOD Member

    Messages:
    319
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    35
    #76
    Thanks Dalton for the nice tip!
     
    LOD, Jun 11, 2009 IP
  17. zandrarogers

    zandrarogers Guest

    Messages:
    78
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #77
    You need to encode it, and then it will be done.
     
    zandrarogers, Jun 14, 2009 IP
  18. affiliatesense99

    affiliatesense99 Banned

    Messages:
    110
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #78
    Oh...Don't worry, you can manually create RSS feed using feedity.com and then submit it wherever you want.
     
    affiliatesense99, Jun 19, 2009 IP
  19. Magnus Vogel

    Magnus Vogel Greenhorn

    Messages:
    47
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    18
    #79
    I was also coming here for that answer and review other users posting and some useful information in them, thanks to all to put info here.
     
    Magnus Vogel, Jul 25, 2009 IP
  20. junkmailbox53

    junkmailbox53 Peon

    Messages:
    69
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #80
    Interested in the answers and the replies as I am also working with RSS feeds

    I am looking for help to parse out "OPEN Question;" with yahoo answers and a vBulletin RSS feed?

    vBulletin RSS - parse out "Open Question: " in the feed?

    can CDATA be used to do this and how?
     
    Last edited: Jul 27, 2009
    junkmailbox53, Jul 27, 2009 IP