Microsoft's Internet Explorer browser has no built-in vector graphics machinery required for "loss-free" gradient background themes.
Please upgrade to a better browser such as Firefox, Opera, Safari or others with built-in vector graphics machinery and much more. (Learn more or post questions or comments at the Slide Show (S9) project site. Thanks!)
Gerald Bauer @ RDF Vancouver/Semantic Web Group, Vancouver, B.C., November 2008
(Source)
Slide Show Keyboard Controls (Help)
| Action | Key |
| Go to next slide | Space Bar, Right Arrow, Down Arrow, Page Down |
| Go to previous slide | Left Arrow, Up Arrow, Page Up |
| Toggle between slideshow and outline view (Ø) | T |
| Show/hide slide controls (Ø « ») | C, Move mouse to bottom right corner |
Example:
Gerald Bauer Internet Professional Vancouver, B.C. Web: GeraldBauer.ca Email: gerald@vanbeta.com
What?
Web markup tags such as h2 (heading2) and p (paragraph) and br (break)
are kind of meaningless (without semantics).
<h2>Gerald Bauer</h2> <p>Internet Professional <br> Vancouver, B.C.<br> <br> <em>Web: GeraldBauer.ca</em> <br> <em>Email: gerald@vanbeta.com</em> </p>
Internet Professional
Vancouver, B.C.
Web: GeraldBauer.ca
Email: gerald@vanbeta.com
Semantic Web – add semantics to your web page by marking up events, people, locations, resumes, listings, feeds and much more.
How? The “official” semantic web led by Tim Berners-Lee (the inventor of the “classic” web) proposes new extension to web markup such as Resource Description Framework(RDF) or eXtensible Markup Language (XML)
The “pragmatic” semantic web led by the Microformats initiative proposes – let’s just use conventions and best practices for today’s web markup and today’s browsers.
gerald.rdf:
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:foaf="http://xmlns.com/foaf/0.1/">
<foaf:Person>
<foaf:name>Gerald Bauer</foaf:name>
<foaf:title>Internet Professional</foaf:title>
<foaf:city>Vancouver, B.C.</foaf:city>
<foaf:weblog rdf:resource="http://geraldbauer.ca" />
<foaf:mbox rdf:resource="mailto:gerald@vanbeta.com" />
</foaf:Person>
</rdf:RDF>
Add to your web page header:
<link rel="meta" type="application/rdf+xml" title="FOAF" href="gerald.rdf" />
What’s different?
FOAF-a-matic:
Fill out a form to create your FOAF file using FOAF-a-matic
FOAF Explorer:
Browse and explore FOAF data displayed as web pages using FOAF Explorer
Plain Old “Classic” Web Markup:
<h2>Gerald Bauer</h2> <p>Internet Professional <br> Vancouver, B.C.<br> <br> <em>Web: GeraldBauer.ca</em> <br> <em>Email: gerald@vanbeta.com</em> </p>
Adding Semantics Using Microformats:
<div class="vcard"> <h2 class="fn">Gerald Bauer</h2> <p> <span class="title">Internet Professional</span><br> <span class="adr"> <span class="locality">Vancouver</span>, <abbr class="region" title="British Columbia">B.C.</abbr> </span><br> <br> Web: <a class="url" href="http://geralbauer.ca">GeraldBauer.ca</a><br> Email: <span class="email">gerald@vanbeta.com</span> </p> </div>
Internet Professional
Vancouver,
B.C.
Email: gerald@vanbeta.com
Web: GeraldBauer.ca
What’s different?
vs. Using RDF (Resouce Description Framework) plus Friend of a Friend (FOAF) Vocabulary
hCard-o-matic:
Fill out a form to create your hCard markup using hCard-o-matic
Operator:
Free, open source browser addon lets you add hCards to Yahoo address book or export hCards as vCards and much more – Install Operator Firefox Browser Addon
Classic RDF – gerald.rdf:
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:foaf="http://xmlns.com/foaf/0.1/">
<foaf:Person>
<foaf:name>Gerald Bauer</foaf:name>
<foaf:title>Internet Professional</foaf:title>
<foaf:city>Vancouver, B.C.</foaf:city>
<foaf:weblog rdf:resource="http://geraldbauer.ca" />
<foaf:mbox rdf:resource="mailto:gerald@vanbeta.com" />
</foaf:Person>
</rdf:RDF>
RDFa Version:
<html xmlns:foaf="http://xmlns.com/foaf/0.1/"> ... <div typeof="foaf:Person"> <h2 property="foaf:name">Gerald Bauer</h1> <p> <span property="foaf:title">Internet Professional</span><br> <span property="foaf:city">Vancouver, B.C.</span><br> <br> Email: <span property="foaf:mbox">gerald@vanbeta.com</span><br> Web: <a rel="foaf:weblog" href="http://geraldbauer.ca">GeraldBauer.ca</a> </p> </div>
What’s different (vs. Microformats)?
typeof, property)RDFa Version:
<html xmlns:foaf="http://xmlns.com/foaf/0.1/"> ... <div typeof="foaf:Person"> <h2 property="foaf:name">Gerald Bauer</h1> <p> <span property="foaf:title">Internet Professional</span><br> <span property="foaf:city">Vancouver, B.C.</span><br> <br> Email: <span property="foaf:mbox">gerald@vanbeta.com</span><br> Web: <a rel="foaf:weblog" href="http://geraldbauer.ca">GeraldBauer.ca</a><br> </p> </div>
Microformats Version:
<div class="vcard"> <h2 class="fn">Gerald Bauer</h2> <p> <span class="title">Internet Professional</span><br> <span class="adr"> <span class="locality">Vancouver</span>, <abbr class="region" title="British Columbia">B.C.</abbr> </span><br> <br> Web: <a class="url" href="http://geralbauer.ca">GeraldBauer.ca</a><br> Email: <span class="email">gerald@vanbeta.com</span> </p> </div>
Adding Friends
jim.rdf:
<foaf:Person> <foaf:name>Jim Pick</foaf:name> <foaf:title>Freelance Software Developer</foaf:title> <foaf:mbox rdf:resource="mailto:jim@jimpick.com" /> </foaf:Person>
Use unique identifier (such as mbox, mbox_sha1sum, weblog)
plus seeAlso with link to FOAF file.
gerald.rdf:
<foaf:Person>
<foaf:name>Gerald Bauer</foaf:name>
<foaf:knows>
<foaf:Person>
<foaf:mbox rdf:resource="mailto:jim@jimpick.com" />
<rdfs:seeAlso rdf:resource="http://jimpick.com/jim.rdf" />
</foaf:Person>
</foaf:knows>
</foaf:Person>
</rdf:RDF>
Just add a link with a relationship (rel) value of contact from your site to your friends site.
Sample:
<a href="http://jimpick.com" rel="contact">Jim Pick</a>
Questions? Comments?
Send them along to the Vancouver Ajax & Web 3.0 Developer Forum/Mailing List. Thanks!