What is the rss feed to this site?
Friday, November 28, 2003 by joetheblow | Discussion: WinCustomize Talk
In fact, I though I asked this question before... can't find it.
Anyway, I have a newsfeed page much like daily rotation.com on my almost to be open site and I wanted a news feed from here on stuff
So where is it?
Reply #2 Friday, November 28, 2003 10:33 PM
I'm looking for News, and Newest additions feeds.
I was also looking for DeviantArt too but I guess I have to email them.
This is what I got so far:
http://www.joetheblow.com/JoeFeed.asp
[Message Edited]
Reply #3 Friday, November 28, 2003 10:45 PM

Reply #4 Friday, November 28, 2003 11:48 PM
Right here:
https://www.wincustomize.com/backend/wincustnews.xml
Reply #6 Saturday, November 29, 2003 1:13 AM
If you want the top 10:
https://www.wincustomize.com/backend/top10.xml
The newest additions:
https://www.wincustomize.com/backend/newest.xml
The newest updates:
https://www.wincustomize.com/backend/updated.xml
Reply #7 Saturday, November 29, 2003 8:20 AM
An url as such would be my first guess on where to find info on backends, but what file to get then is beyond guessing.
Reply #8 Friday, December 5, 2003 12:13 PM
Does anyone here know the heads up on that?
Reply #9 Friday, December 5, 2003 12:36 PM
My news.xls that parses the news feed is looking for not .
I guess I have to make a special parser for the feed to see the skin items.
I wonder why its not formated the standard way? I hope JoeUser isn't this difficult.
Reply #10 Saturday, December 13, 2003 2:30 PM
Now my question is how do I make a parser for the WinCustomize backend?
I can't seem to find the area where it is looking for *item* so I can change it to *skin*
FYI:
The standard rss protocal is-
(rss)
(channel)
(title)Name of the news feed.(/title)
(link)A url for the source website.(/link)
(description)A short description of the news feed.(/description)
(item)
(title)Headline #1(/title)
(link)A url for the entire news article under headline #1.(/link)
(description)A short blurb about the news article under headline #1.(/description)
(/item)
(/channel)
(/rss)
Where the (item) should be, for wincusto it is called (skin).
This is the news xsl code I am using.
http://www.joetheblow.com/news.xsl
Any suggestions?
Reply #11 Saturday, December 13, 2003 2:41 PM
Function getXML(sourceFile)
dim styleFile
dim source, style
styleFile = Server.MapPath("news.xsl")
Dim xmlhttp
Set xmlhttp = Server.CreateObject("Microsoft.XMLHTTP")
xmlhttp.Open "GET", sourceFile, false
xmlhttp.Send
set source = Server.CreateObject("Microsoft.XMLDOM")
source.async = false
source.loadxml(xmlhttp.ResponseText)
set style = Server.CreateObject("Microsoft.XMLDOM")
style.async = false
style.load(styleFile)
getXML = source.transformNode(style)
set source = nothing
set style = nothing
End Function
This part goes into the asp page where the news is suppossed to show up.
Reply #12 Tuesday, November 16, 2004 12:21 PM
Reply #14 Wednesday, November 17, 2004 3:47 PM

Please login to comment and/or vote for this skin.
Welcome Guest! Please take the time to register with us.
There are many great features available to you once you register, including:
- Richer content, access to many features that are disabled for guests like commenting on the forums and downloading skins.
- Access to a great community, with a massive database of many, many areas of interest.
- Access to contests & subscription offers like exclusive emails.
- It's simple, and FREE!







Reply #1 Friday, November 28, 2003 10:24 PM