RSS 1.0. Manual RSS. Specification.
Jueves, 23 de mayo del 2013 
Cotizaciones Decoracio Manresa Graficos bolsa Manuales Bolsa
Cotizaciones principales Decoracion y Asesoramiento Consultas las cotizaciones Cotizaciones, articulos financieros,
mercados internacionales en Manresa de tus acciones favoritas. Manuales, Divisas...
Publicidad

 Start
 Manual
 Tools
 News
 Software
 Services

RSS 1.0

Published in December of the 2000 by the members of the working party RSS-DEV. This specification supposes to adopt the specification XML 1.0 and the original compatibility with documents maintains it RDF. Of the same form the meaning of the acronyms is maintained RSS (RDF Site Sumary).

Obligatory elements

A document RSS is a document that describes a channel of information with one or various links to URL (called items and do reference to notícias). Each item is formed by a title, a link and a brief explanation of the same one. General considerations

RSS 1.0 is compatible backwards with RSS 0.9, in the same way, is compatible with XML 1.0 and RDF.

Spoil type -- the recommendation is to define the document as "application/xml". Also it can be registered like RDF or still better, as RSS.

File extension -- is not necessary a specific extension for RSS 1.0, although is recommended. rdf or. xml.

Encoding -- RSS 1.0 utilizes UTF-8, although can also be utilized ISO-8859-1, header by defect of HTTP).

URLs -- Only the following are accepted links: http, https, ftp; mailto only is accepted in the link textinput.

Special characters -- XML is reserved various characters, if is desired to include them in the document one must substitute them for the siguients codes. "<" sustituir por "<", ">" to substitute for ">", "&" to substitute for "&"

So great of the content -- Not restrictions exist al so great although for effects of compatibility backwards is recommended not to surpass the limits of RSS 0.9.

Elements in RSS 1.0

<?xml version = "1.0"?> -- It Specifies that it is a matter of a document XML, it is optional but it is recommended to introduce it to maintain compatibility with RSS 0.9.

<?xml version = "1.0"?>

<rdf:RDF> -- It Specifies that it is a matter of a document RSS 1.0, it is obligatory and it should be defined just as it is specified in the lower part.

<rdf:RDF lns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" x xmlns = "http://purl.org/rss/1.0/">

<channel> -- It Is an obligatory element and defines the channel of information that is showing, is formed by various sub-elements: regular, description, link..

< channel f:about="http://www.uatsap.com/rss.php">

   <title> -- Descriptive Title of the channel.
   <link> -- Direction URL of the channel.
   <description> -- Brief description of the channel.
   <image> -- Direction URL where is found the image of the channel. It contains the sub-elements: title, url and link.
   <items> -- Direction URL where is found the notícia.
   <textinput> -- Direction URL of the form.

   <title>Uats'ap.com</title>
   <link>http://www.uatsap.com</link>
   <description>Manual R RSS. </description>
   <image>http://www.uatsap.com/image/logo.gif</image>
     <title>uatsap.com</title>
     <url>http://www.uatsap.com/</url>
     <link>http://www.uatsap.com/image/logo_little.gif</link>
   <items>http://www.uatsap.com/rss.php</items>
   <textinput>http://www.uatsap.com/form.php</textinput>

<item> -- Direction URL where is found the notícia. The URL should be unique in all the fichero RSS. Is composed of the sub-elements: title, link and description.

< item f:about="http://www.uatsap.com/news/news.php">

   <title> -- Descriptive Title of the notícia.
   <link> -- Direction URL of the notícia.
   <description> -- Brief description of the notícia.

   <title>Nueva specification RSS</title>
   <link>http://www.uatsap.com/noticias/rss2.php</link>
   <description>Se has published a new specification RSS compatible with RSS 0.9x.</description>

<textinput> -- It Permits to obtain data since a form, is utilized above all to seek or form of subscription. Is composed of various sub-elements: title, description, name and link

< textinput rdf:about="http://search.uatsap.com">

   <title> -- Descriptive Title of the form.
   <description> -- Brief description of the use of the form.
   <name> -- Name of the input text.
   <link> -- Direction URL where is found the form.

< textinput rdf:about"http://www.uatsap.com">
   <title>Buscar in Uats'ap.com</title>
   <description>Búsqueda of articles in uatsap.com</description>
   <name>search</name>
   <link>http://search.uatsap.com</link>
</textinput>

We show an example simplified of a fichero RSS 1.0 that a channel is comprised of and two elements item:

<?xml version="1.0"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/">
 <channel rdf:about="http://www.uatsap.com/rss.php>
  <title>Uats'ap. Noticias RSS.</title>
  <link>http://www.uatsap.com</link>
  <description> XML (Extensible Markup Language) es el formato universal para datos en la web. XML permite fácilmente a los desarrolladores describir y proporcionar contenido, datos estructurados para cualquier aplicación de una forma estándard, XML no sustituye a HTML; es un formato que lo complementa.
  </description>
  <image rdf:resource="http://www.uatsap.com/image/logo.gif"/>
  <items>
   <rdf:Seq>
    <rdf:li resource="http://www.uatsap.com/news1.php" />
    <rdf:li resource="http://www.uatsap.com/news2.php" />
   </rdf:Seq>
  </items>
  <textinput rdf:resource="http://search.uatsap.com" />
 </channel>
 <image rdf:about="http://www.uatsap.com/image/logo.gif">
  <title>uatsap.com</title>
  <url>http://www.uatsap.com/</url>
  <link>http://www.uatsap.com/image/logo_little.gif</link>
 </image>
 <item rdf:about="http://www.uatsap.com/news1.php">
  <title>Nueva especificación RSS</title>
  <link>http://www.uatsap.com/noticias/rss2.php</link>
  <description>Se ha publicado una nueva especificación RSS compatible con RSS 0.9x.
  </description>
 </item>
 <item rdf:about="http://www.uatsap.com/news2.php">
  <title>Aumenta el número de usuarios de noticias sindicadas</title>
  <link>http://www.uatsap.com/noticias/rss2.php</link>
  <description>Incremento en el número de usuarios de lectores de notícias.
  </description>
 </item>
 <textinput rdf:about"http://www.uatsap.com">
  <title>Buscar en Uats'ap.com</title>
  <description>Búsqueda de artículos en uatsap.com</description>
  <name>search</name>
  <link>http://search.uatsap.com</link>
 </textinput>
</rdf:RDF>

RSS News. Web Design by eSeGeCe Studio.
español english français deutsch italiano português