Project

General

Profile

« Previous | Next » 

Revision 49129

[maven-release-plugin] copy for tag dnet-parthenos-1.0.0

View differences:

modules/dnet-parthenos/tags/dnet-parthenos-1.0.0/deploy.info
1
{
2
		"type_source": "SVN",
3
		"goal": "package -U source:jar",
4
		"url": "http://svn-public.driver.research-infrastructures.eu/driver/dnet50/modules/dnet-parthenos/trunk/",
5
		"deploy_repository": "dnet5-snapshots",
6
		"version": "5",
7
		"mail": "sandro.labruzzo@isti.cnr.it,michele.artini@isti.cnr.it, claudio.atzori@isti.cnr.it, alessia.bardi@isti.cnr.it",
8
		"deploy_repository_url": "http://maven.research-infrastructures.eu/nexus/content/repositories/dnet5-snapshots",
9
		"name": "dnet-parthenos"
10
}
modules/dnet-parthenos/tags/dnet-parthenos-1.0.0/src/test/java/eu/dnetlib/ParthenosRRTest.java
1
package eu.dnetlib;
2

  
3
/**
4
 * Created by alessia on 23/03/17.
5
 *
6
 * See tests in https://svn.d4science.research-infrastructures.eu/gcube/trunk/information-system/resource-registry-publisher/
7
 * for usage example
8
 * See https://wiki.gcube-system.org/gcube/Information_System_Resource_Registry#ER_Management
9
 * for a description of the API.
10
 *
11
 * Before using the Java API we must define the classes implementing interfaces in parthenos-registry.
12
 *
13
 */
14
public class ParthenosRRTest {
15

  
16
	private String registryHost;
17

  
18
	public void pippo(){
19

  
20
		//ResourceRegistryPublisher rrp  = ResourceRegistryPublisherFactory.create();
21

  
22

  
23
	}
24
}
modules/dnet-parthenos/tags/dnet-parthenos-1.0.0/src/test/java/eu/dnetlib/x3m/ApplyX3MappingTest.java
1
package eu.dnetlib.x3m;
2

  
3
import java.io.IOException;
4
import java.io.InputStream;
5

  
6
import eu.dnetlib.msro.workflows.nodes.transform.ApplyX3Mapping;
7
import org.apache.commons.io.IOUtils;
8
import org.apache.commons.logging.Log;
9
import org.apache.commons.logging.LogFactory;
10
import org.dom4j.Document;
11
import org.dom4j.DocumentException;
12
import org.dom4j.io.SAXReader;
13
import org.junit.Ignore;
14
import org.junit.Test;
15
import org.springframework.core.io.ClassPathResource;
16

  
17
/**
18
 * Created by alessia on 13/03/17.
19
 */
20
public class ApplyX3MappingTest {
21

  
22
	private static final Log log = LogFactory.getLog(ApplyX3MappingTest.class);
23

  
24
	private static String basePathProfiles = "/eu/dnetlib/bootstrap/profiles/TransformationRuleDSResources/TransformationRuleDSResourceType/";
25

  
26

  
27
	//Parthenos mappings
28
	final String parthenosPolicyPath = "parthenos_policy.xml";
29
	final String mappingAriadnePath = "ariadne_dataset_377_mapping.xml";
30
	final String mappingEhriPath = "ehri_328_mapping.xml";
31
	final String mappingCulturaItaliaPath = "culturaitalia_musei_312_mapping.xml";
32

  
33
	//Parthenos records
34
	final String ariadnePath = "/eu/dnetlib/x3m/new-10304736.xml";
35
	final String ehriRecord = "/eu/dnetlib/x3m/ehri_test.xml";
36
	final String ehriRecord2 = "/eu/dnetlib/x3m/EHRI_sample_record_328.xml";
37
	final String[] ariadneFiles =
38
			new String[] { ariadnePath, "/eu/dnetlib/x3m/new-10304737.xml", "/eu/dnetlib/x3m/new-10304738.xml", "/eu/dnetlib/x3m/new-10304739.xml",
39
					"/eu/dnetlib/x3m/new-10304740.xml", "/eu/dnetlib/x3m/new-10304741.xml", "/eu/dnetlib/x3m/new-10304742.xml" };
40
	final String[] clarinFiles =
41
			new String[] { "/eu/dnetlib/x3m/clarin_dataset.xml", "/eu/dnetlib/x3m/clarin_dataset2.xml",
42
					"/eu/dnetlib/x3m/clarin_service.xml", "/eu/dnetlib/x3m/clarin_service2.xml" };
43

  
44
	final String culturaItaliaPath = "/eu/dnetlib/x3m/culturaitalia_record.xml";
45

  
46

  
47
	@Test
48
	public void testAriadne() throws IOException {
49
		doBasicTest(this.mappingAriadnePath, this.ariadnePath);
50
	}
51

  
52
	@Test
53
	public void testAriadneAll() throws IOException {
54
		String m = loadFromTransformationProfile(mappingAriadnePath);
55
		String g = getString(parthenosPolicyPath);
56

  
57
		ApplyX3Mapping x3m = new ApplyX3Mapping(new String[]{m}, g, false);
58
		for(String path : ariadneFiles){
59
			String res = x3m.apply(getString(path));
60
			log.debug(res);
61
		}
62
	}
63

  
64
	@Test
65
	public void testEhri() throws IOException {
66
		doBasicTest(this.mappingEhriPath, this.ehriRecord);
67
	}
68
	@Test
69
	public void testEhri2(){
70
		doBasicTest(this.mappingEhriPath, this.ehriRecord2);
71
	}
72

  
73
	@Test
74
	public void testCulturaItalia() throws IOException {
75
		doBasicTest(this.mappingCulturaItaliaPath, this.culturaItaliaPath);
76
	}
77

  
78

  
79
	@Test
80
	public void testClarinGysseling365() throws IOException {
81
		doBasicTest("clarin_403_mapping.xml", "/eu/dnetlib/x3m/clarin_gysseling_corpus.xml");
82
	}
83

  
84
	@Ignore
85
	@Test
86
	public void testAllClarin(){
87
		String mapService = loadFromTransformationProfile("clarin_services_373_mapping.xml");
88
		String mapData = loadFromTransformationProfile("clarin_datasets_365_mapping.xml");
89
		String policy = getString(parthenosPolicyPath);
90
		ApplyX3Mapping x3m = new ApplyX3Mapping(new String[]{mapData,mapService}, policy, true);
91
		for(String path : clarinFiles){
92
			String res = x3m.apply(getString(path));
93
			log.debug(res);
94
		}
95
	}
96

  
97
	@Test
98
	public void testDariahGR(){
99
		doBasicTest("dariah-GR_317_mapping.xml", "/eu/dnetlib/x3m/dariah.xml");
100
	}
101

  
102
	@Test
103
	public void testMetashare(){
104
		doBasicTest("metashare_387_mapping.xml", "/eu/dnetlib/x3m/metashare.xml");
105
	}
106

  
107

  
108
	public void doBasicTest(String mappingPath, String recordPath){
109
		String m = loadFromTransformationProfile(mappingPath);
110
		String g = loadFromTransformationProfile(parthenosPolicyPath);
111
		String r = getString(recordPath);
112
		ApplyX3Mapping x3m = new ApplyX3Mapping(new String[]{m}, g, true);
113
		String res = x3m.apply(r);
114
		log.debug(res);
115

  
116
	}
117

  
118
	private String getString(final String classpath) {
119
		try {
120
			final ClassPathResource resource = new ClassPathResource(classpath);
121
			return IOUtils.toString(resource.getInputStream(), "UTF-8");
122
		}catch(IOException e){
123
			return null;
124
		}
125
	}
126

  
127

  
128
	private String loadFromTransformationProfile(String profilePath){
129
		log.info("Loading xslt from: " + basePathProfiles + profilePath);
130
		InputStream profile = getClass().getResourceAsStream(basePathProfiles + profilePath);
131
		SAXReader saxReader = new SAXReader();
132
		Document doc = null;
133
		try {
134
			doc = saxReader.read(profile);
135
		} catch (DocumentException e) {
136
			e.printStackTrace();
137
			throw new RuntimeException(e);
138
		}
139
		String s = doc.selectSingleNode("//SCRIPT/CODE").getText();
140
		//log.debug(profilePath+": "+s);
141
		return s;
142
	}
143
}
modules/dnet-parthenos/tags/dnet-parthenos-1.0.0/src/test/java/eu/dnetlib/data/collector/plugins/parthenos/ehri/EHRIIteratorTest.java
1
package eu.dnetlib.data.collector.plugins.parthenos.ehri;
2

  
3
import org.junit.Test;
4

  
5
/**
6
 * Created by Alessia Bardi on 13/06/2017.
7
 *
8
 * @author Alessia Bardi
9
 */
10
public class EHRIIteratorTest {
11

  
12

  
13
	private EHRIIterator ehriIterator = new EHRIIterator(null, null, null);
14
	final String test = "<ead xmlns=\"urn:isbn:1-931666-22-9\"\n"
15
			+ "\txmlns:xlink=\"http://www.w3.org/1999/xlink\"\n"
16
			+ "\txmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
17
			+ "\txsi:schemaLocation=\"urn:isbn:1-931666-22-9 http://www.loc.gov/ead/ead.xsd\">\n"
18
			+ "  <eadheader xmlns=\"\"\n"
19
			+ "\tcountryencoding=\"iso3166-1\"\n"
20
			+ "\tdateencoding=\"iso8601\"\n"
21
			+ "\trelatedencoding=\"DC\"\n"
22
			+ "\trepositoryencoding=\"iso15511\"\n"
23
			+ "\tscriptencoding=\"iso15924\">\n"
24
			+ "      <eadid>us-005578-irn516886</eadid>\n"
25
			+ "\t</eadheader>\n"
26
			+ "\t</ead>";
27

  
28
	@Test
29
	public void testRemoveDefaultEADNamespace(){
30
		System.out.println(ehriIterator.removeDefaultEADNamespace(test));
31
	}
32
}
modules/dnet-parthenos/tags/dnet-parthenos-1.0.0/src/test/java/eu/dnetlib/data/collector/plugins/parthenos/ehri/EHRIGraphQLClientTest.java
1
package eu.dnetlib.data.collector.plugins.parthenos.ehri;
2

  
3
import java.io.IOException;
4
import java.io.InputStreamReader;
5
import java.net.URISyntaxException;
6
import java.net.URL;
7
import java.util.Iterator;
8

  
9
import eu.dnetlib.rmi.data.CollectorServiceException;
10
import org.apache.commons.io.IOUtils;
11
import org.junit.Ignore;
12
import org.junit.Test;
13

  
14
/**
15
 * Created by Alessia Bardi on 19/04/2017.
16
 *
17
 * @author Alessia Bardi
18
 */
19
public class EHRIGraphQLClientTest {
20

  
21
	private EHRIGraphQLClient client = new EHRIGraphQLClient();
22
	private String baseUrl = "https://portal.ehri-project.eu/api/graphql";
23
	private String query = "{\"query\":\"{topLevelDocumentaryUnits{items{id}}}\"}";
24

  
25
	private String simpleOutput = "{\n"
26
			+ "  \"data\" : {\n"
27
			+ "    \"topLevelDocumentaryUnits\" : {\n"
28
			+ "      \"items\" : [ {\n"
29
			+ "        \"id\" : \"at-001985-ikg_ar_1\"\n"
30
			+ "      }, {\n"
31
			+ "        \"id\" : \"at-001985-ikg_ar_11\"\n"
32
			+ "      }]\n"
33
			+ "    }\n"
34
			+ "  }\n"
35
			+ "}";
36

  
37
	@Test
38
	public void testGetIdentifiers() throws IOException {
39
		Iterator<String> it = client.getIdentifiers(new InputStreamReader(IOUtils.toInputStream(simpleOutput, "UTF-8")));
40
		while(it.hasNext())
41
			System.out.println(it.next());
42
	}
43

  
44
	@Ignore
45
	@Test
46
	public void testRemoteCollect() throws CollectorServiceException, IOException, URISyntaxException {
47
		Iterator<String> it =client.collect(baseUrl, query);
48
		int stopAt = 5;
49
		for(int i = 0; i < stopAt && it.hasNext(); i++){
50
			System.out.println(it.next());
51
		}
52
	}
53

  
54
	@Ignore
55
	@Test
56
	public void testGetResource() throws IOException {
57
		String id = "at-001985-ikg_ar_11";
58
		String target = "https://portal.ehri-project.eu/units/"+id+"/export";
59
		URL url = new URL(target);
60
		String res = IOUtils.toString(url, "UTF-8");
61
		System.out.println(res);
62
	}
63

  
64
//	@Test
65
//	public void testDotNotation(){
66
//		JsonObject jsonObject = new JsonParser().parse(simpleOutput).getAsJsonObject();
67
//		JsonArray items = jsonObject.getAsJsonArray("data.topLevelDocumentaryUnits.items");
68
//		for(JsonElement id : items){
69
//			System.out.println(id.getAsJsonObject().get("id"));
70
//		}
71
//	}
72
}
modules/dnet-parthenos/tags/dnet-parthenos-1.0.0/src/test/resources/eu/dnetlib/x3m/EHRI_sample_record_328.xml
1
<?xml version="1.0" ?>
2
<ead xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:isbn:1-931666-22-9 http://www.loc.gov/ead/ead.xsd">
3
    <eadheader countryencoding="iso3166-1" dateencoding="iso8601" scriptencoding="iso15924" repositoryencoding="iso15511" relatedencoding="DC">
4
        <eadid>us-005578-irn516886</eadid>
5
        <filedesc>
6
            <titlestmt>
7
                <titleproper>Romana Primus photograph collection</titleproper>
8
            </titlestmt>
9
            <publicationstmt>
10
                <publisher>United States Holocaust Memorial Museum</publisher>
11
                <address>
12
                    <addressline>100 Raoul Wallenberg Place, S.W.</addressline>
13
                    <addressline>DC 20024-2126</addressline>
14
                    <addressline>Washington</addressline>
15
                    <addressline>District of Columbia</addressline>
16
                    <addressline>US</addressline>
17
                    <addressline>202 488 0400</addressline>
18
                    <addressline>202-479-9726</addressline>
19
                    <addressline>http://www.ushmm.org/</addressline>
20
                    <addressline>archives@ushmm.org</addressline>
21
                    <addressline>United States</addressline>
22
                </address>
23
            </publicationstmt>
24
            <notestmt>
25
                <note>
26
                    <p>This encoded description is derived from structured data provided to EHRI by a partner institution but may differ in structure and/or content from its source. The collection holding institution considers this description as an accurate reflection of the archival holdings to which it refers at the moment of data transfer.</p>
27
                </note>
28
            </notestmt>
29
        </filedesc>
30
        <profiledesc>
31
            <creation>This file was exported automatically from the EHRI database administration tool and represents a work-in-progress.
32
                <date normal="20170601">2017-06-01T16:15:08.688+01:00</date>
33
            </creation>
34
            <langusage>
35
                <language langcode="eng">English</language>
36
            </langusage>
37
        </profiledesc>
38
        <revisiondesc>
39
            <change>
40
                <date>2014-12-19T16:12:54.402Z</date>
41
                <item>These files were provided by the United States Holocaust Memorial Museum to EHRI on 2014-11-21.
42

  
43
                    [ingest]</item>
44
            </change>
45
        </revisiondesc>
46
    </eadheader>
47
    <archdesc level="collection">
48
        <did>
49
            <unitid>irn516886</unitid>
50
            <unittitle encodinganalog="3.1.2">Romana Primus photograph collection</unittitle>
51
            <unitdate encodinganalog="3.1.3">1946-1947</unitdate>
52
            <repository>
53
                <corpname>United States Holocaust Memorial Museum</corpname>
54
            </repository>
55
        </did>
56
        <scopecontent encodinganalog="3.3.1">
57
            <p><![CDATA[The collection consists of four photographs of Romana Strochlitz Primus as a baby, her parents, Sigmund and Ruzka (Rose) Grinburg Strochlitz, and other refugees at the Bergen-Belsen displaced persons camp in Germany after World War II.]]></p>
58
        </scopecontent>
59
        <accessrestrict encodinganalog="3.4.1">
60
            <p><![CDATA[No restrictions on access]]></p>
61
        </accessrestrict>
62
        <userestrict encodinganalog="3.4.2">
63
            <p><![CDATA[No restrictions on use]]></p>
64
        </userestrict>
65
        <acqinfo encodinganalog="3.2.4">
66
            <p><![CDATA[Accession number: 1999.18]]></p>
67
        </acqinfo>
68
        <custodhist encodinganalog="3.2.3">
69
            <p><![CDATA[The collection was donated to the United States Holocaust Memorial Museum by Romana Strochlitz Primus in 1999.]]></p>
70
        </custodhist>
71
        <odd encodinganalog="3.6.1">
72
            <p><![CDATA[Record type: Document]]></p>
73
        </odd>
74
        <controlaccess>
75
            <subject>Refugees--Germany--1940-1950.</subject>
76
            <subject>Refugee camps--Germany--1940-1950.</subject>
77
        </controlaccess>
78
        <controlaccess>
79
            <genreform>Photographs.</genreform>
80
        </controlaccess>
81
        <controlaccess>
82
            <persname>Kirszenbaum, Halina Grauman.</persname>
83
            <persname>Brechner, Dosia Grinburg.</persname>
84
            <persname>Weinreich, Hela.</persname>
85
            <persname>Strochlitz, Rose Grinburg.</persname>
86
            <persname>Strochlitz, Sigmund.</persname>
87
            <persname>Primus, Romana Strochlitz.</persname>
88
        </controlaccess>
89
    </archdesc>
90
</ead>
modules/dnet-parthenos/tags/dnet-parthenos-1.0.0/src/test/resources/eu/dnetlib/x3m/ehri_test.xml
1
<ead xmlns="urn:isbn:1-931666-22-9"
2
     xmlns:xlink="http://www.w3.org/1999/xlink"
3
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
     xsi:schemaLocation="urn:isbn:1-931666-22-9 http://www.loc.gov/ead/ead.xsd">
5
	<eadheader xmlns=""
6
	           countryencoding="iso3166-1"
7
	           dateencoding="iso8601"
8
	           relatedencoding="DC"
9
	           repositoryencoding="iso15511"
10
	           scriptencoding="iso15924">
11
		<eadid>us-005578-irn516886</eadid>
12
		<filedesc>
13
			<titlestmt>
14
				<titleproper>Romana Primus photograph collection</titleproper>
15
			</titlestmt>
16
			<publicationstmt>
17
				<publisher>United States Holocaust Memorial Museum</publisher>
18
				<address>
19
					<addressline>100 Raoul Wallenberg Place, S.W.</addressline>
20
					<addressline>DC 20024-2126</addressline>
21
					<addressline>Washington</addressline>
22
					<addressline>District of Columbia</addressline>
23
					<addressline>US</addressline>
24
					<addressline>202 488 0400</addressline>
25
					<addressline>202-479-9726</addressline>
26
					<addressline>http://www.ushmm.org/</addressline>
27
					<addressline>archives@ushmm.org</addressline>
28
					<addressline>United States</addressline>
29
				</address>
30
			</publicationstmt>
31
			<notestmt>
32
				<note>
33
					<p>This encoded description is derived from structured data provided to EHRI by a partner institution but may differ in structure and/or content from its source. The collection holding institution considers this description as an accurate reflection of the archival holdings to which it refers at the moment of data transfer.</p>
34
				</note>
35
			</notestmt>
36
		</filedesc>
37
		<profiledesc>
38
			<creation>This file was exported automatically from the EHRI database administration tool and represents a work-in-progress.
39
				<date normal="20170513">2017-05-13T09:25:31.407+01:00</date>
40
			</creation>
41
			<langusage>
42
				<language langcode="eng">English</language>
43
			</langusage>
44
		</profiledesc>
45
		<revisiondesc>
46
			<change>
47
				<date>2014-12-19T16:12:54.402Z</date>
48
				<item>These files were provided by the United States Holocaust Memorial Museum to EHRI on 2014-11-21.
49

  
50
					[ingest]
51
				</item>
52
			</change>
53
		</revisiondesc>
54
	</eadheader>
55
	<archdesc xmlns="" level="collection">
56
		<did>
57
			<unitid>irn516886</unitid>
58
			<unittitle encodinganalog="3.1.2">Romana Primus photograph collection</unittitle>
59
			<unitdate encodinganalog="3.1.3">1946-1947</unitdate>
60
			<repository>
61
				<corpname>United States Holocaust Memorial Museum</corpname>
62
			</repository>
63
		</did>
64
		<scopecontent encodinganalog="3.3.1">
65
			<p>The collection consists of four photographs of Romana Strochlitz Primus as a baby, her parents, Sigmund and Ruzka (Rose) Grinburg Strochlitz, and other refugees at the Bergen-Belsen displaced persons camp in Germany after World War II.</p>
66
		</scopecontent>
67
		<accessrestrict encodinganalog="3.4.1">
68
			<p>No restrictions on access</p>
69
		</accessrestrict>
70
		<userestrict encodinganalog="3.4.2">
71
			<p>No restrictions on use</p>
72
		</userestrict>
73
		<acqinfo encodinganalog="3.2.4">
74
			<p>Accession number: 1999.18</p>
75
		</acqinfo>
76
		<custodhist encodinganalog="3.2.3">
77
			<p>The collection was donated to the United States Holocaust Memorial Museum by Romana Strochlitz Primus in 1999.</p>
78
		</custodhist>
79
		<odd encodinganalog="3.6.1">
80
			<p>Record type: Document</p>
81
		</odd>
82
		<controlaccess>
83
			<subject>Refugees--Germany--1940-1950.</subject>
84
			<subject>Refugee camps--Germany--1940-1950.</subject>
85
		</controlaccess>
86
		<controlaccess>
87
			<persname>Kirszenbaum, Halina Grauman.</persname>
88
			<persname>Brechner, Dosia Grinburg.</persname>
89
			<persname>Weinreich, Hela.</persname>
90
			<persname>Strochlitz, Rose Grinburg.</persname>
91
			<persname>Strochlitz, Sigmund.</persname>
92
			<persname>Primus, Romana Strochlitz.</persname>
93
		</controlaccess>
94
		<controlaccess>
95
			<genreform>Photographs.</genreform>
96
		</controlaccess>
97
	</archdesc>
98
</ead>
99

  
100

  
modules/dnet-parthenos/tags/dnet-parthenos-1.0.0/src/test/resources/eu/dnetlib/x3m/clarin_gysseling_corpus.xml
1
<cmd:CMD xmlns:cmd="http://www.clarin.eu/cmd/1"
2
         xmlns:cmdp="http://www.clarin.eu/cmd/1/profiles/clarin.eu:cr1:p_1271859438164"
3
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
         CMDVersion="1.2"
5
         xsi:schemaLocation="http://www.clarin.eu/cmd/1 https://infra.clarin.eu/CMDI/1.x/xsd/cmd-envelop.xsd http://www.clarin.eu/cmd/1/profiles/clarin.eu:cr1:p_1271859438164 https://catalog.clarin.eu/ds/ComponentRegistry/rest/registry/1.x/profiles/clarin.eu:cr1:p_1271859438164/xsd">
6
	<cmd:Header>
7
		<cmd:MdCreator>servicedesk@inl.nl</cmd:MdCreator>
8
		<cmd:MdCreationDate>2012-06-11</cmd:MdCreationDate>
9
		<cmd:MdSelfLink>hdl:10032/cd747deda6f459853a24906eaa20b3e1</cmd:MdSelfLink>
10
		<cmd:MdProfile>clarin.eu:cr1:p_1271859438164</cmd:MdProfile>
11
		<cmd:MdCollectionDisplayName>INL Taalbank Nederlands</cmd:MdCollectionDisplayName>
12
	</cmd:Header>
13
	<cmd:Resources>
14
		<cmd:ResourceProxyList>
15
			<cmd:ResourceProxy id="resource">
16
				<cmd:ResourceType>Resource</cmd:ResourceType>
17
				<cmd:ResourceRef>hdl:10032/9dd8605956a31dbd8c2b63ffef998bd2</cmd:ResourceRef>
18
			</cmd:ResourceProxy>
19
			<cmd:ResourceProxy id="SearchPage">
20
				<cmd:ResourceType>SearchPage</cmd:ResourceType>
21
				<cmd:ResourceRef>hdl:10032/9dd8605956a31dbd8c2b63ffef998bd2</cmd:ResourceRef>
22
			</cmd:ResourceProxy>
23
			<cmd:ResourceProxy id="sruCQL">
24
				<cmd:ResourceType mimetype="application/sru+xml">SearchService</cmd:ResourceType>
25
				<!-- http://gysseling.corpus.taalbanknederlands.inl.nl/cqlwebapp/cql -->
26
				<cmd:ResourceRef>hdl:10032/56a70d6a67e396bdd13b0a67e735d791</cmd:ResourceRef>
27
			</cmd:ResourceProxy>
28
			<cmd:ResourceProxy id="LandingPage">
29
				<cmd:ResourceType>LandingPage</cmd:ResourceType>
30
				<cmd:ResourceRef>hdl:10032/99fb7c459b7848118ec1a7cbb14c47ea</cmd:ResourceRef>
31
			</cmd:ResourceProxy>
32
		</cmd:ResourceProxyList>
33
		<cmd:JournalFileProxyList/>
34
		<cmd:ResourceRelationList/>
35
	</cmd:Resources>
36
	<cmd:Components>
37
		<cmdp:TextCorpusProfile>
38
			<cmdp:Collection>
39
				<cmdp:GeneralInfo>
40
					<cmdp:Name>Corpus Gysseling</cmdp:Name>
41
					<cmdp:TimeCoverage>
42
						<cmdp:minDate>1200-01-01</cmdp:minDate>
43
						<cmdp:maxDate>1300-01-01</cmdp:maxDate>
44
					</cmdp:TimeCoverage>
45
					<cmdp:Description>
46
						<cmdp:Description>
47
							Corpus Gysseling van 13de eeuwse tekstem
48
						</cmdp:Description>
49
					</cmdp:Description>
50
				</cmdp:GeneralInfo>
51
				<cmdp:OriginLocation>
52
					<cmdp:Location>
53
						<cmdp:Country>
54
							<cmdp:Code>NL</cmdp:Code>
55
						</cmdp:Country>
56
					</cmdp:Location>
57
				</cmdp:OriginLocation>
58
				<cmdp:Creators>
59
					<cmdp:Creator>
60
						<cmdp:Contact>
61
							<cmdp:Email>servicedesk@inl.nl</cmdp:Email>
62
							<cmdp:Organisation>INL</cmdp:Organisation>
63
						</cmdp:Contact>
64
					</cmdp:Creator>
65
				</cmdp:Creators>
66

  
67
				<cmdp:DocumentationLanguages>
68
					<cmdp:Language>
69
						<cmdp:LanguageName>Dutch</cmdp:LanguageName>
70
						<cmdp:ISO639>
71
							<cmdp:iso-639-3-code>nld</cmdp:iso-639-3-code>
72
						</cmdp:ISO639>
73
					</cmdp:Language>
74
				</cmdp:DocumentationLanguages>
75

  
76
				<cmdp:Access cmd:ref="resource">
77
					<cmdp:Availability>free for academic use; non appliccable for commercial parties</cmdp:Availability>
78
					<cmdp:DistributionMedium>online application</cmdp:DistributionMedium>
79
					<cmdp:CatalogueLink>http://gysseling.corpus.taalbanknederlands.inl.nl/gysseling/page/search</cmdp:CatalogueLink>
80
					<cmdp:Contact>
81
						<cmdp:Email>servidesk@inl.nl</cmdp:Email>
82
						<cmdp:Organisation>INL</cmdp:Organisation>
83
						<cmdp:Website>www.inl.nl</cmdp:Website>
84
					</cmdp:Contact>
85
					<cmdp:Price>
86
						<cmdp:Price>free</cmdp:Price>
87
					</cmdp:Price>
88
				</cmdp:Access>
89

  
90
			</cmdp:Collection>
91
			<cmdp:Corpus>
92
				<cmdp:SubjectLanguages>
93
					<!-- Middle Dutch (ca. 1050-1350) -->
94
					<cmdp:SubjectLanguage>
95
						<cmdp:Language>
96
							<cmdp:LanguageName>Middle Dutch</cmdp:LanguageName>
97
							<cmdp:ISO639>
98
								<cmdp:iso-639-3-code>dum</cmdp:iso-639-3-code>
99
							</cmdp:ISO639>
100
						</cmdp:Language>
101
					</cmdp:SubjectLanguage>
102
				</cmdp:SubjectLanguages>
103
			</cmdp:Corpus>
104
			<cmdp:TextCorpus> </cmdp:TextCorpus>
105
		</cmdp:TextCorpusProfile>
106
	</cmd:Components>
107
</cmd:CMD>
modules/dnet-parthenos/tags/dnet-parthenos-1.0.0/src/test/resources/eu/dnetlib/x3m/dariah.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2
<oai:record xmlns:oai="http://www.openarchives.org/OAI/2.0/" xmlns:dri="http://www.driver-repository.eu/namespace/dri">
3
	<oai:header>
4
		<dri:objIdentifier>dariah_gr___::35cf8659cfcb13224cbd47863a34fc58</dri:objIdentifier>
5
		<dri:recordIdentifier>796</dri:recordIdentifier>
6
		<dri:dateOfCollection>2017-09-20T12:03:30.827+02:00</dri:dateOfCollection>
7
		<dri:datasourceprefix>dariah_gr___</dri:datasourceprefix>
8
		<dri:datasourcename>DARIAH-GR</dri:datasourcename>
9
		<dri:datasourceapi>api_________::parthenos___::dariahGR::oai</dri:datasourceapi>
10
		<identifier xmlns="http://www.openarchives.org/OAI/2.0/">796</identifier>
11
		<datestamp xmlns="http://www.openarchives.org/OAI/2.0/">2016-11-09T20:21:34Z</datestamp>
12
	</oai:header>
13
	<metadata xmlns="http://www.openarchives.org/OAI/2.0/">
14
		<collection xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:cld="http://purl.org/cld/terms/" xmlns:marcrel="http://id.loc.gov/vocabulary/relators/" xmlns:academy="http://www.academyofathens.gr/">
15
			<dcterms:abstract>
16
				<name xml:lang="gr" pref="0">Το εραλδικό φαινόμενο, η πρώτη εμφάνιση του οποίου εντοπίζεται στη Δυτική και Κεντρική Ευρώπη, στο δεύτερο τέταρτο του 12ου αιώνα, παρουσιάζεται στον Ελλαδικό χώρο καθυστερημένα και διαδίδεται σε μικρότερη έκταση.
17
					Στην Ελλάδα, τα πρώτα εραλδικά κατάλοιπα, όπως τα εντοπίζει η ιστορική έρευνα, χρονολογούνται από τον 14ο αιώνα, για να πυκνώσουν αποφασιστικά τον 15ο και 16ο, όταν το φαινόμενο φθάνει στη μεγαλύτερη ακμή του, και να συνεχίσουν με μια ύφεση, παραμένοντας ωστόσο σε ένα αξιόλογο επίπεδο, μέχρι τα τέλη του 19ου αιώνα.
18
					Το Ινστιτούτο Νεοελληνικών Ερευνών αναγνωρίζοντας τη σημασία της μελέτης του φαινομένου αυτού για τη νεότερη ελληνική ιστορία και την ανάγκη να υπερκεραστεί το στάδιο της ερασιτεχνικής προσέγγισής του, έχει εντάξει στις ερευνητικές του δραστηριότητες τη συστηματική αναζήτηση, καταγραφή, φωτογράφηση και ταξινόμησή τους, με στόχο τη συγκρότηση ενός αρχείου των εραλδικών μνημείων στην Ελλάδα.
19
					Τρεις είναι οι βασικές γεωγραφικές περιοχές με τη μεγαλύτερη συμβολή:
20
					οι Λατινοκρατούμενες Κυκλάδες,
21
					τα Δωδεκάνησα των Ιωαννιτών ιπποτών και
22
					η Βενετική κυριαρχία κυρίως στην Κρήτη, τα Επτάνησα και την Πελοπόννησο
23

  
24
					Δευτερεύουσες συμβολές προκύπτουν από τη Γενοβέζικη παρουσία (κυρίως στο Βορειοανατολικό Αιγαίο), την Καθολική εκκλησία (που διασταυρώνει όλα τα προηγούμενα) και τέλος τη μικρή ομάδα των Φαναριωτών.
25
					Στην παρούσα βάση παρουσιάζονται ενδεικτικά 443 εγγραφές. Από αυτές, οι 147 χρονολογούνται μεταξύ του 13ου-15ου αιώνα, οι 170 από τον 16ο-17ο αιώνα, οι 105 από τον 18ο-19ο αιώνα, ενώ 21 προέρχονται από τον 20ό αιώνα. Χωροταξικά ο μεγάλος όγκος προέρχεται από τα νησιά του Αιγαίου (258 εγγραφές), ενώ εκπροσωπούνται επίσης η Κρήτη (85 εγγραφές), τα Επτάνησα (44 εγγραφές), η Στερεά Ελλάδα (38 εγγραφές) και η Πελοπόννησος (18 εγγραφές). Κάθε εγγραφή περιλαμβάνει τη θέση στην οποία βρίσκεται το μνημείο, την ταύτιση και τη χρονολόγησή του, ένα σύντομο ιστορικό σημείωμα, μια ενδεικτική βιβλιογραφία και μία πρόσφατη απεικόνισή του.
26
					Η μεταγραφή των ελληνικών χαρακτήρων σε λατινικούς έγινε με βάση το Ελληνικό Πρότυπο του ΕΛΟΤ 743, 2η έκδοση.
27
				</name>
28
			</dcterms:abstract>
29
			<dcterms:alternative>
30
				<name xml:lang="en" pref="0">Heraldic Database of Greece</name>
31
			</dcterms:alternative>
32
			<cld:isAccessedVia>http://pandektis.ekt.gr/pandektis/handle/10442/1</cld:isAccessedVia>
33
			<cld:isLocatedAt>0</cld:isLocatedAt>
34
			<dc:creator>
35
				<name xml:lang="gr">Εθνικό Ίδρυμα Ερευνών</name>
36
			</dc:creator>
37
			<dc:rights>Δεν υπάρχουν περιορισμοί πνευματικών δικαιωμάτων σε ό,τι αφορά τα ιστορικά στοιχεία που εμφανίζονται στις εγγραφές. Σε ό,τι αφορά τις απεικονίσεις, τα πνευματικά δικαιώματα ανήκουν στο Ινστιτούτο Νεοελληνικών Ερευνών του ΕΙΕ και, συνεπώς, απαιτείται η άδειά του για την αντιγραφή ή την περαιτέρω χρήση τους.</dc:rights>
38
			<dc:rights_cc>0</dc:rights_cc>
39
			<dc:subject>Νεότερα μνημεία, Οικογένειες, Νεότερη Κοινωνική Ιστορία, Εραλδική</dc:subject>
40
			<dc:title>Αρχείο Εραλδικών Μνημείων του Ελλαδικού Χώρου</dc:title>
41
			<dc:type>
42
				<name>Συλλογή</name>
43
			</dc:type>
44
			<dcterms:accrualMethod>0</dcterms:accrualMethod>
45
			<dcterms:accrualPeriodicity>0</dcterms:accrualPeriodicity>
46
			<dcterms:accrualPolicy>0</dcterms:accrualPolicy>
47
			<dcterms:audience/>
48
			<dcterms:extent>443 εγγραφές</dcterms:extent>
49
			<academy:digitizationMethod>
50
				<name/>
51
			</academy:digitizationMethod>
52
			<dc:identifier>coll:796</dc:identifier>
53
			<dcterms:isPartOf>
54
				<name>Πανδέκτης: Ψηφιακός Θησαυρός Πρωτογενών Τεκμηρίων Ελληνικής Ιστορίας και Πολιτισμού</name>
55
			</dcterms:isPartOf>
56
			<cld:itemFormat>
57
				<name/>
58
			</cld:itemFormat>
59
			<cld:itemFormatAnalog/>
60
			<cld:itemType/>
61
			<dc:language>
62
				<name>Ελληνικά, Νέα (1453-)</name>
63
			</dc:language>
64
			<dc:language>
65
				<name>Αγγλικά</name>
66
			</dc:language>
67
			<marcrel:own>
68
				<name xml:lang="gr">Εθνικό Ίδρυμα Ερευνών</name>
69
			</marcrel:own>
70
			<dcterms:spatial>
71
				<name xml:lang="">Αιγαίο</name>
72
			</dcterms:spatial>
73
			<dcterms:spatial>
74
				<name xml:lang="">Κρήτη</name>
75
			</dcterms:spatial>
76
			<dcterms:spatial>
77
				<name xml:lang="">Επτάνησα</name>
78
			</dcterms:spatial>
79
			<dcterms:spatial>
80
				<name xml:lang="">Στερεά Ελλάδα</name>
81
			</dcterms:spatial>
82
			<dcterms:spatial>
83
				<name xml:lang="">Πελοπόννησος</name>
84
			</dcterms:spatial>
85
		</collection>
86
	</metadata>
87
	<oai:about>
88
		<provenance xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.openarchives.org/OAI/2.0/provenance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/provenance http://www.openarchives.org/OAI/2.0/provenance.xsd">
89
			<originDescription harvestDate="2017-09-20T12:03:30.827+02:00" altered="true">
90
				<baseURL>http%3A%2F%2Fregistry-dyas.imis.athena-innovation.gr%3A8080%2Fdyas</baseURL>
91
				<identifier>796</identifier>
92
				<datestamp>2016-11-09T20:21:34Z</datestamp>
93
				<metadataNamespace/>
94
			</originDescription>
95
		</provenance>
96
	</oai:about>
97
</oai:record>
modules/dnet-parthenos/tags/dnet-parthenos-1.0.0/src/test/resources/eu/dnetlib/x3m/clarin_service.xml
1
<cmd:CMD xmlns:cmd="http://www.clarin.eu/cmd/1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:cmdp="http://www.clarin.eu/cmd/1/profiles/clarin.eu:cr1:p_1320657629644" CMDVersion="1.2" xsi:schemaLocation="http://www.clarin.eu/cmd/1 https://infra.clarin.eu/CMDI/1.x/xsd/cmd-envelop.xsd http://www.clarin.eu/cmd/1/profiles/clarin.eu:cr1:p_1320657629644 https://catalog.clarin.eu/ds/ComponentRegistry/rest/registry/1.x/profiles/clarin.eu:cr1:p_1320657629644/xsd">
2
	<cmd:Header>
3
		<cmd:MdSelfLink>https://clarin.phonetik.uni-muenchen.de/BASRepository/WebServices/webmaus-weblicht.cmdi.xml</cmd:MdSelfLink>
4
		<cmd:MdProfile>clarin.eu:cr1:p_1320657629644</cmd:MdProfile>
5
		<cmd:MdCollectionDisplayName>WebLicht Webservice Orchestrator</cmd:MdCollectionDisplayName>
6
	</cmd:Header>
7
	<cmd:Resources>
8
		<cmd:ResourceProxyList>
9
			<cmd:ResourceProxy id="s101">
10
				<cmd:ResourceType mimetype="application/vnd.sun.wadl+xml">Resource</cmd:ResourceType>
11
				<cmd:ResourceRef>https://clarin.phonetik.uni-muenchen.de/BASWebServices/application-hand.wadl</cmd:ResourceRef>
12
			</cmd:ResourceProxy>
13
		</cmd:ResourceProxyList>
14
		<cmd:JournalFileProxyList/>
15
		<cmd:ResourceRelationList/>
16
	</cmd:Resources>
17
	<cmd:Components>
18
		<cmdp:WebLichtWebService>
19
			<cmdp:Service>
20
				<cmdp:Name>WebLicht WebMAUS Service</cmdp:Name>
21
				<cmdp:Description>WebLicht WebMAUS Service</cmdp:Description>
22
				<cmdp:Description type="short">WebLicht WebMAUS Service</cmdp:Description>
23
				<cmdp:TypeOfWebservice>RESTfull</cmdp:TypeOfWebservice>
24
				<cmdp:url>http://clarin.phonetik.uni-muenchen.de/BASWebServices/services/runMAUSWebLicht</cmdp:url>
25
				<cmdp:LifeCycleStatus>production</cmdp:LifeCycleStatus>
26
				<cmdp:PublicationDate>2012-12-03T15:26:24.736+01:00</cmdp:PublicationDate>
27
				<cmdp:LastUpdate>2013-01-28T11:03:02.692+01:00</cmdp:LastUpdate>
28
				<cmdp:ServiceDescriptionLocation cmd:ref="s101"/>
29
				<cmdp:Contact>
30
					<cmdp:Email>kisler@phonetik.uni-muenchen.de</cmdp:Email>
31
				</cmdp:Contact>
32
				<cmdp:Creation>
33
					<cmdp:Creators>
34
						<cmdp:Creator>
35
							<cmdp:Contact>
36
								<cmdp:Organisation>Bavarian Archive for Speech Signals, Ludwig-Maximilians-Universitaet Muenchen</cmdp:Organisation>
37
							</cmdp:Contact>
38
						</cmdp:Creator>
39
					</cmdp:Creators>
40
				</cmdp:Creation>
41
				<cmdp:Operations>
42
					<cmdp:Operation>
43
						<cmdp:Name>Default</cmdp:Name>
44
						<cmdp:Input>
45
							<cmdp:ParameterGroup>
46
								<cmdp:Name>Input Parameters</cmdp:Name>
47
								<cmdp:Parameters>
48
									<cmdp:Parameter>
49
										<cmdp:Name>type</cmdp:Name>
50
										<cmdp:AllowManualSelectionFallback>false</cmdp:AllowManualSelectionFallback>
51
										<cmdp:Values>
52
											<cmdp:ParameterValue>
53
												<cmdp:Value>text/tcf+xml</cmdp:Value>
54
											</cmdp:ParameterValue>
55
										</cmdp:Values>
56
									</cmdp:Parameter>
57
									<cmdp:Parameter>
58
										<cmdp:Name>version</cmdp:Name>
59
										<cmdp:AllowManualSelectionFallback>false</cmdp:AllowManualSelectionFallback>
60
										<cmdp:Values>
61
											<cmdp:ParameterValue>
62
												<cmdp:Value>0.4</cmdp:Value>
63
											</cmdp:ParameterValue>
64
										</cmdp:Values>
65
									</cmdp:Parameter>
66
									<cmdp:Parameter>
67
										<cmdp:Name>lang</cmdp:Name>
68
										<cmdp:AllowManualSelectionFallback>false</cmdp:AllowManualSelectionFallback>
69
										<cmdp:Values>
70
											<cmdp:ParameterValue>
71
												<cmdp:Value>de</cmdp:Value>
72
											</cmdp:ParameterValue>
73
											<cmdp:ParameterValue>
74
												<cmdp:Value>en</cmdp:Value>
75
											</cmdp:ParameterValue>
76
											<cmdp:ParameterValue>
77
												<cmdp:Value>it</cmdp:Value>
78
											</cmdp:ParameterValue>
79
											<cmdp:ParameterValue>
80
												<cmdp:Value>hu</cmdp:Value>
81
											</cmdp:ParameterValue>
82
											<cmdp:ParameterValue>
83
												<cmdp:Value>nl</cmdp:Value>
84
											</cmdp:ParameterValue>
85
										</cmdp:Values>
86
									</cmdp:Parameter>
87
									<cmdp:Parameter>
88
										<cmdp:Name>ext.speechsignal.numberchannels</cmdp:Name>
89
										<cmdp:AllowManualSelectionFallback>false</cmdp:AllowManualSelectionFallback>
90
										<cmdp:Values>
91
											<cmdp:ParameterValue>
92
												<cmdp:Value>1</cmdp:Value>
93
											</cmdp:ParameterValue>
94
										</cmdp:Values>
95
									</cmdp:Parameter>
96
									<cmdp:Parameter>
97
										<cmdp:Name>ext.speechsignal.type</cmdp:Name>
98
										<cmdp:AllowManualSelectionFallback>false</cmdp:AllowManualSelectionFallback>
99
										<cmdp:Values>
100
											<cmdp:ParameterValue>
101
												<cmdp:Value>audio/wav</cmdp:Value>
102
											</cmdp:ParameterValue>
103
										</cmdp:Values>
104
									</cmdp:Parameter>
105
									<cmdp:Parameter>
106
										<cmdp:Name>text</cmdp:Name>
107
										<cmdp:AllowManualSelectionFallback>false</cmdp:AllowManualSelectionFallback>
108
									</cmdp:Parameter>
109
								</cmdp:Parameters>
110
							</cmdp:ParameterGroup>
111
						</cmdp:Input>
112
						<cmdp:Output>
113
							<cmdp:ParameterGroup>
114
								<cmdp:Name>Output Parameters</cmdp:Name>
115
								<cmdp:ReplacesInput>false</cmdp:ReplacesInput>
116
								<cmdp:Parameters>
117
									<cmdp:Parameter>
118
										<cmdp:Name>ext.tokensegmentation.type</cmdp:Name>
119
										<cmdp:Values>
120
											<cmdp:ParameterValue>
121
												<cmdp:Value>text/praat-textgrid</cmdp:Value>
122
											</cmdp:ParameterValue>
123
										</cmdp:Values>
124
									</cmdp:Parameter>
125
									<cmdp:Parameter>
126
										<cmdp:Name>ext.phoneticsegmentation.type</cmdp:Name>
127
										<cmdp:Values>
128
											<cmdp:ParameterValue>
129
												<cmdp:Value>text/praat-textgrid</cmdp:Value>
130
											</cmdp:ParameterValue>
131
										</cmdp:Values>
132
									</cmdp:Parameter>
133
									<cmdp:Parameter>
134
										<cmdp:Name>ext.canonicalsegmentation.type</cmdp:Name>
135
										<cmdp:Values>
136
											<cmdp:ParameterValue>
137
												<cmdp:Value>text/praat-textgrid</cmdp:Value>
138
											</cmdp:ParameterValue>
139
										</cmdp:Values>
140
									</cmdp:Parameter>
141
								</cmdp:Parameters>
142
							</cmdp:ParameterGroup>
143
						</cmdp:Output>
144
					</cmdp:Operation>
145
				</cmdp:Operations>
146
			</cmdp:Service>
147
		</cmdp:WebLichtWebService>
148
	</cmd:Components>
149
</cmd:CMD>
modules/dnet-parthenos/tags/dnet-parthenos-1.0.0/src/test/resources/eu/dnetlib/x3m/new-10304740.xml
1
<?xml version="1.0" encoding="UTF-8"?><acdm:ariadne xmlns:acdm="http://registry.ariadne-infrastructure.eu/" xmlns="http://archaeologydataservice.ac.uk/advice/archiveSchema" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dbpedia-owl="http://dbpedia.org/ontology/" xmlns:foaf="http://xmlns.com/foaf/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:as="http://archaeologydataservice.ac.uk/archsearch/" xmlns:vcard="http://www.w3.org/2006/vcard/ns#" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" xmlns:dcat="http://www.w3.org/ns/dcat#" xmlns:aat="http://vocab.getty.edu/aat/" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sch="http://purl.oclc.org/dsdl/schematron" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2
   <acdm:ariadneArchaeologicalResource>
3
      <acdm:dataset>
4
         <acdm:nativeSubject>
5
            <skos:Concept>
6
               <skos:prefLabel>COUNTRY HOUSE</skos:prefLabel>
7
            </skos:Concept>
8
         </acdm:nativeSubject>
9
         <acdm:nativeSubject>
10
            <skos:Concept>
11
               <skos:prefLabel>DEMOLISHED BUILDING</skos:prefLabel>
12
            </skos:Concept>
13
         </acdm:nativeSubject>
14
         <acdm:publisher>
15
            <foaf:name>Archaeology Data Service</foaf:name>
16
            <acdm:typeOfAnAgent>Organization</acdm:typeOfAnAgent>
17
         </acdm:publisher>
18
         <acdm:contributor>
19
            <foaf:name>Historic England</foaf:name>
20
            <acdm:typeOfAnAgent>Organization</acdm:typeOfAnAgent>
21
         </acdm:contributor>
22
         <dcterms:title>STOKE PARK HOUSE</dcterms:title>
23
         <dc:description>Country house constructed between 1629 and 1635 possibly by Inigo Jones. the principal south front of the house was three storeys above a basement. The two principal storeys were defined by a giant Ionic order supporting an entablature. Alteratins were carried out after 1786 to deisgns by Levison Vernon. The house was destroyed by a fire in 1886.</dc:description>
24
         <dcterms:issued>2004-09-15 00:00:00.0</dcterms:issued>
25
         <dcterms:modified>2004-09-15 00:00:00.0</dcterms:modified>
26
         <acdm:originalId>1052615</acdm:originalId>
27
         <dc:language>en</dc:language>
28
         <dcat:landingPage>http://archaeologydataservice.ac.uk/archsearch/record.jsf?titleId=1052615</dcat:landingPage>
29
         <acdm:accessPolicy>http://archaeologydataservice.ac.uk/advice/termsOfUseAndAccess</acdm:accessPolicy>
30
         <dcterms:accessRights>ADS Terms and Conditions</dcterms:accessRights>
31
         <acdm:temporal>
32
            <acdm:from>1540</acdm:from>
33
            <acdm:until>1901</acdm:until>
34
         </acdm:temporal>
35
         <acdm:temporal>
36
            <acdm:from>1886</acdm:from>
37
            <acdm:until>1886</acdm:until>
38
         </acdm:temporal>
39
         <acdm:temporal>
40
            <acdm:from>1786</acdm:from>
41
            <acdm:until>1786</acdm:until>
42
         </acdm:temporal>
43
         <acdm:temporal>
44
            <acdm:from>1629</acdm:from>
45
            <acdm:until>1635</acdm:until>
46
         </acdm:temporal>
47
         <acdm:spatial>
48
            <acdm:country>ENGLAND</acdm:country>
49
            <acdm:coordinateSystem>EPSG:27700</acdm:coordinateSystem>
50
         </acdm:spatial>
51
         <acdm:archaeologicalResourceType>Sites and monuments databases or inventories</acdm:archaeologicalResourceType>
52
         
53
         <dcterms:isPartOf xmlns="">http://registry.ariadne-infrastructure.eu/collection/22721290</dcterms:isPartOf>
54
         <dcterms:identifier xmlns="">http://registry.ariadne-infrastructure.eu/dataset/10304740</dcterms:identifier>
55
      </acdm:dataset>
56
   </acdm:ariadneArchaeologicalResource>
57
</acdm:ariadne>
0 58

  
modules/dnet-parthenos/tags/dnet-parthenos-1.0.0/src/test/resources/eu/dnetlib/x3m/new-10304741.xml
1
<?xml version="1.0" encoding="UTF-8"?><acdm:ariadne xmlns:acdm="http://registry.ariadne-infrastructure.eu/" xmlns="http://archaeologydataservice.ac.uk/advice/archiveSchema" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dbpedia-owl="http://dbpedia.org/ontology/" xmlns:foaf="http://xmlns.com/foaf/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:as="http://archaeologydataservice.ac.uk/archsearch/" xmlns:vcard="http://www.w3.org/2006/vcard/ns#" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" xmlns:dcat="http://www.w3.org/ns/dcat#" xmlns:aat="http://vocab.getty.edu/aat/" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sch="http://purl.oclc.org/dsdl/schematron" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2
   <acdm:ariadneArchaeologicalResource>
3
      <acdm:dataset>
4
         <acdm:nativeSubject>
5
            <skos:Concept>
6
               <skos:prefLabel>BUILDING</skos:prefLabel>
7
            </skos:Concept>
8
         </acdm:nativeSubject>
9
         <acdm:publisher>
10
            <foaf:name>Archaeology Data Service</foaf:name>
11
            <acdm:typeOfAnAgent>Organization</acdm:typeOfAnAgent>
12
         </acdm:publisher>
13
         <acdm:contributor>
14
            <foaf:name>Historic England</foaf:name>
15
            <acdm:typeOfAnAgent>Organization</acdm:typeOfAnAgent>
16
         </acdm:contributor>
17
         <dcterms:title>BIRMINGHAM MIDLAND INSTITUTE (FY THE BIRMINGHAM LIBRARY)</dcterms:title>
18
         <dc:description>1899</dc:description>
19
         <dcterms:issued>2004-09-15 00:00:00.0</dcterms:issued>
20
         <dcterms:modified>2004-09-15 00:00:00.0</dcterms:modified>
21
         <acdm:originalId>1046309</acdm:originalId>
22
         <dc:language>en</dc:language>
23
         <dcat:landingPage>http://archaeologydataservice.ac.uk/archsearch/record.jsf?titleId=1046309</dcat:landingPage>
24
         <acdm:accessPolicy>http://archaeologydataservice.ac.uk/advice/termsOfUseAndAccess</acdm:accessPolicy>
25
         <dcterms:accessRights>ADS Terms and Conditions</dcterms:accessRights>
26
         <acdm:temporal>
27
            <acdm:from>1540</acdm:from>
28
            <acdm:until>1901</acdm:until>
29
         </acdm:temporal>
30
         <acdm:temporal>
31
            <acdm:from>1899</acdm:from>
32
            <acdm:until>1899</acdm:until>
33
         </acdm:temporal>
34
         <acdm:spatial>
35
            <acdm:country>ENGLAND</acdm:country>
36
            <acdm:coordinateSystem>EPSG:27700</acdm:coordinateSystem>
37
         </acdm:spatial>
38
         <acdm:archaeologicalResourceType>Sites and monuments databases or inventories</acdm:archaeologicalResourceType>
39
         
40
         <dcterms:isPartOf xmlns="">http://registry.ariadne-infrastructure.eu/collection/22721290</dcterms:isPartOf>
41
         <dcterms:identifier xmlns="">http://registry.ariadne-infrastructure.eu/dataset/10304741</dcterms:identifier>
42
      <acdm:ariadneSubject xmlns=""><acdm:derivedSubject><skos:prefLabel>buildings (structures)</skos:prefLabel><dc:source>http://vocab.getty.edu/aat/300004792</dc:source></acdm:derivedSubject></acdm:ariadneSubject></acdm:dataset>
43
   </acdm:ariadneArchaeologicalResource>
44
</acdm:ariadne>
0 45

  
modules/dnet-parthenos/tags/dnet-parthenos-1.0.0/src/test/resources/eu/dnetlib/x3m/new-10304742.xml
1
<?xml version="1.0" encoding="UTF-8"?><acdm:ariadne xmlns:acdm="http://registry.ariadne-infrastructure.eu/" xmlns="http://archaeologydataservice.ac.uk/advice/archiveSchema" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dbpedia-owl="http://dbpedia.org/ontology/" xmlns:foaf="http://xmlns.com/foaf/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:as="http://archaeologydataservice.ac.uk/archsearch/" xmlns:vcard="http://www.w3.org/2006/vcard/ns#" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" xmlns:dcat="http://www.w3.org/ns/dcat#" xmlns:aat="http://vocab.getty.edu/aat/" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sch="http://purl.oclc.org/dsdl/schematron" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2
   <acdm:ariadneArchaeologicalResource>
3
      <acdm:dataset>
4
         <acdm:nativeSubject>
5
            <skos:Concept>
6
               <skos:prefLabel>FINDSPOT</skos:prefLabel>
7
            </skos:Concept>
8
         </acdm:nativeSubject>
9
         <acdm:nativeSubject>
10
            <skos:Concept>
11
               <skos:prefLabel>RAPIER</skos:prefLabel>
12
            </skos:Concept>
13
         </acdm:nativeSubject>
14
         <acdm:nativeSubject>
15
            <skos:Concept>
16
               <skos:prefLabel>SWORD</skos:prefLabel>
17
            </skos:Concept>
18
         </acdm:nativeSubject>
19
         <acdm:publisher>
20
            <foaf:name>Archaeology Data Service</foaf:name>
21
            <acdm:typeOfAnAgent>Organization</acdm:typeOfAnAgent>
22
         </acdm:publisher>
23
         <acdm:contributor>
24
            <foaf:name>Historic England</foaf:name>
25
            <acdm:typeOfAnAgent>Organization</acdm:typeOfAnAgent>
26
         </acdm:contributor>
27
         <dcterms:title>No title</dcterms:title>
28
         <dc:description>Bronze age rapier</dc:description>
29
         <dcterms:issued>2004-09-15 00:00:00.0</dcterms:issued>
30
         <dcterms:modified>2004-09-15 00:00:00.0</dcterms:modified>
31
         <acdm:originalId>1050544</acdm:originalId>
32
         <dc:language>en</dc:language>
33
         <dcat:landingPage>http://archaeologydataservice.ac.uk/archsearch/record.jsf?titleId=1050544</dcat:landingPage>
34
         <acdm:accessPolicy>http://archaeologydataservice.ac.uk/advice/termsOfUseAndAccess</acdm:accessPolicy>
35
         <dcterms:accessRights>ADS Terms and Conditions</dcterms:accessRights>
36
         <acdm:temporal>
37
            <acdm:from>-2600</acdm:from>
38
            <acdm:until>-700</acdm:until>
39
         </acdm:temporal>
40
         <acdm:spatial>
41
            <acdm:country>ENGLAND</acdm:country>
42
            <acdm:coordinateSystem>EPSG:27700</acdm:coordinateSystem>
43
         </acdm:spatial>
44
         <acdm:archaeologicalResourceType>Sites and monuments databases or inventories</acdm:archaeologicalResourceType>
45
         
46
         <dcterms:isPartOf xmlns="">http://registry.ariadne-infrastructure.eu/collection/22721290</dcterms:isPartOf>
47
         <dcterms:identifier xmlns="">http://registry.ariadne-infrastructure.eu/dataset/10304742</dcterms:identifier>
48
      <acdm:ariadneSubject xmlns=""><acdm:derivedSubject><skos:prefLabel>rapiers</skos:prefLabel><dc:source>http://vocab.getty.edu/aat/300037085</dc:source></acdm:derivedSubject></acdm:ariadneSubject><acdm:ariadneSubject xmlns=""><acdm:derivedSubject><skos:prefLabel>swords</skos:prefLabel><dc:source>http://vocab.getty.edu/aat/300037048</dc:source></acdm:derivedSubject></acdm:ariadneSubject><acdm:ariadneSubject xmlns=""><acdm:derivedSubject><skos:prefLabel>archaeological sites</skos:prefLabel><dc:source>http://vocab.getty.edu/aat/300000810</dc:source></acdm:derivedSubject></acdm:ariadneSubject></acdm:dataset>
49
   </acdm:ariadneArchaeologicalResource>
50
</acdm:ariadne>
0 51

  
modules/dnet-parthenos/tags/dnet-parthenos-1.0.0/src/test/resources/eu/dnetlib/x3m/new-10304736.xml
1
<?xml version="1.0" encoding="UTF-8"?><acdm:ariadne xmlns:acdm="http://registry.ariadne-infrastructure.eu/" xmlns="http://archaeologydataservice.ac.uk/advice/archiveSchema" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dbpedia-owl="http://dbpedia.org/ontology/" xmlns:foaf="http://xmlns.com/foaf/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:as="http://archaeologydataservice.ac.uk/archsearch/" xmlns:vcard="http://www.w3.org/2006/vcard/ns#" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" xmlns:dcat="http://www.w3.org/ns/dcat#" xmlns:aat="http://vocab.getty.edu/aat/" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sch="http://purl.oclc.org/dsdl/schematron" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2
   <acdm:ariadneArchaeologicalResource>
3
      <acdm:dataset>
4
         <acdm:nativeSubject>
5
            <skos:Concept>
6
               <skos:prefLabel>PIT</skos:prefLabel>
7
            </skos:Concept>
8
         </acdm:nativeSubject>
9
         <acdm:publisher>
10
            <foaf:name>Archaeology Data Service</foaf:name>
11
            <acdm:typeOfAnAgent>Organization</acdm:typeOfAnAgent>
12
         </acdm:publisher>
13
         <acdm:contributor>
14
            <foaf:name>Historic England</foaf:name>
15
            <acdm:typeOfAnAgent>Organization</acdm:typeOfAnAgent>
16
         </acdm:contributor>
17
         <dcterms:title>No title</dcterms:title>
18
         <dc:description>Pre 1350 coal pit</dc:description>
19
         <dcterms:issued>2004-09-15 00:00:00.0</dcterms:issued>
20
         <dcterms:modified>2004-09-15 00:00:00.0</dcterms:modified>
21
         <acdm:originalId>977352</acdm:originalId>
22
         <dc:language>en</dc:language>
23
         <dcat:landingPage>http://archaeologydataservice.ac.uk/archsearch/record.jsf?titleId=977352</dcat:landingPage>
24
         <acdm:accessPolicy>http://archaeologydataservice.ac.uk/advice/termsOfUseAndAccess</acdm:accessPolicy>
25
         <dcterms:accessRights>ADS Terms and Conditions</dcterms:accessRights>
26
         <acdm:temporal>
27
            <acdm:from>1066</acdm:from>
28
            <acdm:until>1540</acdm:until>
29
         </acdm:temporal>
30
         <acdm:spatial>
31
            <acdm:country>ENGLAND</acdm:country>
32
            <acdm:coordinateSystem>EPSG:27700</acdm:coordinateSystem>
33
         </acdm:spatial>
34
         <acdm:archaeologicalResourceType>Sites and monuments databases or inventories</acdm:archaeologicalResourceType>
35
         
36
         <dcterms:isPartOf xmlns="">http://registry.ariadne-infrastructure.eu/collection/22721290</dcterms:isPartOf>
37
         <dcterms:identifier xmlns="">http://registry.ariadne-infrastructure.eu/dataset/10304736</dcterms:identifier>
38
      <acdm:ariadneSubject xmlns=""><acdm:derivedSubject><skos:prefLabel>pits (earthworks)</skos:prefLabel><dc:source>http://vocab.getty.edu/aat/300008027</dc:source></acdm:derivedSubject></acdm:ariadneSubject></acdm:dataset>
39
   </acdm:ariadneArchaeologicalResource>
40
</acdm:ariadne>
0 41

  
modules/dnet-parthenos/tags/dnet-parthenos-1.0.0/src/test/resources/eu/dnetlib/x3m/new-10304737.xml
1
<?xml version="1.0" encoding="UTF-8"?><acdm:ariadne xmlns:acdm="http://registry.ariadne-infrastructure.eu/" xmlns="http://archaeologydataservice.ac.uk/advice/archiveSchema" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dbpedia-owl="http://dbpedia.org/ontology/" xmlns:foaf="http://xmlns.com/foaf/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:as="http://archaeologydataservice.ac.uk/archsearch/" xmlns:vcard="http://www.w3.org/2006/vcard/ns#" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" xmlns:dcat="http://www.w3.org/ns/dcat#" xmlns:aat="http://vocab.getty.edu/aat/" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sch="http://purl.oclc.org/dsdl/schematron" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2
   <acdm:ariadneArchaeologicalResource>
3
      <acdm:dataset>
4
         <acdm:nativeSubject>
5
            <skos:Concept>
6
               <skos:prefLabel>TERRACED HOUSE</skos:prefLabel>
7
            </skos:Concept>
8
         </acdm:nativeSubject>
9
         <acdm:publisher>
10
            <foaf:name>Archaeology Data Service</foaf:name>
11
            <acdm:typeOfAnAgent>Organization</acdm:typeOfAnAgent>
12
         </acdm:publisher>
13
         <acdm:contributor>
14
            <foaf:name>Historic England</foaf:name>
15
            <acdm:typeOfAnAgent>Organization</acdm:typeOfAnAgent>
16
         </acdm:contributor>
17
         <dcterms:title>19 QUEEN ANNES GROVE, EALING</dcterms:title>
18
         <dc:description>TERRACED HOUSE -   19 QUEEN ANNES GROVE, EALING</dc:description>
19
         <dcterms:issued>1999-05-06 00:00:00.0</dcterms:issued>
20
         <dcterms:modified>1999-05-06 00:00:00.0</dcterms:modified>
21
         <acdm:originalId>637688</acdm:originalId>
22
         <dc:language>en</dc:language>
23
         <dcat:landingPage>http://archaeologydataservice.ac.uk/archsearch/record.jsf?titleId=637688</dcat:landingPage>
24
         <acdm:accessPolicy>http://archaeologydataservice.ac.uk/advice/termsOfUseAndAccess</acdm:accessPolicy>
25
         <dcterms:accessRights>ADS Terms and Conditions</dcterms:accessRights>
26
         <acdm:temporal>
27
            <acdm:from>1540</acdm:from>
28
            <acdm:until>1901</acdm:until>
29
         </acdm:temporal>
30
         <acdm:spatial>
31
            <acdm:placeName>19 QUEEN ANNES GROVE</acdm:placeName>
32
            <acdm:lat>51.49648</acdm:lat>
33
            <acdm:lon>-.25671</acdm:lon>
34
            <acdm:country>England</acdm:country>
35
            <acdm:coordinateSystem>EPSG:27700</acdm:coordinateSystem>
36
         </acdm:spatial>
37
         <acdm:archaeologicalResourceType>Sites and monuments databases or inventories</acdm:archaeologicalResourceType>
38
         
39
         <dcterms:isPartOf xmlns="">http://registry.ariadne-infrastructure.eu/collection/22721290</dcterms:isPartOf>
40
         <dcterms:identifier xmlns="">http://registry.ariadne-infrastructure.eu/dataset/10304737</dcterms:identifier>
41
      </acdm:dataset>
42
   </acdm:ariadneArchaeologicalResource>
43
</acdm:ariadne>
0 44

  
modules/dnet-parthenos/tags/dnet-parthenos-1.0.0/src/test/resources/eu/dnetlib/x3m/clarin_dataset2.xml
1
<cmd:CMD xmlns:cmd="http://www.clarin.eu/cmd/1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:cmdp="http://www.clarin.eu/cmd/1/profiles/clarin.eu:cr1:p_1407745711925" CMDVersion="1.2" xsi:schemaLocation="http://www.clarin.eu/cmd/1 https://infra.clarin.eu/CMDI/1.x/xsd/cmd-envelop.xsd http://www.clarin.eu/cmd/1/profiles/clarin.eu:cr1:p_1407745711925 https://catalog.clarin.eu/ds/ComponentRegistry/rest/registry/1.x/profiles/clarin.eu:cr1:p_1407745711925/xsd">
2
	<cmd:Header>
3
		<cmd:MdCreator>Gunn Inger Lyse Samdal</cmd:MdCreator>
4
		<cmd:MdCreationDate>2015-10-12</cmd:MdCreationDate>
5
		<cmd:MdSelfLink>http://hdl.handle.net/11509/80</cmd:MdSelfLink>
6
		<cmd:MdProfile>clarin.eu:cr1:p_1407745711925</cmd:MdProfile>
7
		<cmd:MdCollectionDisplayName>Clarino UiB</cmd:MdCollectionDisplayName>
8
	</cmd:Header>
9
	<cmd:Resources>
10
		<cmd:ResourceProxyList>
11
			<cmd:ResourceProxy id="landing-page-ubb">
12
				<cmd:ResourceType mimetype="">LandingPage</cmd:ResourceType>
13
				<cmd:ResourceRef>http://hdl.handle.net/11509/80</cmd:ResourceRef>
14
			</cmd:ResourceProxy>
15
			<cmd:ResourceProxy id="search-page-corpuscle">
16
				<cmd:ResourceType mimetype="">SearchPage</cmd:ResourceType>
17
				<cmd:ResourceRef>http://clarino.uib.no/korpuskel/landing-page?identifier=forskning-no&amp;view=short</cmd:ResourceRef>
18
			</cmd:ResourceProxy>
19
			<cmd:ResourceProxy id="resource-fn">
20
				<cmd:ResourceType mimetype="">Resource</cmd:ResourceType>
21
				<cmd:ResourceRef>http://hdl.handle.net/11509/80</cmd:ResourceRef>
22
			</cmd:ResourceProxy>
23
		</cmd:ResourceProxyList>
24
		<cmd:JournalFileProxyList/>
25
		<cmd:ResourceRelationList/>
26
	</cmd:Resources>
27
	<cmd:IsPartOfList/>
28
	<cmd:Components>
29
		<cmdp:corpusProfile>
30
			<cmdp:resourceCommonInfo cmd:ComponentId="clarin.eu:cr1:c_1396012485126">
31
				<cmdp:resourceType>corpus</cmdp:resourceType>
32
				<cmdp:identificationInfo cmd:ComponentId="clarin.eu:cr1:c_1396012485125">
33
					<cmdp:resourceName xml:lang="en">Text material from Forskning.no (1998 - 2012)</cmdp:resourceName>
34
					<cmdp:description xml:lang="en">Data set containing texts from the popular science website forskning.no. The text material is constituted by articles published by Forskning.no belonging to the following three categories:
35
						1) Articles written by journalists employed at forskning.no
36
						2) Articles written by member institutions of forskning.no (76 universities, colleges, research centers, research departments in government agencies and more). These articles are written by staff journalists, information officers and other non-academic staff. Each article has been edited by forskning.no.
37
						3) Articles from the newsdesk NRK Viten, with whom forskning.no cooperates. These articles are written by NRK journalists.
38
						Forskning.no kindly makes this material available in CLARINO as downloadable XML to promote language research. CLARINO's agreement also includes the permission to use future articles to be published by forskning.no; as of October 2015, however, the newest downloadable text is from October 2012.
39

  
40
						ACCESS: the material is available in downloadable form at the CLARINO Bergen Centre and in searchable form at Corpuscle (see links in metadata). Corpuscle allows you to pass queries to the corpus, and you may ask for concordances, collocations and distribution.</cmdp:description>
41
					<cmdp:resourceShortName xml:lang="no">Forskning.no</cmdp:resourceShortName>
42
					<cmdp:url description="downloadable - UBB" ref="landing-page-ubb">http://hdl.handle.net/11509/80</cmdp:url>
43
					<cmdp:url description="searchable - Corpuscle" ref="search-page-corpuscle">http://clarino.uib.no/korpuskel/landing-page?identifier=forskning-no&amp;view=short</cmdp:url>
44
					<cmdp:PID description="handle @ UBB" ref="landing-page-ubb">http://hdl.handle.net/11509/80</cmdp:PID>
45
				</cmdp:identificationInfo>
46
				<cmdp:distributionInfo cmd:ComponentId="clarin.eu:cr1:c_1396012485124">
47
					<cmdp:licenceInfo cmd:ComponentId="clarin.eu:cr1:c_1396012485158">
48
						<cmdp:userCategory>Restricted</cmdp:userCategory>
49
						<cmdp:distributionAccessMedium ref="landing-page-ubb">downloadable</cmdp:distributionAccessMedium>
50
						<cmdp:distributionAccessMedium ref="search-page-corpuscle">accessibleThroughInterface</cmdp:distributionAccessMedium>
51
						<cmdp:downloadLocation description="landing page @ UBB portal" ref="landing-page-ubb">http://hdl.handle.net/11509/80</cmdp:downloadLocation>
52
						<cmdp:downloadLocation description="landing page @ Corpuscle" ref="search-page-corpuscle">http://clarino.uib.no/korpuskel/landing-page?identifier=forskning-no</cmdp:downloadLocation>
53
						<cmdp:licence cmd:ComponentId="clarin.eu:cr1:c_1447674760330">
54
							<cmdp:licenceFamily>CLARIN</cmdp:licenceFamily>
55
							<cmdp:licenceName>CLARIN_RES-DEP</cmdp:licenceName>
56
							<cmdp:licenceURL>https://kitwiki.csc.fi/twiki/bin/view/FinCLARIN/ClarinEula?RES=1&amp;ID=1&amp;PERM=1&amp;PLAN=1&amp;BY=1&amp;NORED=1&amp;DEP=1</cmdp:licenceURL>
57
							<cmdp:conditionsOfUse>BY</cmdp:conditionsOfUse>
58
							<cmdp:conditionsOfUse>DEP</cmdp:conditionsOfUse>
59
							<cmdp:conditionsOfUse>ID</cmdp:conditionsOfUse>
60
							<cmdp:conditionsOfUse>NORED</cmdp:conditionsOfUse>
61
							<cmdp:conditionsOfUse>PLAN</cmdp:conditionsOfUse>
62
							<cmdp:nonStandardConditionsOfUse>It is not allowed to distribute/publish complete articles, presented as a coherent text, from the Resource.</cmdp:nonStandardConditionsOfUse>
63
						</cmdp:licence>
64
						<cmdp:licensor>
65
							<cmdp:actorInfo cmd:ComponentId="clarin.eu:cr1:c_1396012485194">
66
								<cmdp:actorType>organization</cmdp:actorType>
67
								<cmdp:personInfo cmd:ComponentId="clarin.eu:cr1:c_1396012485192">
68
									<cmdp:surname>Kristiansen</cmdp:surname>
69
									<cmdp:givenName>Nina</cmdp:givenName>
70
									<cmdp:position>Editor in chief</cmdp:position>
71
									<cmdp:affiliation>
72
										<cmdp:organizationInfo cmd:ComponentId="clarin.eu:cr1:c_1407745711883">
73
											<cmdp:organizationName>forskning.no</cmdp:organizationName>
74
										</cmdp:organizationInfo>
75
									</cmdp:affiliation>
76
								</cmdp:personInfo>
77
								<cmdp:organizationInfo cmd:ComponentId="clarin.eu:cr1:c_1407745711883">
78
									<cmdp:organizationName>forskning.no</cmdp:organizationName>
79
								</cmdp:organizationInfo>
80
								<cmdp:communicationInfo cmd:ComponentId="clarin.eu:cr1:c_1352813745460">
81
									<cmdp:email>Nina@forskning.no</cmdp:email>
82
									<cmdp:city>Oslo</cmdp:city>
83
									<cmdp:country>Norway</cmdp:country>
84
								</cmdp:communicationInfo>
85
							</cmdp:actorInfo>
86
						</cmdp:licensor>
87
					</cmdp:licenceInfo>
88
				</cmdp:distributionInfo>
89
				<cmdp:contact>
90
					<cmdp:actorInfo cmd:ComponentId="clarin.eu:cr1:c_1396012485194">
91
						<cmdp:actorType>organization</cmdp:actorType>
92
						<cmdp:organizationInfo cmd:ComponentId="clarin.eu:cr1:c_1407745711883">
93
							<cmdp:organizationName xml:lang="en">CLARINO Bergen Centre</cmdp:organizationName>
94
						</cmdp:organizationInfo>
95
						<cmdp:communicationInfo cmd:ComponentId="clarin.eu:cr1:c_1352813745460">
96
							<cmdp:email>clarin@uib.no</cmdp:email>
97
							<cmdp:url>https://repo.clarino.uib.no/xmlui/</cmdp:url>
98
						</cmdp:communicationInfo>
99
					</cmdp:actorInfo>
100
				</cmdp:contact>
101
				<cmdp:metadataInfo cmd:ComponentId="clarin.eu:cr1:c_1407745711922">
102
					<cmdp:metadataCreationDate>2015-07-29</cmdp:metadataCreationDate>
103
					<cmdp:metadataLanguageName>English</cmdp:metadataLanguageName>
104
					<cmdp:metadataLanguageId>en</cmdp:metadataLanguageId>
105
					<cmdp:metadataLastDateUpdated>2016-02-12</cmdp:metadataLastDateUpdated>
106
					<cmdp:metadataCreator>
107
						<cmdp:actorInfo cmd:ComponentId="clarin.eu:cr1:c_1396012485194">
108
							<cmdp:actorType>person</cmdp:actorType>
109
							<cmdp:personInfo cmd:ComponentId="clarin.eu:cr1:c_1396012485192">
110
								<cmdp:surname xml:lang="no">Lyse</cmdp:surname>
111
								<cmdp:givenName xml:lang="no">Gunn Inger</cmdp:givenName>
112
								<cmdp:sex>female</cmdp:sex>
113
								<cmdp:position>Researcher (Ph.D)</cmdp:position>
114
								<cmdp:affiliation>
115
									<cmdp:organizationInfo cmd:ComponentId="clarin.eu:cr1:c_1407745711883">
116
										<cmdp:organizationName xml:lang="en">University of Bergen</cmdp:organizationName>
117
										<cmdp:organizationName xml:lang="no">Universitetet i Bergen</cmdp:organizationName>
118
										<cmdp:organizationShortName xml:lang="no">UiB</cmdp:organizationShortName>
119
										<cmdp:organizationShortName xml:lang="en">UoB</cmdp:organizationShortName>
120
										<cmdp:departmentName xml:lang="en">Department of Linguistic, Literary and Aesthetic Studies</cmdp:departmentName>
121
									</cmdp:organizationInfo>
122
								</cmdp:affiliation>
123
							</cmdp:personInfo>
124
							<cmdp:communicationInfo cmd:ComponentId="clarin.eu:cr1:c_1352813745460">
125
								<cmdp:email>clarin@uib.no</cmdp:email>
126
							</cmdp:communicationInfo>
127
						</cmdp:actorInfo>
128
					</cmdp:metadataCreator>
129
				</cmdp:metadataInfo>
130
				<cmdp:resourceCreationInfo cmd:ComponentId="clarin.eu:cr1:c_1407745711921">
131
					<cmdp:resourceCreator>
132
						<cmdp:actorInfo cmd:ComponentId="clarin.eu:cr1:c_1396012485194" cmd:ref="resource-fn">
133
							<cmdp:actorType>person</cmdp:actorType>
134
							<cmdp:personInfo cmd:ComponentId="clarin.eu:cr1:c_1396012485192">
135
								<cmdp:surname xml:lang="en">Hofland</cmdp:surname>
136
								<cmdp:givenName xml:lang="en">Knut</cmdp:givenName>
137
								<cmdp:sex>male</cmdp:sex>
138
								<cmdp:position>Fagkonsulent / Specialist Consultant</cmdp:position>
139
								<cmdp:affiliation>
140
									<cmdp:organizationInfo cmd:ComponentId="clarin.eu:cr1:c_1407745711883">
141
										<cmdp:organizationName xml:lang="en">Uni Research AS</cmdp:organizationName>
142
										<cmdp:departmentName xml:lang="en">Uni Research Computing</cmdp:departmentName>
143
									</cmdp:organizationInfo>
144
								</cmdp:affiliation>
145
							</cmdp:personInfo>
146
							<cmdp:communicationInfo cmd:ComponentId="clarin.eu:cr1:c_1352813745460">
147
								<cmdp:email>knut.hofland@uni.no</cmdp:email>
148
								<cmdp:url>http://uni.no/nb/staff/directory/knut-hofland/</cmdp:url>
149
								<cmdp:city>Bergen</cmdp:city>
150
								<cmdp:country>Norway</cmdp:country>
151
								<cmdp:telephoneNumber>+47 5558 9463</cmdp:telephoneNumber>
152
							</cmdp:communicationInfo>
153
						</cmdp:actorInfo>
154
						<cmdp:actorInfo cmd:ComponentId="clarin.eu:cr1:c_1396012485194" cmd:ref="search-page-corpuscle">
155
							<cmdp:actorType>person</cmdp:actorType>
156
							<cmdp:personInfo cmd:ComponentId="clarin.eu:cr1:c_1396012485192">
157
								<cmdp:surname xml:lang="en">Meurer</cmdp:surname>
158
								<cmdp:givenName xml:lang="en">Paul</cmdp:givenName>
159
								<cmdp:sex>male</cmdp:sex>
160
								<cmdp:position>Senior researcher</cmdp:position>
161
								<cmdp:affiliation>
162
									<cmdp:organizationInfo cmd:ComponentId="clarin.eu:cr1:c_1407745711883">
163
										<cmdp:organizationName xml:lang="en">Uni Research AS</cmdp:organizationName>
164
										<cmdp:departmentName xml:lang="en">Uni Research Computing</cmdp:departmentName>
165
									</cmdp:organizationInfo>
166
								</cmdp:affiliation>
167
							</cmdp:personInfo>
168
							<cmdp:communicationInfo cmd:ComponentId="clarin.eu:cr1:c_1352813745460">
169
								<cmdp:email>paul.meurer@uni.no</cmdp:email>
170
							</cmdp:communicationInfo>
171
						</cmdp:actorInfo>
172
					</cmdp:resourceCreator>
173
				</cmdp:resourceCreationInfo>
174
			</cmdp:resourceCommonInfo>
175
			<cmdp:corpusInfo cmd:ComponentId="clarin.eu:cr1:c_1407745711878">
176
				<cmdp:corpusType>Written Corpus</cmdp:corpusType>
177
				<cmdp:corpusPartInfo cmd:ComponentId="clarin.eu:cr1:c_1407745711885">
178
					<cmdp:mediaType>text</cmdp:mediaType>
179
					<cmdp:corpusTextInfo cmd:ComponentId="clarin.eu:cr1:c_1396012485188"/>
180
				</cmdp:corpusPartInfo>
181
				<cmdp:corpusPartGeneralInfo cmd:ComponentId="clarin.eu:cr1:c_1407745711882">
182
					<cmdp:sourceWorkInfo cmd:ComponentId="clarin.eu:cr1:c_1407745712071">
183
						<cmdp:workDescription>The text material is constituted by articles published by Forskning.no (CLARINO's agreement also includes the permission to use future articles to be published by Forskning.no) belonging to the following three categories:
184
							1) Articles written by journalists employed at Forskning.no
185
							2) Articles written by member institutions of Forskning.no (76 universities, colleges, research
186
							centers, research departments in government agencies and more). These articles are written by staff journalists, information officers and other non-academic staff. Each article has been edited by Forskning.no.
187
							3) Articles from the newsdesk NRK Viten, with whom Forskning.no cooperates. These articles are written by NRK journalists. A full list of partner/cooperation institutions may be presented on demand.</cmdp:workDescription>
188
						<cmdp:publisher>
189
							<cmdp:actorInfo cmd:ComponentId="clarin.eu:cr1:c_1396012485194">
190
								<cmdp:actorType>organization</cmdp:actorType>
191
								<cmdp:organizationInfo cmd:ComponentId="clarin.eu:cr1:c_1407745711883">
192
									<cmdp:organizationName>forskning.no</cmdp:organizationName>
193
								</cmdp:organizationInfo>
194
								<cmdp:communicationInfo cmd:ComponentId="clarin.eu:cr1:c_1352813745460">
195
									<cmdp:email>Nina@forskning.no</cmdp:email>
196
									<cmdp:city>Oslo</cmdp:city>
197
									<cmdp:country>Norway</cmdp:country>
198
								</cmdp:communicationInfo>
199
							</cmdp:actorInfo>
200
						</cmdp:publisher>
201
					</cmdp:sourceWorkInfo>
202
					<cmdp:lingualityInfo cmd:ComponentId="clarin.eu:cr1:c_1355150532313">
203
						<cmdp:lingualityType>monolingual</cmdp:lingualityType>
204
					</cmdp:lingualityInfo>
205
					<cmdp:languageInfo cmd:ComponentId="clarin.eu:cr1:c_1428388179423">
206
						<cmdp:languageId>no</cmdp:languageId>
207
						<cmdp:languageName>Norwegian</cmdp:languageName>
208
					</cmdp:languageInfo>
209
					<cmdp:languageInfo cmd:ComponentId="clarin.eu:cr1:c_1428388179423">
210
						<cmdp:languageId>nb</cmdp:languageId>
211
						<cmdp:languageName>Norwegian Bokmål</cmdp:languageName>
212
					</cmdp:languageInfo>
213
					<cmdp:modalityInfo cmd:ComponentId="clarin.eu:cr1:c_1447674760356">
214
						<cmdp:modalityType>writtenLanguage</cmdp:modalityType>
215
					</cmdp:modalityInfo>
216
					<cmdp:sizeInfo cmd:ComponentId="clarin.eu:cr1:c_1353678848785">
217
						<cmdp:size>ca. 489 000</cmdp:size>
218
						<cmdp:sizeUnit>sentences</cmdp:sizeUnit>
219
					</cmdp:sizeInfo>
220
					<cmdp:sizeInfo cmd:ComponentId="clarin.eu:cr1:c_1353678848785">
221
						<cmdp:size>ca. 8 300 000</cmdp:size>
222
						<cmdp:sizeUnit>words</cmdp:sizeUnit>
223
					</cmdp:sizeInfo>
224
					<cmdp:sizeInfo cmd:ComponentId="clarin.eu:cr1:c_1353678848785">
225
						<cmdp:size>ca. 13 200</cmdp:size>
226
						<cmdp:sizeUnit>articles</cmdp:sizeUnit>
227
					</cmdp:sizeInfo>
228
					<cmdp:classificationInfo cmd:ComponentId="clarin.eu:cr1:c_1403588862809">
229
						<cmdp:genreInfo cmd:ComponentId="clarin.eu:cr1:c_1407745711877">
230
							<cmdp:genreType>textGenre</cmdp:genreType>
231
							<cmdp:genre>newspaper and magazines</cmdp:genre>
232
						</cmdp:genreInfo>
233
					</cmdp:classificationInfo>
234
					<cmdp:timeCoverageInfo cmd:ComponentId="clarin.eu:cr1:c_1447674760358">
235
						<cmdp:timeCoverage>1998-05-01 - 2012-10-20</cmdp:timeCoverage>
236
					</cmdp:timeCoverageInfo>
237
				</cmdp:corpusPartGeneralInfo>
238
			</cmdp:corpusInfo>
239
		</cmdp:corpusProfile>
240
	</cmd:Components>
241
</cmd:CMD>
modules/dnet-parthenos/tags/dnet-parthenos-1.0.0/src/test/resources/eu/dnetlib/x3m/new-10304738.xml
1
<?xml version="1.0" encoding="UTF-8"?><acdm:ariadne xmlns:acdm="http://registry.ariadne-infrastructure.eu/" xmlns="http://archaeologydataservice.ac.uk/advice/archiveSchema" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dbpedia-owl="http://dbpedia.org/ontology/" xmlns:foaf="http://xmlns.com/foaf/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:as="http://archaeologydataservice.ac.uk/archsearch/" xmlns:vcard="http://www.w3.org/2006/vcard/ns#" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" xmlns:dcat="http://www.w3.org/ns/dcat#" xmlns:aat="http://vocab.getty.edu/aat/" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sch="http://purl.oclc.org/dsdl/schematron" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2
   <acdm:ariadneArchaeologicalResource>
3
      <acdm:dataset>
4
         <acdm:nativeSubject>
5
            <skos:Concept>
6
               <skos:prefLabel>WINDMILL</skos:prefLabel>
7
            </skos:Concept>
8
         </acdm:nativeSubject>
9
         <acdm:publisher>
10
            <foaf:name>Archaeology Data Service</foaf:name>
11
            <acdm:typeOfAnAgent>Organization</acdm:typeOfAnAgent>
12
         </acdm:publisher>
13
         <acdm:contributor>
14
            <foaf:name>Sustainability Group, Shropshire County Council</foaf:name>
15
            <acdm:typeOfAnAgent>Organization</acdm:typeOfAnAgent>
16
         </acdm:contributor>
17
         <dcterms:title>Crudgington Windmill</dcterms:title>
18
         <dc:description>Windmill &amp;lt;1&amp;gt;</dc:description>
19
         <dcterms:issued>2002-11-20 00:00:00.0</dcterms:issued>
20
         <dcterms:modified>2002-11-20 00:00:00.0</dcterms:modified>
21
         <acdm:originalId>67142</acdm:originalId>
22
         <dc:language>en</dc:language>
23
         <dcat:landingPage>http://archaeologydataservice.ac.uk/archsearch/record.jsf?titleId=67142</dcat:landingPage>
24
         <acdm:accessPolicy>http://archaeologydataservice.ac.uk/advice/termsOfUseAndAccess</acdm:accessPolicy>
25
         <dcterms:accessRights>ADS Terms and Conditions</dcterms:accessRights>
26
         <acdm:temporal>
27
            <acdm:from>1540</acdm:from>
28
            <acdm:until>1901</acdm:until>
29
         </acdm:temporal>
30
         <acdm:spatial>
31
            <acdm:lat>52.758881</acdm:lat>
32
            <acdm:lon>-2.552782</acdm:lon>
33
            <acdm:country>England</acdm:country>
34
            <acdm:coordinateSystem>EPSG:27700</acdm:coordinateSystem>
35
         </acdm:spatial>
36
         <acdm:archaeologicalResourceType>Sites and monuments databases or inventories</acdm:archaeologicalResourceType>
37
         
38
         <dcterms:isPartOf xmlns="">http://registry.ariadne-infrastructure.eu/collection/22721290</dcterms:isPartOf>
39
         <dcterms:identifier xmlns="">http://registry.ariadne-infrastructure.eu/dataset/10304738</dcterms:identifier>
40
      <acdm:ariadneSubject xmlns=""><acdm:derivedSubject><skos:prefLabel>windmills</skos:prefLabel><dc:source>http://vocab.getty.edu/aat/300006273</dc:source></acdm:derivedSubject></acdm:ariadneSubject></acdm:dataset>
41
   </acdm:ariadneArchaeologicalResource>
42
</acdm:ariadne>
0 43

  
modules/dnet-parthenos/tags/dnet-parthenos-1.0.0/src/test/resources/eu/dnetlib/x3m/new-10304739.xml
1
<?xml version="1.0" encoding="UTF-8"?><acdm:ariadne xmlns:acdm="http://registry.ariadne-infrastructure.eu/" xmlns="http://archaeologydataservice.ac.uk/advice/archiveSchema" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dbpedia-owl="http://dbpedia.org/ontology/" xmlns:foaf="http://xmlns.com/foaf/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:as="http://archaeologydataservice.ac.uk/archsearch/" xmlns:vcard="http://www.w3.org/2006/vcard/ns#" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" xmlns:dcat="http://www.w3.org/ns/dcat#" xmlns:aat="http://vocab.getty.edu/aat/" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sch="http://purl.oclc.org/dsdl/schematron" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2
   <acdm:ariadneArchaeologicalResource>
3
      <acdm:dataset>
4
         <acdm:nativeSubject>
5
            <skos:Concept>
6
               <skos:prefLabel>EARTHWORK</skos:prefLabel>
7
            </skos:Concept>
8
         </acdm:nativeSubject>
9
         <acdm:nativeSubject>
10
            <skos:Concept>
11
               <skos:prefLabel>FISHPOND</skos:prefLabel>
12
            </skos:Concept>
13
         </acdm:nativeSubject>
14
         <acdm:nativeSubject>
15
            <skos:Concept>
16
               <skos:prefLabel>MANOR HOUSE</skos:prefLabel>
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff