<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.tei-c.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Stuartyeates</id>
	<title>TEIWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.tei-c.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Stuartyeates"/>
	<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Special:Contributions/Stuartyeates"/>
	<updated>2026-04-21T17:14:11Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.32.0</generator>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=TEI2TMX.xsl&amp;diff=15759</id>
		<title>TEI2TMX.xsl</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=TEI2TMX.xsl&amp;diff=15759"/>
		<updated>2017-03-22T22:00:03Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: archive.org for the win.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:P4toP5]]&lt;br /&gt;
[[Category:XSLT]]&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
This is a stylesheet to convert [[P5]] TEI parallel-text documents to TMX (Translation Memory eXchange) files. It assumes that div-level tags are linked with [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.global.linking.html @corresp] attributes to their translation in another language. The script has only been tested with bi-lingual documents and I have no reason to believe that it'll work with documents with more than two languages.&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Translation_Memory_eXchange Translation Memory eXchange on Wikipedia]&lt;br /&gt;
* [http://web.archive.org/web/20101217191035/http://www.lisa.org/Translation-Memory-e.34.0.html Translation Memory eXchange spec in archive.org] (includes DTD)&lt;br /&gt;
&lt;br /&gt;
== Stylesheet ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot; ?&amp;gt;&lt;br /&gt;
&amp;lt;xsl:stylesheet version=&amp;quot;1.0&amp;quot;&lt;br /&gt;
		xmlns:tei=&amp;quot;http://www.tei-c.org/ns/1.0&amp;quot;&lt;br /&gt;
		xmlns:xsl=&amp;quot;http://www.w3.org/1999/XSL/Transform&amp;quot;&lt;br /&gt;
		exclude-result-prefixes=&amp;quot;tei&amp;quot;&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
  &amp;lt;xsl:output encoding=&amp;quot;UTF-8&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  &lt;br /&gt;
  &amp;lt;xsl:key name=&amp;quot;ids&amp;quot; match=&amp;quot;*[@xml:id]&amp;quot; use=&amp;quot;@xml:id&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;xsl:key name=&amp;quot;corresp&amp;quot; match=&amp;quot;*[@corresp]&amp;quot; use=&amp;quot;@corresp&amp;quot;/&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
  &amp;lt;xsl:template match=&amp;quot;/&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;tmx version=&amp;quot;1.4&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;header adminlang=&amp;quot;en&amp;quot; &lt;br /&gt;
	      creationtool=&amp;quot;TEI to TMX converter&amp;quot; &lt;br /&gt;
	      creationtoolversion=&amp;quot;0.1&amp;quot; &lt;br /&gt;
	      datatype=&amp;quot;tbx&amp;quot; &lt;br /&gt;
	      o-tmf=&amp;quot;unknown&amp;quot; &lt;br /&gt;
	      segtype=&amp;quot;block&amp;quot; &lt;br /&gt;
	      srclang=&amp;quot;en&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;body&amp;gt;&lt;br /&gt;
	&amp;lt;xsl:apply-templates select=&amp;quot;//*[@corresp]&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;/body&amp;gt;&lt;br /&gt;
    &amp;lt;/tmx&amp;gt;&lt;br /&gt;
  &amp;lt;/xsl:template&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
  &amp;lt;xsl:template match=&amp;quot;*[@corresp]&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;xsl:variable name=&amp;quot;local&amp;quot; select=&amp;quot;.&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;xsl:variable name=&amp;quot;remote&amp;quot; select=&amp;quot;key('ids',translate(./@corresp,'#',''))&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;tu tuid=&amp;quot;{@xml:id}&amp;quot; &amp;gt;&lt;br /&gt;
      &amp;lt;tuv xml:lang=&amp;quot;{$local/@xml:lang}&amp;quot;&amp;gt; &lt;br /&gt;
	&amp;lt;seg&amp;gt;&lt;br /&gt;
	  &amp;lt;xsl:apply-templates select=&amp;quot;$local/* |$local/text()&amp;quot; mode=&amp;quot;inner&amp;quot;/&amp;gt;&lt;br /&gt;
	&amp;lt;/seg&amp;gt; &lt;br /&gt;
      &amp;lt;/tuv&amp;gt;&lt;br /&gt;
      &amp;lt;tuv xml:lang=&amp;quot;{$remote/@xml:lang}&amp;quot;&amp;gt; &lt;br /&gt;
	&amp;lt;seg&amp;gt;&lt;br /&gt;
	  &amp;lt;xsl:apply-templates select=&amp;quot;$remote/*|$remote/text()&amp;quot; mode=&amp;quot;inner&amp;quot;/&amp;gt;&lt;br /&gt;
	&amp;lt;/seg&amp;gt; &lt;br /&gt;
      &amp;lt;/tuv&amp;gt;&lt;br /&gt;
    &amp;lt;/tu&amp;gt;&lt;br /&gt;
  &amp;lt;/xsl:template&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;xsl:template match=&amp;quot;text()&amp;quot; &amp;gt;&lt;br /&gt;
    &amp;lt;xsl:text&amp;gt; &amp;lt;/xsl:text&amp;gt;&lt;br /&gt;
  &amp;lt;/xsl:template&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
  &amp;lt;xsl:template match=&amp;quot;text()&amp;quot; mode=&amp;quot;inner&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;xsl:value-of select=&amp;quot;.&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;/xsl:template&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
  &amp;lt;xsl:template match=&amp;quot;*[@corresp] |&lt;br /&gt;
		       *[key('corresp',concat('#',@xml:id))] |&lt;br /&gt;
		       tei:page |&lt;br /&gt;
		       tei:note&amp;quot; mode=&amp;quot;inner&amp;quot; &amp;gt;&lt;br /&gt;
  &amp;lt;/xsl:template&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
  &amp;lt;!-- these tags need space --&amp;gt;&lt;br /&gt;
  &amp;lt;xsl:template match=&amp;quot;tei:pubPlace |&lt;br /&gt;
		       tei:date |&lt;br /&gt;
		       tei:lb |&lt;br /&gt;
		       tei:name |&lt;br /&gt;
		       tei:byline |&lt;br /&gt;
		       tei:docAuthor&amp;quot; mode=&amp;quot;inner&amp;quot; &amp;gt;&lt;br /&gt;
    &amp;lt;xsl:text&amp;gt; &amp;lt;/xsl:text&amp;gt;&lt;br /&gt;
    &amp;lt;xsl:apply-templates select=&amp;quot;* | text()&amp;quot; mode=&amp;quot;inner&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;xsl:text&amp;gt; &amp;lt;/xsl:text&amp;gt;&lt;br /&gt;
  &amp;lt;/xsl:template&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;xsl:template match=&amp;quot;*&amp;quot; &amp;gt;&lt;br /&gt;
    &amp;lt;xsl:apply-templates select=&amp;quot;*&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;/xsl:template&amp;gt;&lt;br /&gt;
&amp;lt;/xsl:stylesheet&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=P6-dev&amp;diff=13920</id>
		<title>P6-dev</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=P6-dev&amp;diff=13920"/>
		<updated>2014-10-27T06:55:43Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: add&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is a place to record ideas which people feel are not appropriate for addition to the TEI P5 Guidelines (perhaps because they break backwards compatibility so extremely) but which they think should be recorded for reconsideration during development of the next major revision of P6.  Things here should probably have had a FR submitted on sourceforge first and been turned down for P5. One when we should be thinking about P6 see the final paragraph of the Birnbaum Doctrine: http://www.tei-c.org/Activities/Council/Working/tcw09.xml &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Module fragmentation, e.g. http://purl.org/tei/fr/3490054 asked for splitting off all dateTime related elements into a small module of its own. Ann Arbor 2012 face to face meeting decided this kind of fragmentation should be postponed until P6.&lt;br /&gt;
&lt;br /&gt;
* Consider placing a restriction on the simultaneous use of @url and @facs on &amp;lt;graphic&amp;gt; (see Council list discussion 2012-06-20). &lt;br /&gt;
&lt;br /&gt;
NOTE: Some of the work on lists has already been done in release 2.7.0.&lt;br /&gt;
* Completely redo handling of lists by:&lt;br /&gt;
** dropping @type&lt;br /&gt;
** introducing @ordered in case the creator of a TEI document wants to record the semantic order of items in the list (but does anyone want to do this? on other elements as well?)&lt;br /&gt;
** using only @rend or @style (pending http://purl.org/TEI/FR/3519866 ) to record bulleted, arabic numbers, roman numerals, etc.&lt;br /&gt;
** redefining handling of &amp;quot;gloss lists&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* Consider a proper object-oriented inheritance structure, whereby (for instance) there could be a generic &amp;quot;entity&amp;quot; object, with a core structure, and &amp;quot;person&amp;quot;, &amp;quot;place&amp;quot; and &amp;quot;org&amp;quot; objects could inherit this structure from it. Inheritance would allow overriding of various components of the structure, and specialization of them; for instance, the generic entity might have a start date and an end date, and for the descendant person would refine these into birth and death. We'd have to consider whether multiple inheritance would be practical (for instance, how would you merge the content models of two ancestors)?&lt;br /&gt;
&lt;br /&gt;
* [[Ad-hoc_committee_on_encoding_of_bibliographic_citations#Proposed_future_revisions_to_the_Guidelines_.28which_will_break_backwards_compatibility.29|Things related to encoding of bibliographic citations]]&lt;br /&gt;
&lt;br /&gt;
* An object inheritance model&lt;br /&gt;
&lt;br /&gt;
* A firm distinction between elements used in the header and those used in the text.  For example:&lt;br /&gt;
** There would be one element, with specific attributes and a specific content model, for the title in the metadata and another for any title transcribed in the document)&lt;br /&gt;
** att.global might be separated into a class for attributes on header elements and those on text elements.&lt;br /&gt;
&lt;br /&gt;
* A clear distinction between elements used when transcribing a source document (like bibl) and elements used in creating born-digital documents (like biblStruct and biblFull).  Need to figure out how msDesc fits into this.&lt;br /&gt;
&lt;br /&gt;
* Expansion of [[ODD#Future_plans:_.22Pure_ODD.22|Pure ODD]] to enable us to define the content model of elements based on context; this would be convertible into models based on complexTypes in XSD, and into Schematron in RelaxNG. This would require that we drop support for DTDs (which most agree would be a good idea anyway).&lt;br /&gt;
&lt;br /&gt;
* Go through a list of recent standards and standards updates and recommend how to use TEI in combination with them. Sample recommendations might be (I'm not asserting the truth of any of these):&lt;br /&gt;
** ''If encoders use NISO Z39.84-2005, the DOI may be expected to appear in the  ''idno'' element.''&lt;br /&gt;
** ''None of the bibliographic elements exactly match any of the bibliographic elements in ANSI/NISO Z39.96-2012''&lt;br /&gt;
** ''If reporting on use digital objects using NISO SUSHI, each object with a TEI header should be reported on''&lt;br /&gt;
** ''If linking to resources that are available over both http:// and https:// protocols, it is recommended to use the 'procotol-indepedent' uris starting with // ''&lt;br /&gt;
** ...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Suggestions]]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=P6-dev&amp;diff=13919</id>
		<title>P6-dev</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=P6-dev&amp;diff=13919"/>
		<updated>2014-10-27T06:54:19Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: tweak&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is a place to record ideas which people feel are not appropriate for addition to the TEI P5 Guidelines (perhaps because they break backwards compatibility so extremely) but which they think should be recorded for reconsideration during development of the next major revision of P6.  Things here should probably have had a FR submitted on sourceforge first and been turned down for P5. One when we should be thinking about P6 see the final paragraph of the Birnbaum Doctrine: http://www.tei-c.org/Activities/Council/Working/tcw09.xml &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Module fragmentation, e.g. http://purl.org/tei/fr/3490054 asked for splitting off all dateTime related elements into a small module of its own. Ann Arbor 2012 face to face meeting decided this kind of fragmentation should be postponed until P6.&lt;br /&gt;
&lt;br /&gt;
* Consider placing a restriction on the simultaneous use of @url and @facs on &amp;lt;graphic&amp;gt; (see Council list discussion 2012-06-20). &lt;br /&gt;
&lt;br /&gt;
NOTE: Some of the work on lists has already been done in release 2.7.0.&lt;br /&gt;
* Completely redo handling of lists by:&lt;br /&gt;
** dropping @type&lt;br /&gt;
** introducing @ordered in case the creator of a TEI document wants to record the semantic order of items in the list (but does anyone want to do this? on other elements as well?)&lt;br /&gt;
** using only @rend or @style (pending http://purl.org/TEI/FR/3519866 ) to record bulleted, arabic numbers, roman numerals, etc.&lt;br /&gt;
** redefining handling of &amp;quot;gloss lists&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* Consider a proper object-oriented inheritance structure, whereby (for instance) there could be a generic &amp;quot;entity&amp;quot; object, with a core structure, and &amp;quot;person&amp;quot;, &amp;quot;place&amp;quot; and &amp;quot;org&amp;quot; objects could inherit this structure from it. Inheritance would allow overriding of various components of the structure, and specialization of them; for instance, the generic entity might have a start date and an end date, and for the descendant person would refine these into birth and death. We'd have to consider whether multiple inheritance would be practical (for instance, how would you merge the content models of two ancestors)?&lt;br /&gt;
&lt;br /&gt;
* [[Ad-hoc_committee_on_encoding_of_bibliographic_citations#Proposed_future_revisions_to_the_Guidelines_.28which_will_break_backwards_compatibility.29|Things related to encoding of bibliographic citations]]&lt;br /&gt;
&lt;br /&gt;
* An object inheritance model&lt;br /&gt;
&lt;br /&gt;
* A firm distinction between elements used in the header and those used in the text.  For example:&lt;br /&gt;
** There would be one element, with specific attributes and a specific content model, for the title in the metadata and another for any title transcribed in the document)&lt;br /&gt;
** att.global might be separated into a class for attributes on header elements and those on text elements.&lt;br /&gt;
&lt;br /&gt;
* A clear distinction between elements used when transcribing a source document (like bibl) and elements used in creating born-digital documents (like biblStruct and biblFull).  Need to figure out how msDesc fits into this.&lt;br /&gt;
&lt;br /&gt;
* Expansion of [[ODD#Future_plans:_.22Pure_ODD.22|Pure ODD]] to enable us to define the content model of elements based on context; this would be convertible into models based on complexTypes in XSD, and into Schematron in RelaxNG. This would require that we drop support for DTDs (which most agree would be a good idea anyway).&lt;br /&gt;
&lt;br /&gt;
* Go through a list of recent standards and standards updates and recommend how to use TEI in combination with them. Sample recommendations might be (I'm not asserting the truth of any of these):&lt;br /&gt;
** ''If encoders use NISO Z39.84-2005, the DOI may be expected to appear in the  ''idno'' element.''&lt;br /&gt;
** ''None of the bibliographic elements exactly match any of the bibliographic elements in ANSI/NISO Z39.96-2012''&lt;br /&gt;
** ''If reporting on use digital objects using NISO SUSHI, each object with a TEI header should be reported on''&lt;br /&gt;
** ...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Suggestions]]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=P6-dev&amp;diff=13918</id>
		<title>P6-dev</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=P6-dev&amp;diff=13918"/>
		<updated>2014-10-27T06:53:59Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: add standards&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is a place to record ideas which people feel are not appropriate for addition to the TEI P5 Guidelines (perhaps because they break backwards compatibility so extremely) but which they think should be recorded for reconsideration during development of the next major revision of P6.  Things here should probably have had a FR submitted on sourceforge first and been turned down for P5. One when we should be thinking about P6 see the final paragraph of the Birnbaum Doctrine: http://www.tei-c.org/Activities/Council/Working/tcw09.xml &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Module fragmentation, e.g. http://purl.org/tei/fr/3490054 asked for splitting off all dateTime related elements into a small module of its own. Ann Arbor 2012 face to face meeting decided this kind of fragmentation should be postponed until P6.&lt;br /&gt;
&lt;br /&gt;
* Consider placing a restriction on the simultaneous use of @url and @facs on &amp;lt;graphic&amp;gt; (see Council list discussion 2012-06-20). &lt;br /&gt;
&lt;br /&gt;
NOTE: Some of the work on lists has already been done in release 2.7.0.&lt;br /&gt;
* Completely redo handling of lists by:&lt;br /&gt;
** dropping @type&lt;br /&gt;
** introducing @ordered in case the creator of a TEI document wants to record the semantic order of items in the list (but does anyone want to do this? on other elements as well?)&lt;br /&gt;
** using only @rend or @style (pending http://purl.org/TEI/FR/3519866 ) to record bulleted, arabic numbers, roman numerals, etc.&lt;br /&gt;
** redefining handling of &amp;quot;gloss lists&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* Consider a proper object-oriented inheritance structure, whereby (for instance) there could be a generic &amp;quot;entity&amp;quot; object, with a core structure, and &amp;quot;person&amp;quot;, &amp;quot;place&amp;quot; and &amp;quot;org&amp;quot; objects could inherit this structure from it. Inheritance would allow overriding of various components of the structure, and specialization of them; for instance, the generic entity might have a start date and an end date, and for the descendant person would refine these into birth and death. We'd have to consider whether multiple inheritance would be practical (for instance, how would you merge the content models of two ancestors)?&lt;br /&gt;
&lt;br /&gt;
* [[Ad-hoc_committee_on_encoding_of_bibliographic_citations#Proposed_future_revisions_to_the_Guidelines_.28which_will_break_backwards_compatibility.29|Things related to encoding of bibliographic citations]]&lt;br /&gt;
&lt;br /&gt;
* An object inheritance model&lt;br /&gt;
&lt;br /&gt;
* A firm distinction between elements used in the header and those used in the text.  For example:&lt;br /&gt;
** There would be one element, with specific attributes and a specific content model, for the title in the metadata and another for any title transcribed in the document)&lt;br /&gt;
** att.global might be separated into a class for attributes on header elements and those on text elements.&lt;br /&gt;
&lt;br /&gt;
* A clear distinction between elements used when transcribing a source document (like bibl) and elements used in creating born-digital documents (like biblStruct and biblFull).  Need to figure out how msDesc fits into this.&lt;br /&gt;
&lt;br /&gt;
* Expansion of [[ODD#Future_plans:_.22Pure_ODD.22|Pure ODD]] to enable us to define the content model of elements based on context; this would be convertible into models based on complexTypes in XSD, and into Schematron in RelaxNG. This would require that we drop support for DTDs (which most agree would be a good idea anyway).&lt;br /&gt;
&lt;br /&gt;
* Go through a list of recent standards and standards updates and recommend how to use TEI in combination with them. Sample recommendations might be (I'm not asserting the truth of any of these):&lt;br /&gt;
** ''If encoders use NISO Z39.84-2005, the DOI may be expected to appear in the  ''idno'' element.''&lt;br /&gt;
** ''None of the bibliographic elements exactly match any of the bibliographic elements in ANSI/NISO Z39.96-2012''&lt;br /&gt;
** ''If reporting on use digital objects using NISO SUSHI, each object with a TEI header should be reported on''&lt;br /&gt;
...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Suggestions]]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Minutes_from_October_3,_2013&amp;diff=12693</id>
		<title>Minutes from October 3, 2013</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Minutes_from_October_3,_2013&amp;diff=12693"/>
		<updated>2013-11-26T02:46:09Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: links, links, links&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Attendees ==&lt;br /&gt;
 &lt;br /&gt;
* Glenn Worthey, Stanford University&lt;br /&gt;
* Kiyonori Nagasaki, International Institute for Digital Humanities, Tokyo&lt;br /&gt;
* Martin de la Iglesia, Göttingen State and University Library&lt;br /&gt;
* Dawn Childress, Pennsylvania State University&lt;br /&gt;
* Syd Bauman, Northeastern University&lt;br /&gt;
* Kevin Hawkins (Convener), University of Michigan&lt;br /&gt;
* Michelle Dalmau (Convener), Indiana University&lt;br /&gt;
&lt;br /&gt;
== Action Items ==&lt;br /&gt;
* Update level 2 example; currently incorrect example linked (Kevin)&lt;br /&gt;
* Confirm why level 1 does not meet abstract model (Kevin/Syd)&lt;br /&gt;
* Verify whether level 2 meets the abstract model (Kevin/Syd)&lt;br /&gt;
&lt;br /&gt;
== Introductions ==&lt;br /&gt;
* Glen Worthey, Stanford Libraries&lt;br /&gt;
** Would like to explore ways to connect the various libraries-related digital humanities interest groups like ADHO for Libraries, ACRL Digital Humanities, and DLF &lt;br /&gt;
** Poster slam (ADHO DH &amp;amp; Libraries SIG)&lt;br /&gt;
** Proliferation of these organizations may be unnecessary; look for ways to combine or coordinate with the others group&lt;br /&gt;
* Martin de la Iglesia, Göttingen State and University Library&lt;br /&gt;
** Natural for librarian like him to support TEI work; advocates librarian involvement in DH projects.&lt;br /&gt;
* Kiyonori Nagasaki, [http://www.dhii.jp/index-e.html International Institute for Digital Humanities], Tokyo&lt;br /&gt;
** Interested in dissemination of TEI among Japanese researchers and how to include librarians in this.&lt;br /&gt;
* Dawn Childress, Penn State&lt;br /&gt;
** Doesn’t do anything as part of her job related to TEI but works independently on faculty research projects that feature TEI&lt;br /&gt;
** Many faculty members want to create descriptive and/or annotated bibliographies online, which has led her to create the Open Bibliography Project (modeled on TEI). &lt;br /&gt;
* Low-barrier solution for publishing bibliographies for the Web&lt;br /&gt;
* RDF-based&lt;br /&gt;
* Controlled vocabularies and ontologies&lt;br /&gt;
** Syd wants it open source to plug into [http://www.tapasproject.org/ TAPAS]&lt;br /&gt;
* Syd Bauman, Northeastern, Senior Programmer/Analyst&lt;br /&gt;
** These days writes code almost only in XSLT and Bash.&lt;br /&gt;
** Does TEI all the time!&lt;br /&gt;
* Michelle Dalmau, IU, manages several TEI projects, contributor to the Best Practices&lt;br /&gt;
** Reported on some data that would not be covered in Michelle’s and Kevin’s presentation the following day re: use of TEI in libraries&lt;br /&gt;
* Kevin Hawkins, Michigan&lt;br /&gt;
** Michigan as one of the first, early mid-90s e-text producers&lt;br /&gt;
** Moved toward light encoding (level 1/2); “not real TEI” though a cost-effective measure for broad access to texts&lt;br /&gt;
** Summed up Best Practices work&lt;br /&gt;
&lt;br /&gt;
== On Bibliographies ==&lt;br /&gt;
* Kevin reminds us that the [https://www.zotero.org/groups/tei TEI Bibliography] has moved to Zotero&lt;br /&gt;
** Exports TEI (using the Firefox plugin, which exports each citation as a biblStruct). There’s an XSLT which wraps this in the code needed for the bibliography on the TEI website&lt;br /&gt;
** Zotero is a good tool for strictly bibliographic citation management&lt;br /&gt;
* Zotero has limitations&lt;br /&gt;
** Flat list of fields&lt;br /&gt;
** Descriptive fields dump to “notes;” no semantic support of descriptive bibliographies&lt;br /&gt;
* Descriptive notes&lt;br /&gt;
* Annotation, etc.&lt;br /&gt;
** Dawn Childress is advocating on behalf of the humanist bibliographers who view bibliographies as scholarly documents&lt;br /&gt;
* Syd mentions the [http://barlach-biblio.org/ Barlach Bibliography] as a TEI-based bibliography&lt;br /&gt;
** Processing done by Quinn Dombrowski. Was once featured as part of [http://www.projectbamboo.org/ Project Bamboo].&lt;br /&gt;
&lt;br /&gt;
== [http://www.tei-c.org/SIG/Libraries/teiinlibraries/ On Best Practices] ==&lt;br /&gt;
* Kevin finds level 2 example; needs to update link in the best practices&lt;br /&gt;
* Level 1 does not meet the Abstract model; level 2 may not either… &lt;br /&gt;
* ODD/Schema enforce practices that are merely suggested in the prose. This promotes consistent encoding&lt;br /&gt;
* Still not enough awareness about the Best Practices: how can they be adapted or modified for non-North American perspectives?&lt;br /&gt;
* SIG grant could pay for a savvy student to formally place feature requests to the TEI-Council via SourceForge; same student could update best practices to align with latest P5 updates (http://tinyurl.com/lssy47v)&lt;br /&gt;
&lt;br /&gt;
== On “TEI-Nudge” ==&lt;br /&gt;
* A [http://tei-l.970651.n3.nabble.com/TEI-Nudge-or-Libraries-and-the-TEI-td4024573.html recent post to TEI-L] authored by Martin Mueller, Northwestern (member of TEI Board)&lt;br /&gt;
* Quick Overview (but no one read the entire blog post at the time of meeting)&lt;br /&gt;
** Library community better served to be circulating documents at some base-level &lt;br /&gt;
** Quick discussion of what Sebastian calls a processing model for TEI &lt;br /&gt;
** Michelle said that at IU, we have in place something like a “level 3” processing level so we can publish and query all text collections; while adding more sophisticated functionality for digital pedagogy or research in parallel, at a later stage or using other tools&lt;br /&gt;
* Dichotomy at this conference&lt;br /&gt;
** Customization&lt;br /&gt;
** Interoperability&lt;br /&gt;
* Closer to interoperability …. Create a version of the TEI for exchange; keep richer version for local needs&lt;br /&gt;
* Kevin said that In claiming that the TEI can work for many texts, the message of the utility of the TEI is muddled; if we instead focused on TEI for reformatting pre-existing documents (rather than born-digital … ), the case for when to use TEI would be clearer to the broader world. But Syd noted that the TEI also has special capabilities for encoding born-digital dictionaries and other such documents without a discrete source document.&lt;br /&gt;
* Kevin noted that HathiTrust has replaced level 1 for its member institutions, using METS, raw OCR, and page images; he added that HathiTrust is likely to develop something akin to level 2 at some point. &lt;br /&gt;
* Kevin suggested that the TEI might reimagine the Guidelines as an abstract model and then expect communities of practice to develop their own application profile, akin to how Dublin Core and METS work. &lt;br /&gt;
&lt;br /&gt;
== Thutmose II ==&lt;br /&gt;
* [http://www.blackmesatech.com/2010/12/thutmose/userdoc.xml Thutmose II]: XSLT for transforming MARC XML into TEI Headers … &lt;br /&gt;
** Need a way to transform the opposite direction&lt;br /&gt;
* MARC to TEI (for cataloging for digital version)&lt;br /&gt;
* Another SIG grant possibility&lt;br /&gt;
** Unclear how the MARC-to-header style sheets are being used if at all&lt;br /&gt;
&lt;br /&gt;
== [[TEI Libraries SIG Manifesto |Manifesto]] ==&lt;br /&gt;
* Developed last year as a way to secure library stakeholder by-in for the TEI&lt;br /&gt;
* A draft was shared on the TEI-L and TEILIB-L lists, but no contributions were made&lt;br /&gt;
* Too much of North American bias?&lt;br /&gt;
* May be irrelevant today&lt;br /&gt;
* We should have a quick look to determine whether or how to move forward with this document [http://tinyurl.com/kpj9fze]&lt;br /&gt;
&lt;br /&gt;
[[Category:SIG:Libraries]]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11966</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11966"/>
		<updated>2013-05-21T04:06:51Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: 13 digit ISBNs&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
==Scope==&lt;br /&gt;
* I'm using N-Triples, they've not been validated. &lt;br /&gt;
* I'm primarily concerning myself with links between the [[NZETC]] and other parties, primarily because this is what I know about.&lt;br /&gt;
* The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). &lt;br /&gt;
* I'm not concerned with the httpRange-14 issue (yet)&lt;br /&gt;
* These comments relate to the evolving draft BIBFRAME as at early May 2013; the draft is expected to evolve.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We hold the work in multiple formats, archive.org has an instance and there are ISBNs for it too. [http://www.ietf.org/rfc/rfc3187.txt RFC 3187] details using ISBNs as URNs. RFC 3187 predates but anticipates 13 digit ISBNs.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:0723300224 .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:9780723300229 .&lt;br /&gt;
&lt;br /&gt;
== Subject ==&lt;br /&gt;
&lt;br /&gt;
I'm using an anonymous node here, rather than introduce a new identifier globally. This wikipedia article has the same topic. I'm going to assume that labels and so forth can be inferred from wikipedia if necessary, particularly since they already have labels in more languages than the NZETC is going to have in the foreseeable future. &lt;br /&gt;
&lt;br /&gt;
 _:local001 rdf:type http://bibframe.org/vocab/Topic .&lt;br /&gt;
 _:local001 bf:relatedResource http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 _:local001 bf:relatedResource http://en.wikipedia.org/wiki/Buller's_Shearwater .&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I'm still not quite sure how/whether to link to http://en.wikipedia.org/wiki/Buller's_Shearwater vs how/whether to link to http://www.wikidata.org/wiki/Q1272190 Suggestions appreciated.&lt;br /&gt;
&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The text of the work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 _:local002 rdf:type http://bibframe.org/vocab/Person .&lt;br /&gt;
 _:local002 bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html.&lt;br /&gt;
 _:local002 bf:relatedResource http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html  .&lt;br /&gt;
 _:local002 bf:relatedResource http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 _:local002 bf:relatedResource http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system due to lack of attribution in the early edditions, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 _:local003 rdf:type http://bibframe.org/vocab/Person .&lt;br /&gt;
 _:local003 bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html .&lt;br /&gt;
 _:local003 bf:relatedResource http://www.wikidata.org/wiki/Q1335286 &lt;br /&gt;
 _:local003 bf:relatedResource http://viaf.org/viaf/42113661/&lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same ePUB as above, available through a re-distributor (allowed since it's under a CC license). Since it's an identical byte-for-byte copy:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== Composition ==&lt;br /&gt;
&lt;br /&gt;
[http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html this] is a part of [http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html that] is part of [http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html this other thing]. Currently there doesn't appear to be a way to encode this in a standard fashion in BIBFRAME.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html .&lt;br /&gt;
&lt;br /&gt;
Once we put all the components of a work into an ePUB file pointing to them becomes more complex, but most of the relationships stay the same.&lt;br /&gt;
&lt;br /&gt;
 jar:http://nzetc.victoria.ac.nz/downloads/BulBird.epub!/tm/scholarly/tei-BulBird.html bf:?  jar:http://nzetc.victoria.ac.nz/downloads/BulBird.epub!/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
&lt;br /&gt;
See [https://www.iana.org/assignments/uri-schemes/prov/jar here] for the definition of jar: URIs to point inside ePUBs and other zip files.&lt;br /&gt;
&lt;br /&gt;
== Derivation ==&lt;br /&gt;
&lt;br /&gt;
There doesn't appear to be a way to encode that this HTML file is mechanically derived from this XML fragment&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html bf:? http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#Bul02BirdP041 .&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11964</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11964"/>
		<updated>2013-05-18T23:23:06Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: moved BibFrameTeiExample to BIBFRAME Stuctural Example using TEI&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
==Scope==&lt;br /&gt;
* I'm using N-Triples, they've not been validated. &lt;br /&gt;
* I'm primarily concerning myself with links between the [[NZETC]] and other parties, primarily because this is what I know about.&lt;br /&gt;
* The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). &lt;br /&gt;
* I'm not concerned with the httpRange-14 issue (yet)&lt;br /&gt;
* These comments relate to the evolving draft BIBFRAME as at early May 2013; the draft is expected to evolve.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We hold the work in multiple formats, archive.org has an instance and there are ISBNs for it too. [http://www.ietf.org/rfc/rfc3187.txt RFC 3187] details using ISBNs as URNs.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:0723300224 .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:9780723300229 .&lt;br /&gt;
&lt;br /&gt;
== Subject ==&lt;br /&gt;
&lt;br /&gt;
I'm using an anonymous node here, rather than introduce a new identifier globally. This wikipedia article has the same topic. I'm going to assume that labels and so forth can be inferred from wikipedia if necessary, particularly since they already have labels in more languages than the NZETC is going to have in the foreseeable future. &lt;br /&gt;
&lt;br /&gt;
 _:local001 rdf:type http://bibframe.org/vocab/Topic .&lt;br /&gt;
 _:local001 bf:relatedResource http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 _:local001 bf:relatedResource http://en.wikipedia.org/wiki/Buller's_Shearwater .&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I'm still not quite sure how/whether to link to http://en.wikipedia.org/wiki/Buller's_Shearwater vs how/whether to link to http://www.wikidata.org/wiki/Q1272190 Suggestions appreciated.&lt;br /&gt;
&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The text of the work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 _:local002 rdf:type http://bibframe.org/vocab/Person .&lt;br /&gt;
 _:local002 bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html.&lt;br /&gt;
 _:local002 bf:relatedResource http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html  .&lt;br /&gt;
 _:local002 bf:relatedResource http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 _:local002 bf:relatedResource http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system due to lack of attribution in the early edditions, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 _:local003 rdf:type http://bibframe.org/vocab/Person .&lt;br /&gt;
 _:local003 bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html .&lt;br /&gt;
 _:local003 bf:relatedResource http://www.wikidata.org/wiki/Q1335286 &lt;br /&gt;
 _:local003 bf:relatedResource http://viaf.org/viaf/42113661/&lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same ePUB as above, available through a re-distributor (allowed since it's under a CC license). Since it's an identical byte-for-byte copy:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== Composition ==&lt;br /&gt;
&lt;br /&gt;
[http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html this] is a part of [http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html that] is part of [http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html this other thing]. Currently there doesn't appear to be a way to encode this in a standard fashion in BIBFRAME.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html .&lt;br /&gt;
&lt;br /&gt;
Once we put all the components of a work into an ePUB file pointing to them becomes more complex, but most of the relationships stay the same.&lt;br /&gt;
&lt;br /&gt;
 jar:http://nzetc.victoria.ac.nz/downloads/BulBird.epub!/tm/scholarly/tei-BulBird.html bf:?  jar:http://nzetc.victoria.ac.nz/downloads/BulBird.epub!/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
&lt;br /&gt;
See [https://www.iana.org/assignments/uri-schemes/prov/jar here] for the definition of jar: URIs to point inside ePUBs and other zip files.&lt;br /&gt;
&lt;br /&gt;
== Derivation ==&lt;br /&gt;
&lt;br /&gt;
There doesn't appear to be a way to encode that this HTML file is mechanically derived from this XML fragment&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html bf:? http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#Bul02BirdP041 .&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BibFrameTeiExample&amp;diff=11965</id>
		<title>BibFrameTeiExample</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BibFrameTeiExample&amp;diff=11965"/>
		<updated>2013-05-18T23:23:06Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: moved BibFrameTeiExample to BIBFRAME Stuctural Example using TEI&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[BIBFRAME Stuctural Example using TEI]]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11963</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11963"/>
		<updated>2013-05-18T23:20:07Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: /* Authoriship */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
==Scope==&lt;br /&gt;
* I'm using N-Triples, they've not been validated. &lt;br /&gt;
* I'm primarily concerning myself with links between the [[NZETC]] and other parties, primarily because this is what I know about.&lt;br /&gt;
* The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). &lt;br /&gt;
* I'm not concerned with the httpRange-14 issue (yet)&lt;br /&gt;
* These comments relate to the evolving draft BIBFRAME as at early May 2013; the draft is expected to evolve.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We hold the work in multiple formats, archive.org has an instance and there are ISBNs for it too. [http://www.ietf.org/rfc/rfc3187.txt RFC 3187] details using ISBNs as URNs.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:0723300224 .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:9780723300229 .&lt;br /&gt;
&lt;br /&gt;
== Subject ==&lt;br /&gt;
&lt;br /&gt;
I'm using an anonymous node here, rather than introduce a new identifier globally. This wikipedia article has the same topic. I'm going to assume that labels and so forth can be inferred from wikipedia if necessary, particularly since they already have labels in more languages than the NZETC is going to have in the foreseeable future. &lt;br /&gt;
&lt;br /&gt;
 _:local001 rdf:type http://bibframe.org/vocab/Topic .&lt;br /&gt;
 _:local001 bf:relatedResource http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 _:local001 bf:relatedResource http://en.wikipedia.org/wiki/Buller's_Shearwater .&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I'm still not quite sure how/whether to link to http://en.wikipedia.org/wiki/Buller's_Shearwater vs how/whether to link to http://www.wikidata.org/wiki/Q1272190 Suggestions appreciated.&lt;br /&gt;
&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The text of the work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 _:local002 rdf:type http://bibframe.org/vocab/Person .&lt;br /&gt;
 _:local002 bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html.&lt;br /&gt;
 _:local002 bf:relatedResource http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html  .&lt;br /&gt;
 _:local002 bf:relatedResource http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 _:local002 bf:relatedResource http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system due to lack of attribution in the early edditions, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 _:local003 rdf:type http://bibframe.org/vocab/Person .&lt;br /&gt;
 _:local003 bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html .&lt;br /&gt;
 _:local003 bf:relatedResource http://www.wikidata.org/wiki/Q1335286 &lt;br /&gt;
 _:local003 bf:relatedResource http://viaf.org/viaf/42113661/&lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same ePUB as above, available through a re-distributor (allowed since it's under a CC license). Since it's an identical byte-for-byte copy:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== Composition ==&lt;br /&gt;
&lt;br /&gt;
[http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html this] is a part of [http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html that] is part of [http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html this other thing]. Currently there doesn't appear to be a way to encode this in a standard fashion in BIBFRAME.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html .&lt;br /&gt;
&lt;br /&gt;
Once we put all the components of a work into an ePUB file pointing to them becomes more complex, but most of the relationships stay the same.&lt;br /&gt;
&lt;br /&gt;
 jar:http://nzetc.victoria.ac.nz/downloads/BulBird.epub!/tm/scholarly/tei-BulBird.html bf:?  jar:http://nzetc.victoria.ac.nz/downloads/BulBird.epub!/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
&lt;br /&gt;
See [https://www.iana.org/assignments/uri-schemes/prov/jar here] for the definition of jar: URIs to point inside ePUBs and other zip files.&lt;br /&gt;
&lt;br /&gt;
== Derivation ==&lt;br /&gt;
&lt;br /&gt;
There doesn't appear to be a way to encode that this HTML file is mechanically derived from this XML fragment&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html bf:? http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#Bul02BirdP041 .&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11962</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11962"/>
		<updated>2013-05-18T23:17:58Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: /* Authoriship */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
==Scope==&lt;br /&gt;
* I'm using N-Triples, they've not been validated. &lt;br /&gt;
* I'm primarily concerning myself with links between the [[NZETC]] and other parties, primarily because this is what I know about.&lt;br /&gt;
* The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). &lt;br /&gt;
* I'm not concerned with the httpRange-14 issue (yet)&lt;br /&gt;
* These comments relate to the evolving draft BIBFRAME as at early May 2013; the draft is expected to evolve.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We hold the work in multiple formats, archive.org has an instance and there are ISBNs for it too. [http://www.ietf.org/rfc/rfc3187.txt RFC 3187] details using ISBNs as URNs.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:0723300224 .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:9780723300229 .&lt;br /&gt;
&lt;br /&gt;
== Subject ==&lt;br /&gt;
&lt;br /&gt;
I'm using an anonymous node here, rather than introduce a new identifier globally. This wikipedia article has the same topic. I'm going to assume that labels and so forth can be inferred from wikipedia if necessary, particularly since they already have labels in more languages than the NZETC is going to have in the foreseeable future. &lt;br /&gt;
&lt;br /&gt;
 _:local001 rdf:type http://bibframe.org/vocab/Topic .&lt;br /&gt;
 _:local001 bf:relatedResource http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 _:local001 bf:relatedResource http://en.wikipedia.org/wiki/Buller's_Shearwater .&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I'm still not quite sure how/whether to link to http://en.wikipedia.org/wiki/Buller's_Shearwater vs how/whether to link to http://www.wikidata.org/wiki/Q1272190 Suggestions appreciated.&lt;br /&gt;
&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The text of the work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 _:local002 rdf:type http://bibframe.org/vocab/Person .&lt;br /&gt;
 _:local002 bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html.&lt;br /&gt;
 _:local002 bf:relatedResource http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html  .&lt;br /&gt;
 _:local002 bf:relatedResource http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 _:local002 bf:relatedResource http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 _:local003 rdf:type http://bibframe.org/vocab/Person .&lt;br /&gt;
 _:local003 bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html .&lt;br /&gt;
 _:local002 bf:relatedResource http://www.wikidata.org/wiki/Q1335286 &lt;br /&gt;
 _:local002 bf:relatedResource http://viaf.org/viaf/42113661/&lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same ePUB as above, available through a re-distributor (allowed since it's under a CC license). Since it's an identical byte-for-byte copy:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== Composition ==&lt;br /&gt;
&lt;br /&gt;
[http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html this] is a part of [http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html that] is part of [http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html this other thing]. Currently there doesn't appear to be a way to encode this in a standard fashion in BIBFRAME.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html .&lt;br /&gt;
&lt;br /&gt;
Once we put all the components of a work into an ePUB file pointing to them becomes more complex, but most of the relationships stay the same.&lt;br /&gt;
&lt;br /&gt;
 jar:http://nzetc.victoria.ac.nz/downloads/BulBird.epub!/tm/scholarly/tei-BulBird.html bf:?  jar:http://nzetc.victoria.ac.nz/downloads/BulBird.epub!/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
&lt;br /&gt;
See [https://www.iana.org/assignments/uri-schemes/prov/jar here] for the definition of jar: URIs to point inside ePUBs and other zip files.&lt;br /&gt;
&lt;br /&gt;
== Derivation ==&lt;br /&gt;
&lt;br /&gt;
There doesn't appear to be a way to encode that this HTML file is mechanically derived from this XML fragment&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html bf:? http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#Bul02BirdP041 .&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11961</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11961"/>
		<updated>2013-05-18T23:16:26Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: /* Subject */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
==Scope==&lt;br /&gt;
* I'm using N-Triples, they've not been validated. &lt;br /&gt;
* I'm primarily concerning myself with links between the [[NZETC]] and other parties, primarily because this is what I know about.&lt;br /&gt;
* The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). &lt;br /&gt;
* I'm not concerned with the httpRange-14 issue (yet)&lt;br /&gt;
* These comments relate to the evolving draft BIBFRAME as at early May 2013; the draft is expected to evolve.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We hold the work in multiple formats, archive.org has an instance and there are ISBNs for it too. [http://www.ietf.org/rfc/rfc3187.txt RFC 3187] details using ISBNs as URNs.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:0723300224 .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:9780723300229 .&lt;br /&gt;
&lt;br /&gt;
== Subject ==&lt;br /&gt;
&lt;br /&gt;
I'm using an anonymous node here, rather than introduce a new identifier globally. This wikipedia article has the same topic. I'm going to assume that labels and so forth can be inferred from wikipedia if necessary, particularly since they already have labels in more languages than the NZETC is going to have in the foreseeable future. &lt;br /&gt;
&lt;br /&gt;
 _:local001 rdf:type http://bibframe.org/vocab/Topic .&lt;br /&gt;
 _:local001 bf:relatedResource http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 _:local001 bf:relatedResource http://en.wikipedia.org/wiki/Buller's_Shearwater .&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I'm still not quite sure how/whether to link to http://en.wikipedia.org/wiki/Buller's_Shearwater vs how/whether to link to http://www.wikidata.org/wiki/Q1272190 Suggestions appreciated.&lt;br /&gt;
&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The text of the work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 _:local002 rdf:type http://bibframe.org/vocab/Person .&lt;br /&gt;
 _:local002 bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 _:local002 bf:relatedResource http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html .&lt;br /&gt;
 _:local002 bf:relatedResource http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 _:local002 bf:relatedResource http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 _:local003 rdf:type http://bibframe.org/vocab/Person .&lt;br /&gt;
 _:local003 bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 _:local002 bf:relatedResource http://www.wikidata.org/wiki/Q1335286 &lt;br /&gt;
 _:local002 bf:relatedResource http://viaf.org/viaf/42113661/ &lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same ePUB as above, available through a re-distributor (allowed since it's under a CC license). Since it's an identical byte-for-byte copy:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== Composition ==&lt;br /&gt;
&lt;br /&gt;
[http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html this] is a part of [http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html that] is part of [http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html this other thing]. Currently there doesn't appear to be a way to encode this in a standard fashion in BIBFRAME.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html .&lt;br /&gt;
&lt;br /&gt;
Once we put all the components of a work into an ePUB file pointing to them becomes more complex, but most of the relationships stay the same.&lt;br /&gt;
&lt;br /&gt;
 jar:http://nzetc.victoria.ac.nz/downloads/BulBird.epub!/tm/scholarly/tei-BulBird.html bf:?  jar:http://nzetc.victoria.ac.nz/downloads/BulBird.epub!/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
&lt;br /&gt;
See [https://www.iana.org/assignments/uri-schemes/prov/jar here] for the definition of jar: URIs to point inside ePUBs and other zip files.&lt;br /&gt;
&lt;br /&gt;
== Derivation ==&lt;br /&gt;
&lt;br /&gt;
There doesn't appear to be a way to encode that this HTML file is mechanically derived from this XML fragment&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html bf:? http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#Bul02BirdP041 .&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11960</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11960"/>
		<updated>2013-05-18T23:10:32Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
==Scope==&lt;br /&gt;
* I'm using N-Triples, they've not been validated. &lt;br /&gt;
* I'm primarily concerning myself with links between the [[NZETC]] and other parties, primarily because this is what I know about.&lt;br /&gt;
* The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). &lt;br /&gt;
* I'm not concerned with the httpRange-14 issue (yet)&lt;br /&gt;
* These comments relate to the evolving draft BIBFRAME as at early May 2013; the draft is expected to evolve.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We hold the work in multiple formats, archive.org has an instance and there are ISBNs for it too. [http://www.ietf.org/rfc/rfc3187.txt RFC 3187] details using ISBNs as URNs.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:0723300224 .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:9780723300229 .&lt;br /&gt;
&lt;br /&gt;
== Subject ==&lt;br /&gt;
&lt;br /&gt;
I'm using an anonymous node here, rather than introduce a new identifier globally. This wikipedia article has the same topic. I'm going to assume that labels and so forth can be inferred from wikipedia if necessary, particularly since they already have labels in more languages than the NZETC is going to have in the foreseeable future. &lt;br /&gt;
&lt;br /&gt;
 _:local001 rdf:type http://bibframe.org/vocab/Topic.html .&lt;br /&gt;
 _:local001 bf:relatedResource http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 _:local001 bf:relatedResource http://en.wikipedia.org/wiki/Buller's_Shearwater .&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I'm still not quite sure how/whether to link to http://en.wikipedia.org/wiki/Buller's_Shearwater vs how/whether to link to http://www.wikidata.org/wiki/Q1272190 Suggestions appreciated.&lt;br /&gt;
&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The text of the work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 _:local002 rdf:type http://bibframe.org/vocab/Person .&lt;br /&gt;
 _:local002 bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 _:local002 bf:relatedResource http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html .&lt;br /&gt;
 _:local002 bf:relatedResource http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 _:local002 bf:relatedResource http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 _:local003 rdf:type http://bibframe.org/vocab/Person .&lt;br /&gt;
 _:local003 bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 _:local002 bf:relatedResource http://www.wikidata.org/wiki/Q1335286 &lt;br /&gt;
 _:local002 bf:relatedResource http://viaf.org/viaf/42113661/ &lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same ePUB as above, available through a re-distributor (allowed since it's under a CC license). Since it's an identical byte-for-byte copy:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== Composition ==&lt;br /&gt;
&lt;br /&gt;
[http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html this] is a part of [http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html that] is part of [http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html this other thing]. Currently there doesn't appear to be a way to encode this in a standard fashion in BIBFRAME.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html .&lt;br /&gt;
&lt;br /&gt;
Once we put all the components of a work into an ePUB file pointing to them becomes more complex, but most of the relationships stay the same.&lt;br /&gt;
&lt;br /&gt;
 jar:http://nzetc.victoria.ac.nz/downloads/BulBird.epub!/tm/scholarly/tei-BulBird.html bf:?  jar:http://nzetc.victoria.ac.nz/downloads/BulBird.epub!/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
&lt;br /&gt;
See [https://www.iana.org/assignments/uri-schemes/prov/jar here] for the definition of jar: URIs to point inside ePUBs and other zip files.&lt;br /&gt;
&lt;br /&gt;
== Derivation ==&lt;br /&gt;
&lt;br /&gt;
There doesn't appear to be a way to encode that this HTML file is mechanically derived from this XML fragment&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html bf:? http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#Bul02BirdP041 .&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11959</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11959"/>
		<updated>2013-05-18T22:43:35Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: /* Composition */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
==Scope==&lt;br /&gt;
* I'm using N-Triples, they've not been validated. &lt;br /&gt;
* I'm primarily concerning myself with links between the [[NZETC]] and other parties, primarily because this is what I know about.&lt;br /&gt;
* The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). &lt;br /&gt;
* I'm not concerned with the httpRange-14 issue (yet)&lt;br /&gt;
* These comments relate to the evolving draft BIBFRAME as at early May 2013; the draft is expected to evolve.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We hold the work in multiple formats, archive.org has an instance and there are ISBNs for it too. [http://www.ietf.org/rfc/rfc3187.txt RFC 3187] details using ISBNs as URNs.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:0723300224 .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:9780723300229 .&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
I need to rework this in relation to the authority stuff.&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The text of the work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://www.wikidata.org/wiki/Q1335286 .&lt;br /&gt;
 http://www.wikidata.org/wiki/Q1335286 owl:sameAs http://viaf.org/viaf/42113661/ .&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Subject ==&lt;br /&gt;
&lt;br /&gt;
I'm using an anonymous node here, rather than introduce a new identifier globally. This wikipedia article has the same topic. I'm going to assume that labels and so forth can be inferred from wikipedia if necessary, particularly since they already have labels in more languages than the NZETC is going to have in the foreseeable future. &lt;br /&gt;
&lt;br /&gt;
 _:local001 rdf:type http://bibframe.org/vocab/Topic.html .&lt;br /&gt;
 _:local001 bf:relatedResource http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 _:local001 bf:relatedResource http://en.wikipedia.org/wiki/Buller's_Shearwater .&lt;br /&gt;
&lt;br /&gt;
I'm not quite sure yet what the relationship between the topic and the abstract wikidata content should be? Neither bf:identifier and owl:sameAs seem right and I really don't understand bf:hasAuthority yet.&lt;br /&gt;
&lt;br /&gt;
 _:local001 bf:? http://www.wikidata.org/wiki/Q1272190#sitelinks .&lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same ePUB as above, available through a re-distributor (allowed since it's under a CC license). Since it's an identical byte-for-byte copy:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== Composition ==&lt;br /&gt;
&lt;br /&gt;
[http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html this] is a part of [http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html that] is part of [http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html this other thing]. Currently there doesn't appear to be a way to encode this in a standard fashion in BIBFRAME.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html .&lt;br /&gt;
&lt;br /&gt;
Once we put all the components of a work into an ePUB file pointing to them becomes more complex, but most of the relationships stay the same.&lt;br /&gt;
&lt;br /&gt;
 jar:http://nzetc.victoria.ac.nz/downloads/BulBird.epub!/tm/scholarly/tei-BulBird.html bf:?  jar:http://nzetc.victoria.ac.nz/downloads/BulBird.epub!/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
&lt;br /&gt;
See [https://www.iana.org/assignments/uri-schemes/prov/jar here] for the definition of jar: URIs to point inside ePUBs and other zip files.&lt;br /&gt;
&lt;br /&gt;
== Derivation ==&lt;br /&gt;
&lt;br /&gt;
There doesn't appear to be a way to encode that this HTML file is mechanically derived from this XML fragment&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html bf:? http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#Bul02BirdP041 .&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11958</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11958"/>
		<updated>2013-05-18T22:42:26Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: /* Subject */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
==Scope==&lt;br /&gt;
* I'm using N-Triples, they've not been validated. &lt;br /&gt;
* I'm primarily concerning myself with links between the [[NZETC]] and other parties, primarily because this is what I know about.&lt;br /&gt;
* The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). &lt;br /&gt;
* I'm not concerned with the httpRange-14 issue (yet)&lt;br /&gt;
* These comments relate to the evolving draft BIBFRAME as at early May 2013; the draft is expected to evolve.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We hold the work in multiple formats, archive.org has an instance and there are ISBNs for it too. [http://www.ietf.org/rfc/rfc3187.txt RFC 3187] details using ISBNs as URNs.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:0723300224 .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:9780723300229 .&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
I need to rework this in relation to the authority stuff.&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The text of the work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://www.wikidata.org/wiki/Q1335286 .&lt;br /&gt;
 http://www.wikidata.org/wiki/Q1335286 owl:sameAs http://viaf.org/viaf/42113661/ .&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Subject ==&lt;br /&gt;
&lt;br /&gt;
I'm using an anonymous node here, rather than introduce a new identifier globally. This wikipedia article has the same topic. I'm going to assume that labels and so forth can be inferred from wikipedia if necessary, particularly since they already have labels in more languages than the NZETC is going to have in the foreseeable future. &lt;br /&gt;
&lt;br /&gt;
 _:local001 rdf:type http://bibframe.org/vocab/Topic.html .&lt;br /&gt;
 _:local001 bf:relatedResource http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 _:local001 bf:relatedResource http://en.wikipedia.org/wiki/Buller's_Shearwater .&lt;br /&gt;
&lt;br /&gt;
I'm not quite sure yet what the relationship between the topic and the abstract wikidata content should be? Neither bf:identifier and owl:sameAs seem right and I really don't understand bf:hasAuthority yet.&lt;br /&gt;
&lt;br /&gt;
 _:local001 bf:? http://www.wikidata.org/wiki/Q1272190#sitelinks .&lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same ePUB as above, available through a re-distributor (allowed since it's under a CC license). Since it's an identical byte-for-byte copy:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== Composition ==&lt;br /&gt;
&lt;br /&gt;
[http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html this] is a part of [http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html that] is part of [http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html this other thing]. Currently there doesn't appear to be a way to encode this in a standard fashion in BIBFRAME.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html .&lt;br /&gt;
&lt;br /&gt;
Once we put all the components of a work into an ePUB file the question then becomes something like this:&lt;br /&gt;
&lt;br /&gt;
 jar:http://nzetc.victoria.ac.nz/downloads/BulBird.epub!/tm/scholarly/tei-BulBird.html bf:?  jar:http://nzetc.victoria.ac.nz/downloads/BulBird.epub!/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
&lt;br /&gt;
See [https://www.iana.org/assignments/uri-schemes/prov/jar here] for the definition of jar: URIs to point inside ePUBs and other zip files.&lt;br /&gt;
&lt;br /&gt;
== Derivation ==&lt;br /&gt;
&lt;br /&gt;
There doesn't appear to be a way to encode that this HTML file is mechanically derived from this XML fragment&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html bf:? http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#Bul02BirdP041 .&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11957</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11957"/>
		<updated>2013-05-18T22:41:44Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: /* Subject */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
==Scope==&lt;br /&gt;
* I'm using N-Triples, they've not been validated. &lt;br /&gt;
* I'm primarily concerning myself with links between the [[NZETC]] and other parties, primarily because this is what I know about.&lt;br /&gt;
* The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). &lt;br /&gt;
* I'm not concerned with the httpRange-14 issue (yet)&lt;br /&gt;
* These comments relate to the evolving draft BIBFRAME as at early May 2013; the draft is expected to evolve.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We hold the work in multiple formats, archive.org has an instance and there are ISBNs for it too. [http://www.ietf.org/rfc/rfc3187.txt RFC 3187] details using ISBNs as URNs.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:0723300224 .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:9780723300229 .&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
I need to rework this in relation to the authority stuff.&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The text of the work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://www.wikidata.org/wiki/Q1335286 .&lt;br /&gt;
 http://www.wikidata.org/wiki/Q1335286 owl:sameAs http://viaf.org/viaf/42113661/ .&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Subject ==&lt;br /&gt;
&lt;br /&gt;
I'm using an anonymous node here, rather than introduce a new identifier globally. This wikipedia article has the same topic. I'm going to assume that labels and so forth can be inferred from wikipedia if necessary, particularly since they already have labels in more languages than the NZETC is going to have in the foreseeable future. &lt;br /&gt;
&lt;br /&gt;
 _:local001 rdf:type http://bibframe.org/vocab/Topic.html .&lt;br /&gt;
 _:local001 bf:relatedResource http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 _:local001 bf:relatedResource http://en.wikipedia.org/wiki/Buller's_Shearwater .&lt;br /&gt;
&lt;br /&gt;
I'm not quite sure yet what the relationship between the topic and the abstract wikidata content should be? Neither bf:identifier and owl:sameAs seem right and I really don't understand bf:hasAuthority&lt;br /&gt;
&lt;br /&gt;
 _:local001 bf:? http://www.wikidata.org/wiki/Q1272190#sitelinks .&lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same ePUB as above, available through a re-distributor (allowed since it's under a CC license). Since it's an identical byte-for-byte copy:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== Composition ==&lt;br /&gt;
&lt;br /&gt;
[http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html this] is a part of [http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html that] is part of [http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html this other thing]. Currently there doesn't appear to be a way to encode this in a standard fashion in BIBFRAME.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html .&lt;br /&gt;
&lt;br /&gt;
Once we put all the components of a work into an ePUB file the question then becomes something like this:&lt;br /&gt;
&lt;br /&gt;
 jar:http://nzetc.victoria.ac.nz/downloads/BulBird.epub!/tm/scholarly/tei-BulBird.html bf:?  jar:http://nzetc.victoria.ac.nz/downloads/BulBird.epub!/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
&lt;br /&gt;
See [https://www.iana.org/assignments/uri-schemes/prov/jar here] for the definition of jar: URIs to point inside ePUBs and other zip files.&lt;br /&gt;
&lt;br /&gt;
== Derivation ==&lt;br /&gt;
&lt;br /&gt;
There doesn't appear to be a way to encode that this HTML file is mechanically derived from this XML fragment&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html bf:? http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#Bul02BirdP041 .&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11956</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11956"/>
		<updated>2013-05-18T22:37:11Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
==Scope==&lt;br /&gt;
* I'm using N-Triples, they've not been validated. &lt;br /&gt;
* I'm primarily concerning myself with links between the [[NZETC]] and other parties, primarily because this is what I know about.&lt;br /&gt;
* The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). &lt;br /&gt;
* I'm not concerned with the httpRange-14 issue (yet)&lt;br /&gt;
* These comments relate to the evolving draft BIBFRAME as at early May 2013; the draft is expected to evolve.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We hold the work in multiple formats, archive.org has an instance and there are ISBNs for it too. [http://www.ietf.org/rfc/rfc3187.txt RFC 3187] details using ISBNs as URNs.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:0723300224 .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:9780723300229 .&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
I need to rework this in relation to the authority stuff.&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The text of the work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://www.wikidata.org/wiki/Q1335286 .&lt;br /&gt;
 http://www.wikidata.org/wiki/Q1335286 owl:sameAs http://viaf.org/viaf/42113661/ .&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Subject ==&lt;br /&gt;
&lt;br /&gt;
The primary topic of the work is New Zealand birds. I'm using an anonymous node here, rather than introduce a new identifier globally. This wikipedia article has the same topic. I'm going to assume that labels and so forth can be inferred from wikipedia if necessary, particularly since they already have labels in more languages than the NZETC is going to have in the foreseeable future. &lt;br /&gt;
&lt;br /&gt;
 _:local001 rdf:type http://bibframe.org/vocab/Topic.html .&lt;br /&gt;
 _:local001 bf:relatedResource http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 _:local001 bf:relatedResource http://en.wikipedia.org/wiki/Buller's_Shearwater .&lt;br /&gt;
&lt;br /&gt;
I'm not quite sure yet what the relationship between the topic and the abstract wikidata content should be? Neither bf:identifier and owl:sameAs seem right and I really don't understand bf:hasAuthority&lt;br /&gt;
&lt;br /&gt;
 _:local001 bf:? http://www.wikidata.org/wiki/Q1272190#sitelinks .&lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same ePUB as above, available through a re-distributor (allowed since it's under a CC license). Since it's an identical byte-for-byte copy:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== Composition ==&lt;br /&gt;
&lt;br /&gt;
[http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html this] is a part of [http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html that] is part of [http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html this other thing]. Currently there doesn't appear to be a way to encode this in a standard fashion in BIBFRAME.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html .&lt;br /&gt;
&lt;br /&gt;
Once we put all the components of a work into an ePUB file the question then becomes something like this:&lt;br /&gt;
&lt;br /&gt;
 jar:http://nzetc.victoria.ac.nz/downloads/BulBird.epub!/tm/scholarly/tei-BulBird.html bf:?  jar:http://nzetc.victoria.ac.nz/downloads/BulBird.epub!/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
&lt;br /&gt;
See [https://www.iana.org/assignments/uri-schemes/prov/jar here] for the definition of jar: URIs to point inside ePUBs and other zip files.&lt;br /&gt;
&lt;br /&gt;
== Derivation ==&lt;br /&gt;
&lt;br /&gt;
There doesn't appear to be a way to encode that this HTML file is mechanically derived from this XML fragment&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html bf:? http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#Bul02BirdP041 .&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11955</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11955"/>
		<updated>2013-05-18T22:35:36Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: /* Work / Instance */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
==Scope==&lt;br /&gt;
* I'm using N-Triples, they've not been validated. &lt;br /&gt;
* I'm primarily concerning myself with links between the [[NZETC]] and other parties, primarily because this is what I know about.&lt;br /&gt;
* The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). &lt;br /&gt;
* I'm not concerned with the httpRange-14 issue (yet)&lt;br /&gt;
* These comments relate to the evolving draft BIBFRAME as at early May 2013; the draft is expected to evolve.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We hold the work in multiple formats, archive.org has an instance and there are ISBNs for it too. [http://www.ietf.org/rfc/rfc3187.txt RFC 3187] details using ISBNs as URNs.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:0723300224 .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:9780723300229 .&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
I need to rework this in relation to the authority stuff.&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The text of the work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://www.wikidata.org/wiki/Q1335286 .&lt;br /&gt;
 http://www.wikidata.org/wiki/Q1335286 owl:sameAs http://viaf.org/viaf/42113661/ .&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Subject ==&lt;br /&gt;
&lt;br /&gt;
The primary topic of the work is New Zealand birds. I'm using an anonymous node here, rather than introduce a new identifier globally. This wikipedia article has the same topic. I'm going to assume that labels and so forth can be inferred from wikipedia if necessary, particularly since they already have labels in more languages than the NZETC is going to have in the foreseeable future. &lt;br /&gt;
&lt;br /&gt;
 _:local001 rdf:type http://bibframe.org/vocab/Topic.html .&lt;br /&gt;
 _:local001 bf:relatedResource http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 _:local001 bf:relatedResource http://en.wikipedia.org/wiki/Buller's_Shearwater .&lt;br /&gt;
&lt;br /&gt;
I'm not quite sure yet what the relationship between the topic and the abstract wikidata content should be? Neither bf:identifier and owl:sameAs seem right and I really don't understand bf:hasAuthority&lt;br /&gt;
&lt;br /&gt;
 _:local001 bf:? http://www.wikidata.org/wiki/Q1272190#sitelinks&lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same ePUB as above, available through a re-distributor (allowed since it's under a CC license). Since it's an identical byte-for-byte copy:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== Composition ==&lt;br /&gt;
&lt;br /&gt;
[http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html this] is a part of [http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html that] is part of [http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html this other thing]. Currently there doesn't appear to be a way to encode this in a standard fashion in BIBFRAME.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html .&lt;br /&gt;
&lt;br /&gt;
Once we put all the components of a work into an ePUB file the question then becomes something like this:&lt;br /&gt;
&lt;br /&gt;
 jar:http://nzetc.victoria.ac.nz/downloads/BulBird.epub!/tm/scholarly/tei-BulBird.html bf:?  jar:http://nzetc.victoria.ac.nz/downloads/BulBird.epub!/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
&lt;br /&gt;
See [https://www.iana.org/assignments/uri-schemes/prov/jar here] for the definition of jar: URIs to point inside ePUBs and other zip files.&lt;br /&gt;
&lt;br /&gt;
== Derivation ==&lt;br /&gt;
&lt;br /&gt;
There doesn't appear to be a way to encode that this HTML file is derived from this XML fragment&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html bf:? http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#Bul02BirdP041 .&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* [http://bibframe.org/ Bibframe]&lt;br /&gt;
* [ ]&lt;br /&gt;
* [ ]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11954</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11954"/>
		<updated>2013-05-18T22:34:53Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: /* Composition */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
==Scope==&lt;br /&gt;
* I'm using N-Triples, they've not been validated. &lt;br /&gt;
* I'm primarily concerning myself with links between the [[NZETC]] and other parties, primarily because this is what I know about.&lt;br /&gt;
* The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). &lt;br /&gt;
* I'm not concerned with the httpRange-14 issue (yet)&lt;br /&gt;
* These comments relate to the evolving draft BIBFRAME as at early May 2013; the draft is expected to evolve.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We hold the work in multiple formats, archive.org has an instance and there are ISBNs for it too. [http://www.ietf.org/rfc/rfc3187.txt RFC 3187] details using ISBNs as URNs.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:0723300224&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:9780723300229&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
I need to rework this in relation to the authority stuff.&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The text of the work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://www.wikidata.org/wiki/Q1335286 .&lt;br /&gt;
 http://www.wikidata.org/wiki/Q1335286 owl:sameAs http://viaf.org/viaf/42113661/ .&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
== Subject ==&lt;br /&gt;
&lt;br /&gt;
The primary topic of the work is New Zealand birds. I'm using an anonymous node here, rather than introduce a new identifier globally. This wikipedia article has the same topic. I'm going to assume that labels and so forth can be inferred from wikipedia if necessary, particularly since they already have labels in more languages than the NZETC is going to have in the foreseeable future. &lt;br /&gt;
&lt;br /&gt;
 _:local001 rdf:type http://bibframe.org/vocab/Topic.html .&lt;br /&gt;
 _:local001 bf:relatedResource http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 _:local001 bf:relatedResource http://en.wikipedia.org/wiki/Buller's_Shearwater .&lt;br /&gt;
&lt;br /&gt;
I'm not quite sure yet what the relationship between the topic and the abstract wikidata content should be? Neither bf:identifier and owl:sameAs seem right and I really don't understand bf:hasAuthority&lt;br /&gt;
&lt;br /&gt;
 _:local001 bf:? http://www.wikidata.org/wiki/Q1272190#sitelinks&lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same ePUB as above, available through a re-distributor (allowed since it's under a CC license). Since it's an identical byte-for-byte copy:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== Composition ==&lt;br /&gt;
&lt;br /&gt;
[http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html this] is a part of [http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html that] is part of [http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html this other thing]. Currently there doesn't appear to be a way to encode this in a standard fashion in BIBFRAME.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html .&lt;br /&gt;
&lt;br /&gt;
Once we put all the components of a work into an ePUB file the question then becomes something like this:&lt;br /&gt;
&lt;br /&gt;
 jar:http://nzetc.victoria.ac.nz/downloads/BulBird.epub!/tm/scholarly/tei-BulBird.html bf:?  jar:http://nzetc.victoria.ac.nz/downloads/BulBird.epub!/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
&lt;br /&gt;
See [https://www.iana.org/assignments/uri-schemes/prov/jar here] for the definition of jar: URIs to point inside ePUBs and other zip files.&lt;br /&gt;
&lt;br /&gt;
== Derivation ==&lt;br /&gt;
&lt;br /&gt;
There doesn't appear to be a way to encode that this HTML file is derived from this XML fragment&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html bf:? http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#Bul02BirdP041 .&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* [http://bibframe.org/ Bibframe]&lt;br /&gt;
* [ ]&lt;br /&gt;
* [ ]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11953</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11953"/>
		<updated>2013-05-18T22:32:54Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: /* Subject */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
==Scope==&lt;br /&gt;
* I'm using N-Triples, they've not been validated. &lt;br /&gt;
* I'm primarily concerning myself with links between the [[NZETC]] and other parties, primarily because this is what I know about.&lt;br /&gt;
* The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). &lt;br /&gt;
* I'm not concerned with the httpRange-14 issue (yet)&lt;br /&gt;
* These comments relate to the evolving draft BIBFRAME as at early May 2013; the draft is expected to evolve.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We hold the work in multiple formats, archive.org has an instance and there are ISBNs for it too. [http://www.ietf.org/rfc/rfc3187.txt RFC 3187] details using ISBNs as URNs.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:0723300224&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:9780723300229&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
I need to rework this in relation to the authority stuff.&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The text of the work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://www.wikidata.org/wiki/Q1335286 .&lt;br /&gt;
 http://www.wikidata.org/wiki/Q1335286 owl:sameAs http://viaf.org/viaf/42113661/ .&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
== Subject ==&lt;br /&gt;
&lt;br /&gt;
The primary topic of the work is New Zealand birds. I'm using an anonymous node here, rather than introduce a new identifier globally. This wikipedia article has the same topic. I'm going to assume that labels and so forth can be inferred from wikipedia if necessary, particularly since they already have labels in more languages than the NZETC is going to have in the foreseeable future. &lt;br /&gt;
&lt;br /&gt;
 _:local001 rdf:type http://bibframe.org/vocab/Topic.html .&lt;br /&gt;
 _:local001 bf:relatedResource http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 _:local001 bf:relatedResource http://en.wikipedia.org/wiki/Buller's_Shearwater .&lt;br /&gt;
&lt;br /&gt;
I'm not quite sure yet what the relationship between the topic and the abstract wikidata content should be? Neither bf:identifier and owl:sameAs seem right and I really don't understand bf:hasAuthority&lt;br /&gt;
&lt;br /&gt;
 _:local001 bf:? http://www.wikidata.org/wiki/Q1272190#sitelinks&lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same ePUB as above, available through a re-distributor (allowed since it's under a CC license). Since it's an identical byte-for-byte copy:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== Composition ==&lt;br /&gt;
&lt;br /&gt;
[http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html this] is a part of [http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html that] is part of [http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html this other thing]. Currently there doesn't appear to be a way to encode this in a standard fashion in BIBFRAME.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html .&lt;br /&gt;
&lt;br /&gt;
Once we put all the components of a work into an ePUB file the question then becomes:&lt;br /&gt;
&lt;br /&gt;
jar:http://nzetc.victoria.ac.nz/downloads/BulBird.epub!/tm/scholarly/tei-BulBird.html bf:? jar:http://nzetc.victoria.ac.nz/downloads/BulBird.epub!/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
&lt;br /&gt;
== Derivation ==&lt;br /&gt;
&lt;br /&gt;
There doesn't appear to be a way to encode that this HTML file is derived from this XML fragment&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html bf:? http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#Bul02BirdP041 .&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* [http://bibframe.org/ Bibframe]&lt;br /&gt;
* [ ]&lt;br /&gt;
* [ ]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11952</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11952"/>
		<updated>2013-05-18T22:24:21Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
==Scope==&lt;br /&gt;
* I'm using N-Triples, they've not been validated. &lt;br /&gt;
* I'm primarily concerning myself with links between the [[NZETC]] and other parties, primarily because this is what I know about.&lt;br /&gt;
* The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). &lt;br /&gt;
* I'm not concerned with the httpRange-14 issue (yet)&lt;br /&gt;
* These comments relate to the evolving draft BIBFRAME as at early May 2013; the draft is expected to evolve.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We hold the work in multiple formats, archive.org has an instance and there are ISBNs for it too. [http://www.ietf.org/rfc/rfc3187.txt RFC 3187] details using ISBNs as URNs.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:0723300224&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:9780723300229&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
I need to rework this in relation to the authority stuff.&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The text of the work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://www.wikidata.org/wiki/Q1335286 .&lt;br /&gt;
 http://www.wikidata.org/wiki/Q1335286 owl:sameAs http://viaf.org/viaf/42113661/ .&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
== Subject ==&lt;br /&gt;
&lt;br /&gt;
The primary topic of the work is New Zealand birds. I'm using an anonymous node here, rather than introduce a new identifier globally. This wikipedia article has the same topic. I'm going to assume that labels and so forth can be inferred from wikipedia if necessary. &lt;br /&gt;
&lt;br /&gt;
 _:local001 rdf:type http://bibframe.org/vocab/Topic.html .&lt;br /&gt;
 _:local001 bf:relatedResource http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html .&lt;br /&gt;
 _:local001 bf:relatedResource http://en.wikipedia.org/wiki/Birds_of_New_Zealand .&lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same ePUB as above, available through a re-distributor (allowed since it's under a CC license). Since it's an identical byte-for-byte copy:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== Composition ==&lt;br /&gt;
&lt;br /&gt;
[http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html this] is a part of [http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html that] is part of [http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html this other thing]. Currently there doesn't appear to be a way to encode this in a standard fashion in BIBFRAME.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html .&lt;br /&gt;
&lt;br /&gt;
Once we put all the components of a work into an ePUB file the question then becomes:&lt;br /&gt;
&lt;br /&gt;
jar:http://nzetc.victoria.ac.nz/downloads/BulBird.epub!/tm/scholarly/tei-BulBird.html bf:? jar:http://nzetc.victoria.ac.nz/downloads/BulBird.epub!/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
&lt;br /&gt;
== Derivation ==&lt;br /&gt;
&lt;br /&gt;
There doesn't appear to be a way to encode that this HTML file is derived from this XML fragment&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html bf:? http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#Bul02BirdP041 .&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* [http://bibframe.org/ Bibframe]&lt;br /&gt;
* [ ]&lt;br /&gt;
* [ ]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11951</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11951"/>
		<updated>2013-05-18T22:18:34Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: /* Work / Instance */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
==Scope==&lt;br /&gt;
* I'm using N-Triples, they've not been validated. &lt;br /&gt;
* I'm primarily concerning myself with links between the [[NZETC]] and other parties, primarily because this is what I know about.&lt;br /&gt;
* The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). &lt;br /&gt;
* I'm not concerned with the httpRange-14 issue (yet)&lt;br /&gt;
* These comments relate to the evolving draft BIBFRAME as at early May 2013; the draft is expected to evolve.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We hold the work in multiple formats, archive.org has an instance and there are ISBNs for it too. [http://www.ietf.org/rfc/rfc3187.txt RFC 3187] details using ISBNs as URNs.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:0723300224&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance urn:isbn:9780723300229&lt;br /&gt;
&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The text of the work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://www.wikidata.org/wiki/Q1335286 .&lt;br /&gt;
 http://www.wikidata.org/wiki/Q1335286 owl:sameAs http://viaf.org/viaf/42113661/ .&lt;br /&gt;
&lt;br /&gt;
== Subject ==&lt;br /&gt;
&lt;br /&gt;
The primary topic of the work is New Zealand birds. I'm using an anonymous node here, rather than introduce a new identifier globally:&lt;br /&gt;
&lt;br /&gt;
 _:local001 rdf:type http://bibframe.org/vocab/Topic.html .&lt;br /&gt;
 _:local001 bf:relatedResource http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html .&lt;br /&gt;
&lt;br /&gt;
This thing has the same topic. I'm going to assume that labels and so forth can be inferred from wikipedia if necessary. &lt;br /&gt;
&lt;br /&gt;
 _:local001 bf:relatedResource http://en.wikipedia.org/wiki/Birds_of_New_Zealand .&lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same epub as above, available through a re-distributor (allowed since it's under a CC license). Since it's an identical byte-for-byte copy:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== Composition ==&lt;br /&gt;
&lt;br /&gt;
http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html is a part of http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html is part of http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html Currently there doesn't appear to be a way to encode this in a standard fashion in BIBFRAME.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html .&lt;br /&gt;
&lt;br /&gt;
Once we put all the components of a work into an ePUB file the question then becomes:&lt;br /&gt;
&lt;br /&gt;
jar:!/ bf:? jar:!/ .&lt;br /&gt;
jar:!/ bf:? jar:!/ .&lt;br /&gt;
&lt;br /&gt;
== Derivation ==&lt;br /&gt;
&lt;br /&gt;
There doesn't appear to be a way to encode that this HTML file is derived from this XML fragment&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html bf:? http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#Bul02BirdP041 .&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* [http://bibframe.org/ Bibframe]&lt;br /&gt;
* [ ]&lt;br /&gt;
* [ ]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11944</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11944"/>
		<updated>2013-05-16T09:15:35Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: /* Composition */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
==Scope==&lt;br /&gt;
* I'm using N-Triples, they've not been validated. &lt;br /&gt;
* I'm primarily concerning myself with links between the [[NZETC]] and other parties, primarily because this is what I know about.&lt;br /&gt;
* The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). &lt;br /&gt;
* I'm not concerned with the httpRange-14 issue (yet)&lt;br /&gt;
* These comments relate to the evolving draft BIBFRAME as at early May 2013; the draft is expected to evolve.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We (and others) hold the work in multiple formats:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
&lt;br /&gt;
This is an example of a modern print edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.tepapastores.co.nz/collections/te-papa-press/products/buller-s-birds-of-new-zealand-the-complete-work-of-jg-keulemans .&lt;br /&gt;
&lt;br /&gt;
This is an example of an auction of a historical edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.trademe.co.nz/books/rare-collectable/nz-published/other/auction-562203380.htm &lt;br /&gt;
&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The text of the work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://www.wikidata.org/wiki/Q1335286 .&lt;br /&gt;
 http://www.wikidata.org/wiki/Q1335286 owl:sameAs http://viaf.org/viaf/42113661/ .&lt;br /&gt;
&lt;br /&gt;
== Subject ==&lt;br /&gt;
&lt;br /&gt;
The primary topic of the work is New Zealand birds. I'm using an anonymous node here, rather than introduce a new identifier globally:&lt;br /&gt;
&lt;br /&gt;
 _:local001 rdf:type http://bibframe.org/vocab/Topic.html .&lt;br /&gt;
 _:local001 bf:relatedResource http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html .&lt;br /&gt;
&lt;br /&gt;
This thing has the same topic. I'm going to assume that labels and so forth can be inferred from wikipedia if necessary. &lt;br /&gt;
&lt;br /&gt;
 _:local001 bf:relatedResource http://en.wikipedia.org/wiki/Birds_of_New_Zealand .&lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same epub as above, available through a re-distributor (allowed since it's under a CC license). Since it's an identical byte-for-byte copy:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== Composition ==&lt;br /&gt;
&lt;br /&gt;
http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html is a part of http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html is part of http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html Currently there doesn't appear to be a way to encode this in a standard fashion in BIBFRAME.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html .&lt;br /&gt;
&lt;br /&gt;
Once we put all the components of a work into an ePUB file the question then becomes:&lt;br /&gt;
&lt;br /&gt;
jar:!/ bf:? jar:!/ .&lt;br /&gt;
jar:!/ bf:? jar:!/ .&lt;br /&gt;
&lt;br /&gt;
== Derivation ==&lt;br /&gt;
&lt;br /&gt;
There doesn't appear to be a way to encode that this HTML file is derived from this XML fragment&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html bf:? http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#Bul02BirdP041 .&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* [http://bibframe.org/ Bibframe]&lt;br /&gt;
* [ ]&lt;br /&gt;
* [ ]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11943</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11943"/>
		<updated>2013-05-16T09:13:44Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: /* Composition */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
==Scope==&lt;br /&gt;
* I'm using N-Triples, they've not been validated. &lt;br /&gt;
* I'm primarily concerning myself with links between the [[NZETC]] and other parties, primarily because this is what I know about.&lt;br /&gt;
* The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). &lt;br /&gt;
* I'm not concerned with the httpRange-14 issue (yet)&lt;br /&gt;
* These comments relate to the evolving draft BIBFRAME as at early May 2013; the draft is expected to evolve.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We (and others) hold the work in multiple formats:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
&lt;br /&gt;
This is an example of a modern print edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.tepapastores.co.nz/collections/te-papa-press/products/buller-s-birds-of-new-zealand-the-complete-work-of-jg-keulemans .&lt;br /&gt;
&lt;br /&gt;
This is an example of an auction of a historical edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.trademe.co.nz/books/rare-collectable/nz-published/other/auction-562203380.htm &lt;br /&gt;
&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The text of the work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://www.wikidata.org/wiki/Q1335286 .&lt;br /&gt;
 http://www.wikidata.org/wiki/Q1335286 owl:sameAs http://viaf.org/viaf/42113661/ .&lt;br /&gt;
&lt;br /&gt;
== Subject ==&lt;br /&gt;
&lt;br /&gt;
The primary topic of the work is New Zealand birds. I'm using an anonymous node here, rather than introduce a new identifier globally:&lt;br /&gt;
&lt;br /&gt;
 _:local001 rdf:type http://bibframe.org/vocab/Topic.html .&lt;br /&gt;
 _:local001 bf:relatedResource http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html .&lt;br /&gt;
&lt;br /&gt;
This thing has the same topic. I'm going to assume that labels and so forth can be inferred from wikipedia if necessary. &lt;br /&gt;
&lt;br /&gt;
 _:local001 bf:relatedResource http://en.wikipedia.org/wiki/Birds_of_New_Zealand .&lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same epub as above, available through a re-distributor (allowed since it's under a CC license). Since it's an identical byte-for-byte copy:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== Composition ==&lt;br /&gt;
&lt;br /&gt;
http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html is a part of http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html is part of http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html Currently there doesn't appear to be a way to encode this in a standard fashion in BIBFRAME.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html .&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Derivation ==&lt;br /&gt;
&lt;br /&gt;
There doesn't appear to be a way to encode that this HTML file is derived from this XML fragment&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html bf:? http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#Bul02BirdP041 .&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* [http://bibframe.org/ Bibframe]&lt;br /&gt;
* [ ]&lt;br /&gt;
* [ ]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11942</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11942"/>
		<updated>2013-05-16T08:51:38Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: /* Subject */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
==Scope==&lt;br /&gt;
* I'm using N-Triples, they've not been validated. &lt;br /&gt;
* I'm primarily concerning myself with links between the [[NZETC]] and other parties, primarily because this is what I know about.&lt;br /&gt;
* The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). &lt;br /&gt;
* I'm not concerned with the httpRange-14 issue (yet)&lt;br /&gt;
* These comments relate to the evolving draft BIBFRAME as at early May 2013; the draft is expected to evolve.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We (and others) hold the work in multiple formats:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
&lt;br /&gt;
This is an example of a modern print edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.tepapastores.co.nz/collections/te-papa-press/products/buller-s-birds-of-new-zealand-the-complete-work-of-jg-keulemans .&lt;br /&gt;
&lt;br /&gt;
This is an example of an auction of a historical edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.trademe.co.nz/books/rare-collectable/nz-published/other/auction-562203380.htm &lt;br /&gt;
&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The text of the work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://www.wikidata.org/wiki/Q1335286 .&lt;br /&gt;
 http://www.wikidata.org/wiki/Q1335286 owl:sameAs http://viaf.org/viaf/42113661/ .&lt;br /&gt;
&lt;br /&gt;
== Subject ==&lt;br /&gt;
&lt;br /&gt;
The primary topic of the work is New Zealand birds. I'm using an anonymous node here, rather than introduce a new identifier globally:&lt;br /&gt;
&lt;br /&gt;
 _:local001 rdf:type http://bibframe.org/vocab/Topic.html .&lt;br /&gt;
 _:local001 bf:relatedResource http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html .&lt;br /&gt;
&lt;br /&gt;
This thing has the same topic. I'm going to assume that labels and so forth can be inferred from wikipedia if necessary. &lt;br /&gt;
&lt;br /&gt;
 _:local001 bf:relatedResource http://en.wikipedia.org/wiki/Birds_of_New_Zealand .&lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same epub as above, available through a re-distributor (allowed since it's under a CC license). Since it's an identical byte-for-byte copy:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== Composition ==&lt;br /&gt;
&lt;br /&gt;
http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html is a part of http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html is part of http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html Currently there doesn't appear to be a way to encode this in a standard fashion in BIBFRAME.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html .&lt;br /&gt;
&lt;br /&gt;
Nor does there appear to be a way to encode that this HTML file is derived from this XML fragment&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html bf:? http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#Bul02BirdP041 .&lt;br /&gt;
&lt;br /&gt;
http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html&lt;br /&gt;
http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#t1-g1-t2-body-d104a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[to do]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* [http://bibframe.org/ Bibframe]&lt;br /&gt;
* [ ]&lt;br /&gt;
* [ ]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11941</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11941"/>
		<updated>2013-05-16T08:29:16Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
==Scope==&lt;br /&gt;
* I'm using N-Triples, they've not been validated. &lt;br /&gt;
* I'm primarily concerning myself with links between the [[NZETC]] and other parties, primarily because this is what I know about.&lt;br /&gt;
* The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). &lt;br /&gt;
* I'm not concerned with the httpRange-14 issue (yet)&lt;br /&gt;
* These comments relate to the evolving draft BIBFRAME as at early May 2013; the draft is expected to evolve.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We (and others) hold the work in multiple formats:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
&lt;br /&gt;
This is an example of a modern print edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.tepapastores.co.nz/collections/te-papa-press/products/buller-s-birds-of-new-zealand-the-complete-work-of-jg-keulemans .&lt;br /&gt;
&lt;br /&gt;
This is an example of an auction of a historical edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.trademe.co.nz/books/rare-collectable/nz-published/other/auction-562203380.htm &lt;br /&gt;
&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The text of the work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://www.wikidata.org/wiki/Q1335286 .&lt;br /&gt;
 http://www.wikidata.org/wiki/Q1335286 owl:sameAs http://viaf.org/viaf/42113661/ .&lt;br /&gt;
&lt;br /&gt;
== Subject ==&lt;br /&gt;
&lt;br /&gt;
The primary topic of the work is New Zealand birds&lt;br /&gt;
&lt;br /&gt;
 _local001 rdf:type http://bibframe.org/vocab/Topic.html .&lt;br /&gt;
 _local001 bf:relatedResource http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html .&lt;br /&gt;
&lt;br /&gt;
This thing has the same topic. I'm going to assume that labels can be inferred from wikipedia as necessary:&lt;br /&gt;
&lt;br /&gt;
 _local001 bf:relatedResource http://en.wikipedia.org/wiki/Birds_of_New_Zealand .&lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same epub as above, available through a re-distributor (allowed since it's under a CC license). Since it's an identical byte-for-byte copy:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== Composition ==&lt;br /&gt;
&lt;br /&gt;
http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html is a part of http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html is part of http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html Currently there doesn't appear to be a way to encode this in a standard fashion in BIBFRAME.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html .&lt;br /&gt;
&lt;br /&gt;
Nor does there appear to be a way to encode that this HTML file is derived from this XML fragment&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html bf:? http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#Bul02BirdP041 .&lt;br /&gt;
&lt;br /&gt;
http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html&lt;br /&gt;
http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#t1-g1-t2-body-d104a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[to do]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* [http://bibframe.org/ Bibframe]&lt;br /&gt;
* [ ]&lt;br /&gt;
* [ ]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11940</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11940"/>
		<updated>2013-05-16T08:19:02Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: /* Subject */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
==Scope==&lt;br /&gt;
* I'm using N-Triples, they've not been validated. &lt;br /&gt;
* I'm primarily concerning myself with links between the [[NZETC]] and other parties, primarily because this is what I know about.&lt;br /&gt;
* The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). &lt;br /&gt;
* I'm not concerned with the httpRange-14 issue (yet)&lt;br /&gt;
* These comments relate to the evolving draft BIBFRAME as at early May 2013; the draft is expected to evolve.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We (and others) hold the work in multiple formats:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
&lt;br /&gt;
This is an example of a modern print edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.tepapastores.co.nz/collections/te-papa-press/products/buller-s-birds-of-new-zealand-the-complete-work-of-jg-keulemans .&lt;br /&gt;
&lt;br /&gt;
This is an example of an auction of a historical edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.trademe.co.nz/books/rare-collectable/nz-published/other/auction-562203380.htm &lt;br /&gt;
&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The text of the work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://www.wikidata.org/wiki/Q1335286 .&lt;br /&gt;
 http://www.wikidata.org/wiki/Q1335286 owl:sameAs http://viaf.org/viaf/42113661/ .&lt;br /&gt;
&lt;br /&gt;
== Subject ==&lt;br /&gt;
&lt;br /&gt;
 _local001 rdf:type http://bibframe.org/vocab/Topic.html .&lt;br /&gt;
 _local001 bf:relatedResource  .&lt;br /&gt;
&lt;br /&gt;
 _local001 owl:sameAs http://eol.org/pages/1047363/ .&lt;br /&gt;
 _local001 owl:sameAs http://www.wikidata.org/wiki/Q1272190 .&lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same epub as above, available through a re-distributor (allowed since it's under a CC license). Since it's an identical byte-for-byte copy:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== Composition ==&lt;br /&gt;
&lt;br /&gt;
http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html is a part of http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html is part of http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html Currently there doesn't appear to be a way to encode this in a standard fashion in BIBFRAME.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html .&lt;br /&gt;
&lt;br /&gt;
Nor does there appear to be a way to encode that this HTML file is derived from this XML fragment&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html bf:? http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#Bul02BirdP041 .&lt;br /&gt;
&lt;br /&gt;
http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html&lt;br /&gt;
http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#t1-g1-t2-body-d104a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[to do]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* [http://bibframe.org/ Bibframe]&lt;br /&gt;
* [ ]&lt;br /&gt;
* [ ]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11939</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11939"/>
		<updated>2013-05-16T08:14:51Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: /* Redistribution */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
==Scope==&lt;br /&gt;
* I'm using N-Triples, they've not been validated. &lt;br /&gt;
* I'm primarily concerning myself with links between the [[NZETC]] and other parties, primarily because this is what I know about.&lt;br /&gt;
* The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). &lt;br /&gt;
* I'm not concerned with the httpRange-14 issue (yet)&lt;br /&gt;
* These comments relate to the evolving draft BIBFRAME as at early May 2013; the draft is expected to evolve.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We (and others) hold the work in multiple formats:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
&lt;br /&gt;
This is an example of a modern print edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.tepapastores.co.nz/collections/te-papa-press/products/buller-s-birds-of-new-zealand-the-complete-work-of-jg-keulemans .&lt;br /&gt;
&lt;br /&gt;
This is an example of an auction of a historical edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.trademe.co.nz/books/rare-collectable/nz-published/other/auction-562203380.htm &lt;br /&gt;
&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The text of the work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://www.wikidata.org/wiki/Q1335286 .&lt;br /&gt;
 http://www.wikidata.org/wiki/Q1335286 owl:sameAs http://viaf.org/viaf/42113661/ .&lt;br /&gt;
&lt;br /&gt;
== Subject ==&lt;br /&gt;
&lt;br /&gt;
  bf? http://eol.org/pages/1047363/ .&lt;br /&gt;
  bf? http://www.wikidata.org/wiki/Q1272190 .&lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same epub as above, available through a re-distributor (allowed since it's under a CC license). Since it's an identical byte-for-byte copy:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== Composition ==&lt;br /&gt;
&lt;br /&gt;
http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html is a part of http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html is part of http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html Currently there doesn't appear to be a way to encode this in a standard fashion in BIBFRAME.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html .&lt;br /&gt;
&lt;br /&gt;
Nor does there appear to be a way to encode that this HTML file is derived from this XML fragment&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html bf:? http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#Bul02BirdP041 .&lt;br /&gt;
&lt;br /&gt;
http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html&lt;br /&gt;
http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#t1-g1-t2-body-d104a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[to do]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* [http://bibframe.org/ Bibframe]&lt;br /&gt;
* [ ]&lt;br /&gt;
* [ ]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11938</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11938"/>
		<updated>2013-05-16T06:10:56Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: /* Composition */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
==Scope==&lt;br /&gt;
* I'm using N-Triples, they've not been validated. &lt;br /&gt;
* I'm primarily concerning myself with links between the [[NZETC]] and other parties, primarily because this is what I know about.&lt;br /&gt;
* The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). &lt;br /&gt;
* I'm not concerned with the httpRange-14 issue (yet)&lt;br /&gt;
* These comments relate to the evolving draft BIBFRAME as at early May 2013; the draft is expected to evolve.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We (and others) hold the work in multiple formats:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
&lt;br /&gt;
This is an example of a modern print edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.tepapastores.co.nz/collections/te-papa-press/products/buller-s-birds-of-new-zealand-the-complete-work-of-jg-keulemans .&lt;br /&gt;
&lt;br /&gt;
This is an example of an auction of a historical edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.trademe.co.nz/books/rare-collectable/nz-published/other/auction-562203380.htm &lt;br /&gt;
&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The text of the work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://www.wikidata.org/wiki/Q1335286 .&lt;br /&gt;
 http://www.wikidata.org/wiki/Q1335286 owl:sameAs http://viaf.org/viaf/42113661/ .&lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same epub as above, available through a re-distributor (allowed since it's under a CC license). Since it's an identical byte-for-byte copy:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== Composition ==&lt;br /&gt;
&lt;br /&gt;
http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html is a part of http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html is part of http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html Currently there doesn't appear to be a way to encode this in a standard fashion in BIBFRAME.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html .&lt;br /&gt;
&lt;br /&gt;
Nor does there appear to be a way to encode that this HTML file is derived from this XML fragment&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html bf:? http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#Bul02BirdP041 .&lt;br /&gt;
&lt;br /&gt;
http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html&lt;br /&gt;
http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#t1-g1-t2-body-d104a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[to do]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* [http://bibframe.org/ Bibframe]&lt;br /&gt;
* [ ]&lt;br /&gt;
* [ ]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11937</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11937"/>
		<updated>2013-05-16T06:10:33Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: /* Composition */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
==Scope==&lt;br /&gt;
* I'm using N-Triples, they've not been validated. &lt;br /&gt;
* I'm primarily concerning myself with links between the [[NZETC]] and other parties, primarily because this is what I know about.&lt;br /&gt;
* The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). &lt;br /&gt;
* I'm not concerned with the httpRange-14 issue (yet)&lt;br /&gt;
* These comments relate to the evolving draft BIBFRAME as at early May 2013; the draft is expected to evolve.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We (and others) hold the work in multiple formats:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
&lt;br /&gt;
This is an example of a modern print edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.tepapastores.co.nz/collections/te-papa-press/products/buller-s-birds-of-new-zealand-the-complete-work-of-jg-keulemans .&lt;br /&gt;
&lt;br /&gt;
This is an example of an auction of a historical edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.trademe.co.nz/books/rare-collectable/nz-published/other/auction-562203380.htm &lt;br /&gt;
&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The text of the work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://www.wikidata.org/wiki/Q1335286 .&lt;br /&gt;
 http://www.wikidata.org/wiki/Q1335286 owl:sameAs http://viaf.org/viaf/42113661/ .&lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same epub as above, available through a re-distributor (allowed since it's under a CC license). Since it's an identical byte-for-byte copy:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== Composition ==&lt;br /&gt;
&lt;br /&gt;
http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html is a part of http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html is part of http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html Currently there doesn't appear to be a way to encode this in a standard fashion in BIBFRAME.&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html bf:? http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html .&lt;br /&gt;
&lt;br /&gt;
Nor does there appear to be a way to encode that this HTML file is derived from this XML fragment&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html bf:?&lt;br /&gt;
http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#Bul02BirdP041 .&lt;br /&gt;
&lt;br /&gt;
http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html&lt;br /&gt;
http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#t1-g1-t2-body-d104a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[to do]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* [http://bibframe.org/ Bibframe]&lt;br /&gt;
* [ ]&lt;br /&gt;
* [ ]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11936</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11936"/>
		<updated>2013-05-16T06:07:44Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: /* Redistribution */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
==Scope==&lt;br /&gt;
* I'm using N-Triples, they've not been validated. &lt;br /&gt;
* I'm primarily concerning myself with links between the [[NZETC]] and other parties, primarily because this is what I know about.&lt;br /&gt;
* The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). &lt;br /&gt;
* I'm not concerned with the httpRange-14 issue (yet)&lt;br /&gt;
* These comments relate to the evolving draft BIBFRAME as at early May 2013; the draft is expected to evolve.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We (and others) hold the work in multiple formats:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
&lt;br /&gt;
This is an example of a modern print edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.tepapastores.co.nz/collections/te-papa-press/products/buller-s-birds-of-new-zealand-the-complete-work-of-jg-keulemans .&lt;br /&gt;
&lt;br /&gt;
This is an example of an auction of a historical edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.trademe.co.nz/books/rare-collectable/nz-published/other/auction-562203380.htm &lt;br /&gt;
&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The text of the work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://www.wikidata.org/wiki/Q1335286 .&lt;br /&gt;
 http://www.wikidata.org/wiki/Q1335286 owl:sameAs http://viaf.org/viaf/42113661/ .&lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same epub as above, available through a re-distributor (allowed since it's under a CC license). Since it's an identical byte-for-byte copy:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== Composition ==&lt;br /&gt;
&lt;br /&gt;
http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html is a part of http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html is part of http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html bf:contains http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html bf:contains http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html&lt;br /&gt;
&lt;br /&gt;
http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html &lt;br /&gt;
http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#Bul02BirdP041&lt;br /&gt;
&lt;br /&gt;
http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html&lt;br /&gt;
http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#t1-g1-t2-body-d104a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[to do]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* [http://bibframe.org/ Bibframe]&lt;br /&gt;
* [ ]&lt;br /&gt;
* [ ]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11935</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11935"/>
		<updated>2013-05-15T09:39:52Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
==Scope==&lt;br /&gt;
* I'm using N-Triples, they've not been validated. &lt;br /&gt;
* I'm primarily concerning myself with links between the [[NZETC]] and other parties, primarily because this is what I know about.&lt;br /&gt;
* The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). &lt;br /&gt;
* I'm not concerned with the httpRange-14 issue (yet)&lt;br /&gt;
* These comments relate to the evolving draft BIBFRAME as at early May 2013; the draft is expected to evolve.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We (and others) hold the work in multiple formats:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
&lt;br /&gt;
This is an example of a modern print edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.tepapastores.co.nz/collections/te-papa-press/products/buller-s-birds-of-new-zealand-the-complete-work-of-jg-keulemans .&lt;br /&gt;
&lt;br /&gt;
This is an example of an auction of a historical edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.trademe.co.nz/books/rare-collectable/nz-published/other/auction-562203380.htm &lt;br /&gt;
&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The text of the work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://www.wikidata.org/wiki/Q1335286 .&lt;br /&gt;
 http://www.wikidata.org/wiki/Q1335286 owl:sameAs http://viaf.org/viaf/42113661/ .&lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same epub as above, available through a re-distributor (allowed since it's under a CC license):&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== Composition ==&lt;br /&gt;
&lt;br /&gt;
http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html is a part of http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html is part of http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html bf:contains http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html bf:contains http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html&lt;br /&gt;
&lt;br /&gt;
http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html &lt;br /&gt;
http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#Bul02BirdP041&lt;br /&gt;
&lt;br /&gt;
http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html&lt;br /&gt;
http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#t1-g1-t2-body-d104a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[to do]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* [http://bibframe.org/ Bibframe]&lt;br /&gt;
* [ ]&lt;br /&gt;
* [ ]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11926</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11926"/>
		<updated>2013-05-11T11:36:06Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). I'm using N-Triples, they've not been validated. I'm primarily concerning myself with links between the [[NZETC]] and other parties.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We (and others) hold the work in multiple formats:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
&lt;br /&gt;
This is an example of a modern print edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.tepapastores.co.nz/collections/te-papa-press/products/buller-s-birds-of-new-zealand-the-complete-work-of-jg-keulemans .&lt;br /&gt;
&lt;br /&gt;
This is an example of an auction of a historical edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.trademe.co.nz/books/rare-collectable/nz-published/other/auction-562203380.htm &lt;br /&gt;
&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The text of the work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://www.wikidata.org/wiki/Q1335286 .&lt;br /&gt;
 http://www.wikidata.org/wiki/Q1335286 owl:sameAs http://viaf.org/viaf/42113661/ .&lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same epub as above, available through a re-distributor (allowed since it's under a CC license):&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== Composition ==&lt;br /&gt;
&lt;br /&gt;
http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html is a part of http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html is part of http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html bf:contains http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html bf:contains http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html&lt;br /&gt;
&lt;br /&gt;
http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html &lt;br /&gt;
http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#Bul02BirdP041&lt;br /&gt;
&lt;br /&gt;
http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html&lt;br /&gt;
http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#t1-g1-t2-body-d104a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[to do]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* [http://bibframe.org/ Bibframe]&lt;br /&gt;
* [ ]&lt;br /&gt;
* [ ]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11925</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11925"/>
		<updated>2013-05-11T11:25:10Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: /* Composition */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). I'm using N-Triples, they've not been validated. I'm primarily concerning myself with links between the [[NZETC]] and other parties.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We (and others) hold the work in multiple formats:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
&lt;br /&gt;
This is an example of a modern print edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.tepapastores.co.nz/collections/te-papa-press/products/buller-s-birds-of-new-zealand-the-complete-work-of-jg-keulemans .&lt;br /&gt;
&lt;br /&gt;
This is an example of an auction of a historical edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.trademe.co.nz/books/rare-collectable/nz-published/other/auction-562203380.htm &lt;br /&gt;
&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The text of the work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://www.wikidata.org/wiki/Q1335286 .&lt;br /&gt;
 http://www.wikidata.org/wiki/Q1335286 owl:sameAs http://viaf.org/viaf/42113661/ .&lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same epub as above, available through a re-distributor (allowed since it's under a CC license):&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== Composition ==&lt;br /&gt;
&lt;br /&gt;
http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html is a part of http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html is part of http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html &lt;br /&gt;
http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#Bul02BirdP041&lt;br /&gt;
&lt;br /&gt;
http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html&lt;br /&gt;
http://nzetc.victoria.ac.nz/tei-source/BulBird.xml#t1-g1-t2-body-d104a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[to do]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* [http://bibframe.org/ Bibframe]&lt;br /&gt;
* [ ]&lt;br /&gt;
* [ ]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11924</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11924"/>
		<updated>2013-05-11T11:22:51Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). I'm using N-Triples, they've not been validated. I'm primarily concerning myself with links between the [[NZETC]] and other parties.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We (and others) hold the work in multiple formats:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
&lt;br /&gt;
This is an example of a modern print edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.tepapastores.co.nz/collections/te-papa-press/products/buller-s-birds-of-new-zealand-the-complete-work-of-jg-keulemans .&lt;br /&gt;
&lt;br /&gt;
This is an example of an auction of a historical edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.trademe.co.nz/books/rare-collectable/nz-published/other/auction-562203380.htm &lt;br /&gt;
&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The text of the work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://www.wikidata.org/wiki/Q1335286 .&lt;br /&gt;
 http://www.wikidata.org/wiki/Q1335286 owl:sameAs http://viaf.org/viaf/42113661/ .&lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same epub as above, available through a re-distributor (allowed since it's under a CC license):&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== Composition ==&lt;br /&gt;
&lt;br /&gt;
http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html is a part of http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird-t1-g1-t2-body-d104a.html is part of http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html&lt;br /&gt;
&lt;br /&gt;
[to do]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* [http://bibframe.org/ Bibframe]&lt;br /&gt;
* [ ]&lt;br /&gt;
* [ ]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11923</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11923"/>
		<updated>2013-05-11T09:47:46Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). I'm using N-Triples, they've not been validated. I'm primarily concerning myself with links between the [[NZETC]] and other parties.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We (and others) hold the work in multiple formats:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
&lt;br /&gt;
This is an example of a modern print edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.tepapastores.co.nz/collections/te-papa-press/products/buller-s-birds-of-new-zealand-the-complete-work-of-jg-keulemans .&lt;br /&gt;
&lt;br /&gt;
This is an example of an auction of a historical edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.trademe.co.nz/books/rare-collectable/nz-published/other/auction-562203380.htm &lt;br /&gt;
&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://www.wikidata.org/wiki/Q1335286 .&lt;br /&gt;
 http://www.wikidata.org/wiki/Q1335286 owl:sameAs http://viaf.org/viaf/42113661/ .&lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same epub as above, available through a re-distributor (allowed since it's under a CC license):&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== Composition ==&lt;br /&gt;
&lt;br /&gt;
http://nzetc.victoria.ac.nz/tm/scholarly/BulBird-fig-Bul02BirdP041.html is a part of &lt;br /&gt;
&lt;br /&gt;
[to do]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* [http://bibframe.org/ Bibframe]&lt;br /&gt;
* [ ]&lt;br /&gt;
* [ ]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11922</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11922"/>
		<updated>2013-05-11T09:44:15Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). I'm using N-Triples, they've not been validated. I'm primarily concerning myself with links between the [[NZETC]] and other parties.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We (and others) hold the work in multiple formats:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
&lt;br /&gt;
This is an example of a modern print edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.tepapastores.co.nz/collections/te-papa-press/products/buller-s-birds-of-new-zealand-the-complete-work-of-jg-keulemans .&lt;br /&gt;
&lt;br /&gt;
This is an example of an auction of a historical edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.trademe.co.nz/books/rare-collectable/nz-published/other/auction-562203380.htm &lt;br /&gt;
&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://www.wikidata.org/wiki/Q1335286 .&lt;br /&gt;
 http://www.wikidata.org/wiki/Q1335286 owl:sameAs http://viaf.org/viaf/42113661/ .&lt;br /&gt;
&lt;br /&gt;
== Redistribution ==&lt;br /&gt;
&lt;br /&gt;
This is an example of the same epub as above, available through a re-distributor (allowed since it's under a CC license):&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
It certainly feels like there should be a more comprehensive way to encode that.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* [http://bibframe.org/ Bibframe]&lt;br /&gt;
* [ ]&lt;br /&gt;
* [ ]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11921</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11921"/>
		<updated>2013-05-11T09:40:32Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: Keulemans&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). I'm using N-Triples, they've not been validated. I'm primarily concerning myself with links between the [[NZETC]] and other parties.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We (and others) hold the work in multiple formats:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
&lt;br /&gt;
This is an example of a modern print edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.tepapastores.co.nz/collections/te-papa-press/products/buller-s-birds-of-new-zealand-the-complete-work-of-jg-keulemans .&lt;br /&gt;
&lt;br /&gt;
This is an example of an auction of a historical edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.trademe.co.nz/books/rare-collectable/nz-published/other/auction-562203380.htm &lt;br /&gt;
&lt;br /&gt;
This is an example of the same epub as above, available through a redistributor (allowed since it's under a CC license):&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
But the fabulous images are by Keulemans. We don't even have him in our authority control system, so there's no local link here&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://www.wikidata.org/wiki/Q1335286 .&lt;br /&gt;
 http://www.wikidata.org/wiki/Q1335286 owl:sameAs http://viaf.org/viaf/42113661/ .&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* [http://bibframe.org/ Bibframe]&lt;br /&gt;
* [ ]&lt;br /&gt;
* [ ]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11920</id>
		<title>BIBFRAME Stuctural Example using TEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=BIBFRAME_Stuctural_Example_using_TEI&amp;diff=11920"/>
		<updated>2013-05-11T09:33:31Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: Created page with &amp;quot;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-loo...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is the start of a worked example showing how the current BIBFRAME draft might be used with a TEI text being published in a real world situation. This is forward-looking work. For the current state of play see [[Best Practices for TEI in Libraries]].&lt;br /&gt;
&lt;br /&gt;
The example work is '''A History of the Birds of New Zealand''' by Walter Lawry‏ Buller ‎ 1838-1906‏. I've picked this because it's well known enough that lots of people have things about it to link to and because it contains some nice circular references (such as subjects named after the author). I'm using N-Triples, they've not been validated. I'm primarily concerning myself with links between the [[NZETC]] and other parties.&lt;br /&gt;
&lt;br /&gt;
== Work / Instance ==&lt;br /&gt;
&lt;br /&gt;
We (and others) hold the work in multiple formats:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html rdf:type  http://bibframe.org/vocab/Work .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tm/scholarly/tei-BulBird.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/tei-source/BulBird.xml .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://nzetc.victoria.ac.nz/downloads/BulBird.epub .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://archive.org/details/historyofbirdsof00bull .&lt;br /&gt;
&lt;br /&gt;
This is an example of a modern print edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.tepapastores.co.nz/collections/te-papa-press/products/buller-s-birds-of-new-zealand-the-complete-work-of-jg-keulemans .&lt;br /&gt;
&lt;br /&gt;
This is an example of an auction of a historical edition:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:hasInstance http://www.trademe.co.nz/books/rare-collectable/nz-published/other/auction-562203380.htm &lt;br /&gt;
&lt;br /&gt;
This is an example of the same epub as above, available through a redistributor (allowed since it's under a CC license):&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/downloads/BulBird.epub owl:SameAs http://mebooks.co.nz/index.php?route=product/product&amp;amp;product_id=102 .&lt;br /&gt;
&lt;br /&gt;
== Authoriship ==&lt;br /&gt;
&lt;br /&gt;
The work is by Buller:&lt;br /&gt;
&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-101762.html bf:contributor http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://viaf.org/viaf/47544939/ .&lt;br /&gt;
 http://nzetc.victoria.ac.nz/tm/scholarly/name-207531.html owl:sameAs http://www.wikidata.org/wiki/Q2507378 .&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* [http://bibframe.org/ Bibframe]&lt;br /&gt;
* [ ]&lt;br /&gt;
* [ ]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=TEI_Cheatsheets&amp;diff=11903</id>
		<title>TEI Cheatsheets</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=TEI_Cheatsheets&amp;diff=11903"/>
		<updated>2013-04-21T21:44:20Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: http://viaf.org/&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is listing the &amp;quot;cheatsheets&amp;quot; in preparation for various types of tasks or sub-communities of the TEI users community at large. &lt;br /&gt;
&lt;br /&gt;
''Started by Marjorie Burghart - April 2013''&lt;br /&gt;
&lt;br /&gt;
=What are TEI cheatsheets?=&lt;br /&gt;
A &amp;quot;TEI cheatsheet&amp;quot; starts from the scholarly experience of the users and offers, without assuming that they have read the Guidelines before, a &amp;quot;translation&amp;quot; of the phenomenon in TEI, or maybe several options when useful and possible, all this with minimal textual glosses but references and pointers to the Guidelines, for those who want to go further. They would be unverbose &amp;quot;best practice&amp;quot; guides, conceived as simple &amp;quot;scholar experience to TEI&amp;quot; dictionaries. &lt;br /&gt;
&lt;br /&gt;
There is a great deal in the Guidelines that is aimed at people who are not familiar with the Humanities concepts behind the encoding, which is helpful if you come from a different background. But I really think that to a seasoned philologist reading the TEI chapters on the transcription of sources and critical apparatus must be really boring - they already know the theory better than us. That is why I believe many would be grateful if they were given a simple &amp;quot;translation&amp;quot; into TEI lingo. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Why TEI cheatsheets?=&lt;br /&gt;
&lt;br /&gt;
==Easing the learning curve==&lt;br /&gt;
My feeling is that the Guidelines should be regarded as a reference book for more advanced users, not as the textbook for people starting to learn (or even people who do not really want to learn but just do). There are many different communities of Humanities scholars who use the TEI, and I am assuming that all (most?) of them know what they want to do with their texts, and have their own ways of working with them. My hope is that the cheatsheets, targetting specific Humanities communities or needs, will be a way of making the learning curve less steep for newbies. I hope that this would let people with no experience of XML feel immediately familiar with what the encoding is doing, at no great learning cost. It should get them started quickly, then it'll be up to them to see if they need (or care) to learn more and delve into the Guidelines. &lt;br /&gt;
&lt;br /&gt;
==Facilitating the work of tool developpers==&lt;br /&gt;
A notable side-effect of the existence of such cheatsheets or &amp;quot;best practice in a nutshell&amp;quot; would be to greatly facilitate the work of tool developpers considering to support TEI as a format in their application. It is currently most difficult for tools developpers to figure how to support TEI, because of the many possible ways of encoding the same phenomenon. Having a clearly defined list of &amp;quot;best practice&amp;quot; guides would make it easier to conform to those practices, and would hopefully boost the number of TEI-aware tools available.&lt;br /&gt;
&lt;br /&gt;
=Which TEI cheatsheets?=&lt;br /&gt;
&lt;br /&gt;
There is of course no fixed set, and each sub-community or transversal task could have its cheatsheet. The list below is just a couple of suggestions, please feel free to add to it! &lt;br /&gt;
&lt;br /&gt;
*[[Critical Editions Cheatsheet]]&lt;br /&gt;
This is the task/community that is the closest to my own scholarly experience, and the one about which I first got the idea of creating &amp;quot;cheatsheets&amp;quot;. I started this as a blog post, based on my own experience, some discussions on TEI-L or the MS SIG list, and further edited after feedback from users. The result is an example of what I have in mind, but could certainly be expanded further: &lt;br /&gt;
[http://marjorie.burghart.online.fr/?q=en/content/tei-critical-apparatus-cheatsheet]&lt;br /&gt;
This cheatsheet should go further than the Critical Apparatus module/chapter of the Guidelines, BTW, and should incorporate phenomena usually present in critical editions like other layers of notes, index of people's names, index of place names, etc.&lt;br /&gt;
Please use the [[Critical Editions Cheatsheet]] page on this Wiki to suggest phenomena that should be treated, and ideally how they should be encoded (but it is not mandatory, you can of course simply list the phenomena and wait for the community to come up with encoding recommendations. &lt;br /&gt;
&lt;br /&gt;
*[[Annotation Cheatsheet]]&lt;br /&gt;
I separate this from Critical Editions, because it is very common to want to add scholarly annotations to texts or documents which are not critical editions. This is therefore a transversal task. &lt;br /&gt;
Please use the [[Annotation Cheatsheet]] to submit tasks and the best way do perform them. &lt;br /&gt;
&lt;br /&gt;
*[[Facsimile Linking Cheatsheet]]&lt;br /&gt;
You have a digiral facsimile, you have its transcription or annotations about its content, how do you do that in TEI? &lt;br /&gt;
Please describe the phenomena / subtasks involved and the best practice to encode them in the [[Facsimile Linking Cheatsheet]]&lt;br /&gt;
&lt;br /&gt;
*[[Linguistic Encoding Cheatsheet]]&lt;br /&gt;
This is not something I am in any way experienced with but I suspect there is some need for cheatsheets in this department. &lt;br /&gt;
Please use the [[Linguistic Encoding Cheatsheet]] to submit tasks and the best way do perform them.&lt;br /&gt;
&lt;br /&gt;
*[[Encoding Patent Bibliographic References]]&lt;br /&gt;
&lt;br /&gt;
*[[Images Cheatsheet]]&lt;br /&gt;
''You have a facsimile with both textual and non-textual information, how do you encode the non-textual information and connect it with the transcription? I started compiling a similar resource, &amp;quot;[[User_talk:Martin_de_la_Iglesia/A_Guide_to_Images_in_TEI|A Guide to Images in TEI]]&amp;quot;, but it might be useful if we could distil that into a Cheatsheet written from an art historian's perspective. --[[User:Martin de la Iglesia|Martin de la Iglesia]] 07:51, 9 April 2013 (EDT)''&lt;br /&gt;
&lt;br /&gt;
*[[Encoding non-European names]]&lt;br /&gt;
** Arabic names: cf. http://jtei.revues.org/398#tocto3n3 &lt;br /&gt;
** Hebrew names: cf. suggestion from Hayim Lapin on TEI-L&lt;br /&gt;
** Checking names of modern authors in non-Latin scripts: cf. http://viaf.org/&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=TEI_Cheatsheets&amp;diff=11901</id>
		<title>TEI Cheatsheets</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=TEI_Cheatsheets&amp;diff=11901"/>
		<updated>2013-04-21T21:39:43Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: http://viaf.org/&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is listing the &amp;quot;cheatsheets&amp;quot; in preparation for various types of tasks or sub-communities of the TEI users community at large. &lt;br /&gt;
&lt;br /&gt;
''Started by Marjorie Burghart - April 2013''&lt;br /&gt;
&lt;br /&gt;
=What are TEI cheatsheets?=&lt;br /&gt;
A &amp;quot;TEI cheatsheet&amp;quot; starts from the scholarly experience of the users and offers, without assuming that they have read the Guidelines before, a &amp;quot;translation&amp;quot; of the phenomenon in TEI, or maybe several options when useful and possible, all this with minimal textual glosses but references and pointers to the Guidelines, for those who want to go further. They would be unverbose &amp;quot;best practice&amp;quot; guides, conceived as simple &amp;quot;scholar experience to TEI&amp;quot; dictionaries. &lt;br /&gt;
&lt;br /&gt;
There is a great deal in the Guidelines that is aimed at people who are not familiar with the Humanities concepts behind the encoding, which is helpful if you come from a different background. But I really think that to a seasoned philologist reading the TEI chapters on the transcription of sources and critical apparatus must be really boring - they already know the theory better than us. That is why I believe many would be grateful if they were given a simple &amp;quot;translation&amp;quot; into TEI lingo. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Why TEI cheatsheets?=&lt;br /&gt;
&lt;br /&gt;
==Easing the learning curve==&lt;br /&gt;
My feeling is that the Guidelines should be regarded as a reference book for more advanced users, not as the textbook for people starting to learn (or even people who do not really want to learn but just do). There are many different communities of Humanities scholars who use the TEI, and I am assuming that all (most?) of them know what they want to do with their texts, and have their own ways of working with them. My hope is that the cheatsheets, targetting specific Humanities communities or needs, will be a way of making the learning curve less steep for newbies. I hope that this would let people with no experience of XML feel immediately familiar with what the encoding is doing, at no great learning cost. It should get them started quickly, then it'll be up to them to see if they need (or care) to learn more and delve into the Guidelines. &lt;br /&gt;
&lt;br /&gt;
==Facilitating the work of tool developpers==&lt;br /&gt;
A notable side-effect of the existence of such cheatsheets or &amp;quot;best practice in a nutshell&amp;quot; would be to greatly facilitate the work of tool developpers considering to support TEI as a format in their application. It is currently most difficult for tools developpers to figure how to support TEI, because of the many possible ways of encoding the same phenomenon. Having a clearly defined list of &amp;quot;best practice&amp;quot; guides would make it easier to conform to those practices, and would hopefully boost the number of TEI-aware tools available.&lt;br /&gt;
&lt;br /&gt;
=Which TEI cheatsheets?=&lt;br /&gt;
&lt;br /&gt;
There is of course no fixed set, and each sub-community or transversal task could have its cheatsheet. The list below is just a couple of suggestions, please feel free to add to it! &lt;br /&gt;
&lt;br /&gt;
*[[Critical Editions Cheatsheet]]&lt;br /&gt;
This is the task/community that is the closest to my own scholarly experience, and the one about which I first got the idea of creating &amp;quot;cheatsheets&amp;quot;. I started this as a blog post, based on my own experience, some discussions on TEI-L or the MS SIG list, and further edited after feedback from users. The result is an example of what I have in mind, but could certainly be expanded further: &lt;br /&gt;
[http://marjorie.burghart.online.fr/?q=en/content/tei-critical-apparatus-cheatsheet]&lt;br /&gt;
This cheatsheet should go further than the Critical Apparatus module/chapter of the Guidelines, BTW, and should incorporate phenomena usually present in critical editions like other layers of notes, index of people's names, index of place names, etc.&lt;br /&gt;
Please use the [[Critical Editions Cheatsheet]] page on this Wiki to suggest phenomena that should be treated, and ideally how they should be encoded (but it is not mandatory, you can of course simply list the phenomena and wait for the community to come up with encoding recommendations. &lt;br /&gt;
&lt;br /&gt;
*[[Annotation Cheatsheet]]&lt;br /&gt;
I separate this from Critical Editions, because it is very common to want to add scholarly annotations to texts or documents which are not critical editions. This is therefore a transversal task. &lt;br /&gt;
Please use the [[Annotation Cheatsheet]] to submit tasks and the best way do perform them. &lt;br /&gt;
&lt;br /&gt;
*[[Facsimile Linking Cheatsheet]]&lt;br /&gt;
You have a digiral facsimile, you have its transcription or annotations about its content, how do you do that in TEI? &lt;br /&gt;
Please describe the phenomena / subtasks involved and the best practice to encode them in the [[Facsimile Linking Cheatsheet]]&lt;br /&gt;
&lt;br /&gt;
*[[Linguistic Encoding Cheatsheet]]&lt;br /&gt;
This is not something I am in any way experienced with but I suspect there is some need for cheatsheets in this department. &lt;br /&gt;
Please use the [[Linguistic Encoding Cheatsheet]] to submit tasks and the best way do perform them.&lt;br /&gt;
&lt;br /&gt;
*[[Encoding Patent Bibliographic References]]&lt;br /&gt;
&lt;br /&gt;
*[[Images Cheatsheet]]&lt;br /&gt;
''You have a facsimile with both textual and non-textual information, how do you encode the non-textual information and connect it with the transcription? I started compiling a similar resource, &amp;quot;[[User_talk:Martin_de_la_Iglesia/A_Guide_to_Images_in_TEI|A Guide to Images in TEI]]&amp;quot;, but it might be useful if we could distil that into a Cheatsheet written from an art historian's perspective. --[[User:Martin de la Iglesia|Martin de la Iglesia]] 07:51, 9 April 2013 (EDT)''&lt;br /&gt;
&lt;br /&gt;
*[[Encoding non-European names]]&lt;br /&gt;
** Arabic names: cf. http://jtei.revues.org/398#tocto3n3 &lt;br /&gt;
** Hebrew names: cf. suggestion from Hayim Lapin on TEI-L&lt;br /&gt;
** Names of modern authors: cf. http://viaf.org/&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=TEI_Libraries_SIG_Manifesto&amp;diff=11645</id>
		<title>TEI Libraries SIG Manifesto</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=TEI_Libraries_SIG_Manifesto&amp;diff=11645"/>
		<updated>2013-02-14T22:05:34Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: /* Suggestions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here is our draft of a &amp;quot;manifesto&amp;quot; that states rationales that library administration leaders should consider for supporting TEI.  We welcome all comments, edits, and suggested changes!&lt;br /&gt;
&lt;br /&gt;
==Draft==&lt;br /&gt;
&lt;br /&gt;
Libraries have long digitized analog materials in order to provide greater access to the content&amp;lt;ref&amp;gt;http://www.clir.org/pubs/abstract//reports/pub80-smith&amp;lt;/ref&amp;gt; and increasingly also to preserve and enrich these materials. The Text Encoding Initiative (TEI) &amp;lt;cite&amp;gt;Guidelines&amp;lt;/cite&amp;gt;,&amp;lt;ref&amp;gt;http://www.tei-c.org/Guidelines/&amp;lt;/ref&amp;gt; developed by scholars and libraries and first published in 1994, provides a standard, non-proprietary format for enhancing digitized textual documents that promotes preservation and future reuse. Libraries have used the TEI &amp;lt;cite&amp;gt;Guidelines&amp;lt;/cite&amp;gt; from its earliest incarnation, yet advances in digital technologies have made scanning and the application of optical character recognition (OCR) on page images the preferred means of mass digitization.&lt;br /&gt;
&lt;br /&gt;
Scanning and OCR are not the right tools for all types of documents, nor for all scholarly uses of the content. For example:&lt;br /&gt;
* Some source documents are too fragile even for overhead (planetary) scanners.&lt;br /&gt;
* OCR technology works best on modern printed documents but is not yet capable of deciphering documents rendered illegible because of faded ink, typeface bleeding, obscure fonts, and nearly all handwriting.&lt;br /&gt;
* Full-text searching of OCR text and even n-gram browsers are insufficient for searching reference works by headword, for navigating canonical works by chapter and verse, for phrasal searching in multi-column documents, and for supporting fine-grained searching, analysis, and visualization of texts.&lt;br /&gt;
&lt;br /&gt;
For such documents, there is still value for preservation and for support of scholarly research in transcription and analytic encoding of the text of a document. Such work need not be done manually or even in house at all; instead, this work is often outsourced to vendors, who encode to a specification,&amp;lt;ref&amp;gt;TEI member institutions have access to a discount rate on encoding through the [http://www.tei-c.org/accesstei/ AccessTEI] program.&amp;lt;/ref&amp;gt; while quality assurance and sometimes more detailed encoding are done in a library or institution under the direction of a scholar.&lt;br /&gt;
&lt;br /&gt;
The standard format used by scholars and supported by funding agencies is TEI. While the TEI Guidelines are exhaustive in coverage, users are meant to choose a subset of features for a particular need. The &amp;lt;cite&amp;gt;[http://purl.oclc.org/NET/teiinlibraries Best Practices for TEI in Libraries]&amp;lt;/cite&amp;gt; has provided an indispensable and concise guide for common library applications of TEI. The &amp;lt;cite&amp;gt;Best Practices&amp;lt;/cite&amp;gt; offers a clear path for libraries to transcribe and apply TEI encoding to documents held by the library, and the TEI's SIG on Libraries provides a venue for sharing initiatives, methodologies, and workflows in order to strengthen the use of TEI in libraries, and to help promote libraries' support of TEI at their institution.&lt;br /&gt;
&lt;br /&gt;
TEI text encoding is often carried out in digital humanities centers, though the leading DH centers have strong ties to libraries, and DH practitioners have long proclaimed the importance of having librarians involved in their projects.&lt;br /&gt;
&lt;br /&gt;
Librarians bring great expertise to the use of TEI, and institutions should support librarians working in tandem with scholars when the use of TEI is called for.&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Outline==&lt;br /&gt;
&lt;br /&gt;
* Preamble&lt;br /&gt;
* Rationale for digitizing (in one sentence): why we make things digital … first principles. Reference CLIR docs.&lt;br /&gt;
* For different intended uses of content, different types of access mechanisms are needed.&lt;br /&gt;
* While mass digitization meets many common needs, it’s insufficient for certain purposes, such as:&lt;br /&gt;
** Things that don’t OCR (especially manuscripts and early printed works) and/or are illegible or hard to read in the page image&lt;br /&gt;
** Source documents that can’t be scanned because they’re too fragile&lt;br /&gt;
** Reference works where you want to be able to search on a headword&lt;br /&gt;
** ????&lt;br /&gt;
&lt;br /&gt;
* For such things, we still need a non-proprietary format for representing a digital surrogate of the item that is designed for: &lt;br /&gt;
** long-term preservation&lt;br /&gt;
** data curation&lt;br /&gt;
** interchange&lt;br /&gt;
&lt;br /&gt;
* And which will enable:&lt;br /&gt;
** visualization&lt;br /&gt;
** analysis&lt;br /&gt;
&lt;br /&gt;
* For textual content (but not data sets or purely tabular data published in print), the obvious choice is TEI.&lt;br /&gt;
* TEI encoding can be scoped: you don’t have to (and shouldn’t!) use all of its features.&lt;br /&gt;
* Encoding is often outsourced, including through [http://www.tei-c.org/AccessTEI/ AccessTEI]. If your project calls for richer encoding, can enrich the outsourced data by doing the higher-level encoding in house.&lt;br /&gt;
&lt;br /&gt;
=== Suggestions ===&lt;br /&gt;
&lt;br /&gt;
#You may want to also include argument some library administrators make that TEI work is best left to digital humanities departments, not libraries. We hired a new library director two years ago, who has made this argument. Our TEI work and instruction in the library has since been suspended (R. Wisneski, Case Western Reserve University, Cleveland, OH)&lt;br /&gt;
#: Yes, good point.  Need to discuss how the most successful DH centers have institutional ties to libraries and how DH people have long praised the early involvement of librarians in projects. ([[User:Kshawkin|Kshawkin]] 22:08, 29 December 2012 (EST))&lt;br /&gt;
#A list of libraries that already use TEI, with pointers to the sites they use it for and/od documentation of why they picked TEI. [[User:Stuartyeates|Stuartyeates]] 17:05, 14 February 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:SIG:Libraries]]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Geany&amp;diff=10980</id>
		<title>Geany</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Geany&amp;diff=10980"/>
		<updated>2012-07-22T10:00:38Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: start a page for http://www.geany.org/&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Tools]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Development tools]]&lt;br /&gt;
[[Category:Editing tools]]&lt;br /&gt;
[[Category:Conversion and preprocessing tools]]&lt;br /&gt;
[[Category:Testing and QA tools]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Discovering]]&lt;br /&gt;
[[Category:Annotating]]&lt;br /&gt;
[[Category:Comparing]]&lt;br /&gt;
[[Category:Referring]]&lt;br /&gt;
[[Category:Sampling]]&lt;br /&gt;
[[Category:Illustrating]]&lt;br /&gt;
[[Category:Representing]]&lt;br /&gt;
&lt;br /&gt;
== Synopsis ==&lt;br /&gt;
geany is a cross-platform IDE suitable for  XML and HTML, C, Java, PHP, HTML, Python, Perl and Pascal. More infroamtion at http://www.geany.org/&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
* Windows, Linux, etc&lt;br /&gt;
* small and fast&lt;br /&gt;
* auto closing of XML tags&lt;br /&gt;
&lt;br /&gt;
== User commentary ==&lt;br /&gt;
'''Please sign all comments.'''&lt;br /&gt;
(please leave the above note about signing comments, and add signed comments here below it)&lt;br /&gt;
&lt;br /&gt;
== System requirements ==&lt;br /&gt;
* GTK (cross platform windowing toolkit, which comes with the download)&lt;br /&gt;
&lt;br /&gt;
== Source code and licensing ==&lt;br /&gt;
GNU General Public Licence. &lt;br /&gt;
&lt;br /&gt;
== Support for TEI ==&lt;br /&gt;
Generic XML support&lt;br /&gt;
&lt;br /&gt;
== Language(s) ==&lt;br /&gt;
Written in C / C++ ?&lt;br /&gt;
Supports:  de, es, fr, hu, it, ja, kk, lt, nl, pl, pt, pt_BR, sk, sl, sv, tr, zh_CN, zh_TW. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
(link to or information about documentation available)&lt;br /&gt;
&lt;br /&gt;
== Tech support ==&lt;br /&gt;
(What technical support is provided by the creators of the tool?)&lt;br /&gt;
&lt;br /&gt;
== User community ==&lt;br /&gt;
(Are there any communities of users?)&lt;br /&gt;
&lt;br /&gt;
== Sample implementations ==&lt;br /&gt;
(links to demo sites running the tool or successful implementations of it)&lt;br /&gt;
&lt;br /&gt;
== Current version number and date of release ==&lt;br /&gt;
(type in that information here)&lt;br /&gt;
&lt;br /&gt;
== History of versions ==&lt;br /&gt;
(type in that information here)&lt;br /&gt;
&lt;br /&gt;
== How to download or buy ==&lt;br /&gt;
(type in that information here)&lt;br /&gt;
&lt;br /&gt;
== Additional notes ==&lt;br /&gt;
(type in that information here)&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Xmllint&amp;diff=10978</id>
		<title>Xmllint</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Xmllint&amp;diff=10978"/>
		<updated>2012-07-22T08:36:53Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: add detail&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Tools]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Testing and QA tools]]&lt;br /&gt;
&lt;br /&gt;
== Synopsis ==&lt;br /&gt;
xmllint is a command-line validator for XML. &lt;br /&gt;
&lt;br /&gt;
xmllint is a command-line interface to libxml2 (See http://www.xmlsoft.org/), which is a set of portable (linux, windows, solaris, etc) libraries for manipulating XML. Implemented in C, there are libxml bindings for many languages including Perl, PHP, C++. Ruby and Tcl. By-in-large bugs in the core libraries affect all the platforms, with each new plaform having a few platfrom-specific bugs.&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
&lt;br /&gt;
== User commentary ==&lt;br /&gt;
'''Please sign all comments.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== System requirements ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Source code and licensing ==&lt;br /&gt;
open-source&lt;br /&gt;
&lt;br /&gt;
== Support for TEI ==&lt;br /&gt;
Sebastian Rahtz reported on TEI-L, &amp;quot;the RELAXNG support in xmllint  has historically had issues with TEI schemas. I never got to the bottom of it, but certainly it does not always work. I don't have any workaround to suggest, apart from saying it may work with a simpler schema. I would suggest you look at the Java-based [[Jing]] for this work, or generate a DTD and then use xmllint.&amp;quot;&amp;lt;ref&amp;gt;http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1207&amp;amp;L=TEI-L&amp;amp;F=&amp;amp;S=&amp;amp;P=57346&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Language(s) ==&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Tech support ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== User community ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sample implementations ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Current version number and date of release ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== History of versions ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How to download or buy ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Additional notes ==&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Xmllint&amp;diff=10977</id>
		<title>Xmllint</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Xmllint&amp;diff=10977"/>
		<updated>2012-07-22T07:44:50Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: add techie details&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Tools]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Testing and QA tools]]&lt;br /&gt;
&lt;br /&gt;
== Synopsis ==&lt;br /&gt;
xmllint is a command-line validator for XML. &lt;br /&gt;
&lt;br /&gt;
xmllint is a command-line interface to libxml2 (See http://www.xmlsoft.org/), which is a set of portable (linux, windows, solaris, etc) libraries for manipulating XML. Implemented in C, there are libxml bindings for many languages including Perl, PHP, C++. Ruby and Tcl.&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
&lt;br /&gt;
== User commentary ==&lt;br /&gt;
'''Please sign all comments.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== System requirements ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Source code and licensing ==&lt;br /&gt;
open-source&lt;br /&gt;
&lt;br /&gt;
== Support for TEI ==&lt;br /&gt;
Sebastian Rahtz reported on TEI-L, &amp;quot;the RELAXNG support in xmllint  has historically had issues with TEI schemas. I never got to the bottom of it, but certainly it does not always work. I don't have any workaround to suggest, apart from saying it may work with a simpler schema. I would suggest you look at the Java-based [[Jing]] for this work, or generate a DTD and then use xmllint.&amp;quot;&amp;lt;ref&amp;gt;http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1207&amp;amp;L=TEI-L&amp;amp;F=&amp;amp;S=&amp;amp;P=57346&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Language(s) ==&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Tech support ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== User community ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sample implementations ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Current version number and date of release ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== History of versions ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How to download or buy ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Additional notes ==&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Drupal&amp;diff=10937</id>
		<title>Drupal</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Drupal&amp;diff=10937"/>
		<updated>2012-06-27T20:52:15Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: tweak&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Tools]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Publishing and delivery tools]]&lt;br /&gt;
&lt;br /&gt;
== Synopsis ==&lt;br /&gt;
&lt;br /&gt;
Drupal is an open source web content management platform written in PHP and largely driven by a relational database (MySQL, Postgres, etc). Primarily designed for HTML, Drupal has been used for a number of TEI projects. See a [http://listserv.brown.edu/archives/cgi-bin/wa?A1=ind1206&amp;amp;L=TEI-L#11 thread on the TEI-L]&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
* first feature&lt;br /&gt;
* second feature&lt;br /&gt;
* third feature&lt;br /&gt;
&lt;br /&gt;
== User commentary ==&lt;br /&gt;
'''Please sign all comments.'''&lt;br /&gt;
(please leave the above note about signing comments, and add signed comments here below it)&lt;br /&gt;
&lt;br /&gt;
== System requirements ==&lt;br /&gt;
Linux or Windows server, web accessible, running a web server.&lt;br /&gt;
&lt;br /&gt;
== Source code and licensing ==&lt;br /&gt;
GNU General Public License&lt;br /&gt;
&lt;br /&gt;
== Support for TEI ==&lt;br /&gt;
(Does it support TEI or TEI Lite &amp;quot;out of the box&amp;quot;?)&lt;br /&gt;
(How easily can TEI be implemented?)&lt;br /&gt;
(Are there customized versions of the tool created for the TEI community, perhaps even by those not affiliated with the tool's creators?)&lt;br /&gt;
&lt;br /&gt;
== Language(s) ==&lt;br /&gt;
PHP, SQL&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
(link to or information about documentation available)&lt;br /&gt;
&lt;br /&gt;
== Tech support ==&lt;br /&gt;
(What technical support is provided by the creators of the tool?)&lt;br /&gt;
&lt;br /&gt;
== User community ==&lt;br /&gt;
(Are there any communities of users?)&lt;br /&gt;
&lt;br /&gt;
== Sample implementations ==&lt;br /&gt;
(links to demo sites running the tool or successful implementations of it)&lt;br /&gt;
&lt;br /&gt;
== Current version number and date of release ==&lt;br /&gt;
(type in that information here)&lt;br /&gt;
&lt;br /&gt;
== History of versions ==&lt;br /&gt;
(type in that information here)&lt;br /&gt;
&lt;br /&gt;
== How to download or buy ==&lt;br /&gt;
(type in that information here)&lt;br /&gt;
&lt;br /&gt;
== Additional notes ==&lt;br /&gt;
(type in that information here)&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Drupal&amp;diff=10936</id>
		<title>Drupal</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Drupal&amp;diff=10936"/>
		<updated>2012-06-27T20:32:12Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: start drupal page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Tools]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Publishing and delivery tools]]&lt;br /&gt;
&lt;br /&gt;
== Synopsis ==&lt;br /&gt;
&lt;br /&gt;
Drupal is an open source web content management platform written in [[PHP]] and largely driven by a relational database (MySQL, Postgres, etc). Primarily designed for HTML, Drupal has been used for a number of TEI projects.&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
* first feature&lt;br /&gt;
* second feature&lt;br /&gt;
* third feature&lt;br /&gt;
&lt;br /&gt;
== User commentary ==&lt;br /&gt;
'''Please sign all comments.'''&lt;br /&gt;
(please leave the above note about signing comments, and add signed comments here below it)&lt;br /&gt;
&lt;br /&gt;
== System requirements ==&lt;br /&gt;
(type in that information here)&lt;br /&gt;
&lt;br /&gt;
== Source code and licensing ==&lt;br /&gt;
GNU General Public License&lt;br /&gt;
&lt;br /&gt;
== Support for TEI ==&lt;br /&gt;
(Does it support TEI or TEI Lite &amp;quot;out of the box&amp;quot;?)&lt;br /&gt;
(How easily can TEI be implemented?)&lt;br /&gt;
(Are there customized versions of the tool created for the TEI community, perhaps even by those not affiliated with the tool's creators?)&lt;br /&gt;
&lt;br /&gt;
== Language(s) ==&lt;br /&gt;
PHP, SQL&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
(link to or information about documentation available)&lt;br /&gt;
&lt;br /&gt;
== Tech support ==&lt;br /&gt;
(What technical support is provided by the creators of the tool?)&lt;br /&gt;
&lt;br /&gt;
== User community ==&lt;br /&gt;
(Are there any communities of users?)&lt;br /&gt;
&lt;br /&gt;
== Sample implementations ==&lt;br /&gt;
(links to demo sites running the tool or successful implementations of it)&lt;br /&gt;
&lt;br /&gt;
== Current version number and date of release ==&lt;br /&gt;
(type in that information here)&lt;br /&gt;
&lt;br /&gt;
== History of versions ==&lt;br /&gt;
(type in that information here)&lt;br /&gt;
&lt;br /&gt;
== How to download or buy ==&lt;br /&gt;
(type in that information here)&lt;br /&gt;
&lt;br /&gt;
== Additional notes ==&lt;br /&gt;
(type in that information here)&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=User:Stuartyeates&amp;diff=10920</id>
		<title>User:Stuartyeates</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=User:Stuartyeates&amp;diff=10920"/>
		<updated>2012-06-19T01:29:42Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: add link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Stuart Yeates''' is a computer scientist by training&amp;lt;ref&amp;gt;[http://researchcommons.waikato.ac.nz/handle/10289/2600 ''Text Augmentation: Inserting markup into natural language text with PPM Models'' PhD thesis]&amp;lt;/ref&amp;gt; and is currently the technical lead for the New Zealand Electronic Text Centre. &amp;lt;ref&amp;gt;[http://www.nzetc.org/tm/scholarly/tei-NZETC-About-people.html NZETC Staff page]&amp;lt;/ref&amp;gt; Aspects of TEI he has been recently involved in include migration of the TEI collection from P4 to P5, packaging TEI as [[Cocoon epub Compiler|ePubs]] and parallel (English-Māori) texts. He has contributed to the TEI wiki and re-written the TEI page on wikipedia (where he has &amp;gt;20000 edits). Previously he worked at Oxford under Sebastian Rahtz and Lou Burnard. He is learning te reo Māori.&lt;br /&gt;
&lt;br /&gt;
Living in New Zealand he runs on GMT+12 (+/- daylight savings) and rarely gets to travel to meet people face-to-face, he is, however, an enthusiastic contributor to mailing lists. &lt;br /&gt;
&lt;br /&gt;
Contributions to [http://wiki.tei-c.org/index.php/Special:Contributions/Stuartyeates this wiki], [https://secure.wikimedia.org/wikipedia/en/wiki/Special:Contributions/Stuartyeates English wikipedia] [https://secure.wikimedia.org/wikipedia/mi/wiki/Special:Contributions/Stuartyeates te reo Māori wikipedia]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Bookmarks==&lt;br /&gt;
&lt;br /&gt;
===TEI Technical Stuff===&lt;br /&gt;
* [[Council|TEI Council page]]&lt;br /&gt;
* [http://www.tei-c.org/Activities/Council/Working/tcw17.html SourceForge tickets by colour]&lt;br /&gt;
* [http://bits.nsms.ox.ac.uk:8080/jenkins/ Jenkins dashboard]&lt;br /&gt;
&lt;br /&gt;
===Xpointery stuff===&lt;br /&gt;
* [https://bugs.eclipse.org/bugs/show_bug.cgi?id=226245]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Users|Stuart Yeates]]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Setting_up_a_Jenkins_server&amp;diff=10888</id>
		<title>Setting up a Jenkins server</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Setting_up_a_Jenkins_server&amp;diff=10888"/>
		<updated>2012-06-11T21:24:29Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: explain jenkins better&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page contains instructions and a script for setting up a Jenkins Continuous Integration Server for automated building of all of the TEI products.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== What is a Jenkins server? ==&lt;br /&gt;
&lt;br /&gt;
Jenkins is a continuous integration server, a tool from modern software engineering. It's role is to notice whenever a change is made to the work-in-progress text of the TEI standard and perform a range of tasks, including building building each of the language variants and a number of tests. Jenkins catches a broad range of technical issues and complains very loudly about them to the users it thinks caused them.&lt;br /&gt;
&lt;br /&gt;
When it detects a change (because someone has edited one of the source code files), it downloads the changes and starts building the codebase to create an updated version of the project, whatever that is. In the case of the TEI, there are seven different sub-projects, each of which is built separately: the OxGarage conversion server, the Roma schema-building tool, the TEI Stylesheets, an XSLT 1.0 version of the Stylesheets, TEI P5, TEI P5 Documentation (the Guidelines etc.), and some TEI P5 test cases. Some of these jobs depend on others -- for instance, all of the TEIP5-* projects are built using the stylesheets created from the Stylesheets project.&lt;br /&gt;
&lt;br /&gt;
== Why would I want to create a Jenkins server? ==&lt;br /&gt;
&lt;br /&gt;
A Jenkins server is useful to project administrators because it will automatically create new builds whenever the codebase changes, so the admins don't have to remember to do that themselves. It will also notify you when a build fails, perhaps because a recent change to the source contained an error. Programmers working on the codebase can use this feature to check the changes they have made to make sure they're OK, and roll them back if they don't work, without having to have a complete build environment set up on their own computers.&lt;br /&gt;
&lt;br /&gt;
The TEI's main Jenkins server, in Oxford, is at [http://tei.oucs.ox.ac.uk/jenkins/ http://tei.oucs.ox.ac.uk/jenkins/]. There you can see the seven build targets and look at their status -- when they were last built, when the last build failure occurred, etc. The Humanities Computing and Media Centre at the University of Victoria also has a Jenkins server runnin at [http://teijenkins.hcmc.uvic.ca:8080/ http://teijenkins.hcmc.uvic.ca:8080/] &lt;br /&gt;
&lt;br /&gt;
You might want to set up your own Jenkins server for a number of reasons:&lt;br /&gt;
&lt;br /&gt;
*To add extra redundancy to the TEI project build process&lt;br /&gt;
*To add your own build targets for specific purposes&lt;br /&gt;
*To learn about Jenkins so that you can help administer one of the main servers&lt;br /&gt;
&lt;br /&gt;
== How do I go about creating a Jenkins server? ==&lt;br /&gt;
&lt;br /&gt;
There are four stages:&lt;br /&gt;
&lt;br /&gt;
1. Build a basic headless Ubuntu server, using the Ubuntu Precise 12.04 (Long-Term Support) edition.&lt;br /&gt;
&lt;br /&gt;
2. Install an Oxygen licence in the right location (some of the TEI projects require Oxygen).&lt;br /&gt;
&lt;br /&gt;
3. Run our customization script to install all of the TEI and Jenkins code.&lt;br /&gt;
&lt;br /&gt;
4. Make some final tweaks to your setup (setting up security for Jenkins).&lt;br /&gt;
&lt;br /&gt;
You will need to be comfortable with installing Linux and doing a couple of things at the command line. If you've never done this kind of thing before, this project is probably not for you.&lt;br /&gt;
&lt;br /&gt;
== Stage one ==&lt;br /&gt;
&lt;br /&gt;
Download the latest distribution of the Ubuntu Precise (12.04) server ISO from the Ubuntu download site ([http://www.ubuntu.com/download/ubuntu/alternative-download http://www.ubuntu.com/download/ubuntu/alternative-download]).&lt;br /&gt;
&lt;br /&gt;
Install the distribution on the machine you're going to use as your server (or on a virtual machine, if you don't have a piece of hardware to dedicate to the job). Choose &amp;quot;Internet server&amp;quot; when you're asked what type of computer you're setting up, during the install process. Then do all the updates to make sure your Precise installation is fully updated.&lt;br /&gt;
&lt;br /&gt;
== Stage two ==&lt;br /&gt;
&lt;br /&gt;
Log into your server, and place a copy of a valid Oxygen license file, licensekey.txt, in /usr/share/oxygen/. The file should contain the nine lines of text of the Oxygen license key (located between the license key start and end markers). A valid Oxygen license is required in order to build some of the TEI projects.&lt;br /&gt;
&lt;br /&gt;
== Stage three ==&lt;br /&gt;
&lt;br /&gt;
Download our [http://wiki.tei-c.org/images/a/a5/Jenkins_builder_script.sh.zip Jenkins_builder_script.sh.zip] script. Unzip it, and get the script onto your server somehow. Make it executable, and run it as root. You'll see some basic instructions as it starts up. Agree to all EULAs along the way. When the script completes, you should have a working Jenkins machine. The Jenkins GUI will be running on its default port of 8080, and if you connect to your server on that port, you should see it start to run the five TEI jobs. The first run takes a long time, because it has to download all the source code from SVN, but subsequent builds triggered by changes should be much quicker.&lt;br /&gt;
&lt;br /&gt;
== Stage four ==&lt;br /&gt;
&lt;br /&gt;
First, make sure you add a valid oXygen license key file in the appropriate location, so that your use of oXygen on this machine is legal. Put your oXygen licence key in a file called licensekey.txt in the oXygen directory (/usr/share/oxygen/).&lt;br /&gt;
&lt;br /&gt;
Next, set up some security for your Jenkins installation, by using the Jenkins management interface on port 8080 There are various ways to do this, using different authentication methods, but this is the simplest:&lt;br /&gt;
&lt;br /&gt;
* Click on Manage Jenkins, then Configure System.&lt;br /&gt;
* Check &amp;quot;Enable security&amp;quot;.&lt;br /&gt;
* Choose &amp;quot;Jenkins's own user database&amp;quot;.&lt;br /&gt;
* Choose &amp;quot;Matrix-based security&amp;quot;.&lt;br /&gt;
* Create a new user (called, for instance, &amp;quot;tei&amp;quot;), and give it full privileges (check everything for that user).&lt;br /&gt;
* For the Anonymous user, check only the Read boxes in Overall and Job.&lt;br /&gt;
* Click on Save at the bottom of the page to save your changes.&lt;br /&gt;
&lt;br /&gt;
Now log in as the new user (&amp;quot;tei&amp;quot;) and set a password for yourself. Now anyone can see the progress of jobs, but only the tei user can log in and make changes.&lt;br /&gt;
&lt;br /&gt;
== What does your script actually do? ==&lt;br /&gt;
&lt;br /&gt;
You can have a look for yourself:&lt;br /&gt;
&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 #The Mighty Jenkins Builder Script.&lt;br /&gt;
 #Note that this should be run as root (with sudo).&lt;br /&gt;
 &lt;br /&gt;
 echo &amp;quot;&amp;quot;&lt;br /&gt;
 echo &amp;quot;Entering the Mighty Jenkins Builder Script.&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 uid=$(/usr/bin/id -u) &amp;amp;&amp;amp; [ &amp;quot;$uid&amp;quot; = &amp;quot;0&amp;quot; ] ||&lt;br /&gt;
 { echo &amp;quot;This script must be run as root.&amp;quot;; exit 1; }&lt;br /&gt;
 &lt;br /&gt;
 echo &amp;quot;Running as root: good.&amp;quot;&lt;br /&gt;
 echo &amp;quot;&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 if grep -q 10.04 /etc/lsb-release &lt;br /&gt;
 then echo &amp;quot;Running on Ubuntu Lucid. Good.&amp;quot;&lt;br /&gt;
 else&lt;br /&gt;
   echo &amp;quot;This script needs to be run on Ubuntu Lucid Server.&amp;quot;&lt;br /&gt;
   echo &amp;quot;According to /etc/lsb-release, you don't seem to be running that version of Ubuntu.&amp;quot;&lt;br /&gt;
   echo &amp;quot;The script will now terminate.&amp;quot;&lt;br /&gt;
   exit&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 echo &amp;quot;&amp;quot;&lt;br /&gt;
 echo &amp;quot;Using netstat to check whether any service is currently running on port 8080.&amp;quot;&lt;br /&gt;
 echo &amp;quot;&amp;quot;&lt;br /&gt;
 netstat -tulpan | grep 8080&lt;br /&gt;
 if [ $? -eq 0 ] &lt;br /&gt;
 then echo &amp;quot;Another service appears to be running on port 8080, which is the default port for Jenkins.&amp;quot;&lt;br /&gt;
   echo &amp;quot;You can either continue, and then change the port on which Jenkins runs later, or &amp;quot;&lt;br /&gt;
   echo &amp;quot;stop now, and move that service to another port.&amp;quot;&lt;br /&gt;
   echo &amp;quot;Press return to continue, or Control+c to stop.&amp;quot;&lt;br /&gt;
   read&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 echo &amp;quot;&amp;quot;&lt;br /&gt;
 echo &amp;quot;*******************************************&amp;quot;&lt;br /&gt;
 echo &amp;quot;The purpose of this script is to set up a working&lt;br /&gt;
 Jenkins Continuous Integration Server which will check&lt;br /&gt;
 out and build a range of TEI products, including the &lt;br /&gt;
 P5 Guidelines (in various formats) and the Roma schema &lt;br /&gt;
 generation tool.&amp;quot;&lt;br /&gt;
 echo &amp;quot;&amp;quot;&lt;br /&gt;
 echo &amp;quot;This script is designed to be run on a fully-updated&lt;br /&gt;
 install of Ubuntu Lucid Lynx (Ubuntu 10.04). Lucid was &lt;br /&gt;
 chosen because it is a Long-Term Support edition, and &lt;br /&gt;
 will be available for around two years from the time &lt;br /&gt;
 of writing the script.&amp;quot;&lt;br /&gt;
 echo &amp;quot;The script may work on other versions of Ubuntu,&lt;br /&gt;
 but only Lucid has been tested.&amp;quot;&lt;br /&gt;
 echo &amp;quot;*******************************************&amp;quot;&lt;br /&gt;
 echo &amp;quot;&amp;quot;&lt;br /&gt;
 echo &amp;quot;Do you want to continue? Press return to continue,&lt;br /&gt;
 Control+c to stop.&amp;quot;&lt;br /&gt;
 read&lt;br /&gt;
 &lt;br /&gt;
 echo &amp;quot;&amp;quot;&lt;br /&gt;
 echo &amp;quot;*******************************************&amp;quot;&lt;br /&gt;
 echo &amp;quot;Throughout the following process, you will be &lt;br /&gt;
 asked to agree to various EULAs and licences. Just&lt;br /&gt;
 agree to everything, by selecting 'OK', 'Yes' etc.&amp;quot;&lt;br /&gt;
 echo &amp;quot;*******************************************&amp;quot;&lt;br /&gt;
 echo &amp;quot;&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 echo &amp;quot;Press return to continue&amp;quot;&lt;br /&gt;
 read&lt;br /&gt;
 &lt;br /&gt;
 #First do updates.&lt;br /&gt;
 echo &amp;quot;Doing system updates before starting on anything else.&amp;quot;&lt;br /&gt;
 apt-get update&lt;br /&gt;
 apt-get upgrade&lt;br /&gt;
 &lt;br /&gt;
 #Now add the repositories we want.&lt;br /&gt;
 echo &amp;quot;Backing up repository list.&amp;quot;&lt;br /&gt;
 cp /etc/apt/sources.list /etc/apt/sources.list.bak&lt;br /&gt;
 &lt;br /&gt;
 #Uncomment partner repos.&lt;br /&gt;
 echo &amp;quot;Uncommenting partner repositories on sources list, so we can get Sun Java.&amp;quot;&lt;br /&gt;
 sed -i -re '/partner/ s/^#//' /etc/apt/sources.list&lt;br /&gt;
 &lt;br /&gt;
 #First Jenkins&lt;br /&gt;
 echo &amp;quot;Adding Jenkins repository.&amp;quot;&lt;br /&gt;
 wget -q -O - http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key | apt-key add -&lt;br /&gt;
 echo &amp;quot;deb http://pkg.jenkins-ci.org/debian binary/&amp;quot; &amp;gt; /etc/apt/sources.list.d/jenkins.list&lt;br /&gt;
 &lt;br /&gt;
 #Next TEI.&lt;br /&gt;
 echo &amp;quot;Adding TEI Debian repository.&amp;quot;&lt;br /&gt;
 gpg --keyserver wwwkeys.uk.pgp.net --recv-keys FEA4973F86A9A497&lt;br /&gt;
 apt-key add ~/.gnupg/pubring.gpg&lt;br /&gt;
 echo &amp;quot;deb http://tei.oucs.ox.ac.uk/teideb/binary ./&amp;quot; &amp;gt; /etc/apt/sources.list.d/tei.list&lt;br /&gt;
 &lt;br /&gt;
 #Now we can start installing packages.&lt;br /&gt;
 echo &amp;quot;Updating for new repositories.&amp;quot;&lt;br /&gt;
 apt-get update&lt;br /&gt;
 &lt;br /&gt;
 echo &amp;quot;Installing Sun Java JDK.&amp;quot;&lt;br /&gt;
 apt-get install sun-java6-jdk &amp;amp;&amp;amp;&lt;br /&gt;
 echo &amp;quot;Installing core packages we need.&amp;quot;&lt;br /&gt;
 apt-get install openssh-server libxml2 libxml2-utils devscripts xsltproc debhelper subversion trang &amp;amp;&amp;amp;&lt;br /&gt;
 &lt;br /&gt;
 #TEI packages&lt;br /&gt;
 echo &amp;quot;Installing TEI packages.&amp;quot;&lt;br /&gt;
 apt-get install psgml xmlstarlet debiandoc-sgml linuxdoc-sgml jing jing-trang-doc libjing-java rnv texlive-xetex &amp;amp;&amp;amp;&lt;br /&gt;
 apt-get install trang-java tei-p5-doc tei-p5-database tei-p5-source tei-schema tei-emacs saxon nxml-mode-tei tei-p5-xsl tei-p5-xsl2 tei-roma onvdl tei-oxygen zip &amp;amp;&amp;amp;&lt;br /&gt;
 &lt;br /&gt;
 #I don't believe the following step is necessary, so it's been commented out for the moment.&lt;br /&gt;
 #Waiting for info from SR and SY about why it was in the instructions.&lt;br /&gt;
 #echo &amp;quot;Removing things that cause problems for TEI.&amp;quot;&lt;br /&gt;
 #apt-get remove `apt-cache search gcj | grep gcj | awk '{print $1}'`&lt;br /&gt;
 &lt;br /&gt;
 #Setting up configuration for oXygen&lt;br /&gt;
 mkdir /root/.com.oxygenxml&lt;br /&gt;
 chmod a+x /root/.com.oxygenxml&lt;br /&gt;
 mkdir /root/.java&lt;br /&gt;
 chmod a+x /root/.java&lt;br /&gt;
 echo &amp;quot;Don't forget to put your licensekey.txt file in the folder /usr/share/oxygen so that oXygen is registered.&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 #More packages needed&lt;br /&gt;
 echo &amp;quot;Installing packages needed for building TEI source.&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 #Various fonts and the like.&lt;br /&gt;
 echo &amp;quot;Installing fonts we need.&amp;quot;&lt;br /&gt;
 apt-get install ttf-dejavu msttcorefonts ttf-arphic-ukai ttf-arphic-uming ttf-baekmuk ttf-junicode ttf-kochi-gothic ttf-kochi-mincho&lt;br /&gt;
 echo &amp;quot;The Han Nom font is not available in repositories, so we have to download it from SourceForge.&amp;quot;&lt;br /&gt;
 cd /usr/share/fonts/truetype&lt;br /&gt;
 mkdir hannom&lt;br /&gt;
 cd hannom&lt;br /&gt;
 wget -O hannom.zip http://downloads.sourceforge.net/project/vietunicode/hannom/hannom%20v2005/hannomH.zip&lt;br /&gt;
 unzip hannom.zip&lt;br /&gt;
 find . -iname &amp;quot;*.ttf&amp;quot; | rename 's/\ /_/g'&lt;br /&gt;
 rm hannom.zip&lt;br /&gt;
 fc-cache -f -v&lt;br /&gt;
 &lt;br /&gt;
 #Jenkins&lt;br /&gt;
 apt-get install jenkins&lt;br /&gt;
 &lt;br /&gt;
 #Configuration for Jenkins&lt;br /&gt;
 echo &amp;quot;Starting configuration of Jenkins.&amp;quot;&lt;br /&gt;
 echo &amp;quot;Getting the Hudson log parsing rules from TEI SVN.&amp;quot;&lt;br /&gt;
 cd /var/lib/jenkins&lt;br /&gt;
 svn export https://tei.svn.sourceforge.net/svnroot/tei/trunk/P5/Utilities/hudson-log-parse-rules&lt;br /&gt;
 chown jenkins hudson-log-parse-rules&lt;br /&gt;
 echo &amp;quot;Getting all the job data from TEI SVN.&amp;quot;&lt;br /&gt;
 #Don't bring down the config.xml file for now; that contains security settings specific to &lt;br /&gt;
 #Sebastian's setup, and will prevent anyone from logging in. We leave the server unsecured,&lt;br /&gt;
 #and make it up to the user to secure it.&lt;br /&gt;
 #svn export https://tei.svn.sourceforge.net/svnroot/tei/trunk/Documents/Editing/Jenkins/config.xml&lt;br /&gt;
 #chown jenkins config.xml&lt;br /&gt;
 svn export --force https://tei.svn.sourceforge.net/svnroot/tei/trunk/Documents/Editing/Jenkins/jobs/ jobs&lt;br /&gt;
 chown -R jenkins jobs&lt;br /&gt;
 echo &amp;quot;Installing Jenkins plugins.&amp;quot;&lt;br /&gt;
 cd plugins&lt;br /&gt;
 wget --no-check-certificate http://updates.jenkins-ci.org/latest/copyartifact.hpi&lt;br /&gt;
 chown jenkins copyartifact.hpi&lt;br /&gt;
 wget --no-check-certificate http://updates.jenkins-ci.org/latest/emotional-hudson.hpi&lt;br /&gt;
 chown jenkins emotiosudnal-hudson.hpi&lt;br /&gt;
 wget --no-check-certificate http://updates.jenkins-ci.org/latest/greenballs.hpi&lt;br /&gt;
 chown jenkins greenballs.hpi&lt;br /&gt;
 wget --no-check-certificate http://updates.jenkins-ci.org/latest/jobConfigHistory.hpi&lt;br /&gt;
 chown jenkins jobConfigHistory.hpi&lt;br /&gt;
 wget --no-check-certificate http://updates.jenkins-ci.org/latest/plot.hpi&lt;br /&gt;
 chown jenkins plot.hpi&lt;br /&gt;
 wget --no-check-certificate http://updates.jenkins-ci.org/latest/log-parser.hpi&lt;br /&gt;
 chown jenkins log-parser.hpi&lt;br /&gt;
 wget --no-check-certificate http://updates.jenkins-ci.org/latest/scp.hpi&lt;br /&gt;
 chown jenkins scp.hpi&lt;br /&gt;
 wget --no-check-certificate http://updates.jenkins-ci.org/latest/WebSVN2.hpi&lt;br /&gt;
 chown jenkins WebSVN2.hpi&lt;br /&gt;
 &lt;br /&gt;
 echo &amp;quot;Restarting Jenkins server, so that it finds and initializes all the new plugins.&amp;quot;&lt;br /&gt;
 /etc/init.d/jenkins restart&lt;br /&gt;
 &lt;br /&gt;
 echo &amp;quot;OK, we should be done. Now you have to:&amp;quot;&lt;br /&gt;
 echo &amp;quot;1. Put your oXygen licence key in a file called licensekey.txt in the oXygen directory (/usr/share/oxygen/).&amp;quot;&lt;br /&gt;
 echo &amp;quot;2. Go to the Jenkins interface on http://localhost:8080, and set up authentication. Read the Jenkins docs.&amp;quot;&lt;br /&gt;
 echo &amp;quot;That's it!&amp;quot;&lt;br /&gt;
 read&lt;br /&gt;
 exit&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Jenkins&amp;diff=10887</id>
		<title>Jenkins</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Jenkins&amp;diff=10887"/>
		<updated>2012-06-11T21:05:12Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: create redirect&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT[[Setting up a Jenkins server]]&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=AttsWithoutEgs&amp;diff=10879</id>
		<title>AttsWithoutEgs</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=AttsWithoutEgs&amp;diff=10879"/>
		<updated>2012-06-11T09:09:30Z</updated>

		<summary type="html">&lt;p&gt;Stuartyeates: sign up for node&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The sourceforge ticket for this is http://purl.org/TEI/BUGS/3520704&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Attributes without an example in their elementSpec OR classSpec  ==&lt;br /&gt;
&lt;br /&gt;
List generated 2012-04-23T08:14:26.517-07:00 &lt;br /&gt;
      &lt;br /&gt;
{| class=&amp;quot;sortable&amp;quot; border=&amp;quot;1&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; align=&amp;quot;center&amp;quot;&lt;br /&gt;
! #&lt;br /&gt;
! Att name&lt;br /&gt;
! Defined in&lt;br /&gt;
! Assigned to&lt;br /&gt;
! Completed&lt;br /&gt;
|-&lt;br /&gt;
|| 1 || absolute || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-when.html when] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 2 || adj || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-node.html node] || SY ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 3 || adjFrom || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-node.html node] || SY ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 4 || adjTo || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-node.html node] || SY ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 5 || age || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-personGrp.html personGrp] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 6 || agent || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.damaged.html att.damaged] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 7 || agent || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-gap.html gap] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 8 || agent || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-unclear.html unclear] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 9 || ana || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.global.analytic.html att.global.analytic] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 10 || atLeast || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.ranging.html att.ranging] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 11 || atMost || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.ranging.html att.ranging] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 12 || attachment || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-surface.html surface] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 13 || autoPrefix || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-content.html content] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 14 || baseTypes || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-fsDecl.html fsDecl] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 15 || break || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.breaking.html att.breaking] || MDH || 2012-05-20 &lt;br /&gt;
|-&lt;br /&gt;
|| 16 || cRef || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-gloss.html gloss] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 17 || cRef || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-term.html term] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 18 || cRef || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-ptr.html ptr] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 19 || cRef || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-ref.html ref] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 20 || cause || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.transcriptional.html att.transcriptional] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 21 || cause || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.textCritical.html att.textCritical] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 22 || cert || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.responsibility.html att.responsibility] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 23 || change || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.global.change.html att.global.change] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 24 || class || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-msContents.html msContents] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 25 || cols || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.tableDecoration.html att.tableDecoration] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 26 || confidence || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.ranging.html att.ranging] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 27 || contemporary || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-seal.html seal] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 28 || copyOf || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.global.linking.html att.global.linking] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 29 || corresp || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.global.linking.html att.global.linking] || MDH || 2012-05-20 &lt;br /&gt;
|-&lt;br /&gt;
|| 30 || datingMethod || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.datable.custom.html att.datable.custom] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 31 || datingPoint || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.datable.custom.html att.datable.custom] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 32 || decls || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.declaring.html att.declaring] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 33 || default || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.declarable.html att.declarable] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
| 34 || defective || att.ms&amp;lt;nowiki/&amp;gt;Excerpt ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 35 || degree || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.damaged.html att.damaged] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 36 || degree || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-node.html node] || SY ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 37 || dim || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-space.html space] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 38 || direct || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-said.html said] || MDH || 2012-05-21 &lt;br /&gt;
|-&lt;br /&gt;
|| 39 || docLang || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-schemaSpec.html schemaSpec] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 40 || domains || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.pointing.group.html att.pointing.group] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 41 || dur || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.att.duration.w3c.html att.duration.w3c] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 42 || dur-iso || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.duration.iso.html att.duration.iso] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 43 || encoding || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-binaryObject.html binaryObject] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 44 || end || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.timed.html att.timed] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 45 || enjamb || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.enjamb.html att.enjamb] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 46 || evaluate || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.pointing.html att.pointing] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 47 || evidence || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.editLike.html att.editLike] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 48 || except || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-moduleRef.html moduleRef] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 49 || exclude || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.global.linking.html att.global.linking] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 50 || expand || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.lexicographic.html att.lexicographic] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 51 || extent || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-orth.html orth] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 52 || fVal || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-f.html f] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 53 || facs || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.global.facs.html att.global.facs] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 54 || feats || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-fs.html fs] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 55 || filter || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-equiv.html equiv] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 56 || flipping || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-surface.html surface] ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| 57 || follow || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-leaf.html leaf] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 58 || force || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-pc.html pc] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 59 || from || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.datable.w3c.html att.datable.w3c] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 60 || from || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-app.html app] ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| 61 || from-custom || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.datable.custom.html att.datable.custom] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 62 || from-iso || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.datable.iso.html att.datable.iso] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 63 || full || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.personal.html att.personal] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 64 || function || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.segLike.html att.segLike] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 65 || generate || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-classSpec.html classSpec] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 66 || gradual || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-writing.html writing] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 67 || group || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.damaged.html att.damaged] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 68 || hand || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.damaged.html att.damaged] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 69 || hand || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.transcriptional.html att.transcriptional] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 70 || hand || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-gap.html gap] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 71 || hand || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-unclear.html unclear] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 72 || hand || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.textCritical.html att.textCritical] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 73 || height || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-graphic.html graphic] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 74 || height || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-binaryObject.html binaryObject] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 75 || ident || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.identified.html att.identified] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 76 || inst || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.interpLike.html att.interpLike] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 77 || instant || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.editLike.html att.editLike] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 78 || key || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.canonical.html att.canonical] || SY || 2012-06-06  &lt;br /&gt;
|-&lt;br /&gt;
|| 79 || key || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-classRef.html classRef] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 80 || key || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-macroRef.html macroRef] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 81 || level || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-title.html title] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 82 || level || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-sense.html sense] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 83 || loc || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-app.html app] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 84 || location || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.lexicographic.html att.lexicographic] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 85 || lrx || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.coordinated.html att.coordinated] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 86 || lry || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.coordinated.html att.coordinated] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 87 || material || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-supportDesc.html supportDesc] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 88 || max || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.ranging.html att.ranging] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 89 || max || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-memberOf.html memberOf] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 90 || medium || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.handFeatures.html att.handFeatures] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 91 || mergedIn || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.lexicographic.html att.lexicographic] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 92 || met || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.metrical.html att.metrical] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 93 || method || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-correction.html correction] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 94 || mimeType || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.internetMedia.html att.internetMedia] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 95 || min || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.ranging.html att.ranging] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 96 || min || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-memberOf.html memberOf] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 97 || mode || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-classes.html classes] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 98 || mode || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-memberOf.html memberOf] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 99 || mode || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.combinable.html att.combinable] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 100 || module || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.identified.html att.identified] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 101 || new || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-handShift.html handShift] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 102 || next || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.global.linking.html att.global.linking] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 103 || notAfter-custom || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.datable.custom.html att.datable.custom] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 104 || notAfter-iso || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.datable.iso.html att.datable.iso] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 105 || notBefore-custom || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.datable.custom.html att.datable.custom] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 106 || notBefore-iso || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.datable.iso.html att.datable.iso] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 107 || notation || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-pron.html pron] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 108 || ns || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-schemaSpec.html schemaSpec] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 109 || ns || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-elementSpec.html elementSpec] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 110 || ns || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-attDef.html attDef] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 111 || nymRef || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.naming.html att.naming] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 112 || opt || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.lexicographic.html att.lexicographic] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 113 || optional || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-fDecl.html fDecl] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 114 || ord || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-root.html root] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 115 || ord || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-iNode.html iNode] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 116 || org || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.divLike.html att.divLike] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 117 || org || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-attList.html attList] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 118 || orig || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.lexicographic.html att.lexicographic] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 119 || part || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.divLike.html att.divLike] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 120 || part || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.segLike.html att.segLike] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 121 || part || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-ab.html ab] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 122 || parts || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-nym.html nym] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 123 || perf || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-tech.html tech] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 124 || period || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.datable.html att.datable] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 125 || pre || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-pc.html pc] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 126 || precision || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.dimensions.html att.dimensions] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 127 || predeclare || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.identified.html att.identified] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 128 || prefix || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-moduleRef.html moduleRef] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 129 || prefix || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-elementSpec.html elementSpec] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 130 || prev || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.global.linking.html att.global.linking] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 131 || quantity || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.dimensions.html att.dimensions] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 132 || real || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.metrical.html att.metrical] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 133 || ref || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.canonical.html att.canonical] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 134 || resp || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.responsibility.html att.responsibility] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 135 || resp || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-space.html space] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 136 || rhyme || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.metrical.html att.metrical] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 137 || role || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.naming.html att.naming] ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| 138 || role || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.tableDecoration.html att.tableDecoration] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 139 || role || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-org.html org] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 140 || rotate || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-zone.html zone] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 141 || rows || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.tableDecoration.html att.tableDecoration] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 142 || sameAs || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.global.linking.html att.global.linking] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 143 || sample || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.divLike.html att.divLike] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 144 || scale || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-graphic.html graphic] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 145 || scale || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-binaryObject.html binaryObject] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 146 || scheme || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-catRef.html catRef] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 147 || scheme || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-locus.html locus] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 148 || scheme || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-locusGrp.html locusGrp] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 149 || scheme || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-tag.html tag] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 150 || scope || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.dimensions.html att.dimensions] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 151 || scope || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.handFeatures.html att.handFeatures] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 152 || scribe || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.handFeatures.html att.handFeatures] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 153 || scribeRef || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.handFeatures.html att.handFeatures] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 154 || script || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.handFeatures.html att.handFeatures] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 155 || scriptRef || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.handFeatures.html att.handFeatures] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 156 || select || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.global.linking.html att.global.linking] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 157 || seq || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.transcriptional.html att.transcriptional] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 158 || social || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-distinct.html distinct] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 159 || sort || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.personal.html att.personal] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 160 || source || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.editLike.html att.editLike] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 161 || source || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.readFrom.html att.readFrom] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 162 || source || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-writing.html writing] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 163 || space || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-distinct.html distinct] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 164 || spanTo || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.spanning.html att.spanning] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 165 || split || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.lexicographic.html att.lexicographic] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 166 || start || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.timed.html att.timed] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 167 || start || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.coordinated.html att.coordinated] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 168 || status || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.transcriptional.html att.transcriptional] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 169 || status || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-correction.html correction] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 170 || status || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.identified.html att.identified] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 171 || stdDeviation || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-precision.html precision] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 172 || subtype || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.typed.html att.typed] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 173 || synch || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.global.linking.html att.global.linking] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 174 || targFunc || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.pointing.group.html att.pointing.group] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 175 || target || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-change.html change] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 176 || target || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-relatedItem.html relatedItem] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 177 || targetEnd || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-note.html note] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 178 || targetLang || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-schemaSpec.html schemaSpec] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 179 || targets || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-link.html link] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 180 || targets || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-join.html join] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 181 || targets || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-alt.html alt] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 182 || time || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-distinct.html distinct] ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| 183 || to || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.datable.w3c.html att.datable.w3c] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 184 || to || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-app.html app] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 185 || to-custom || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.datable.custom.html att.datable.custom] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 186 || to-iso || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.datable.iso.html att.datable.iso] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 187 || type || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.interpLike.html att.interpLike] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 188 || type || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.typed.html att.typed] || SY || 2012-06-06  &lt;br /&gt;
|-&lt;br /&gt;
|| 189 || type || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-q.html q] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 190 || type || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-abbr.html abbr] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 191 || type || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-sound.html sound] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 192 || type || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.entryLike.html att.entryLike] ||  | | &lt;br /&gt;
|-&lt;br /&gt;
|| 193 || type || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-form.html form] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 194 || type || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.textCritical.html att.textCritical] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 195 || ulx || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.coordinated.html att.coordinated] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 196 || uly || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.coordinated.html att.coordinated] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 197 || unit || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.dimensions.html att.dimensions] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 198 || unit || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-when.html when] ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| 199 || unit || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-pc.html pc] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 200 || url || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-moduleRef.html moduleRef] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 201 || value || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.lexicographic.html att.lexicographic] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 202 || value || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-node.html node] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 203 || value || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-root.html root] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 204 || value || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-iNode.html iNode] ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| 205 || value || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-leaf.html leaf] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 206 || value || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-eTree.html eTree] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 207 || value || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-triangle.html triangle] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 208 || varSeq || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.textCritical.html att.textCritical] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 209 || version || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-unicodeName.html unicodeName] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 210 || versionDate || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.translatable.html att.translatable] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 211 || when || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-docDate.html docDate] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 212 || where || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-event.html event] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 213 || who || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.ascribed.html att.ascribed] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 214 || width || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-graphic.html graphic] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 215 || width || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-binaryObject.html binaryObject] ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| 216 || wit || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.rdgPart.html att.rdgPart] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 217 || wit || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.witnessed.html att.witnessed] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 218 || xml:base || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.global.html att.global] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 219 || xml:id || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.global.html att.global] ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| 220 || xml:lang || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.global.html att.global] || SY || 2012-06-06  &lt;br /&gt;
|-&lt;br /&gt;
|| 221 || xml:space || [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-att.global.html att.global] ||  ||  &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Stuartyeates</name></author>
		
	</entry>
</feed>