Changes between Version 17 and Version 18 of InstallationInstructions


Ignore:
Timestamp:
11/07/06 12:59:40 (17 years ago)
Author:
schwarz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallationInstructions

    v17 v18  
    147147==== projects ==== 
    148148 
    149 There could be one or more chunks about projects you work for: 
     149Most probably, there will be one or more chunks about projects you work for: 
    150150{{{ 
    151151    <hp:inProject> 
     
    183183    * there should be exactly one last project (this project has no hp:next project) 
    184184    * every project inbetween (project 2 to project n-1) has exactly one hp:next project 
     185 
     186==== interests ==== 
     187 
     188There can be one or more chunks about your (research) interest. 
     189As "interests" are quite manifold, each interest belongs to (exactly!) one "section". 
     190I personally distinguish between "research contributions" and "research applications" (however, you do not have to do so as well): 
     191{{{ 
     192    <hp:hasInterest> 
     193        <hp:Interest rdf:about="http://some_namespace#MayorResearch" 
     194             rdfs:label="Mayor Research Questions"> 
     195            <hp:section> 
     196                <hp:Section rdf:about="http://some_namespace#MyContribution" 
     197                     hp:htmlText="My Contribution to Research"/> 
     198            </hp:section> 
     199            <hp:htmlText> 
     200            <![CDATA[ 
     201                <p align="justify"> 
     202                    My mayor research questions: 
     203                    <ul> 
     204                      <li><b>research in ABC</b>: ABC is my personal dream... </li> 
     205                      <li><b>DEF for GHI</b>: In the next 2 months, ... </li> 
     206                    </ul> 
     207                </p> 
     208            ]]> 
     209            </hp:htmlText> 
     210            <hp:next rdf:resource="http://some_namespace#MinorResearch"/> 
     211        </hp:Interest> 
     212    </hp:hasInterest> 
     213    <hp:hasInterest> 
     214        <hp:Interest rdf:about="http://some_namespace#MinorResearch" 
     215             rdfs:label="Minor Research Questions"> 
     216            <hp:section rdf:resource="http://some_namespace#MyContribution"/>   <!-- same section!!! --> 
     217            <hp:htmlText> 
     218            <![CDATA[ 
     219                <p align="justify"> 
     220                    I'm also interested in 
     221                    <ol> 
     222                      <li>JKL, and</li> 
     223                      <li>MNO</li> 
     224                    </ol> 
     225                </p> 
     226            ]]> 
     227            </hp:htmlText> 
     228            <hp:next rdf:resource="http://some_namespace#ResearchApplication1"/> 
     229        </hp:Interest> 
     230    </hp:hasInterest> 
     231     
     232    <hp:hasInterest> 
     233        <hp:Interest rdf:about="http://some_namespace#ResearchApplication1" 
     234             rdfs:label="Research Application (1)"> 
     235            <hp:section> 
     236                <hp:Section rdf:about="http://some_namespace#ResearchApplication" 
     237                     hp:htmlText="Research I Apply"/> 
     238            </hp:section> 
     239            <hp:htmlText> 
     240            <![CDATA[ 
     241                <p align="justify"> 
     242                    I'm heavily allying and relying of the following research areas: 
     243                    <ul> 
     244                      <li><b>XXX</b>: nobody can't without... </li> 
     245                      <li><b>XYY</b>: also very important, because... </li> 
     246                      <li><b>XYZ</b>: very interesting, but not yet really applicable... </li> 
     247                    </ul> 
     248                </p> 
     249            ]]> 
     250            </hp:htmlText> 
     251            <!-- no hp:next --> 
     252        </hp:Interest> 
     253    </hp:hasInterest> 
     254}}} 
     255We see several things here: 
     256 1. Like the projects, also the interests are linked/chained using the hp:next property with the same chaining constraints. 
     257 2. As already said, each interest MUST be assigned to exactly(!) one section. The section could be created in one interest chunk once and referenced in other interest chunks - see example RDF snippet above. 
     258