Changes between Version 18 and Version 19 of rdfhomepage2


Ignore:
Timestamp:
07/19/10 13:53:01 (14 years ago)
Author:
michael.kraus
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • rdfhomepage2

    v18 v19  
    4747   Python Script for this task (execute only ONCE) : 
    4848   {{{ 
     49#!python 
    4950 
    5051import os 
     
    8586   These errors will fix theirselves while inserting your data into the rdfhomepage2. 
    8687 
    87 == Including the content from rdfhomepage1 into rdfh2 == 
     88== Major and minor chances in the structure of rdfhomepage2 == 
     89 * [rdfh1] ./homepage.rdf -> [rdfh2] ./vocabulary/rdfhomepage.rdf: 
     90   * [rdfh1] Namespace "hp" renamed to "ns1" (http://km.dfki.de/model/rdfhomepage#) 
     91   * In rdfh2 ''MyFoafPerson'' and ''myOrgPerson'' become no longer necessary 
     92   * Projects: 
     93     * Structure in rdfh1: 
     94{{{ 
     95<hp:inProject> 
     96 <hp:Project> 
     97  <hp:htmlText /> 
     98  <hp:next /> 
     99 </hp:Project> 
     100</hp:inProject> 
     101}}} 
     102       * shortName and other metadata can be found in the OrgRep file! 
     103       * the project homepage must be extracted from the OrgRep file, too! 
     104     * Structure in rdfh2: 
     105{{{ 
     106<ns1:Project about="uri" /> 
     107// uri is at the same time the rdf-uri and the http-url of the project homepage 
     108 
     109<rdf:Description> 
     110 <ns1:inProject about="uri" /> 
     111</rdf:Description> 
     112 
     113<rdf:Description about="uri"> 
     114 <ns1:htmlText /> 
     115 <ns1:shortName /> 
     116 <ns1:longName /> 
     117</rdf:Descriotion> 
     118}}} 
     119        * project homepage is at the same time the rdf-uri (no need of any OrgRep file) 
     120        * shortName/longName can be now found in the rdfhomepage.rdf (no OrgRep file) 
     121        * next becomes unnecessary - without any reason, the order is just fine. 
     122   * Interests: 
     123     The interests' structure changed very similiar to those of the projects.[[BR]] 
     124     However, in rdfh1 there is an attribute "rdf:label" which is completely '''MISSING''' in rdfh2.[[BR]] 
     125     Even in the PHP-Sourcecode there is no hint that there's an interest title intended.[[BR]] 
     126        
     127 
     128== Including the content from rdfh1 into rdfh2 == 
    88129 
    89130 * To import your existing FOAF-file into rdfhomepage2, click at the RDFHomepage Toolbox on "FOAF", then select "Import FOAF", choose your foaf.xml and press "Upload".