RSSmanip is a set of scripts that allows webmaster who already generate a Netscape RSS 0.91 feed for their site to dynamically create HTML, HDML, and WML documents based on their RSS feed. Using the Microsoft XML parser (supplied with IE 5) on the server side, you can now enable your site for wireless usage by using those scripts.
Minimum Requirements
I haven't tested these scripts on multiple platforms but here's the environment I used to create them:
What files are in RSSmanip.zip?
Recently, I've started doing some manipulations or RSS file for different presentations.
Included in this zip file are three files to do so:
Installing those files is relatively easy.
Copyright and final comments
I've created those files for my personal use and am happy to share them with you. However, I do not make any guarantee as to their impact on your server. They seem to work fine on mine. If you use them, I'd appreciate a link back to TNL.net. All copyrights on these file is mine (copyright Tristan Louis 2000-present). If you have
any questions, feel free to contact me from TNL.net.
mylogo = "./presentation/images/TNLwlogo.bmp"
myRSSfile = "/newsletter/channel.xml"
mylogo is the location of your logo file. For HDML, that file has to be a .bmp file and for
WML, it has to be a .wbmp file. Editors for each are available on the web.
myRSSfile is the location of your RSS file. In my case, the RSS file is located at
http://www.tnl.net/newsletter/channel.xml Since my root directory is http://www.tnl.net the file is at /newsletter/channel.xml
.bmp image/bmp
.hdml text/x-hdml
.wbmp image/vnd.wap.wbmp
.wml text/vnd.wap.wml
acceptHeader = Request.ServerVariables("HTTP_ACCEPT")
If Instr(acceptHeader, "hdml") <> 0 Then
Response.Redirect "/hdml.asp"
Elseif Instr(acceptHeader, "wml") <> 0 Then
Response.Redirect "/wml.asp"
End If
where /hdml.asp and /wml.asp are the locations or those files (in my case, they're in the
root directory of the server.