SlideShare una empresa de Scribd logo
1 de 18
Mustafa Jarrar
Lecture Notes, Web Data Management (MCOM7348)
University of Birzeit, Palestine
1st Semester, 2013

Practical guide to

RDFa
Dr. Mustafa Jarrar
University of Birzeit
mjarrar@birzeit.edu
www.jarrar.info
Jarrar © 2013

1
Watch this lecture and download the slides from
http://jarrar-courses.blogspot.com/2013/11/web-data-management.html

Jarrar © 2013

2
RDFa
•  Bridges the gap between the Web of Documents and the
Web of Data (Web 3.0).
•  Makes XHTML web pages structured data (by embedding
RDF triples inside XHTML).
•  i.e., using RDFa we build small RDF graphs and embed them
inside XHTML pages.

Jarrar © 2013

3
RDFa
•  As stated by Google Webmasters guide, RDFa can be
roughly viewed as a way to label content to describe a
specific type of information, such as a restaurant review,
an event, a person, or a product listing.
•  These information types are called entities or items. Each
entity has a number of properties. For example, a Person
has the properties name, address, job title, company, and
email address.
•  In general, RDFa uses simple attributes in XHTML tags
(often <span> or <div>) to assign brief and descriptive
names to entities and properties.
Jarrar © 2013

4
Example 1

Jarrar © 2013

5
Example 1

Jarrar © 2013

6
Example 2
Consider this HTML block:!
<div> !
!

My name is George Mousa. My friends call me Geno. I live in
Nablus, Palestine. I work as an engineer at Birzeit
University.!
!

</div>!
!
Annotate the HTML block above with RDFa:
<div xmlns:v="http://rdf.data-vocabulary.org/#"
typeof="v:Person">!
!

My name is <span property="v:name"> George Mousa </span>. !
My friends call me <span property="v:nickname"> Geno </span>. !
I live in Nablus, Palestine. !
I work as an engineer at <span property="v:affiliation">
Birzeit University </span>.!
!

</div>!
!
Jarrar © 2013

7
Example 2
<div xmlns:v="http://rdf.data-vocabulary.org/#" typeof="v:Person”>!
My name is <span property="v:name"> George Mousa </span>. !
My friends call me <span property="v:nickname"> Geno </span>. !
I live in Nablus, Palestine. !
I work as an engineer at <span property="v:affiliation"> Birzeit University </
span>.!
</div>!

•  The example begins with a namespace declaration using xmlns. This
indicates the namespace where the vocabulary is specified.
•  Also on the first line, typeof="v:Person" indicates that the markedup content represents a Person.
•  Each property of the person (such as the name and nickname) is
labeled using property.
•  To indicate a URL, use rel instead of property. Consider adding
the following to our example inside the Person div
My home page is: <a href="http://www.example.com"
rel="v:url"> www.example.com </a>.!

• 

"rel" is used to convey the relationship between two entities—in this case, a
Person entity and a webpage entity. !
Jarrar © 2013

8
Example 2
In our example, we have addressing information about George Mousa.
<div>

... I live in Nablus, Palestine. I work as an engineer ... </div>!

We use nesting. Nesting is when one information type includes the other.
In this case, we want to include George’s Address information
(typeof="v:Address") in the typeof="v:Person“ entity.
Here, we use rel to indicate a relationship between George (the entity v:Person)
and his address (the entity v:Address).
!

<div xmlns:v="http://rdf.data-vocabulary.org/#" typeof="v:Person">!
My name is <span property="v:name"> George Mousa </span>. !
My friends call me <span property="v:nickname"> Geno </span>. !
I live in!
<span rel="v:Address">!
<span typeof="v:Address"> !
<span property="v:city">Nablus</span>, !
<span property="v:country">Palestine</span>!
</span>!
</span>.!
I work as an engineer at <span property="v:affiliation"> Birzeit University
</span>.!
</div>
Jarrar © 2013

9
Let’s draw a graph of our example!

v:Person
e
v:nam

v:nickname

“George Mousa”
“Geno”
type

Of

v:city

v:Address
“Nablus”

“Palestine”
“Birzeit University”

Jarrar © 2013

10
RDFa Distiller

Jarrar © 2013

11
Jobs.ps Use Case
Suppose webpages of announcing job offers are written in
RDFa, then www.jobs.ps can crawl this data automatically.

Page 1

Page n
Jarrar © 2013

12
RDFa
Practical Session

Jarrar © 2013

13
Description
Given two XHTML files, people.html and projects.html, each
student must embed both documents with RDFa. Consider
the following when doing the exercise:
-  Both documents are validated XHTML documents. We have validated
them using the standard W3C Validator: http://validator.w3.org/
-  Students must use standard known ontologies when annotating the
documents, such as FOAF, Dublin Core, etc.
-  Students must validate their work using the standard W3C validator.
-  Each student must expect to present and discuss his/her work at class.
-  Final delivery must include links of the two RDFa-annotated documents.

PalGov © 2013

14
Projects.html
Copy and Paste this code into Notepad++
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Sina Institute - Projects</title>
</head>
<body>
<div id="box" style="text-align: center;"><strong><span class="largeFontSpan">[ </span><a title="Projects" href="#Active-Projects"><span class="largeFontSpan">Active Projects</span></a> | <a title="Past Projects" href="#Past-Projects">
<span class="largeFontSpan">Past Projects</span><span style="color: #ffffff;"> </span></a><span class="largeFontSpan"> ]</span></strong></div>
<h1 id="Active-Projects">Active Projects</h1>
<table style="height: 786px;" width="475">
<tbody>
<tr>
<td><img class="alignleft size-full wp-image-350" title="PalGov " src="http://localhost/sina/wp-content/uploads/2011/02/eGovSeer.jpg" alt="GovSeer" width="132" height="100" /></td>
<td style="vertical-align: middle;"><strong>GovSeer - Interoperability of e-Governmental Services</strong>
Page:<span><a href="http://sites.birzeit.edu/comp/GovSeer/">http://sites.birzeit.edu/comp/GovSeer/</a></span></td>
</tr>
<tr>
<td><img class="alignleft size-full wp-image-350" title="PalGov " src="http://localhost/sina/wp-content/uploads/2011/08/palgove_logo_160x76.png" alt="The Palestinian e-government academy" width="132" /></td>
<td style="vertical-align: middle;"><strong>PalGov - e-Government Lifelong Learning Consortium</strong>
Page:<span><a href="http://sites.birzeit.edu/comp/PalGov/">http://sites.birzeit.edu/comp/PalGov/</a></span></td>
</tr>
<tr>
<td><img class="alignleft size-full wp-image-337" title="Arabic Ontololgy" src="http://localhost/sina/wp-content/uploads/2011/02/arabicOntologyLogoLowResolution.jpg" alt="Arabic Ontololgy" width="133" height="126" /></td>
<td style="vertical-align: middle;"><strong>Arabic Ontology
</strong>Page:<span><a href="http://sites.birzeit.edu/comp/ArabicOntology/">http://sites.birzeit.edu/comp/ArabicOntology/</a></span></td>
</tr>
<tr>
<td><img class="alignleft size-full wp-image-352" title="Wojood" src="http://localhost/sina/wp-content/uploads/2010/09/jood.png" alt="" width="125" height="97" /></td>
<td style="vertical-align: middle;"><strong> Wojood
</strong>Page: <a href="http://localhost/sina/wojood/" target="_blank">http://localhost/sina/wojood/</a></td>
</tr>
<tr>
<td><img class="alignleft size-full wp-image-352" title="google" src="http://localhost/sina/wp-content/uploads/2010/09/google1.png" alt="" width="125" height="97" /></td>
<td style="vertical-align: middle;"><strong>A Suite of Automated Tools for Efficient Management and Search in Web-based Arabic Documents
</strong>Page:<span><a href="http://localhost/sina/SATEMSAD/">http://localhost/sina/SATEMSAD/</a></span></td>
</tr>
<tr>
<td><img class="alignleft size-full wp-image-357" title="MashQL" src="http://localhost/sina/wp-content/uploads/2010/09/mashql2.png" alt="MashQL" width="140" height="64" /></td>
<td style="vertical-align: middle;"><strong>MashQL: A novel approach for querying the Data Web</strong>
Page:<span><a href="http://sites.birzeit.edu/comp/mashql/">http://sites.birzeit.edu/comp/mashql/</a></span></td>
</tr>
<tr>
<td><img class="alignleft size-full wp-image-355" title="Mobile Information Technology for the Visually Impaired " src="http://localhost/sina/wp-content/uploads/2010/09/mitvi.png" alt="mgad" width="136" height="73" /></td>
<td style="vertical-align: middle;"><strong>Mobile Information Technology for the Visually Impaired
</strong>Page:<span><a href="http://localhost/sina/MITVI/" target="_blank">http://localhost/sina/MITVI/</a></span></td>
</tr>
</tbody>
</table>
<br class="spacer" />
<h1 id="Past-Projects">Past Projects</h1>
<table style="height: 86px;" width="473">
<tbody>
<tr>
<td><img class="alignleft size-full wp-image-353" title="Mobile Information Technology for the Visually Impaired " src="http://localhost/sina/wp-content/uploads/2010/09/mgad.png" alt="mgad" width="133" height="62" /></td>
<td style="vertical-align: middle;"><strong>Model Generation for Selected Applications</strong>
Page:<span><a href="http://localhost/sina/ModelGeneration/" target="_blank">http://localhost/sina/ModelGeneration/</a></span></td>
</tr>
</tbody>
</table>
</body>
</html>

PalGov © 2013

15
People.html
Copy and Paste this code into Notepad++
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Sina Institute - People</title>
</head>
<body>
<div id="box" style="text-align: center;"><strong><span class="largeFontSpan">[ </span><a title="Current Members" href="#Current"><span class="largeFontSpan">Current Members</span></a> |
<a title="Collaborators" href="#Collaborators"><span class="largeFontSpan">Collaborators</span></a> | <a title="Former Members" href="#Former"><span class="largeFontSpan">Former Members</span></a>
<span class="largeFontSpan"> ]</span></strong></div>
<h1 id="Current">Current Members</h1>
<table style="height: 149px;" width="617">
<tbody>
<tr>
<td style="vertical-align: middle; width: 109px; height: 160px;"><img class="alignnone" title="Dr. Mustafa Jarrar" src="http://localhost/sina/wp-content/uploads/2011/02/Jarrar.png" alt="Dr. Mustafa Jarrar" width="105" height="125" /></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160"><strong>Dr. Mustafa Jarrar</strong>
<em>OnTo Group Director</em>
<a href="mailto:mjarrar@birzeit.edu">mjarrar@birzeit.edu </a>
<a href="http://localhost/sina/mjarrar/" target="_blank">localhost/sina/mjarrar/</a></td>
<td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignnone" title="Dr. Adnan Yahya" src="http://localhost/sina/wp-content/uploads/2011/02/yahya.png" alt="Dr. Adnan Yahya" width="105" height="125" /></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160"><strong>Dr. Adnan Yahya</strong>
<em>ALTIR Group Director</em>
<a href="mailto:yahya@birzeit.edu">yahya@birzeit.edu </a>
<a href="http://localhost/sina/ayahya/" target="_blank">localhost/sina/ayahya/</a></td>
</tr>
</tbody>
</table>
<!-- ******************************************************* -->
<table style="height: 147px;" width="603">
<tbody>
<tr>
<td style="vertical-align: middle; width: 220px; height: 160px;"><strong>Secretary</strong>:
Rawan Taha
<a href="mailto:rntaha@birzeit.edu">rntaha@birzeit.edu </a>
Tel: +972 2 2982917</td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="130" height="160"></td>
<td style="vertical-align: middle; width: 130px; height: 160px;"></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160"></td>
</tr>
</tbody>
</table>
<!-- ******************************************** -->
<hr /><!-- ******************************************** -->
<table style="height: 149px;" width="617">
<tbody>
<tr>
<td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignleft size-full wp-image-354" title="Majd Al-Ashhab" src="http://localhost/sina/wp-content/uploads/2011/02/DSC079601.png"
alt="Majd Al-Ashhab" width="105" height="125" /></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Majd Al-Ashhab
<a href="mailto:mashhab@birzeit.edu">mashhab@birzeit.edu </a>
<a href="http://localhost/sina/mashhab/">localhost/sina/mashhab/</a></td>
<td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignnone" title="Ali Salhi" src="http://localhost/sina/wp-content/uploads/2011/02/a11.png" alt="Ali Salhi" width="105" height="125" /></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Ali Salhi
<a href="mailto:asalhi@birzeit.edu">asalhi@birzeit.edu</a>
<a href="http://localhost/sina/asalhi/">localhost/sina/asalhi/</a></td>
</tr>
</tbody>
</table>

PalGov © 2013

16
People.html – continued
Copy and Paste this code into Notepad++
<!-- *********************************************************** -->
<table style="height: 149px;" width="617">
<tbody>
<tr>
<td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignleft size-full wp-image-1124" title="antonPhoto" src="http://localhost/sina/wp-content/uploads/2011/02/antonPhoto.png" alt="" width="105" height="125" /></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Anton Deik
<a href="mailto:anton.deik@gmail.com">anton.deik@gmail.com</a>
<a href="http://localhost/sina/adeik/">localhost/sina/adeik/</a></td>
<td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignnone" title="Bilal Farraj" src="http://localhost/sina/wp-content/uploads/2011/02/STB9565.png" alt="Bilal Farraj" width="105" height="125" /></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Bilal Farraj
<a href="mailto:bfarraj@gmail.com">bfarraj@gmail.com </a>
<a href="http://localhost/sina/bfarraj/">localhost/sina/bfarraj/</a></td>
</tr>
</tbody>
</table>
<!-- ************************************************************** -->
<table style="height: 149px;" width="617">
<tbody>
<tr>
<td style="vertical-align: middle; width: 130px; height: 160px;"><img title="Ala' Hawash" src="../wp-content/uploads/2011/02/Ala.png" alt="Ala' Hawash" width="105" height="125" /></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Ala' Hawash
<a href="mailto:ala.hawash@gmail.com">ala.hawash@gmail.com</a>
<a href="http://localhost/sina/ahawash/">localhost/sina/ahawash/</a></td>
<td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignnone" title="Rana Rishmawi" src="http://localhost/sina/wp-content/uploads/2011/03/Rana.png" alt="Rana Rishmawi" width="105" height="125" /></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Rana Rishmawi
<a href="mailto:rgr.4.12@gmail.com">rgr.4.12@gmail.com </a>
<a href="http://localhost/sina/rrishmawi/">localhost/sina/rrishmawi/</a></td>
</tr>
</tbody>
</table>
<table style="height: 149px;" width="617">
<tbody>
<tr>
<td style="vertical-align: middle; width: 130px; height: 160px;"><img class="size-full wp-image-601 alignleft" title="Hiba Shaheen" src="http://localhost/sina/wp-content/uploads/2011/02/HibaShaheen.png" alt="" width="105"
height="125" /></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Hiba Shaheen
<a href="mailto:shaheen.hiba@gmail.com ">shaheen.hiba@gmail.com </a>
<a href="http://localhost/sina/hshaheen/">localhost/sina/hshaheen/</a></td>
<td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignnone" title="Rami Khaleel" src="../wp-content/uploads/2011/02/rami_khaleel.png" alt="Rami Khaleel" width="105" height="125" /></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Rami Khaleel
<a href="mailto:ramikhl@yahoo.com">ramikhl@yahoo.com </a>
<a href="http://localhost/sina/rkhaleel/">localhost/sina/rkhaleel/</a></td>
</tr>
</tbody>
</table>
<!-- **********************************************-->
<table style="height: 149px;" width="617">
<tbody>
<tr>
<td style="vertical-align: middle; width: 130px; height: 160px;"><img title="Mohammed Melhem" src="http://localhost/sina/wp-content/uploads/2011/02/melhem.png" alt="Mohammed Melhem" width="105" height="125" /></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Mohammed Melhem
<a href="mailto:4mmelhem@gmail.com"> 4mmelhem@gmail.com </a>
<a href="http://localhost/sina/mmelhem/" target="_blank">localhost/sina/mmelhem/</a></td>
<td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignnone" title="Hanya Radwan" src="http://localhost/sina/wp-content/uploads/2011/02/hanya.png" alt="Hanya Radwan" width="105" height="125" /></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Hanya Radwan
<a href="mailto:hanya.radwan2010@gmail.com">hanya.radwan2010@gmail.com </a>
<a href="http://localhost/sina/hradwan/">localhost/sina/hradwan/</a></td>
</tr>
</tbody>
</table>
<!-- **********************************************-->

PalGov © 2013

17
People.html – continued
Copy and Paste this code into Notepad++
<table style="height: 149px;" width="617">
<tbody>
<tr>
<td style="vertical-align: middle; width: 130px; height: 160px;"><img title="Nafiz Qasim" src="http://localhost/sina/wp-content/uploads/2011/02/
nafiz.png" alt="Nafiz Qasim" width="105" height="125" /></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Nafiz Qasim
<a href="mailto:nafizqasim@gmail.com">nafizqasim@gmail.com </a>
<a href="http://localhost/sina/nqasim/">localhost/sina/nqasim/</a></td>
<td style="vertical-align: middle; width: 130px; height: 160px;"></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160"></td>
</tr>
</tbody>
</table>
<!-- ********************************************************************** ************************************************************************* -->
<br class="spacer" />
<h1 id="Collaborators">Collaborators</h1>
<ul>
<li><a href="mailto:wfasha@birzeit.edu">Wasim Abu Fasha</a></li>
<li><a href="mailto:lshamieh@birzeit.edu ">Luna Shamieh</a></li>
<li><a href="mailto:jamal@birzeit.edu">Jamal Daher</a></li>
</ul>
<br class="spacer" />
<h1 id="Former">Former Members</h1>
<ul>
<li><a href="mailto:samara.1050074@gmail.com">Hamam Samara</a></li>
<li><a href="mailto:smr.ayesh@gmail.com">Samar Aish</a></li>
<li><a href="mailto:mrbadaw@gmail.com">Muath Badawi</a></li>
</ul>
</body>
</html>

PalGov © 2013

18

Más contenido relacionado

La actualidad más candente

Resource description framework
Resource description frameworkResource description framework
Resource description frameworkStanley Wang
 
Understanding RDF: the Resource Description Framework in Context (1999)
Understanding RDF: the Resource Description Framework in Context  (1999)Understanding RDF: the Resource Description Framework in Context  (1999)
Understanding RDF: the Resource Description Framework in Context (1999)Dan Brickley
 
Introduction To RDF and RDFS
Introduction To RDF and RDFSIntroduction To RDF and RDFS
Introduction To RDF and RDFSNilesh Wagmare
 
Linked data HHS 2015
Linked data HHS 2015Linked data HHS 2015
Linked data HHS 2015Cason Snow
 
Resource description framework
Resource description frameworkResource description framework
Resource description frameworkhozifa1010
 
Linked Data Tutorial
Linked Data TutorialLinked Data Tutorial
Linked Data TutorialSören Auer
 
Sparql a simple knowledge query
Sparql  a simple knowledge querySparql  a simple knowledge query
Sparql a simple knowledge queryStanley Wang
 
Introduction to RDF & SPARQL
Introduction to RDF & SPARQLIntroduction to RDF & SPARQL
Introduction to RDF & SPARQLOpen Data Support
 
"RDFa - what, why and how?" by Mike Hewett and Shamod Lacoul
"RDFa - what, why and how?" by Mike Hewett and Shamod Lacoul"RDFa - what, why and how?" by Mike Hewett and Shamod Lacoul
"RDFa - what, why and how?" by Mike Hewett and Shamod LacoulShamod Lacoul
 
RDFa: introduction, comparison with microdata and microformats and how to use it
RDFa: introduction, comparison with microdata and microformats and how to use itRDFa: introduction, comparison with microdata and microformats and how to use it
RDFa: introduction, comparison with microdata and microformats and how to use itJose Luis Lopez Pino
 
IR and DSpace - International Seminar, Dhaka University
IR and DSpace - International Seminar, Dhaka UniversityIR and DSpace - International Seminar, Dhaka University
IR and DSpace - International Seminar, Dhaka UniversityMd. Zahid Hossain Shoeb
 
Ontologies and semantic web
Ontologies and semantic webOntologies and semantic web
Ontologies and semantic webStanley Wang
 
The Semantic Web #10 - SPARQL
The Semantic Web #10 - SPARQLThe Semantic Web #10 - SPARQL
The Semantic Web #10 - SPARQLMyungjin Lee
 
Jarrar: Web 2.0 Data Mashups
Jarrar: Web 2.0 Data Mashups Jarrar: Web 2.0 Data Mashups
Jarrar: Web 2.0 Data Mashups Mustafa Jarrar
 
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 DataGabriela Agustini
 
Usage of Linked Data: Introduction and Application Scenarios
Usage of Linked Data: Introduction and Application ScenariosUsage of Linked Data: Introduction and Application Scenarios
Usage of Linked Data: Introduction and Application ScenariosEUCLID project
 
2007 08 26 Dc Keynote Keizer
2007 08 26 Dc Keynote Keizer2007 08 26 Dc Keynote Keizer
2007 08 26 Dc Keynote KeizerJohannes Keizer
 
Library orientation: Resources and Finding overview
Library orientation: Resources  and  Finding overviewLibrary orientation: Resources  and  Finding overview
Library orientation: Resources and Finding overviewNur Ahammad
 
The Semantic Web #9 - Web Ontology Language (OWL)
The Semantic Web #9 - Web Ontology Language (OWL)The Semantic Web #9 - Web Ontology Language (OWL)
The Semantic Web #9 - Web Ontology Language (OWL)Myungjin Lee
 
Jarrar: RDF Stores -Challenges and Solutions
Jarrar: RDF Stores -Challenges and SolutionsJarrar: RDF Stores -Challenges and Solutions
Jarrar: RDF Stores -Challenges and SolutionsMustafa Jarrar
 

La actualidad más candente (20)

Resource description framework
Resource description frameworkResource description framework
Resource description framework
 
Understanding RDF: the Resource Description Framework in Context (1999)
Understanding RDF: the Resource Description Framework in Context  (1999)Understanding RDF: the Resource Description Framework in Context  (1999)
Understanding RDF: the Resource Description Framework in Context (1999)
 
Introduction To RDF and RDFS
Introduction To RDF and RDFSIntroduction To RDF and RDFS
Introduction To RDF and RDFS
 
Linked data HHS 2015
Linked data HHS 2015Linked data HHS 2015
Linked data HHS 2015
 
Resource description framework
Resource description frameworkResource description framework
Resource description framework
 
Linked Data Tutorial
Linked Data TutorialLinked Data Tutorial
Linked Data Tutorial
 
Sparql a simple knowledge query
Sparql  a simple knowledge querySparql  a simple knowledge query
Sparql a simple knowledge query
 
Introduction to RDF & SPARQL
Introduction to RDF & SPARQLIntroduction to RDF & SPARQL
Introduction to RDF & SPARQL
 
"RDFa - what, why and how?" by Mike Hewett and Shamod Lacoul
"RDFa - what, why and how?" by Mike Hewett and Shamod Lacoul"RDFa - what, why and how?" by Mike Hewett and Shamod Lacoul
"RDFa - what, why and how?" by Mike Hewett and Shamod Lacoul
 
RDFa: introduction, comparison with microdata and microformats and how to use it
RDFa: introduction, comparison with microdata and microformats and how to use itRDFa: introduction, comparison with microdata and microformats and how to use it
RDFa: introduction, comparison with microdata and microformats and how to use it
 
IR and DSpace - International Seminar, Dhaka University
IR and DSpace - International Seminar, Dhaka UniversityIR and DSpace - International Seminar, Dhaka University
IR and DSpace - International Seminar, Dhaka University
 
Ontologies and semantic web
Ontologies and semantic webOntologies and semantic web
Ontologies and semantic web
 
The Semantic Web #10 - SPARQL
The Semantic Web #10 - SPARQLThe Semantic Web #10 - SPARQL
The Semantic Web #10 - SPARQL
 
Jarrar: Web 2.0 Data Mashups
Jarrar: Web 2.0 Data Mashups Jarrar: Web 2.0 Data Mashups
Jarrar: Web 2.0 Data Mashups
 
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
 
Usage of Linked Data: Introduction and Application Scenarios
Usage of Linked Data: Introduction and Application ScenariosUsage of Linked Data: Introduction and Application Scenarios
Usage of Linked Data: Introduction and Application Scenarios
 
2007 08 26 Dc Keynote Keizer
2007 08 26 Dc Keynote Keizer2007 08 26 Dc Keynote Keizer
2007 08 26 Dc Keynote Keizer
 
Library orientation: Resources and Finding overview
Library orientation: Resources  and  Finding overviewLibrary orientation: Resources  and  Finding overview
Library orientation: Resources and Finding overview
 
The Semantic Web #9 - Web Ontology Language (OWL)
The Semantic Web #9 - Web Ontology Language (OWL)The Semantic Web #9 - Web Ontology Language (OWL)
The Semantic Web #9 - Web Ontology Language (OWL)
 
Jarrar: RDF Stores -Challenges and Solutions
Jarrar: RDF Stores -Challenges and SolutionsJarrar: RDF Stores -Challenges and Solutions
Jarrar: RDF Stores -Challenges and Solutions
 

Destacado

Jarrar: RDF Stores: Challenges and Solutions
Jarrar: RDF Stores: Challenges and SolutionsJarrar: RDF Stores: Challenges and Solutions
Jarrar: RDF Stores: Challenges and SolutionsMustafa Jarrar
 
Jarrar: OWL (Web Ontology Language)
Jarrar: OWL (Web Ontology Language)Jarrar: OWL (Web Ontology Language)
Jarrar: OWL (Web Ontology Language)Mustafa Jarrar
 
Jarrar: RDFS ( RDF Schema)
Jarrar: RDFS ( RDF Schema) Jarrar: RDFS ( RDF Schema)
Jarrar: RDFS ( RDF Schema) Mustafa Jarrar
 
Jarrar: Architectural Solutions in Data Integration
Jarrar: Architectural Solutions in Data IntegrationJarrar: Architectural Solutions in Data Integration
Jarrar: Architectural Solutions in Data IntegrationMustafa Jarrar
 
Jarrar: Web 2 Data Mashups
Jarrar: Web 2 Data MashupsJarrar: Web 2 Data Mashups
Jarrar: Web 2 Data MashupsMustafa Jarrar
 
Jarrar: Knowledge Engineering- Course Outline
Jarrar: Knowledge Engineering- Course OutlineJarrar: Knowledge Engineering- Course Outline
Jarrar: Knowledge Engineering- Course OutlineMustafa Jarrar
 
Jarrar: Subtype Relations and Constraints
Jarrar: Subtype Relations and ConstraintsJarrar: Subtype Relations and Constraints
Jarrar: Subtype Relations and ConstraintsMustafa Jarrar
 
Jarrar: Data Integration and Fusion using RDF
Jarrar: Data Integration and Fusion using RDFJarrar: Data Integration and Fusion using RDF
Jarrar: Data Integration and Fusion using RDFMustafa Jarrar
 
Jarrar: Sparql Project
Jarrar: Sparql ProjectJarrar: Sparql Project
Jarrar: Sparql ProjectMustafa Jarrar
 
Jarrar: Introduction to Data Integration
Jarrar: Introduction to Data IntegrationJarrar: Introduction to Data Integration
Jarrar: Introduction to Data IntegrationMustafa Jarrar
 
Jarrar: The Next Generation of the Web 3.0: The Semantic Web Vesion
Jarrar: The Next Generation of the Web 3.0: The Semantic Web VesionJarrar: The Next Generation of the Web 3.0: The Semantic Web Vesion
Jarrar: The Next Generation of the Web 3.0: The Semantic Web VesionMustafa Jarrar
 
Jarrar: OWL -Web Ontology Language
Jarrar: OWL -Web Ontology LanguageJarrar: OWL -Web Ontology Language
Jarrar: OWL -Web Ontology LanguageMustafa Jarrar
 
Jarrar: The Next Generation of the Web 3.0: The Semantic Web
Jarrar: The Next Generation of the Web 3.0: The Semantic WebJarrar: The Next Generation of the Web 3.0: The Semantic Web
Jarrar: The Next Generation of the Web 3.0: The Semantic WebMustafa Jarrar
 
Jarrar: Conceptual Schema Design Steps
Jarrar: Conceptual Schema Design Steps Jarrar: Conceptual Schema Design Steps
Jarrar: Conceptual Schema Design Steps Mustafa Jarrar
 
BPMN 2.0 Descriptive Constructs
BPMN 2.0 Descriptive Constructs  BPMN 2.0 Descriptive Constructs
BPMN 2.0 Descriptive Constructs Mustafa Jarrar
 
Jarrar: Data Schema Integration
Jarrar: Data Schema IntegrationJarrar: Data Schema Integration
Jarrar: Data Schema IntegrationMustafa Jarrar
 
Business Process Implementation
Business Process ImplementationBusiness Process Implementation
Business Process ImplementationMustafa Jarrar
 
Business Process Design and Re-engineering
Business Process Design and Re-engineeringBusiness Process Design and Re-engineering
Business Process Design and Re-engineeringMustafa Jarrar
 

Destacado (20)

Jarrar: Zinnar
Jarrar: ZinnarJarrar: Zinnar
Jarrar: Zinnar
 
Jarrar: RDF Stores: Challenges and Solutions
Jarrar: RDF Stores: Challenges and SolutionsJarrar: RDF Stores: Challenges and Solutions
Jarrar: RDF Stores: Challenges and Solutions
 
Jarrar: OWL (Web Ontology Language)
Jarrar: OWL (Web Ontology Language)Jarrar: OWL (Web Ontology Language)
Jarrar: OWL (Web Ontology Language)
 
Jarrar: RDFS ( RDF Schema)
Jarrar: RDFS ( RDF Schema) Jarrar: RDFS ( RDF Schema)
Jarrar: RDFS ( RDF Schema)
 
Jarrar: Architectural Solutions in Data Integration
Jarrar: Architectural Solutions in Data IntegrationJarrar: Architectural Solutions in Data Integration
Jarrar: Architectural Solutions in Data Integration
 
Jarrar: Web 2 Data Mashups
Jarrar: Web 2 Data MashupsJarrar: Web 2 Data Mashups
Jarrar: Web 2 Data Mashups
 
Jarrar: Knowledge Engineering- Course Outline
Jarrar: Knowledge Engineering- Course OutlineJarrar: Knowledge Engineering- Course Outline
Jarrar: Knowledge Engineering- Course Outline
 
Jarrar: Subtype Relations and Constraints
Jarrar: Subtype Relations and ConstraintsJarrar: Subtype Relations and Constraints
Jarrar: Subtype Relations and Constraints
 
Jarrar: Data Integration and Fusion using RDF
Jarrar: Data Integration and Fusion using RDFJarrar: Data Integration and Fusion using RDF
Jarrar: Data Integration and Fusion using RDF
 
Jarrar: Linked Data
Jarrar: Linked DataJarrar: Linked Data
Jarrar: Linked Data
 
Jarrar: Sparql Project
Jarrar: Sparql ProjectJarrar: Sparql Project
Jarrar: Sparql Project
 
Jarrar: Introduction to Data Integration
Jarrar: Introduction to Data IntegrationJarrar: Introduction to Data Integration
Jarrar: Introduction to Data Integration
 
Jarrar: The Next Generation of the Web 3.0: The Semantic Web Vesion
Jarrar: The Next Generation of the Web 3.0: The Semantic Web VesionJarrar: The Next Generation of the Web 3.0: The Semantic Web Vesion
Jarrar: The Next Generation of the Web 3.0: The Semantic Web Vesion
 
Jarrar: OWL -Web Ontology Language
Jarrar: OWL -Web Ontology LanguageJarrar: OWL -Web Ontology Language
Jarrar: OWL -Web Ontology Language
 
Jarrar: The Next Generation of the Web 3.0: The Semantic Web
Jarrar: The Next Generation of the Web 3.0: The Semantic WebJarrar: The Next Generation of the Web 3.0: The Semantic Web
Jarrar: The Next Generation of the Web 3.0: The Semantic Web
 
Jarrar: Conceptual Schema Design Steps
Jarrar: Conceptual Schema Design Steps Jarrar: Conceptual Schema Design Steps
Jarrar: Conceptual Schema Design Steps
 
BPMN 2.0 Descriptive Constructs
BPMN 2.0 Descriptive Constructs  BPMN 2.0 Descriptive Constructs
BPMN 2.0 Descriptive Constructs
 
Jarrar: Data Schema Integration
Jarrar: Data Schema IntegrationJarrar: Data Schema Integration
Jarrar: Data Schema Integration
 
Business Process Implementation
Business Process ImplementationBusiness Process Implementation
Business Process Implementation
 
Business Process Design and Re-engineering
Business Process Design and Re-engineeringBusiness Process Design and Re-engineering
Business Process Design and Re-engineering
 

Similar a Jarrar: RDFa

Microdata semantic-extend
Microdata semantic-extendMicrodata semantic-extend
Microdata semantic-extendSeek 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 APIsJosef Petrák
 
RDFa in ostala spletna semantika
RDFa in ostala spletna semantikaRDFa in ostala spletna semantika
RDFa in ostala spletna semantikaJure Cuhalev
 
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 webshellac
 
Semantic web support for POSH
Semantic web support for POSHSemantic web support for POSH
Semantic web support for POSHDinu Suman
 
The Server Side of Responsive Web Design
The Server Side of Responsive Web DesignThe Server Side of Responsive Web Design
The Server Side of Responsive Web DesignDave Olsen
 
RDFa: an introduction
RDFa: an introductionRDFa: an introduction
RDFa: an introductionKai Li
 
Java Script Based Client Server Webapps 2
Java Script Based Client Server Webapps 2Java Script Based Client Server Webapps 2
Java Script Based Client Server Webapps 2kriszyp
 
Structured SEO Data Overview and How To
Structured SEO Data Overview and How ToStructured SEO Data Overview and How To
Structured SEO Data Overview and How Tocgmonroe
 
Understanding the Standards Gap
Understanding the Standards GapUnderstanding the Standards Gap
Understanding the Standards GapDan Brickley
 
jQuery Mobile - Desenvolvimento para dispositivos móveis
jQuery Mobile - Desenvolvimento para dispositivos móveisjQuery Mobile - Desenvolvimento para dispositivos móveis
jQuery Mobile - Desenvolvimento para dispositivos móveisPablo Garrido
 
Searching the Web of Data (Tutorial)
Searching the Web of Data (Tutorial)Searching the Web of Data (Tutorial)
Searching the Web of Data (Tutorial)Gerard de Melo
 
Html5 advanced part2
Html5 advanced part2Html5 advanced part2
Html5 advanced part2Suresh Balla
 
Stop the noise! - Introduction to the JSON:API specification in Drupal
Stop the noise! - Introduction to the JSON:API specification in DrupalStop the noise! - Introduction to the JSON:API specification in Drupal
Stop the noise! - Introduction to the JSON:API specification in DrupalBjörn Brala
 
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 3Michael Hausenblas
 
RESS: An Evolution of Responsive Web Design
RESS: An Evolution of Responsive Web DesignRESS: An Evolution of Responsive Web Design
RESS: An Evolution of Responsive Web DesignDave Olsen
 

Similar a Jarrar: RDFa (20)

Jarrar: RDFa
Jarrar: RDFaJarrar: RDFa
Jarrar: RDFa
 
Microdata semantic-extend
Microdata semantic-extendMicrodata semantic-extend
Microdata semantic-extend
 
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
 
RDFa in ostala spletna semantika
RDFa in ostala spletna semantikaRDFa in ostala spletna semantika
RDFa in ostala spletna semantika
 
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
 
Semantic web support for POSH
Semantic web support for POSHSemantic web support for POSH
Semantic web support for POSH
 
The Server Side of Responsive Web Design
The Server Side of Responsive Web DesignThe Server Side of Responsive Web Design
The Server Side of Responsive Web Design
 
RDFa: an introduction
RDFa: an introductionRDFa: an introduction
RDFa: an introduction
 
Java Script Based Client Server Webapps 2
Java Script Based Client Server Webapps 2Java Script Based Client Server Webapps 2
Java Script Based Client Server Webapps 2
 
Structured SEO Data Overview and How To
Structured SEO Data Overview and How ToStructured SEO Data Overview and How To
Structured SEO Data Overview and How To
 
Understanding the Standards Gap
Understanding the Standards GapUnderstanding the Standards Gap
Understanding the Standards Gap
 
jQuery Mobile - Desenvolvimento para dispositivos móveis
jQuery Mobile - Desenvolvimento para dispositivos móveisjQuery Mobile - Desenvolvimento para dispositivos móveis
jQuery Mobile - Desenvolvimento para dispositivos móveis
 
Searching the Web of Data (Tutorial)
Searching the Web of Data (Tutorial)Searching the Web of Data (Tutorial)
Searching the Web of Data (Tutorial)
 
Micro frontends
Micro frontendsMicro frontends
Micro frontends
 
Html5 advanced part2
Html5 advanced part2Html5 advanced part2
Html5 advanced part2
 
Stop the noise! - Introduction to the JSON:API specification in Drupal
Stop the noise! - Introduction to the JSON:API specification in DrupalStop the noise! - Introduction to the JSON:API specification in Drupal
Stop the noise! - Introduction to the JSON:API specification in Drupal
 
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
 
multimedia
multimediamultimedia
multimedia
 
Microformats
MicroformatsMicroformats
Microformats
 
RESS: An Evolution of Responsive Web Design
RESS: An Evolution of Responsive Web DesignRESS: An Evolution of Responsive Web Design
RESS: An Evolution of Responsive Web Design
 

Último

Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024Janet Corral
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajanpragatimahajan3
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Disha Kariya
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...fonyou31
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 

Último (20)

Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 

Jarrar: RDFa

  • 1. Mustafa Jarrar Lecture Notes, Web Data Management (MCOM7348) University of Birzeit, Palestine 1st Semester, 2013 Practical guide to RDFa Dr. Mustafa Jarrar University of Birzeit mjarrar@birzeit.edu www.jarrar.info Jarrar © 2013 1
  • 2. Watch this lecture and download the slides from http://jarrar-courses.blogspot.com/2013/11/web-data-management.html Jarrar © 2013 2
  • 3. RDFa •  Bridges the gap between the Web of Documents and the Web of Data (Web 3.0). •  Makes XHTML web pages structured data (by embedding RDF triples inside XHTML). •  i.e., using RDFa we build small RDF graphs and embed them inside XHTML pages. Jarrar © 2013 3
  • 4. RDFa •  As stated by Google Webmasters guide, RDFa can be roughly viewed as a way to label content to describe a specific type of information, such as a restaurant review, an event, a person, or a product listing. •  These information types are called entities or items. Each entity has a number of properties. For example, a Person has the properties name, address, job title, company, and email address. •  In general, RDFa uses simple attributes in XHTML tags (often <span> or <div>) to assign brief and descriptive names to entities and properties. Jarrar © 2013 4
  • 7. Example 2 Consider this HTML block:! <div> ! ! My name is George Mousa. My friends call me Geno. I live in Nablus, Palestine. I work as an engineer at Birzeit University.! ! </div>! ! Annotate the HTML block above with RDFa: <div xmlns:v="http://rdf.data-vocabulary.org/#" typeof="v:Person">! ! My name is <span property="v:name"> George Mousa </span>. ! My friends call me <span property="v:nickname"> Geno </span>. ! I live in Nablus, Palestine. ! I work as an engineer at <span property="v:affiliation"> Birzeit University </span>.! ! </div>! ! Jarrar © 2013 7
  • 8. Example 2 <div xmlns:v="http://rdf.data-vocabulary.org/#" typeof="v:Person”>! My name is <span property="v:name"> George Mousa </span>. ! My friends call me <span property="v:nickname"> Geno </span>. ! I live in Nablus, Palestine. ! I work as an engineer at <span property="v:affiliation"> Birzeit University </ span>.! </div>! •  The example begins with a namespace declaration using xmlns. This indicates the namespace where the vocabulary is specified. •  Also on the first line, typeof="v:Person" indicates that the markedup content represents a Person. •  Each property of the person (such as the name and nickname) is labeled using property. •  To indicate a URL, use rel instead of property. Consider adding the following to our example inside the Person div My home page is: <a href="http://www.example.com" rel="v:url"> www.example.com </a>.! •  "rel" is used to convey the relationship between two entities—in this case, a Person entity and a webpage entity. ! Jarrar © 2013 8
  • 9. Example 2 In our example, we have addressing information about George Mousa. <div> ... I live in Nablus, Palestine. I work as an engineer ... </div>! We use nesting. Nesting is when one information type includes the other. In this case, we want to include George’s Address information (typeof="v:Address") in the typeof="v:Person“ entity. Here, we use rel to indicate a relationship between George (the entity v:Person) and his address (the entity v:Address). ! <div xmlns:v="http://rdf.data-vocabulary.org/#" typeof="v:Person">! My name is <span property="v:name"> George Mousa </span>. ! My friends call me <span property="v:nickname"> Geno </span>. ! I live in! <span rel="v:Address">! <span typeof="v:Address"> ! <span property="v:city">Nablus</span>, ! <span property="v:country">Palestine</span>! </span>! </span>.! I work as an engineer at <span property="v:affiliation"> Birzeit University </span>.! </div> Jarrar © 2013 9
  • 10. Let’s draw a graph of our example! v:Person e v:nam v:nickname “George Mousa” “Geno” type Of v:city v:Address “Nablus” “Palestine” “Birzeit University” Jarrar © 2013 10
  • 12. Jobs.ps Use Case Suppose webpages of announcing job offers are written in RDFa, then www.jobs.ps can crawl this data automatically. Page 1 Page n Jarrar © 2013 12
  • 14. Description Given two XHTML files, people.html and projects.html, each student must embed both documents with RDFa. Consider the following when doing the exercise: -  Both documents are validated XHTML documents. We have validated them using the standard W3C Validator: http://validator.w3.org/ -  Students must use standard known ontologies when annotating the documents, such as FOAF, Dublin Core, etc. -  Students must validate their work using the standard W3C validator. -  Each student must expect to present and discuss his/her work at class. -  Final delivery must include links of the two RDFa-annotated documents. PalGov © 2013 14
  • 15. Projects.html Copy and Paste this code into Notepad++ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Sina Institute - Projects</title> </head> <body> <div id="box" style="text-align: center;"><strong><span class="largeFontSpan">[ </span><a title="Projects" href="#Active-Projects"><span class="largeFontSpan">Active Projects</span></a> | <a title="Past Projects" href="#Past-Projects"> <span class="largeFontSpan">Past Projects</span><span style="color: #ffffff;"> </span></a><span class="largeFontSpan"> ]</span></strong></div> <h1 id="Active-Projects">Active Projects</h1> <table style="height: 786px;" width="475"> <tbody> <tr> <td><img class="alignleft size-full wp-image-350" title="PalGov " src="http://localhost/sina/wp-content/uploads/2011/02/eGovSeer.jpg" alt="GovSeer" width="132" height="100" /></td> <td style="vertical-align: middle;"><strong>GovSeer - Interoperability of e-Governmental Services</strong> Page:<span><a href="http://sites.birzeit.edu/comp/GovSeer/">http://sites.birzeit.edu/comp/GovSeer/</a></span></td> </tr> <tr> <td><img class="alignleft size-full wp-image-350" title="PalGov " src="http://localhost/sina/wp-content/uploads/2011/08/palgove_logo_160x76.png" alt="The Palestinian e-government academy" width="132" /></td> <td style="vertical-align: middle;"><strong>PalGov - e-Government Lifelong Learning Consortium</strong> Page:<span><a href="http://sites.birzeit.edu/comp/PalGov/">http://sites.birzeit.edu/comp/PalGov/</a></span></td> </tr> <tr> <td><img class="alignleft size-full wp-image-337" title="Arabic Ontololgy" src="http://localhost/sina/wp-content/uploads/2011/02/arabicOntologyLogoLowResolution.jpg" alt="Arabic Ontololgy" width="133" height="126" /></td> <td style="vertical-align: middle;"><strong>Arabic Ontology </strong>Page:<span><a href="http://sites.birzeit.edu/comp/ArabicOntology/">http://sites.birzeit.edu/comp/ArabicOntology/</a></span></td> </tr> <tr> <td><img class="alignleft size-full wp-image-352" title="Wojood" src="http://localhost/sina/wp-content/uploads/2010/09/jood.png" alt="" width="125" height="97" /></td> <td style="vertical-align: middle;"><strong> Wojood </strong>Page: <a href="http://localhost/sina/wojood/" target="_blank">http://localhost/sina/wojood/</a></td> </tr> <tr> <td><img class="alignleft size-full wp-image-352" title="google" src="http://localhost/sina/wp-content/uploads/2010/09/google1.png" alt="" width="125" height="97" /></td> <td style="vertical-align: middle;"><strong>A Suite of Automated Tools for Efficient Management and Search in Web-based Arabic Documents </strong>Page:<span><a href="http://localhost/sina/SATEMSAD/">http://localhost/sina/SATEMSAD/</a></span></td> </tr> <tr> <td><img class="alignleft size-full wp-image-357" title="MashQL" src="http://localhost/sina/wp-content/uploads/2010/09/mashql2.png" alt="MashQL" width="140" height="64" /></td> <td style="vertical-align: middle;"><strong>MashQL: A novel approach for querying the Data Web</strong> Page:<span><a href="http://sites.birzeit.edu/comp/mashql/">http://sites.birzeit.edu/comp/mashql/</a></span></td> </tr> <tr> <td><img class="alignleft size-full wp-image-355" title="Mobile Information Technology for the Visually Impaired " src="http://localhost/sina/wp-content/uploads/2010/09/mitvi.png" alt="mgad" width="136" height="73" /></td> <td style="vertical-align: middle;"><strong>Mobile Information Technology for the Visually Impaired </strong>Page:<span><a href="http://localhost/sina/MITVI/" target="_blank">http://localhost/sina/MITVI/</a></span></td> </tr> </tbody> </table> <br class="spacer" /> <h1 id="Past-Projects">Past Projects</h1> <table style="height: 86px;" width="473"> <tbody> <tr> <td><img class="alignleft size-full wp-image-353" title="Mobile Information Technology for the Visually Impaired " src="http://localhost/sina/wp-content/uploads/2010/09/mgad.png" alt="mgad" width="133" height="62" /></td> <td style="vertical-align: middle;"><strong>Model Generation for Selected Applications</strong> Page:<span><a href="http://localhost/sina/ModelGeneration/" target="_blank">http://localhost/sina/ModelGeneration/</a></span></td> </tr> </tbody> </table> </body> </html> PalGov © 2013 15
  • 16. People.html Copy and Paste this code into Notepad++ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Sina Institute - People</title> </head> <body> <div id="box" style="text-align: center;"><strong><span class="largeFontSpan">[ </span><a title="Current Members" href="#Current"><span class="largeFontSpan">Current Members</span></a> | <a title="Collaborators" href="#Collaborators"><span class="largeFontSpan">Collaborators</span></a> | <a title="Former Members" href="#Former"><span class="largeFontSpan">Former Members</span></a> <span class="largeFontSpan"> ]</span></strong></div> <h1 id="Current">Current Members</h1> <table style="height: 149px;" width="617"> <tbody> <tr> <td style="vertical-align: middle; width: 109px; height: 160px;"><img class="alignnone" title="Dr. Mustafa Jarrar" src="http://localhost/sina/wp-content/uploads/2011/02/Jarrar.png" alt="Dr. Mustafa Jarrar" width="105" height="125" /></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160"><strong>Dr. Mustafa Jarrar</strong> <em>OnTo Group Director</em> <a href="mailto:mjarrar@birzeit.edu">mjarrar@birzeit.edu </a> <a href="http://localhost/sina/mjarrar/" target="_blank">localhost/sina/mjarrar/</a></td> <td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignnone" title="Dr. Adnan Yahya" src="http://localhost/sina/wp-content/uploads/2011/02/yahya.png" alt="Dr. Adnan Yahya" width="105" height="125" /></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160"><strong>Dr. Adnan Yahya</strong> <em>ALTIR Group Director</em> <a href="mailto:yahya@birzeit.edu">yahya@birzeit.edu </a> <a href="http://localhost/sina/ayahya/" target="_blank">localhost/sina/ayahya/</a></td> </tr> </tbody> </table> <!-- ******************************************************* --> <table style="height: 147px;" width="603"> <tbody> <tr> <td style="vertical-align: middle; width: 220px; height: 160px;"><strong>Secretary</strong>: Rawan Taha <a href="mailto:rntaha@birzeit.edu">rntaha@birzeit.edu </a> Tel: +972 2 2982917</td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="130" height="160"></td> <td style="vertical-align: middle; width: 130px; height: 160px;"></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160"></td> </tr> </tbody> </table> <!-- ******************************************** --> <hr /><!-- ******************************************** --> <table style="height: 149px;" width="617"> <tbody> <tr> <td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignleft size-full wp-image-354" title="Majd Al-Ashhab" src="http://localhost/sina/wp-content/uploads/2011/02/DSC079601.png" alt="Majd Al-Ashhab" width="105" height="125" /></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Majd Al-Ashhab <a href="mailto:mashhab@birzeit.edu">mashhab@birzeit.edu </a> <a href="http://localhost/sina/mashhab/">localhost/sina/mashhab/</a></td> <td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignnone" title="Ali Salhi" src="http://localhost/sina/wp-content/uploads/2011/02/a11.png" alt="Ali Salhi" width="105" height="125" /></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Ali Salhi <a href="mailto:asalhi@birzeit.edu">asalhi@birzeit.edu</a> <a href="http://localhost/sina/asalhi/">localhost/sina/asalhi/</a></td> </tr> </tbody> </table> PalGov © 2013 16
  • 17. People.html – continued Copy and Paste this code into Notepad++ <!-- *********************************************************** --> <table style="height: 149px;" width="617"> <tbody> <tr> <td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignleft size-full wp-image-1124" title="antonPhoto" src="http://localhost/sina/wp-content/uploads/2011/02/antonPhoto.png" alt="" width="105" height="125" /></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Anton Deik <a href="mailto:anton.deik@gmail.com">anton.deik@gmail.com</a> <a href="http://localhost/sina/adeik/">localhost/sina/adeik/</a></td> <td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignnone" title="Bilal Farraj" src="http://localhost/sina/wp-content/uploads/2011/02/STB9565.png" alt="Bilal Farraj" width="105" height="125" /></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Bilal Farraj <a href="mailto:bfarraj@gmail.com">bfarraj@gmail.com </a> <a href="http://localhost/sina/bfarraj/">localhost/sina/bfarraj/</a></td> </tr> </tbody> </table> <!-- ************************************************************** --> <table style="height: 149px;" width="617"> <tbody> <tr> <td style="vertical-align: middle; width: 130px; height: 160px;"><img title="Ala' Hawash" src="../wp-content/uploads/2011/02/Ala.png" alt="Ala' Hawash" width="105" height="125" /></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Ala' Hawash <a href="mailto:ala.hawash@gmail.com">ala.hawash@gmail.com</a> <a href="http://localhost/sina/ahawash/">localhost/sina/ahawash/</a></td> <td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignnone" title="Rana Rishmawi" src="http://localhost/sina/wp-content/uploads/2011/03/Rana.png" alt="Rana Rishmawi" width="105" height="125" /></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Rana Rishmawi <a href="mailto:rgr.4.12@gmail.com">rgr.4.12@gmail.com </a> <a href="http://localhost/sina/rrishmawi/">localhost/sina/rrishmawi/</a></td> </tr> </tbody> </table> <table style="height: 149px;" width="617"> <tbody> <tr> <td style="vertical-align: middle; width: 130px; height: 160px;"><img class="size-full wp-image-601 alignleft" title="Hiba Shaheen" src="http://localhost/sina/wp-content/uploads/2011/02/HibaShaheen.png" alt="" width="105" height="125" /></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Hiba Shaheen <a href="mailto:shaheen.hiba@gmail.com ">shaheen.hiba@gmail.com </a> <a href="http://localhost/sina/hshaheen/">localhost/sina/hshaheen/</a></td> <td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignnone" title="Rami Khaleel" src="../wp-content/uploads/2011/02/rami_khaleel.png" alt="Rami Khaleel" width="105" height="125" /></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Rami Khaleel <a href="mailto:ramikhl@yahoo.com">ramikhl@yahoo.com </a> <a href="http://localhost/sina/rkhaleel/">localhost/sina/rkhaleel/</a></td> </tr> </tbody> </table> <!-- **********************************************--> <table style="height: 149px;" width="617"> <tbody> <tr> <td style="vertical-align: middle; width: 130px; height: 160px;"><img title="Mohammed Melhem" src="http://localhost/sina/wp-content/uploads/2011/02/melhem.png" alt="Mohammed Melhem" width="105" height="125" /></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Mohammed Melhem <a href="mailto:4mmelhem@gmail.com"> 4mmelhem@gmail.com </a> <a href="http://localhost/sina/mmelhem/" target="_blank">localhost/sina/mmelhem/</a></td> <td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignnone" title="Hanya Radwan" src="http://localhost/sina/wp-content/uploads/2011/02/hanya.png" alt="Hanya Radwan" width="105" height="125" /></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Hanya Radwan <a href="mailto:hanya.radwan2010@gmail.com">hanya.radwan2010@gmail.com </a> <a href="http://localhost/sina/hradwan/">localhost/sina/hradwan/</a></td> </tr> </tbody> </table> <!-- **********************************************--> PalGov © 2013 17
  • 18. People.html – continued Copy and Paste this code into Notepad++ <table style="height: 149px;" width="617"> <tbody> <tr> <td style="vertical-align: middle; width: 130px; height: 160px;"><img title="Nafiz Qasim" src="http://localhost/sina/wp-content/uploads/2011/02/ nafiz.png" alt="Nafiz Qasim" width="105" height="125" /></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Nafiz Qasim <a href="mailto:nafizqasim@gmail.com">nafizqasim@gmail.com </a> <a href="http://localhost/sina/nqasim/">localhost/sina/nqasim/</a></td> <td style="vertical-align: middle; width: 130px; height: 160px;"></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160"></td> </tr> </tbody> </table> <!-- ********************************************************************** ************************************************************************* --> <br class="spacer" /> <h1 id="Collaborators">Collaborators</h1> <ul> <li><a href="mailto:wfasha@birzeit.edu">Wasim Abu Fasha</a></li> <li><a href="mailto:lshamieh@birzeit.edu ">Luna Shamieh</a></li> <li><a href="mailto:jamal@birzeit.edu">Jamal Daher</a></li> </ul> <br class="spacer" /> <h1 id="Former">Former Members</h1> <ul> <li><a href="mailto:samara.1050074@gmail.com">Hamam Samara</a></li> <li><a href="mailto:smr.ayesh@gmail.com">Samar Aish</a></li> <li><a href="mailto:mrbadaw@gmail.com">Muath Badawi</a></li> </ul> </body> </html> PalGov © 2013 18