banjalukaforum.com

Dobrodošli na banjalukaforum.com
Danas je 20 Jul 2025, 11:01

Sva vremena su u UTC [ DST ]




Započni novu temu Odgovori na temu  [ 6 Posta ] 
Autoru Poruka
 Tema posta: RSS feed
PostPoslato: 24 Jul 2006, 22:26 
OffLine
Pripravnik
Pripravnik
Korisnikov avatar

Pridružio se: 20 Maj 2006, 09:49
Postovi: 150
Lokacija: Ibiza
Sta sluzi RSS feed i kako i gdje i sta trebam uciniti da ga dobijem??Help me


Vrh
 Profil  
 
 Tema posta:
PostPoslato: 25 Jul 2006, 00:02 
OffLine
Majstor
Majstor
Korisnikov avatar

Pridružio se: 19 Jun 2003, 05:18
Postovi: 933
Lokacija: Los Angeles
RSS feed ti je format za dostavu informacija, pa ga mozes koristiti da citas vijesti, blogove, itd.

A za sta ti treba?

_________________
Arte es mi vida.


Vrh
 Profil  
 
 Tema posta:
PostPoslato: 25 Jul 2006, 11:14 
OffLine
Veteran
Veteran
Korisnikov avatar

Pridružio se: 28 Feb 2006, 02:36
Postovi: 2982
Citiraj:
RSS is a format for syndicating news and the content of news-like sites, including major news sites like Wired, news-oriented community sites like Slashdot, and personal weblogs. But it's not just for news. Pretty much anything that can be broken down into discrete items can be syndicated via RSS: the "recent changes" page of a wiki, a changelog of CVS checkins, even the revision history of a book. Once information about each item is in RSS format, an RSS-aware program can check the feed for changes and react to the changes in an appropriate way.

RSS-aware programs called news aggregators are popular in the weblogging community. Many weblogs make content available in RSS. A news aggregator can help you keep up with all your favorite weblogs by checking their RSS feeds and displaying new items from each of them.

Citiraj:
What does RSS look like?

Imagine you want to write a program that reads RSS feeds, so that you can publish headlines on your site, build your own portal or homegrown news aggregator, or whatever. What does an RSS feed look like? That depends on which version of RSS you're talking about. Here's a sample RSS 0.91 feed

<rss version="0.91">
<channel>
<title>XML.com</title>
<link>http://www.xml.com/</link>
<description>XML.com features a rich mix of information and services for the XML community.</description>
<language>en-us</language>
<item>
<title>Normalizing XML, Part 2</title>
<link>http://www.xml.com/pub/a/2002/12/04/normalizing.html</link>
<description>In this second and final look at applying relational normalization techniques to W3C XML Schema data modeling, Will Provost discusses when not to normalize, the scope of uniqueness and the fourth and fifth normal forms.</description>
</item>
<item>
<title>The .NET Schema Object Model</title>
<link>http://www.xml.com/pub/a/2002/12/04/som.html</link>
<description>Priya Lakshminarayanan describes in detail the use of the .NET Schema Object Model for programmatic manipulation of W3C XML Schemas.</description>
</item>
<item>
<title>SVG's Past and Promising Future</title>
<link>http://www.xml.com/pub/a/2002/12/04/svg.html</link>
<description>In this month's SVG column, Antoine Quint looks back at SVG's journey through 2002 and looks forward to 2003.</description>
</item>
</channel>
</rss>

Simple, right? A feed comprises a channel, which has a title, link, description, and (optional) language, followed by a series of items, each of which have a title, link, and description.

Now look at the RSS 1.0 version of the same information:

<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns="http://purl.org/rss/1.0/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
>
<channel rdf:about="http://www.xml.com/cs/xml/query/q/19">
<title>XML.com</title>
<link>http://www.xml.com/</link>
<description>XML.com features a rich mix of information and services for the XML community.</description>
<language>en-us</language>
<items>
<rdf:Seq>
<rdf:li rdf:resource="http://www.xml.com/pub/a/2002/12/04/normalizing.html"/>
<rdf:li rdf:resource="http://www.xml.com/pub/a/2002/12/04/som.html"/>
<rdf:li rdf:resource="http://www.xml.com/pub/a/2002/12/04/svg.html"/>
</rdf:Seq>
</items>
</channel>
<item rdf:about="http://www.xml.com/pub/a/2002/12/04/normalizing.html">
<title>Normalizing XML, Part 2</title>
<link>http://www.xml.com/pub/a/2002/12/04/normalizing.html</link>
<description>In this second and final look at applying relational normalization techniques to W3C XML Schema data modeling, Will Provost discusses when not to normalize, the scope of uniqueness and the fourth and fifth normal forms.</description>
<dc:creator>Will Provost</dc:creator>
<dc:date>2002-12-04</dc:date>
</item>
<item rdf:about="http://www.xml.com/pub/a/2002/12/04/som.html">
<title>The .NET Schema Object Model</title>
<link>http://www.xml.com/pub/a/2002/12/04/som.html</link>
<description>Priya Lakshminarayanan describes in detail the use of the .NET Schema Object Model for programmatic manipulation of W3C XML Schemas.</description>
<dc:creator>Priya Lakshminarayanan</dc:creator>
<dc:date>2002-12-04</dc:date>
</item>
<item rdf:about="http://www.xml.com/pub/a/2002/12/04/svg.html">
<title>SVG's Past and Promising Future</title>
<link>http://www.xml.com/pub/a/2002/12/04/svg.html</link>
<description>In this month's SVG column, Antoine Quint looks back at SVG's journey through 2002 and looks forward to 2003.</description>
<dc:creator>Antoine Quint</dc:creator>
<dc:date>2002-12-04</dc:date>
</item>
</rdf:RDF>

Quite a bit more verbose. People familiar with RDF will recognize this as an XML serialization of an RDF document; the rest of the world will at least recognize that we're syndicating essentially the same information. In fact, we're including a bit more information: item-level authors and publishing dates, which RSS 0.91 does not support.


Prvo trebas nauciti XML i DHTML


Vrh
 Profil  
 
 Tema posta:
PostPoslato: 25 Jul 2006, 13:05 
OffLine
Početnik
Početnik

Pridružio se: 11 Mar 2002, 01:00
Postovi: 30
Lokacija: Banja Luka
Registruj se! je napisao:
Prvo trebas nauciti XML i DHTML


Nema potrebe da to uci ako ce koristiti RSS kanale kao sredstvo informisanja. Mogao si bar opis RSS-a napisati na nasem jeziku ...

Evo detaljan link: http://www.banjalukalive.com/index.php? ... Itemid=150

_________________
Ljudska pamet je ograničena, glupost naľalost nije...


Vrh
 Profil  
 
 Tema posta:
PostPoslato: 25 Jul 2006, 22:12 
OffLine
Pripravnik
Pripravnik
Korisnikov avatar

Pridružio se: 20 Maj 2006, 09:49
Postovi: 150
Lokacija: Ibiza
Dusann je napisao:
Registruj se! je napisao:
Prvo trebas nauciti XML i DHTML


Nema potrebe da to uci ako ce koristiti RSS kanale kao sredstvo informisanja. Mogao si bar opis RSS-a napisati na nasem jeziku ...

Evo detaljan link: http://www.banjalukalive.com/index.php? ... Itemid=150



Puno hvala, tamo je super objasnjenje i lijep pozdrav!


Vrh
 Profil  
 
 Tema posta:
PostPoslato: 27 Jul 2006, 00:16 
OffLine
Veteran
Veteran
Korisnikov avatar

Pridružio se: 28 Feb 2006, 02:36
Postovi: 2982
Citiraj:
Mogao si bar opis RSS-a napisati na nasem jeziku ...
Sorry, pogresno sam razumio. Kontao sam da lik pravi sajt pa mu nesto ne stima ili vec nesto slicno. Iz te pretpostavke slijedi zakljucak da se relativno dobro koristi engleskim ali da nije guglao. Necu vise, obecavam :P


Vrh
 Profil  
 
Prikaži postove u poslednjih:  Poređaj po  
Započni novu temu Odgovori na temu  [ 6 Posta ] 

Sva vremena su u UTC [ DST ]


Ko je OnLine

Korisnici koji su trenutno na forumu: Nema registrovanih korisnika i 0 gostiju


Ne možete postavljati nove teme u ovom forumu
Ne možete odgovarati na teme u ovom forumu
Ne možete monjati vaše postove u ovom forumu
Ne možete brisati vaše postove u ovom forumu
Ne možete slati prikačene fajlove u ovom forumu

Pronađi:
Idi na:  
Powered by phpBB® Forum Software © phpBB Group
Hosting BitLab
Prevod - www.CyberCom.rs