|
|
Get More Targeted Visitors and Free Traffic
If you need More Targeted Visitors to Your Site this Will get the Free Traffic Flowing by David Parton If you don't know by now one the best ways to attract free traffic to your site is with articles. You find them in your email. You find...
Is Search Engine Submission Necessary?
Recently, a customer of ours was insistent on announcing his new website to big search engines. Otherwise, he argued, *...how would the world know that I exist...*. Indeed, the belief that one *must* submit his/her website to search engines has...
Marketing With Blogs - Part 2
Copyright © 2005 Priya Shah In part 1 of this article series on marketing with blogs, I discussed the reasons why blogs are excellent tools for marketing. In this article I outline some tips on using your blog as a good vehicle for your marketing...
RSS Explained
What is RSS? To begin with, it's one of those things everyone says is easy to understand. And it is, as soon as you have your own 'ah-ha' moment. I think the easiest way to explain it is to walk you through an example of RSS in action. I'm not...
The 6 Top Reasons Marketers Should Blog
If there is a downside to blogging, I have yet to find it. The more you learn about blogging, the more there is to like.
In fact, here are 6 mouth-watering reasons why every marketer should be blogging:
1- Fast Search Engine Spidering and...
|
|
|
|
|
|
|
|
An Introduction to ROR (Resources of a Resource)
An Introduction to ROR (Resources of a Resource)
*** What is ROR? ROR (Resources of a Resource) is an XML format for describing the content, objects, and structure of websites in a generic fashion so search engines and other web applications can find and understand information more easily.
For example if your website is selling products, ROR enables you to document your product names, descriptions, prices, images, availability, affiliate programs, etc. Or if your site or blog provides information on a given topic, it allows you to describe how this information is organized (sitemap, topics, categories, new information, archive, blogroll, etc). ROR also provides terms for documenting objects such as contacts, articles, newsletters, feeds, images, audio, links, reviews, privacy policy, copyrights, and more.
*** ROR File ROR information can be easily added to your website by adding a ROR File called ror.xml. ROR is actually quite simple. It is built on top of RDF, the W3 Resource Description Language (http://www.w3.org/RDF). If you are not familiar with RDF, don't worry, I won't go into any details here.
With ROR, all objects are represented by a <Resource> tag, and can optionally have a <type> property to determine the type (or class) of the object (e.g. Product , Article ,
Event , etc). The other properties are typically determined by the type you choose. Here is a simple example of a product described by ROR:
<Resource> <type>Product</type> <title>My Product</title> <desc>My great new product</desc> <url>http://www.my-web-site.com/my-product.htm</url> <price>19.95</price> <currency>USD</currency> </Resource>
Pretty simple, isn't it? And if you want to describe other objects, ROR provides other types like Contact, Article, Feed, Event, etc. You can find the current list of object and their properties in the ROR Specification at http://www.rorweb.com/spec.htm.
Now let's see how to assemble several objects together in a ROR file. In a ROR file the meaning of information is determined by both the objects and the relationship between them. Depending how an object is linked to another object, it will provide a different meaning. To link two objects together the property <resourceOf> is used. Here is an example:
<Resource rdf:about="object-1"> <title>Object 1</title> ... </Resource>
<Resource> <title>Object 2</title> ... <resourceOf rdf:resource="object-1" /> </Resource>
<Resource> <title>Object 3</title> ... <resourceOf rdf:resource="object-1" /> </Resource>
The first object uses the rdf:about attribute to identify itself so it can be referenced elsewhere. The <resourceOf> property is then used to attach the second and third objects to the first. Attaching the two objects to the first one is a way to say that they contain information that relates to or further describes that object.
That's pretty much it! Now that you know the essential about ROR, let's create a simple ROR file. Again I won't go into the details of RDF, but let's just say this; since ROR is built on top of RDF, it is enclosed in the <rdf:RDF> tag. Notice that the first object in this file has a type property set to Main . This designates it as the entry point into the data structure of the ROR file.
<?xml version="1.0" ?> <rdf:RDF xmlns="http://rorweb.com/0.1/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<Resource rdf:about="mysite"> <type>Main</type> <title>My Website</title> <url>http://www.my-web-site.com</url> <desc>My great site with a ROR file to describe it</desc> </Resource>
<Resource> <type>Contact</type> <name>John Doe</name> <phone>555 1212</phone> <fax>555 1213</fax> <mobile>555 1214</mobile> <resourceOf rdf:resource="mysite" /> </Resource>
<Resource rdf:about="products"> <type>Product</type> <title>My Products</title> <url>http://www.my-web-site.com/myproducts.htm</url> <currency>USD</currency> <resourceOf rdf:resource="mysite" /> </Resource>
<Resource> <type>Product</type> <title>Product 1</title> <url>http://www.my-web-site.com/product1.htm</url> <image>http://www.my-web-site.com/product1.gif</image> <price>19.95</price> <resourceOf rdf:resource="products" /> </Resource>
<Resource> <type>Product</type> <title>Product 2</title> <url>http://www.my-web-site.com/product2.htm</url> <image>http://www.my-web-site.com/product2.gif</image> <price>29.95</price> <resourceOf rdf:resource="products" /> </Resource>
<Resource rdf:about="myfeeds"> <type>Feed</type> <title>My Feeds</title> <resourceOf rdf:resource="mysite" /> </Resource>
<Resource> <type>Feed</type> <title>Daily News</title> <url>http://www.my-web-site.com/dailynews</url> <updatePeriod>day</updatePeriod> <resourceOf rdf:resource="myfeeds" /> </Resource>
<Resource> <type>Feed</type> <title>Weekly News</title> <url>http://www.my-web-site.com/weeklynews</url> <updatePeriod>week</updatePeriod> <resourceOf rdf:resource="myfeeds" /> </Resource>
</rdf:RDF>
*** Extending ROR To make it easier to use, ROR provides a set of pre-defined objects. These are objects that are commonly used on websites (Contact , Address ,
Webpage , Product , Feed , etc). But ROR is designed with simplicity and flexibility in mind, it can be easily combined with other vocabularies. As a simple example, let's say you want to describe a list of people. To do this you can combine ROR with the Friends of a Friend (FOAF at http://www.foaf-project.org) vocabulary. Here is what you would get: http://www.rorweb.com/examples/members.xml . And of course you can also add terms from the Dublin Core vocabulary (http://www.dublincore.org).
*** ROR Tools The ROR website (http://www.rorweb.com) offers several tools to help you create a ROR file. The ROR File Editor makes it easy to create and update a simple ROR file without any coding. The File Reader allows you to create a ROR file from a tab-delimited text file with your products, articles, links, or contacts information. This tools can also read a Froogle product feed or a Yahoo Shopping feed. Finally, the ROR Explorer allows you to drill down into the information of a ROR file.
Happy RORing!
About the Author
The Add Me Team Search Engine Submission and Optimization http://www.addme.com. You may reprint this article on your website, blog, newsletter, or magazine.
|
|
|
|
|
Liz Castro on HTML, XHTML, and CSS: Blogging CSS |
Blogging CSS. Oof, adapting this movable type blog to my new style is not easy. First, figuring out how their style sheet works and then trying to meld that ... |
www.cookwood.com |
  |
Weblogs | Blogging | CSS Mania |
CSSmania, the most updated css showcase all over the globe. |
cssmania.com |
  |
Tagging im Weblog - Chance, Perspektive oder nur Trend?: Blogging ... |
- [ Translate this page ]Mit dem Tagging ist es wie mit dem Bloggen. Wer es nicht selbst erlebt hat, kann nicht mitreden. Wer es ausprobiert hat im einfach persoenlich Weblog. |
www.einfach-persoenlich.de |
  |
Faszination Bloggen - Vogelflug-Formation: Blogging : CSS ... |
- [ Translate this page ]Faszinierende Artikel mit Substanz fallen sofort auf. Darren hat mich mit seinem Blog-Posting auf ProBlogger inspiriert im einfach persoenlich Weblog. |
www.einfach-persoenlich.de |
  |
Blogmarks.net : Public marks with tags blogging & css |
tools blogging css software reference culture standards opensource development comparison architecture collaboration technology innovation productivity ... |
www.blogmarks.net |
  |
Blogmarks.net : Public marks with tags blogging & css |
javascript blogging css html xhtml web-design dhtml skins ajax web2.0 demos web-development ... web design blogging css webdesign blog php cms tutorials ... |
www.blogmarks.net |
  |
This Is Smyrna, TN: September 2005 |
Plans are to meet once a month to discuss blogging, tools of blogging, css, podcasting and anything else of interest. ... |
thisissmyrnatn.blogspot.com |
  |
This Is Smyrna, TN: August 2005 |
Plans are to meet once a month to discuss blogging, tools of blogging, css, podcasting and anything else of interest. Email me at dailydiablogger@gmail.com ... |
thisissmyrnatn.blogspot.com |
  |
digg / KicktheDonkey / dugg |
170 Cheat Sheets about Ajax, Apache, Blogging,CSS, CVS, Firefox, Google, HTML/XHTML,JavaScript,Linux, MySQL, LaTeX, Oracle, Perl,PHP, Python, Photoshop Ruby ... |
digg.com |
  |
Search Community MX: Results for css |
Category: Blogs and Blogging,CSS,Dreamweaver,Music. Description: With back to back trips lately (an actual skiing vacation to Colorado), I've been more than ... |
www.communitymx.com |
  |
blogging - SWiK |
Firefox Computer blogging css google googlereader lifehacks style tools web … Nov 19 ... opensource FREE blogging css feeds javascript programming rss tools ... |
swik.net |
  |
Comments on: Blogging Challenge: WordPress Treasure Hunt |
It’s even been picked up by MaxPower.ca Local Tags: access, Blogging, css, free, hosting, php, statistics, Themes, wordpress, wordpress com, wordpress org ... |
www.maxpower.ca |
  |
pytlik / css |
by pytlik 2006-06-16 02:33 tags: blogging · css. http://www.htmlhelp. com/reference/css/all-properties.html - similar - cached - mail it - history ... |
www.simpy.com |
  |
Articles - Interview: Cameron Moll | iStockphoto.com |
Blogging, CSS, and the standards movement have collaboratively produced an explosive wealth of benefits for websites and their users, but they have also ... |
istockphoto.com |
  |
Technorati Profile for chwats (Christian Watson) |
http://blog.myspace.com/christianwatson. Tagged: Blogging, CSS, Design, Search Engine Optimization, SEO, Usability, web design, Web development. ... |
www.technorati.com |
  |
Russell Holliman: See what people are saying right now on Technorati |
Posted by Sebastian Prooth in weblog, wordpress, blogging, CSS, blogger, microsoft, bbc, theme, Robert... » Show details · What's Popular Most Popular ... |
www.technorati.com |
  |
JeffCroft.com: Items tagged with movabletype |
Wednesday, June 29th 2005 at 5:07 a.m. (1 year, 5 months ago): Tags: ajax, blogging, css, javascript, movabletype, php, tutorial; 0 comments on Six Apart ... |
www2.jeffcroft.com |
  |
JeffCroft.com: Items tagged with php |
Wednesday, June 29th 2005 at 5:07 a.m. (1 year, 5 months ago): Tags: ajax, blogging, css, javascript, movabletype, php, tutorial; 0 comments on No more CSS ... |
www2.jeffcroft.com |
  |
lynx [dive into mark] |
Visually, the navigation bar is first, but structurally, this main text is first. (View […] accessibility, blogging, css, lynx ... |
diveintomark.org |
  |
Brewster's Field Guide to Web 2.666 |
Instant Comment Preview blogging, css, javascript, meta, you-can-build-it-you-can-fly-it: Here's a really cheap, sleazy way to instantly preview blog ... |
kentbrewster.com |
  |
|