| 38 | | <xsl:comment> |
|---|
| 39 | | =========================================================================== |
|---|
| 40 | | Copyright (C) 2006 Ancient World Mapping Center. All rights reserved. |
|---|
| 41 | | |
|---|
| 42 | | This data is derived from original compilations prepared for the American |
|---|
| 43 | | Philological Association's Classical Atlas Project (1988-2000). It is used |
|---|
| 44 | | here with permission of the APA. |
|---|
| 45 | | |
|---|
| 46 | | This data is intended solely for testing purposes in the context of the |
|---|
| 47 | | Ancient World Mapping Center's Pleiades Project and may not be reused or |
|---|
| 48 | | redistributed. |
|---|
| 49 | | |
|---|
| 50 | | In its current state, this data may contain errors and omissions and is not |
|---|
| 51 | | appropriate for citation or scholarly use. Any errors or omissions are the |
|---|
| 52 | | result of prototype conversion software, still under development by the |
|---|
| 53 | | AWMC's Pleiades Project, and do not reflect the quality and completeness of |
|---|
| 54 | | the original data nor the opinions of its scholarly compilers and editors. |
|---|
| 55 | | |
|---|
| 56 | | About Pleiades |
|---|
| 57 | | |
|---|
| 58 | | Pleiades is an international research network and associated web portal and |
|---|
| 59 | | content management system devoted to the study of ancient geography. |
|---|
| 60 | | |
|---|
| 61 | | See http://icon.stoa.org/trac/pleiades/wiki. |
|---|
| 62 | | |
|---|
| 63 | | Funding for the conversion of this data was provided by a grant from the |
|---|
| 64 | | U.S. National Endowment for the Humanities (http://www.neh.gov). |
|---|
| 65 | | =========================================================================== |
|---|
| 66 | | </xsl:comment> |
|---|
| | 80 | </xsl:template> |
|---|
| | 81 | |
|---|
| | 82 | <xsl:template match="creator"> |
|---|
| | 83 | <xsl:element name="dc:creator" namespace="http://purl.org/dc/elements/1.1/"> |
|---|
| | 84 | <xsl:apply-templates/> |
|---|
| | 85 | </xsl:element> |
|---|
| | 86 | </xsl:template> |
|---|
| | 87 | |
|---|
| | 88 | <xsl:template match="contributor"> |
|---|
| | 89 | <xsl:element name="dc:contributor" namespace="http://purl.org/dc/elements/1.1/"> |
|---|
| | 90 | <xsl:apply-templates/> |
|---|
| | 91 | </xsl:element> |
|---|
| | 92 | </xsl:template> |
|---|
| | 93 | |
|---|
| | 94 | <xsl:template match="ID"> |
|---|
| | 95 | <xsl:element name="adlgaz:featureID" namespace="http://www.alexandria.ucsb.edu/gazetteer/ContentStandard/version3.2/"> |
|---|
| | 96 | <xsl:copy-of select="@*"/> |
|---|
| | 97 | <xsl:apply-templates/> |
|---|
| | 98 | </xsl:element> |
|---|
| | 99 | </xsl:template> |
|---|
| | 100 | |
|---|
| | 101 | <xsl:template match="name"> |
|---|
| | 102 | <xsl:element name="adlgaz:featureName" namespace="http://www.alexandria.ucsb.edu/gazetteer/ContentStandard/version3.2/"> |
|---|
| | 103 | <xsl:copy-of select="@*"/> |
|---|
| | 104 | <xsl:apply-templates/> |
|---|
| | 105 | </xsl:element> |
|---|
| | 106 | </xsl:template> |
|---|
| | 107 | |
|---|
| | 108 | <xsl:template match="timePeriod | timePeriodName | classificationSection | classificationTerm | classificationScheme | schemeName | spatialLocation"> |
|---|
| | 109 | <xsl:element name="adlgaz:{local-name()}" namespace="http://www.alexandria.ucsb.edu/gazetteer/ContentStandard/version3.2/"> |
|---|
| | 110 | <xsl:copy-of select="@*"/> |
|---|
| | 111 | <xsl:apply-templates/> |
|---|
| | 112 | </xsl:element> |
|---|