SlideShare uma empresa Scribd logo
1 de 32
Baixar para ler offline
RDFa in ostala spletna
     semantika
            Jure Čuhalev
   http://www.jurecuhalev.com/blog/
Splet je ..
.. omrežje podatkov
    (web of data)
Mikroformati
Mikroformati



<div class=quot;veventquot;>
 <a class=quot;urlquot; href=quot;http://www.kiberpipa.org/index.php?
name=News&file=article&sid=959quot;>SU: RDFa</a>
  <span class=quot;summaryquot;>RDFa predavanje</span>:
  <abbr class=quot;dtstartquot; title=quot;2008-03-12T19:00+01:00quot;>12 marec
ob 19h</abbr> do
  <abbr class=quot;dtendquot; title=quot;2008-03-12T19:00+01:00quot;>12 marec do
20h</abbr>,
 v <span class=quot;locationquot;>Kiberpipa, Ljubljana, Slovenia</span>
 </div>
Mikroformati



<div class=quot;veventquot;>
 <a class=quot;urlquot; href=quot;http://www.kiberpipa.org/index.php?
name=News&file=article&sid=959quot;>SU: RDFa</a>
  <span class=quot;summaryquot;>RDFa predavanje</span>:
  <abbr class=quot;dtstartquot; title=quot;2008-03-12T19:00+01:00quot;>12 marec
ob 19h</abbr> do
  <abbr class=quot;dtendquot; title=quot;2008-03-12T20:00+01:00quot;>12 marec do
20h</abbr>,
 v <span class=quot;locationquot;>Kiberpipa, Ljubljana, Slovenia</span>
 </div>
Obnašanje ljudi ...
... vzorce v divjini
Mikroformati so
neprijazni do robotov
Mikroformati



<div class=quot;veventquot;>
 <a class=quot;urlquot; href=quot;http://www.kiberpipa.org/index.php?
name=News&file=article&sid=959quot;>SU: RDFa</a>
  <span class=quot;summaryquot;>RDFa predavanje</span>:
  <abbr class=quot;dtstartquot; title=quot;2008-03-12T19:00+01:00quot;>12 marec
ob 19h</abbr> do
  <abbr class=quot;dtendquot; title=quot;2008-03-12T20:00+01:00quot;>12 marec do
20h</abbr>,
 v <span class=quot;locationquot;>Kiberpipa, Ljubljana, Slovenia</span>
 </div>




       Imena razredov in oznak so mehki dogovor
Resource Description Framework (RDF)




       http://nennett.net/2007/08/microformats-rdf.html
<rdf:RDF
        xmlns:rdf=quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#quot;
        xmlns:foaf=quot;http://xmlns.com/foaf/0.1/quot;
        xmlns:dc=quot;http://purl.org/dc/elements/1.1/quot;>
        <rdf:Description
             rdf:about=quot;http://en.wikipedia.org/wiki/Tony_Bennquot;>
                <dc:title>Tony Benn</dc:title>
                <dc:publisher>Wikipedia</dc:publisher>
                <foaf:primaryTopic>
                     <foaf:Person>
                           <foaf:name>Tony Benn</foaf:name>
                     </foaf:Person>
                </foaf:primaryTopic>
        </rdf:Description>
</rdf:RDF>
Kako to preplesti s spletno stranjo?
RDFa

RDF .. v HTML .. atributih
RDFa


<div xmlns:dc=quot;http://purl.org/dc/elements/1.1/quot;
  about=quot;http://www.example.com/books/wikinomicsquot;>
  <span property=quot;dc:titlequot;>Wikinomics</span>
  <span property=quot;dc:authorquot;>Don Tapscott</span>
  <span property=quot;dc:datequot;>2006-10-01</span>
</div>
RDFa


<div xmlns:dc=quot;http://purl.org/dc/elements/1.1/quot;
  about=quot;http://www.example.com/books/wikinomicsquot;>
  <span property=quot;dc:titlequot;>Wikinomics</span>
  <span property=quot;dc:authorquot;>Don Tapscott</span>
  <span property=quot;dc:datequot;>2006-10-01</span>
</div>
RDFa


<div xmlns:dc=quot;http://purl.org/dc/elements/1.1/quot;
  about=quot;http://www.example.com/books/wikinomicsquot;>
  <span property=quot;dc:titlequot;>Wikinomics</span>
  <span property=quot;dc:authorquot;>Don Tapscott</span>
  <span property=quot;dc:datequot;>2006-10-01</span>
</div>
RDFa



       Celoten primer
RDFa
<?xml version=quot;1.0quot; encoding=quot;UTF-8quot;?>
<!DOCTYPE html PUBLIC quot;-//W3C//DTD XHTML+RDFa 1.0//ENquot;
    quot;http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtdquot;>
<html xmlns=quot;http://www.w3.org/1999/xhtmlquot;
    xmlns:foaf=quot;http://xmlns.com/foaf/0.1/quot;
    xmlns:dc=quot;http://purl.org/dc/elements/1.1/quot; xml:lang=quot;enquot;>
  <head>
    <title>John's Home Page</title>
    <base href=quot;http://example.org/john-d/quot; />
    <meta property=quot;dc:creatorquot; content=quot;Jonathan Doequot; />
  </head>
  <body>
    <h1>John's Home Page</h1>
    <p>My name is <span property=quot;foaf:nickquot;>John D</span> and I like
      <a href=quot;http://www.neubauten.org/quot; rel=quot;foaf:interestquot;
        xml:lang=quot;dequot;>Einstürzende Neubauten</a>.</p>
    <p>My <span rel=quot;foaf:interestquot; resource=quot;urn:ISBN:0752820907quot;>favorite
      book</span> is the inspiring <span about=quot;urn:ISBN:0752820907quot;><cite
         property=quot;dc:titlequot;>Weaving the Web</cite> by
      <span property=quot;dc:authorquot;>Tim Berners-Lee</span></span>.</p>
  </body>
</html>
RDFa
<?xml version=quot;1.0quot; encoding=quot;UTF-8quot;?>
<!DOCTYPE html PUBLIC quot;-//W3C//DTD XHTML+RDFa 1.0//ENquot;
    quot;http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtdquot;>
<html xmlns=quot;http://www.w3.org/1999/xhtmlquot;
    xmlns:foaf=quot;http://xmlns.com/foaf/0.1/quot;
    xmlns:dc=quot;http://purl.org/dc/elements/1.1/quot; xml:lang=quot;enquot;>
  <head>
    <title>John's Home Page</title>
    <base href=quot;http://example.org/john-d/quot; />
    <meta property=quot;dc:creatorquot; content=quot;Jonathan Doequot; />
  </head>
  <body>
    <h1>John's Home Page</h1>
    <p>My name is <span property=quot;foaf:nickquot;>John D</span> and I like
      <a href=quot;http://www.neubauten.org/quot; rel=quot;foaf:interestquot;
        xml:lang=quot;dequot;>Einstürzende Neubauten</a>.</p>
    <p>My <span rel=quot;foaf:interestquot; resource=quot;urn:ISBN:0752820907quot;>favorite
      book</span> is the inspiring <span about=quot;urn:ISBN:0752820907quot;><cite
         property=quot;dc:titlequot;>Weaving the Web</cite> by
      <span property=quot;dc:authorquot;>Tim Berners-Lee</span></span>.</p>
  </body>
</html>
RDFa
<?xml version=quot;1.0quot; encoding=quot;UTF-8quot;?>
<!DOCTYPE html PUBLIC quot;-//W3C//DTD XHTML+RDFa 1.0//ENquot;
    quot;http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtdquot;>
<html xmlns=quot;http://www.w3.org/1999/xhtmlquot;
    xmlns:foaf=quot;http://xmlns.com/foaf/0.1/quot;
    xmlns:dc=quot;http://purl.org/dc/elements/1.1/quot; xml:lang=quot;enquot;>
  <head>
    <title>John's Home Page</title>
    <base href=quot;http://example.org/john-d/quot; />
    <meta property=quot;dc:creatorquot; content=quot;Jonathan Doequot; />
  </head>
  <body>
    <h1>John's Home Page</h1>
    <p>My name is <span property=quot;foaf:nickquot;>John D</span> and I like
      <a href=quot;http://www.neubauten.org/quot; rel=quot;foaf:interestquot;
         xml:lang=quot;dequot;>Einstürzende Neubauten</a>.</p>
    <p>My <span rel=quot;foaf:interestquot; resource=quot;urn:ISBN:0752820907quot;>favorite
      book</span> is the inspiring <span about=quot;urn:ISBN:0752820907quot;><cite
         property=quot;dc:titlequot;>Weaving the Web</cite> by
      <span property=quot;dc:authorquot;>Tim Berners-Lee</span></span>.</p>
  </body>
</html>
RDFa
<?xml version=quot;1.0quot; encoding=quot;UTF-8quot;?>
<!DOCTYPE html PUBLIC quot;-//W3C//DTD XHTML+RDFa 1.0//ENquot;
    quot;http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtdquot;>
<html xmlns=quot;http://www.w3.org/1999/xhtmlquot;
    xmlns:foaf=quot;http://xmlns.com/foaf/0.1/quot;
    xmlns:dc=quot;http://purl.org/dc/elements/1.1/quot; xml:lang=quot;enquot;>
  <head>
    <title>John's Home Page</title>
    <base href=quot;http://example.org/john-d/quot; />
    <meta property=quot;dc:creatorquot; content=quot;Jonathan Doequot; />
  </head>
  <body>
    <h1>John's Home Page</h1>
    <p>My name is <span property=quot;foaf:nickquot;>John D</span> and I like
      <a href=quot;http://www.neubauten.org/quot; rel=quot;foaf:interestquot;
         xml:lang=quot;dequot;>Einstürzende Neubauten</a>.</p>
    <p>My <span rel=quot;foaf:interestquot; resource=quot;urn:ISBN:0752820907quot;>favorite
      book</span> is the inspiring <span about=quot;urn:ISBN:0752820907quot;><cite
         property=quot;dc:titlequot;>Weaving the Web</cite> by
      <span property=quot;dc:authorquot;>Tim Berners-Lee</span></span>.</p>
  </body>
</html>
Orodja
RDFa
bookmarklets
http://www.w3.org/2006/07/
    SWD/RDFa/impl/js/
Semantic radar
http://sioc-project.org/firefox
Yahoo!
 Microsearch
http://www.yr-bcn.es/demos/
        microsearch/
SPARQL
(RDF Query Language)




       FOAF
Fotografije - pod Creative Commons licenco

         http://flickr.com/photos/ecstaticist/1340787730/
          http://flickr.com/photos/ecstaticist/289169665/
      http://flickr.com/photos/54912323@N00/348737182/
           http://flickr.com/photos/eqqman/142532682/
          http://flickr.com/photos/patrick_q/109986712/
       http://flickr.com/photos/martin_heigan/1224949772/
             http://flickr.com/photos/baboon/3946055/
     http://flickr.com/photos/89376128@N00/1130033952/
            http://flickr.com/photos/gustavog/34150783/
     http://flickr.com/photos/amigurumikingdom/161932998/
            http://flickr.com/photos/bepster/80025887/
        http://flickr.com/photos/cesarcabrera/396501977/
         http://flickr.com/photos/ecstaticist/1845111090/
http://www.jurecuhalev.com/blog

Mais conteúdo relacionado

Mais procurados

LITA 2010: The Linked Library Data Cloud: it's time to stop think and start l...
LITA 2010: The Linked Library Data Cloud: it's time to stop think and start l...LITA 2010: The Linked Library Data Cloud: it's time to stop think and start l...
LITA 2010: The Linked Library Data Cloud: it's time to stop think and start l...
Ross Singer
 
Open belgium 2015 - open tourism
Open belgium 2015 - open tourismOpen belgium 2015 - open tourism
Open belgium 2015 - open tourism
Raf Buyle
 
Bigdive 2014 - RDF, principles and case studies
Bigdive 2014 - RDF, principles and case studiesBigdive 2014 - RDF, principles and case studies
Bigdive 2014 - RDF, principles and case studies
Diego Valerio Camarda
 
Fun with metadata
Fun with metadataFun with metadata
Fun with metadata
Bob Chao
 
ResourceSync: Leveraging Sitemaps for Resource Synchronization
ResourceSync: Leveraging Sitemaps for Resource SynchronizationResourceSync: Leveraging Sitemaps for Resource Synchronization
ResourceSync: Leveraging Sitemaps for Resource Synchronization
Bernhard Haslhofer
 

Mais procurados (18)

Google
GoogleGoogle
Google
 
LITA 2010: The Linked Library Data Cloud: it's time to stop think and start l...
LITA 2010: The Linked Library Data Cloud: it's time to stop think and start l...LITA 2010: The Linked Library Data Cloud: it's time to stop think and start l...
LITA 2010: The Linked Library Data Cloud: it's time to stop think and start l...
 
Ontotext's GraphDB Connectors
Ontotext's GraphDB ConnectorsOntotext's GraphDB Connectors
Ontotext's GraphDB Connectors
 
JSON-LD Update
JSON-LD UpdateJSON-LD Update
JSON-LD Update
 
Creating 3rd Generation Web APIs with Hydra
Creating 3rd Generation Web APIs with HydraCreating 3rd Generation Web APIs with Hydra
Creating 3rd Generation Web APIs with Hydra
 
ELUNA2013:Providing Voyager catalog data in a custom, open source web applica...
ELUNA2013:Providing Voyager catalog data in a custom, open source web applica...ELUNA2013:Providing Voyager catalog data in a custom, open source web applica...
ELUNA2013:Providing Voyager catalog data in a custom, open source web applica...
 
Sakai11docproxy
Sakai11docproxySakai11docproxy
Sakai11docproxy
 
Open belgium 2015 - open tourism
Open belgium 2015 - open tourismOpen belgium 2015 - open tourism
Open belgium 2015 - open tourism
 
Google Your Family Tree
Google Your Family TreeGoogle Your Family Tree
Google Your Family Tree
 
Bigdive 2014 - RDF, principles and case studies
Bigdive 2014 - RDF, principles and case studiesBigdive 2014 - RDF, principles and case studies
Bigdive 2014 - RDF, principles and case studies
 
JSON-LD for RESTful services
JSON-LD for RESTful servicesJSON-LD for RESTful services
JSON-LD for RESTful services
 
Pdfforge org[1]
Pdfforge org[1]Pdfforge org[1]
Pdfforge org[1]
 
Fun with metadata
Fun with metadataFun with metadata
Fun with metadata
 
ResourceSync: Leveraging Sitemaps for Resource Synchronization
ResourceSync: Leveraging Sitemaps for Resource SynchronizationResourceSync: Leveraging Sitemaps for Resource Synchronization
ResourceSync: Leveraging Sitemaps for Resource Synchronization
 
An introduction to Semantic Web and Linked Data
An introduction to Semantic Web and Linked DataAn introduction to Semantic Web and Linked Data
An introduction to Semantic Web and Linked Data
 
(Re-) Discovering Lost Web Pages
(Re-) Discovering Lost Web Pages(Re-) Discovering Lost Web Pages
(Re-) Discovering Lost Web Pages
 
Aqua Browser Implementation at Oklahoma State University
Aqua Browser Implementation at Oklahoma State UniversityAqua Browser Implementation at Oklahoma State University
Aqua Browser Implementation at Oklahoma State University
 
Facebook Open Graph implementation in the Harvard Gazette
Facebook Open Graph implementation in the Harvard GazetteFacebook Open Graph implementation in the Harvard Gazette
Facebook Open Graph implementation in the Harvard Gazette
 

Destaque

Training VC Presentation
Training VC PresentationTraining VC Presentation
Training VC Presentation
trainingvc
 

Destaque (8)

Odprta Koda in vas Mac
Odprta Koda in vas MacOdprta Koda in vas Mac
Odprta Koda in vas Mac
 
Web2 Expo San Francisco
Web2 Expo San FranciscoWeb2 Expo San Francisco
Web2 Expo San Francisco
 
Its Complicated (2)
Its Complicated (2)Its Complicated (2)
Its Complicated (2)
 
Training VC Presentation
Training VC PresentationTraining VC Presentation
Training VC Presentation
 
O BarCampih
O BarCampihO BarCampih
O BarCampih
 
Web Services & FERPA
Web Services & FERPAWeb Services & FERPA
Web Services & FERPA
 
It's Complicated
It's ComplicatedIt's Complicated
It's Complicated
 
Twitter workshop Difrax
Twitter workshop DifraxTwitter workshop Difrax
Twitter workshop Difrax
 

Semelhante a RDFa in ostala spletna semantika

Microdata semantic-extend
Microdata semantic-extendMicrodata semantic-extend
Microdata semantic-extend
Seek Tan
 
2011 4IZ440 Semantic Web – RDF, SPARQL, and software APIs
2011 4IZ440 Semantic Web – RDF, SPARQL, and software APIs2011 4IZ440 Semantic Web – RDF, SPARQL, and software APIs
2011 4IZ440 Semantic Web – RDF, SPARQL, and software APIs
Josef Petrák
 
Linked data: spreading data over the web
Linked data: spreading data over the webLinked data: spreading data over the web
Linked data: spreading data over the web
shellac
 
Makroekonomi topik-8-1
Makroekonomi topik-8-1Makroekonomi topik-8-1
Makroekonomi topik-8-1
020881
 
Espacios en-tu-vida
Espacios en-tu-vidaEspacios en-tu-vida
Espacios en-tu-vida
epacheco1
 
Embedding Linked Data Invisibly into Web Pages: Strategies and Workflows for ...
Embedding Linked Data Invisibly into Web Pages: Strategies and Workflows for ...Embedding Linked Data Invisibly into Web Pages: Strategies and Workflows for ...
Embedding Linked Data Invisibly into Web Pages: Strategies and Workflows for ...
National Information Standards Organization (NISO)
 

Semelhante a RDFa in ostala spletna semantika (20)

Microdata semantic-extend
Microdata semantic-extendMicrodata semantic-extend
Microdata semantic-extend
 
TOSSUG HTML5 讀書會 新標籤與表單
TOSSUG HTML5 讀書會 新標籤與表單TOSSUG HTML5 讀書會 新標籤與表單
TOSSUG HTML5 讀書會 新標籤與表單
 
2011 4IZ440 Semantic Web – RDF, SPARQL, and software APIs
2011 4IZ440 Semantic Web – RDF, SPARQL, and software APIs2011 4IZ440 Semantic Web – RDF, SPARQL, and software APIs
2011 4IZ440 Semantic Web – RDF, SPARQL, and software APIs
 
Linked data: spreading data over the web
Linked data: spreading data over the webLinked data: spreading data over the web
Linked data: spreading data over the web
 
Seo Cheat Sheet
Seo Cheat SheetSeo Cheat Sheet
Seo Cheat Sheet
 
Seo cheat-sheet
Seo cheat-sheetSeo cheat-sheet
Seo cheat-sheet
 
Linked Data Presentation at TDWI Mpls
Linked Data Presentation at TDWI MplsLinked Data Presentation at TDWI Mpls
Linked Data Presentation at TDWI Mpls
 
Tutorial for RDF Graphs
Tutorial for RDF GraphsTutorial for RDF Graphs
Tutorial for RDF Graphs
 
Makroekonomi topik-8-1
Makroekonomi topik-8-1Makroekonomi topik-8-1
Makroekonomi topik-8-1
 
Espacios en-tu-vida
Espacios en-tu-vidaEspacios en-tu-vida
Espacios en-tu-vida
 
Eclampsia 4-real-presentation
Eclampsia 4-real-presentationEclampsia 4-real-presentation
Eclampsia 4-real-presentation
 
Embedding Linked Data Invisibly into Web Pages: Strategies and Workflows for ...
Embedding Linked Data Invisibly into Web Pages: Strategies and Workflows for ...Embedding Linked Data Invisibly into Web Pages: Strategies and Workflows for ...
Embedding Linked Data Invisibly into Web Pages: Strategies and Workflows for ...
 
Moz SEO Web cheat sheet 2016
Moz SEO Web cheat sheet 2016Moz SEO Web cheat sheet 2016
Moz SEO Web cheat sheet 2016
 
Seo cheat-sheet
Seo cheat-sheetSeo cheat-sheet
Seo cheat-sheet
 
The Web Developer's SEO Cheat Sheet
The Web Developer's SEO Cheat Sheet The Web Developer's SEO Cheat Sheet
The Web Developer's SEO Cheat Sheet
 
Seo cheat sheet
Seo cheat sheetSeo cheat sheet
Seo cheat sheet
 
Seo cheat sheet
Seo cheat sheetSeo cheat sheet
Seo cheat sheet
 
Seo cheat-sheet
Seo cheat-sheetSeo cheat-sheet
Seo cheat-sheet
 
Seo onpage for Developer
Seo onpage for DeveloperSeo onpage for Developer
Seo onpage for Developer
 
RDFa-deployed Multimedia Metadata - Tutorial, Part 3
RDFa-deployed Multimedia Metadata - Tutorial, Part 3RDFa-deployed Multimedia Metadata - Tutorial, Part 3
RDFa-deployed Multimedia Metadata - Tutorial, Part 3
 

Mais de Jure Cuhalev

Personal branding, social media and pretty pictures
Personal branding, social media and pretty picturesPersonal branding, social media and pretty pictures
Personal branding, social media and pretty pictures
Jure Cuhalev
 

Mais de Jure Cuhalev (14)

Python icecream library
Python icecream libraryPython icecream library
Python icecream library
 
Google Sheets in Python with gspread
Google Sheets in Python with gspreadGoogle Sheets in Python with gspread
Google Sheets in Python with gspread
 
Up Your Freelancing Game
Up Your Freelancing GameUp Your Freelancing Game
Up Your Freelancing Game
 
DevOps For Solo Developers
DevOps For Solo DevelopersDevOps For Solo Developers
DevOps For Solo Developers
 
Kaj je cms
Kaj je cmsKaj je cms
Kaj je cms
 
Prevoz.org presentation
Prevoz.org presentationPrevoz.org presentation
Prevoz.org presentation
 
Poke Is The New Greeting Card
Poke Is The New Greeting CardPoke Is The New Greeting Card
Poke Is The New Greeting Card
 
Pimp Your Blog
Pimp Your BlogPimp Your Blog
Pimp Your Blog
 
Twitter and Alternative reality games
Twitter and Alternative reality gamesTwitter and Alternative reality games
Twitter and Alternative reality games
 
Personal branding, social media and pretty pictures
Personal branding, social media and pretty picturesPersonal branding, social media and pretty pictures
Personal branding, social media and pretty pictures
 
Pretty Pictures
Pretty PicturesPretty Pictures
Pretty Pictures
 
Blog Enhancing through Extensions
Blog Enhancing through ExtensionsBlog Enhancing through Extensions
Blog Enhancing through Extensions
 
Druzbene Vloge
Druzbene VlogeDruzbene Vloge
Druzbene Vloge
 
Druzbeni Mediji Blogres08
Druzbeni Mediji Blogres08Druzbeni Mediji Blogres08
Druzbeni Mediji Blogres08
 

Último

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Victor Rentea
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Último (20)

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital Adaptability
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 

RDFa in ostala spletna semantika

  • 1. RDFa in ostala spletna semantika Jure Čuhalev http://www.jurecuhalev.com/blog/
  • 3. .. omrežje podatkov (web of data)
  • 4.
  • 5.
  • 7. Mikroformati <div class=quot;veventquot;> <a class=quot;urlquot; href=quot;http://www.kiberpipa.org/index.php? name=News&file=article&sid=959quot;>SU: RDFa</a> <span class=quot;summaryquot;>RDFa predavanje</span>: <abbr class=quot;dtstartquot; title=quot;2008-03-12T19:00+01:00quot;>12 marec ob 19h</abbr> do <abbr class=quot;dtendquot; title=quot;2008-03-12T19:00+01:00quot;>12 marec do 20h</abbr>, v <span class=quot;locationquot;>Kiberpipa, Ljubljana, Slovenia</span> </div>
  • 8. Mikroformati <div class=quot;veventquot;> <a class=quot;urlquot; href=quot;http://www.kiberpipa.org/index.php? name=News&file=article&sid=959quot;>SU: RDFa</a> <span class=quot;summaryquot;>RDFa predavanje</span>: <abbr class=quot;dtstartquot; title=quot;2008-03-12T19:00+01:00quot;>12 marec ob 19h</abbr> do <abbr class=quot;dtendquot; title=quot;2008-03-12T20:00+01:00quot;>12 marec do 20h</abbr>, v <span class=quot;locationquot;>Kiberpipa, Ljubljana, Slovenia</span> </div>
  • 10. ... vzorce v divjini
  • 12. Mikroformati <div class=quot;veventquot;> <a class=quot;urlquot; href=quot;http://www.kiberpipa.org/index.php? name=News&file=article&sid=959quot;>SU: RDFa</a> <span class=quot;summaryquot;>RDFa predavanje</span>: <abbr class=quot;dtstartquot; title=quot;2008-03-12T19:00+01:00quot;>12 marec ob 19h</abbr> do <abbr class=quot;dtendquot; title=quot;2008-03-12T20:00+01:00quot;>12 marec do 20h</abbr>, v <span class=quot;locationquot;>Kiberpipa, Ljubljana, Slovenia</span> </div> Imena razredov in oznak so mehki dogovor
  • 13. Resource Description Framework (RDF) http://nennett.net/2007/08/microformats-rdf.html
  • 14. <rdf:RDF xmlns:rdf=quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#quot; xmlns:foaf=quot;http://xmlns.com/foaf/0.1/quot; xmlns:dc=quot;http://purl.org/dc/elements/1.1/quot;> <rdf:Description rdf:about=quot;http://en.wikipedia.org/wiki/Tony_Bennquot;> <dc:title>Tony Benn</dc:title> <dc:publisher>Wikipedia</dc:publisher> <foaf:primaryTopic> <foaf:Person> <foaf:name>Tony Benn</foaf:name> </foaf:Person> </foaf:primaryTopic> </rdf:Description> </rdf:RDF>
  • 15. Kako to preplesti s spletno stranjo?
  • 16. RDFa RDF .. v HTML .. atributih
  • 17. RDFa <div xmlns:dc=quot;http://purl.org/dc/elements/1.1/quot; about=quot;http://www.example.com/books/wikinomicsquot;> <span property=quot;dc:titlequot;>Wikinomics</span> <span property=quot;dc:authorquot;>Don Tapscott</span> <span property=quot;dc:datequot;>2006-10-01</span> </div>
  • 18. RDFa <div xmlns:dc=quot;http://purl.org/dc/elements/1.1/quot; about=quot;http://www.example.com/books/wikinomicsquot;> <span property=quot;dc:titlequot;>Wikinomics</span> <span property=quot;dc:authorquot;>Don Tapscott</span> <span property=quot;dc:datequot;>2006-10-01</span> </div>
  • 19. RDFa <div xmlns:dc=quot;http://purl.org/dc/elements/1.1/quot; about=quot;http://www.example.com/books/wikinomicsquot;> <span property=quot;dc:titlequot;>Wikinomics</span> <span property=quot;dc:authorquot;>Don Tapscott</span> <span property=quot;dc:datequot;>2006-10-01</span> </div>
  • 20. RDFa Celoten primer
  • 21. RDFa <?xml version=quot;1.0quot; encoding=quot;UTF-8quot;?> <!DOCTYPE html PUBLIC quot;-//W3C//DTD XHTML+RDFa 1.0//ENquot; quot;http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtdquot;> <html xmlns=quot;http://www.w3.org/1999/xhtmlquot; xmlns:foaf=quot;http://xmlns.com/foaf/0.1/quot; xmlns:dc=quot;http://purl.org/dc/elements/1.1/quot; xml:lang=quot;enquot;> <head> <title>John's Home Page</title> <base href=quot;http://example.org/john-d/quot; /> <meta property=quot;dc:creatorquot; content=quot;Jonathan Doequot; /> </head> <body> <h1>John's Home Page</h1> <p>My name is <span property=quot;foaf:nickquot;>John D</span> and I like <a href=quot;http://www.neubauten.org/quot; rel=quot;foaf:interestquot; xml:lang=quot;dequot;>Einstürzende Neubauten</a>.</p> <p>My <span rel=quot;foaf:interestquot; resource=quot;urn:ISBN:0752820907quot;>favorite book</span> is the inspiring <span about=quot;urn:ISBN:0752820907quot;><cite property=quot;dc:titlequot;>Weaving the Web</cite> by <span property=quot;dc:authorquot;>Tim Berners-Lee</span></span>.</p> </body> </html>
  • 22. RDFa <?xml version=quot;1.0quot; encoding=quot;UTF-8quot;?> <!DOCTYPE html PUBLIC quot;-//W3C//DTD XHTML+RDFa 1.0//ENquot; quot;http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtdquot;> <html xmlns=quot;http://www.w3.org/1999/xhtmlquot; xmlns:foaf=quot;http://xmlns.com/foaf/0.1/quot; xmlns:dc=quot;http://purl.org/dc/elements/1.1/quot; xml:lang=quot;enquot;> <head> <title>John's Home Page</title> <base href=quot;http://example.org/john-d/quot; /> <meta property=quot;dc:creatorquot; content=quot;Jonathan Doequot; /> </head> <body> <h1>John's Home Page</h1> <p>My name is <span property=quot;foaf:nickquot;>John D</span> and I like <a href=quot;http://www.neubauten.org/quot; rel=quot;foaf:interestquot; xml:lang=quot;dequot;>Einstürzende Neubauten</a>.</p> <p>My <span rel=quot;foaf:interestquot; resource=quot;urn:ISBN:0752820907quot;>favorite book</span> is the inspiring <span about=quot;urn:ISBN:0752820907quot;><cite property=quot;dc:titlequot;>Weaving the Web</cite> by <span property=quot;dc:authorquot;>Tim Berners-Lee</span></span>.</p> </body> </html>
  • 23. RDFa <?xml version=quot;1.0quot; encoding=quot;UTF-8quot;?> <!DOCTYPE html PUBLIC quot;-//W3C//DTD XHTML+RDFa 1.0//ENquot; quot;http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtdquot;> <html xmlns=quot;http://www.w3.org/1999/xhtmlquot; xmlns:foaf=quot;http://xmlns.com/foaf/0.1/quot; xmlns:dc=quot;http://purl.org/dc/elements/1.1/quot; xml:lang=quot;enquot;> <head> <title>John's Home Page</title> <base href=quot;http://example.org/john-d/quot; /> <meta property=quot;dc:creatorquot; content=quot;Jonathan Doequot; /> </head> <body> <h1>John's Home Page</h1> <p>My name is <span property=quot;foaf:nickquot;>John D</span> and I like <a href=quot;http://www.neubauten.org/quot; rel=quot;foaf:interestquot; xml:lang=quot;dequot;>Einstürzende Neubauten</a>.</p> <p>My <span rel=quot;foaf:interestquot; resource=quot;urn:ISBN:0752820907quot;>favorite book</span> is the inspiring <span about=quot;urn:ISBN:0752820907quot;><cite property=quot;dc:titlequot;>Weaving the Web</cite> by <span property=quot;dc:authorquot;>Tim Berners-Lee</span></span>.</p> </body> </html>
  • 24. RDFa <?xml version=quot;1.0quot; encoding=quot;UTF-8quot;?> <!DOCTYPE html PUBLIC quot;-//W3C//DTD XHTML+RDFa 1.0//ENquot; quot;http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtdquot;> <html xmlns=quot;http://www.w3.org/1999/xhtmlquot; xmlns:foaf=quot;http://xmlns.com/foaf/0.1/quot; xmlns:dc=quot;http://purl.org/dc/elements/1.1/quot; xml:lang=quot;enquot;> <head> <title>John's Home Page</title> <base href=quot;http://example.org/john-d/quot; /> <meta property=quot;dc:creatorquot; content=quot;Jonathan Doequot; /> </head> <body> <h1>John's Home Page</h1> <p>My name is <span property=quot;foaf:nickquot;>John D</span> and I like <a href=quot;http://www.neubauten.org/quot; rel=quot;foaf:interestquot; xml:lang=quot;dequot;>Einstürzende Neubauten</a>.</p> <p>My <span rel=quot;foaf:interestquot; resource=quot;urn:ISBN:0752820907quot;>favorite book</span> is the inspiring <span about=quot;urn:ISBN:0752820907quot;><cite property=quot;dc:titlequot;>Weaving the Web</cite> by <span property=quot;dc:authorquot;>Tim Berners-Lee</span></span>.</p> </body> </html>
  • 29.
  • 31. Fotografije - pod Creative Commons licenco http://flickr.com/photos/ecstaticist/1340787730/ http://flickr.com/photos/ecstaticist/289169665/ http://flickr.com/photos/54912323@N00/348737182/ http://flickr.com/photos/eqqman/142532682/ http://flickr.com/photos/patrick_q/109986712/ http://flickr.com/photos/martin_heigan/1224949772/ http://flickr.com/photos/baboon/3946055/ http://flickr.com/photos/89376128@N00/1130033952/ http://flickr.com/photos/gustavog/34150783/ http://flickr.com/photos/amigurumikingdom/161932998/ http://flickr.com/photos/bepster/80025887/ http://flickr.com/photos/cesarcabrera/396501977/ http://flickr.com/photos/ecstaticist/1845111090/