Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon.

Pages: 1-

RSS Help

Name: Anonymous 2008-06-24 14:00

I've been asked to create an RSS feed but this is my first time using it and I'm stuck.

Let's say I use the W3Schools example as follows
<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0">

<channel>
  <title>W3Schools Home Page</title>
  <link>http://www.w3schools.com</link>;
  <description>Free web building tutorials</description>
  <item>
    <title>RSS Tutorial</title>
    <link>http://www.w3schools.com/rss</link>;
    <description>New RSS tutorial on W3Schools</description>
  </item>
  <item>
    <title>XML Tutorial</title>
    <link>http://www.w3schools.com/xml</link>;
    <description>New XML tutorial on W3Schools</description>
  </item>
</channel>

</rss>


How comes when I link to it from my homepage instead of the subscribe bar popping up it says:

[code]
        This XML file does not appear to have any style information associated with it. The document tree is shown below.[code]

All help appreciated.

Name: Anonymous 2008-06-24 14:05

this reminds me of the beginning of rss and every was too dumb to figure it out.

Name: Anonymous 2008-06-24 14:08

define the xml tags

Name: Anonymous 2008-06-24 14:10

<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:wfw="http://wellformedweb.org/CommentAPI/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:atom="http://www.w3.org/2005/Atom"
    >

Name: >>4 2008-06-24 14:12

Just kidding. I meant to say "you probably fucked up the MIME type."

Name: Anonymous 2008-06-24 14:16

My list is better
<rss version="2.0"
  xmlns:access="http://www.bloglines.com/about/specs/fac-1.0"
  xmlns:admin="http://webns.net/mvcb/"
  xmlns:ag="http://purl.org/rss/1.0/modules/aggregation/"
  xmlns:annotate="http://purl.org/rss/1.0/modules/annotate/"
  xmlns:app="http://www.w3.org/2007/app"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:audio="http://media.tangent.org/rss/1.0/"
  xmlns:blogChannel="http://backend.userland.com/blogChannelModule"
  xmlns:cc="http://web.resource.org/cc/"
  xmlns:cf="http://www.microsoft.com/schemas/rss/core/2005"
  xmlns:company="http://purl.org/rss/1.0/modules/company"
  xmlns:content="http://purl.org/rss/1.0/modules/content/"
  xmlns:cp="http://my.theinfo.org/changed/1.0/rss/"
  xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule",
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:dcterms="http://purl.org/dc/terms/"
  xmlns:email="http://purl.org/rss/1.0/modules/email/"
  xmlns:ev="http://purl.org/rss/1.0/modules/event/"
  xmlns:fh="http://purl.org/syndication/history/1.0"
  xmlns:foaf="http://xmlns.com/foaf/0.1/"
  xmlns:foaf="http://xmlns.com/foaf/0.1"
  xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#;"
  xmlns:georss="http://www.georss.org/georss"
  xmlns:geourl="http://geourl.org/rss/module/"
  xmlns:g="http://base.google.com/ns/1.0"
  xmlns:gml="http://www.opengis.net/gml"
  xmlns:icbm="http://postneo.com/icbm"
  xmlns:image="http://purl.org/rss/1.0/modules/image/"
  xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
  xmlns:kml20="http://earth.google.com/kml/2.0"
  xmlns:kml21="http://earth.google.com/kml/2.1"
  xmlns:kml22="http://earth.google.com/kml/2.2"
  xmlns:l="http://purl.org/rss/1.0/modules/link/"
  xmlns:media="http://search.yahoo.com/mrss/"
  xmlns:openid="http://openid.net/xmlns/1.0"
  xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/"
  xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1"
  xmlns:opml="http://www.opml.org/spec2"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#;"
  xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#;"
  xmlns:ref="http://purl.org/rss/1.0/modules/reference/"
  xmlns:reqv="http://purl.org/rss/1.0/modules/richequiv/"
  xmlns:rss090="http://my.netscape.com/rdf/simple/0.9/"
  xmlns:rss091="http://purl.org/rss/1.0/modules/rss091#;"
  xmlns:rss11="http://purl.org/net/rss1.1#;"
  xmlns:search="http://purl.org/rss/1.0/modules/search/"
  xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
  xmlns:ss="http://purl.org/rss/1.0/modules/servicestatus/"
  xmlns:str="http://hacks.benhammersley.com/rss/streaming/"
  xmlns:sub="http://purl.org/rss/1.0/modules/subscription/"
  xmlns:sx="http://www.microsoft.com/schemas/sse"
  xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
  xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/"
  xmlns:thr="http://purl.org/rss/1.0/modules/threading/"
  xmlns:thr="http://purl.org/syndication/thread/1.0"
  xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"
  xmlns:wfw="http://wellformedweb.org/CommentAPI/"
  xmlns:wiki="http://purl.org/rss/1.0/modules/wiki/"
  xmlns:xhtml="http://www.w3.org/1999/xhtml"
  xmlns:xrd="xri://$xrd*($v*2.0)"
  xmlns:xrds="xri://$xrds">

Name: Anonymous 2008-06-24 14:20

i bet you're usng file:// and not http://

file:// won't work

Name: Anonymous 2008-06-24 14:28

ENTERPRISE XML

Name: Anonymous 2008-06-24 14:44

Name: Anonymous 2008-06-24 17:03

>>9
                      __,,.......__
                   ,,'            '`"._
                 ,'                    \.
                /                        \
               /                          |
              |                           |
              |    ,...._      _          |
              |     ,.   `...Y'           |
              |    |bd|      .8/`|        |
              '|    ''        \\/         |
               \                         ,'
                L                       /
                '.    ./..,=>          /
                 `.    ` .-'         ,'
                   `b               ,''`-b_
              _.-'''`.            ,'  |   '-..
            ,'      ,'\       ,,''   ,'       `.
           '        |  \     /      .'          \
         ,'         |   |   ,       |            `|
 ,......:i_         |   \  /        '             \
/          ``-..b_  `\   |/i,-"\   |               \
|                 `-.|/''j/'    `. |                \
|                    '-.          \        P  _      |
|                       ' .               |  /       \
'.                         ``-..     ,-''''--:.       +.
 `.                             `,. /'                \`.
   `.,'[ /-|                   ,'   `o_                  \
   ,'`"\/_.\-'|              /'  _/>   `.                 `.
   |   '  |`-+-,------------|[,./'   .   \                 '|
    `-.......Y'                |__.-`.  ,."-----------------'

Name: Anonymous 2008-06-24 19:31

>>10
Stop messing with M-x artist-mode, Christopher.

Name: Anonymous 2009-03-06 5:34

The ass Once you   suddenly realize you   know every possible   process and you   get angry when   we point out   all the other   will always recieve   your messages Use.

Name: Sgt.Kabukiman穡틣 2012-05-24 9:33

All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy

Name: bampu pantsu 2012-05-29 3:57

bampu pantsu

Don't change these.
Name: Email:
Entire Thread Thread List