Changes between Version 1 and Version 2 of schema/tei-pointers


Ignore:
Timestamp:
Feb 18, 2011, 2:40:38 PM (13 years ago)
Author:
jwillenborg
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • schema/tei-pointers

    v1 v2  
    11== Simple pointers and links: within a document by Id attribute ==
    22
    3 <ptr> a pointer to another location in the current document in terms of one or more identifiable elements.
     3* <ptr> a pointer to another location in the current document in terms of one or more identifiable elements.
    44
    5 <ref> a reference to another location in the current document, in terms of one or more identifiable elements, possibly modified by additional text or comment.
     5* <ref> a reference to another location in the current document, in terms of one or more identifiable elements, possibly modified by additional text or comment.
    66
    7 <link> defines an association or hypertextual link among elements or passages, of some type not more precisely specifiable by other elements.
    8 (auch zwischen verschiedenen Dokumenten möglich)
    9 Beispiel:
    10 <note id="n3.284" type="imitation" place="foot" anchored="no">   
    11    <ref id="r3.284" rend="sc">
    12    <!-- ... -->
    13    </ref>
    14 </note>
    15 <link targType="ref l" targOrder="Y" targets="r3.284 l3.284"/>
     7* <link> defines an association or hypertextual link among elements or passages, of some type not more precisely specifiable by other elements (also possible between different documents)
     8  * Example:
     9  <note id="n3.284" type="imitation" place="foot" anchored="no">   
     10    <ref id="r3.284" rend="sc">...</ref>
     11  </note>
     12  <link targType="ref l" targOrder="Y" targets="r3.284 l3.284"/>
    1613
    17 <linkGrp> Linkgruppen
    18 Beispiel:
    19 <linkGrp type="imitation" targType="note l" targOrder="Y">
    20    <link targets="n2.79 l2.79"/>
    21    <link targets="n2.88 l2.88"/>
    22    <!-- ... -->
    23    <link targets="n3.284 l3.284"/>
    24    <!-- ... -->
    25 </linkGrp>
     14* <linkGrp> Link groups
     15  * Example:
     16  <linkGrp type="imitation" targType="note l" targOrder="Y">
     17    <link targets="n2.79 l2.79"/>
     18    <link targets="n2.88 l2.88"/>
     19    <!-- ... -->
     20    <link targets="n3.284 l3.284"/>
     21    <!-- ... -->
     22  </linkGrp>
    2623
    27 <anchor> specifies a location or point within a document so that it may be pointed to.
    28 <seg> identifies a span or segment of text within a document so that it may be pointed to.
     24* <anchor> specifies a location or point within a document so that it may be pointed to.
     25* <seg> identifies a span or segment of text within a document so that it may be pointed to.
    2926
    3027== Extended pointers: Between documents and by XPointer ==
    3128
    32 <xptr> defines a pointer to another location in the current document or an external document.
    33 Examples:
    34 <p>This is discussed in <xptr doc="TEIP3"/>.</p>
    35 <xptr doc="OrbisPictus" from="id (animalia)"/>
    36 <xptr doc="OrbisPictus" from="id (animalia)" to="id (aquaticae)"/>
    37 <xptr doc="P3" from="id (SA) child (3 p)"/> (the third <p> element directly contained by whatever element has the identifier SA)
    38 HTML:
    39 <p>This is discussed in <xptr url="http://www.tei-c.org/TEI/Guidelines/SA.html"/>
     29* <xptr> defines a pointer to another location in the current document or an external document.
     30  * Examples:
     31    * <p>This is discussed in <xptr doc="TEIP3"/>.</p>
     32    * <xptr doc="OrbisPictus" from="id (animalia)"/>
     33    * <xptr doc="OrbisPictus" from="id (animalia)" to="id (aquaticae)"/>
     34    * <xptr doc="P3" from="id (SA) child (3 p)"/> (the third <p> element directly contained by whatever element has the identifier SA)
     35    * <p>This is discussed in <xptr url="http://www.tei-c.org/TEI/Guidelines/SA.html"/>
    4036
    41 <xref> defines a pointer to another location in the current document or an external document, possibly modified by additional text or comment.
    42 Examples:
    43 <p>This is discussed in <xref doc="TEIP3">The TEI Guidelines</xref>.</p>
    44 HTML:
    45 <p>This is discussed in <xref url="http://www.tei-c.org/TEI/Guidelines/SA.html">the chapter on linking</xref>
    46 --> HTML: <p>This is discussed in <a href="http://www.tei-c.org/TEI/Guidelines/SA.html">the chapter on linking</a>
    47 <p>This is discussed in <xref doc="TEIP3SA" from="id(SAXR)">the chapter on linking</xref>.</p>
    48 --> HTML: <p>This is discussed in <a href="http://www.tei-c.org/TEI/Guidelines/SA.html#SAXR">the subsection on external linking</a>
     37* <xref> defines a pointer to another location in the current document or an external document, possibly modified by additional text or comment.
     38  * Examples:
     39    * <p>This is discussed in <xref doc="TEIP3">The TEI Guidelines</xref>.</p>
     40    * <p>This is discussed in <xref url="http://www.tei-c.org/TEI/Guidelines/SA.html">the chapter on linking</xref>
     41    --> HTML: <p>This is discussed in <a href="http://www.tei-c.org/TEI/Guidelines/SA.html">the chapter on linking</a>
     42    * <p>This is discussed in <xref doc="TEIP3SA" from="id(SAXR)">the chapter on linking</xref>.</p>
     43    --> HTML: <p>This is discussed in <a href="http://www.tei-c.org/TEI/Guidelines/SA.html#SAXR">the subsection on external linking</a>
    4944
    50 In a URL:
    51 
    52 example.xml#xpointer((//p)[1])
    53 example.xml#xpointer(id('4711')/div[1])
     45* XPointers in a URL:
     46  * example.xml#xpointer((//p)[1])
     47  * example.xml#xpointer(id('4711')/div[1])