Repository: any23 Updated Branches: refs/heads/master e324ea603 -> 754700ba3
http://git-wip-us.apache.org/repos/asf/any23/blob/445d13ab/service/src/test/java/org/apache/any23/servlet/ServletTest.java ---------------------------------------------------------------------- diff --git a/service/src/test/java/org/apache/any23/servlet/ServletTest.java b/service/src/test/java/org/apache/any23/servlet/ServletTest.java index a59682c..81a1d10 100644 --- a/service/src/test/java/org/apache/any23/servlet/ServletTest.java +++ b/service/src/test/java/org/apache/any23/servlet/ServletTest.java @@ -17,12 +17,12 @@ package org.apache.any23.servlet; -import junit.framework.Assert; import org.apache.any23.http.HTTPClient; import org.apache.any23.source.DocumentSource; import org.apache.any23.source.FileDocumentSource; import org.apache.any23.source.StringDocumentSource; import org.apache.any23.util.StringUtils; +import org.junit.Assert; import org.junit.After; import org.junit.Before; import org.junit.Ignore; @@ -44,7 +44,7 @@ public class ServletTest { private static String content; private static String acceptHeader; - private static String requestedURI; + private static String requestedIRI; private ServletTester tester; @@ -56,7 +56,7 @@ public class ServletTest { tester.start(); content = "test"; acceptHeader = null; - requestedURI = null; + requestedIRI = null; } @After @@ -69,7 +69,7 @@ public class ServletTest { public void testGETOnlyFormat() throws Exception { HttpTester response = doGetRequest("/xml"); Assert.assertEquals(404, response.getStatus()); - assertContains("Missing URI", response.getContent()); + assertContains("Missing IRI", response.getContent()); } @Test @@ -80,10 +80,10 @@ public class ServletTest { } @Test - public void testGETInvalidURI() throws Exception { + public void testGETInvalidIRI() throws Exception { HttpTester response = doGetRequest("/xml/mailto:[email protected]"); Assert.assertEquals(400, response.getStatus()); - assertContains("Invalid input URI", response.getContent()); + assertContains("Invalid input IRI", response.getContent()); } @Test @@ -91,7 +91,7 @@ public class ServletTest { content = "<html><body><div class=\"vcard fn\">Joe</div></body></html>"; HttpTester response = doGetRequest("/nt/foo.com/bar.html"); Assert.assertEquals(200, response.getStatus()); - Assert.assertEquals("http://foo.com/bar.html", requestedURI); + Assert.assertEquals("http://foo.com/bar.html", requestedIRI); String res = response.getContent(); assertContains( "<http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/vcard/ns#VCard>", @@ -104,7 +104,7 @@ public class ServletTest { content = "<html><body><div class=\"vcard fn\">Joe</div></body></html>"; HttpTester response = doGetRequest("/nt/foo.com"); Assert.assertEquals(200, response.getStatus()); - Assert.assertEquals("http://foo.com", requestedURI); + Assert.assertEquals("http://foo.com", requestedIRI); } @Test @@ -112,23 +112,23 @@ public class ServletTest { content = "<html><body><div class=\"vcard fn\">Joe</div></body></html>"; HttpTester response = doGetRequest("/nt/http://foo.com?id=1"); Assert.assertEquals(200, response.getStatus()); - Assert.assertEquals("http://foo.com?id=1", requestedURI); + Assert.assertEquals("http://foo.com?id=1", requestedIRI); } @Test - public void testGETwithURIinParam() throws Exception { + public void testGETwithIRIinParam() throws Exception { content = "<html><body><div class=\"vcard fn\">Joe</div></body></html>"; HttpTester response = doGetRequest("/nt?uri=http://foo.com?id=1"); Assert.assertEquals(200, response.getStatus()); - Assert.assertEquals("http://foo.com?id=1", requestedURI); + Assert.assertEquals("http://foo.com?id=1", requestedIRI); } @Test - public void testGETwithFormatAndURIinParam() throws Exception { + public void testGETwithFormatAndIRIinParam() throws Exception { content = "<html><body><div class=\"vcard fn\">Joe</div></body></html>"; HttpTester response = doGetRequest("/?format=nt&uri=http://foo.com?id=1"); Assert.assertEquals(200, response.getStatus()); - Assert.assertEquals("http://foo.com?id=1", requestedURI); + Assert.assertEquals("http://foo.com?id=1", requestedIRI); } @Test @@ -136,7 +136,7 @@ public class ServletTest { content = "<html><body><div class=\"vcard fn\">Joe</div></body></html>"; HttpTester response = doGetRequest("/nt/http%3A%2F%2Ffoo.com"); Assert.assertEquals(200, response.getStatus()); - Assert.assertEquals("http://foo.com", requestedURI); + Assert.assertEquals("http://foo.com", requestedIRI); } @Test @@ -144,7 +144,7 @@ public class ServletTest { content = "<html><body><div class=\"vcard fn\">Joe</div></body></html>"; HttpTester response = doGetRequest("/nt?uri=http%3A%2F%2Ffoo.com"); Assert.assertEquals(200, response.getStatus()); - Assert.assertEquals("http://foo.com", requestedURI); + Assert.assertEquals("http://foo.com", requestedIRI); } @Test @@ -159,7 +159,7 @@ public class ServletTest { content = "<html><body><div class=\"vcard fn\">Joe</div></body></html>"; HttpTester response = doPostRequest("/", "format=nt&uri=http://foo.com", "application/x-www-form-urlencoded"); Assert.assertEquals(200, response.getStatus()); - Assert.assertEquals("http://foo.com", requestedURI); + Assert.assertEquals("http://foo.com", requestedIRI); String res = response.getContent(); assertContains("<http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/vcard/ns#VCard>", res); } @@ -173,7 +173,7 @@ public class ServletTest { "application/x-www-form-urlencoded;charset=UTF-8" ); Assert.assertEquals(200, response.getStatus()); - Assert.assertEquals("http://foo.com", requestedURI); + Assert.assertEquals("http://foo.com", requestedIRI); String res = response.getContent(); assertContains( "<http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/vcard/ns#VCard>", @@ -191,7 +191,7 @@ public class ServletTest { "<http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/vcard/ns#VCard>", res ); - Assert.assertNull(requestedURI); + Assert.assertNull(requestedIRI); } @Test @@ -205,11 +205,11 @@ public class ServletTest { "<http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/vcard/ns#VCard>", res ); - Assert.assertNull(requestedURI); + Assert.assertNull(requestedIRI); } @Test - public void testPOSTonlyURI() throws Exception { + public void testPOSTonlyIRI() throws Exception { content = "<html><body><div class=\"vcard fn\">Joe</div></body></html>"; HttpTester response = doPostRequest("/", "uri=http://foo.com", "application/x-www-form-urlencoded"); Assert.assertEquals(200, response.getStatus()); @@ -261,7 +261,7 @@ public class ServletTest { } @Test - public void testCorrectBaseURI() throws Exception { + public void testCorrectBaseIRI() throws Exception { content = "@prefix foaf: <http://xmlns.com/foaf/0.1/> . <> a foaf:Document ."; HttpTester response = doGetRequest("/nt/foo.com/test.n3"); Assert.assertEquals(200, response.getStatus()); @@ -269,11 +269,11 @@ public class ServletTest { } @Test - public void testDefaultBaseURIinPOST() throws Exception { + public void testDefaultBaseIRIinPOST() throws Exception { String body = "@prefix foaf: <http://xmlns.com/foaf/0.1/> . <> a foaf:Document ."; HttpTester response = doPostRequest("/nt", body, "text/rdf+n3;charset=utf-8"); Assert.assertEquals(200, response.getStatus()); - assertContains("<" + Servlet.DEFAULT_BASE_URI + ">", response.getContent()); + assertContains("<" + Servlet.DEFAULT_BASE_IRI + ">", response.getContent()); } @Test @@ -308,7 +308,7 @@ public class ServletTest { content = "<html><body><div class=\"vcard fn\">Joe</div></body></html>"; HttpTester response = doGetRequest("/best/http://foo.com"); Assert.assertEquals(200, response.getStatus()); - Assert.assertEquals("http://foo.com", requestedURI); + Assert.assertEquals("http://foo.com", requestedIRI); assertContains("a vcard:VCard", response.getContent()); } @@ -318,7 +318,7 @@ public class ServletTest { acceptHeader = "*/*"; HttpTester response = doGetRequest("/best/http://foo.com"); Assert.assertEquals(200, response.getStatus()); - Assert.assertEquals("http://foo.com", requestedURI); + Assert.assertEquals("http://foo.com", requestedIRI); assertContains("a vcard:VCard", response.getContent()); } @@ -328,7 +328,7 @@ public class ServletTest { acceptHeader = "image/jpeg"; HttpTester response = doGetRequest("/best/http://foo.com"); Assert.assertEquals(406, response.getStatus()); - Assert.assertNull(requestedURI); + Assert.assertNull(requestedIRI); } @Test @@ -337,7 +337,7 @@ public class ServletTest { acceptHeader = "text/turtle"; HttpTester response = doGetRequest("/best/http://foo.com"); Assert.assertEquals(200, response.getStatus()); - Assert.assertEquals("http://foo.com", requestedURI); + Assert.assertEquals("http://foo.com", requestedIRI); assertContains("a vcard:VCard", response.getContent()); } @@ -347,7 +347,7 @@ public class ServletTest { acceptHeader = "application/x-turtle"; HttpTester response = doGetRequest("/best/http://foo.com"); Assert.assertEquals(200, response.getStatus()); - Assert.assertEquals("http://foo.com", requestedURI); + Assert.assertEquals("http://foo.com", requestedIRI); assertContains("a vcard:VCard", response.getContent()); } @@ -357,7 +357,7 @@ public class ServletTest { acceptHeader = "application/rdf+xml"; HttpTester response = doGetRequest("/best/http://foo.com"); Assert.assertEquals(200, response.getStatus()); - Assert.assertEquals("http://foo.com", requestedURI); + Assert.assertEquals("http://foo.com", requestedIRI); assertContains("<rdf:RDF", response.getContent()); } @@ -367,7 +367,7 @@ public class ServletTest { acceptHeader = "text/plain"; HttpTester response = doGetRequest("/best/http://foo.com"); Assert.assertEquals(200, response.getStatus()); - Assert.assertEquals("http://foo.com", requestedURI); + Assert.assertEquals("http://foo.com", requestedIRI); assertContains("<http://www.w3.org/1999/02/22-rdf-syntax-ns#type>", response.getContent()); } @@ -496,7 +496,7 @@ public class ServletTest { @Override protected DocumentSource createHTTPDocumentSource(HTTPClient httpClient, String uri) throws IOException, URISyntaxException { - requestedURI = uri; + requestedIRI = uri; if(content != null) { return new StringDocumentSource(content, uri); } else { http://git-wip-us.apache.org/repos/asf/any23/blob/445d13ab/src/site/apt/configuration.apt ---------------------------------------------------------------------- diff --git a/src/site/apt/configuration.apt b/src/site/apt/configuration.apt index a6b532d..63ff1fd 100644 --- a/src/site/apt/configuration.apt +++ b/src/site/apt/configuration.apt @@ -113,7 +113,7 @@ any23.extract(extractionParameters, "http://path/to/doc", tripleHandler); *-------------------------------------------+-------------------------------+------------------------------------------------------------------------------------+ |any23.extraction.rdfa.programmatic |on (possible values: on/off) |Switches between the programmatic RDFa 1.1 Extractor and the RDFa 1.0 XSLT base one.| | *-------------------------------------------+-------------------------------+------------------------------------------------------------------------------------+ -|any23.extraction.context.uri |?(means current document URI) |Default value for extraction content URI. | +|any23.extraction.context.uri |?(means current document IRI) |Default value for extraction content IRI. | *-------------------------------------------+-------------------------------+------------------------------------------------------------------------------------+ |any23.plugin.dirs |./plugins |Directory containing Apache Any23 plugins. | *-------------------------------------------+-------------------------------+------------------------------------------------------------------------------------+ http://git-wip-us.apache.org/repos/asf/any23/blob/445d13ab/src/site/apt/dev-csv-extractor.apt ---------------------------------------------------------------------- diff --git a/src/site/apt/dev-csv-extractor.apt b/src/site/apt/dev-csv-extractor.apt index 07f8343..7eb7c8a 100644 --- a/src/site/apt/dev-csv-extractor.apt +++ b/src/site/apt/dev-csv-extractor.apt @@ -34,9 +34,9 @@ CSV Extractor Algorithm * for each field <name>: - * if <name> is a valid URI keep it as an URI since could be derefenceable. + * if <name> is a valid IRI keep it as an IRI since could be derefenceable. - * if <name> is not a valid URI, the associated RDF Property URI <propUri> + * if <name> is not a valid IRI, the associated RDF Property IRI <propUri> will be in the form of: <url> concatenated <name> * add label statement: <propUri> rdfs:label <name> @@ -51,7 +51,7 @@ CSV Extractor Algorithm * for each <cell> value: * write statement, \<url/row/\<index\>\> <propUri> <cell> where: - <cell> could be an URI if the cell value is an URI, or a typed literal + <cell> could be an IRI if the cell value is an IRI, or a typed literal according the value of the CSV actual value <cell>. * add RDF statements claiming number of rows and columns. http://git-wip-us.apache.org/repos/asf/any23/blob/445d13ab/src/site/apt/dev-data-conversion.apt ---------------------------------------------------------------------- diff --git a/src/site/apt/dev-data-conversion.apt b/src/site/apt/dev-data-conversion.apt index c751700..dd569c0 100644 --- a/src/site/apt/dev-data-conversion.apt +++ b/src/site/apt/dev-data-conversion.apt @@ -28,7 +28,7 @@ Data Conversion "@prefix : <http://other.example.org/ns#> ." + "foo:bar foo: : . " + ":bar : foo:bar . "; -// The second argument of StringDocumentSource() must be a valid URI. +// The second argument of StringDocumentSource() must be a valid IRI. /*3*/ DocumentSource source = new StringDocumentSource(content, "http://host.com/service"); /*4*/ ByteArrayOutputStream out = new ByteArrayOutputStream(); /*5*/ TripleHandler handler = new NTriplesWriter(out); @@ -52,8 +52,8 @@ Data Conversion The <<line 2>> defines the input string containing some {{{http://www.w3.org/TeamSubmission/turtle/}Turtle}} data. At <<line 3>> we instantiate a {{{./xref/org/apache/any23/source/StringDocumentSource.html}StringDocumentSource}}, - specifying a content and a the source <URI>. - The <URI> should be the source of the content data, and must be valid. + specifying a content and a the source <IRI>. + The <IRI> should be the source of the content data, and must be valid. Besides the {{{./xref/org/apache/any23/source/StringDocumentSource.html}StringDocumentSource}}, you can also provide input from other sources, such as <HTTP> requests and local files. See the classes in the sources {{{./xref/org/apache/any23/source/package-summary.html}package}}. http://git-wip-us.apache.org/repos/asf/any23/blob/445d13ab/src/site/apt/dev-microformat-extractors.apt ---------------------------------------------------------------------- diff --git a/src/site/apt/dev-microformat-extractors.apt b/src/site/apt/dev-microformat-extractors.apt index 2d946d2..e5db96e 100644 --- a/src/site/apt/dev-microformat-extractors.apt +++ b/src/site/apt/dev-microformat-extractors.apt @@ -69,7 +69,7 @@ foundSomething |= addSubMicroformat("adr", card, VCARD.adr); ... -private boolean addSubMicroformat(String className, Resource resource, URI property) { +private boolean addSubMicroformat(String className, Resource resource, IRI property) { List<Node> nodes = fragment.findAllByClassName(className); if (nodes.isEmpty()) return false; for (Node node : nodes) { http://git-wip-us.apache.org/repos/asf/any23/blob/445d13ab/src/site/apt/getting-started.apt ---------------------------------------------------------------------- diff --git a/src/site/apt/getting-started.apt b/src/site/apt/getting-started.apt index bc4e84d..5f60b93 100644 --- a/src/site/apt/getting-started.apt +++ b/src/site/apt/getting-started.apt @@ -83,7 +83,7 @@ Usage: any23 [options] [command] [command options] verify Utility for plugin management verification. Usage: verify [options] plugins-dir rover Any23 Command Line Tool. - Usage: rover [options] input URIs {<url>|<file>}+ + Usage: rover [options] input IRIs {<url>|<file>}+ Options: -d, --defaultns Override the default namespace used to produce statements. @@ -272,7 +272,7 @@ any23-core$ ./bin/any23 verify [/path/to/plugins/dir] any23-core$ ./bin/any23 -h [...] crawler Any23 Crawler Command Line Tool. - Usage: crawler [options] input URIs {<url>|<file>}+ + Usage: crawler [options] input IRIs {<url>|<file>}+ Options: -d, --defaultns Override the default namespace used to produce statements. http://git-wip-us.apache.org/repos/asf/any23/blob/445d13ab/src/site/apt/service.apt ---------------------------------------------------------------------- diff --git a/src/site/apt/service.apt b/src/site/apt/service.apt index 852e156..2b3f292 100644 --- a/src/site/apt/service.apt +++ b/src/site/apt/service.apt @@ -26,7 +26,7 @@ Apache Any23 REST Service * Compact API - HTTP GET requests can be made to URIs of the shape: + HTTP GET requests can be made to IRIs of the shape: +--------------------------------------------------- http://<any23-service-host>/<output-format>/<input-uri> @@ -48,10 +48,10 @@ http://any23.org/?format=nt&uri=http://dbpedia.org/resource/Berlin Form-style GET API - HTTP GET requests can be made to the URI http://any23.org/ with the following query parameters: + HTTP GET requests can be made to the IRI http://any23.org/ with the following query parameters: +--------------------------------------------------- -uri URI of an input document +uri IRI of an input document format Desired output format; defaults to best +--------------------------------------------------- @@ -114,7 +114,7 @@ Code Reason ------------------------------------------------------------------------------------------------------------- 200 OK Success. 400 Bad Request Missing or malformed input parameter. -404 Not Found Malformed request URI. +404 Not Found Malformed request IRI. 406 Not Acceptable None of the media types specified in the Accept header are supported. 415 Unsupported Media Type Document body with unsupported media type was POSTed. 501 Not Implemented Extraction from input was successful, but yielded zero triples. http://git-wip-us.apache.org/repos/asf/any23/blob/445d13ab/test-resources/pom.xml ---------------------------------------------------------------------- diff --git a/test-resources/pom.xml b/test-resources/pom.xml index 5ba5673..9544880 100644 --- a/test-resources/pom.xml +++ b/test-resources/pom.xml @@ -21,7 +21,7 @@ <parent> <artifactId>apache-any23</artifactId> <groupId>org.apache.any23</groupId> - <version>1.2-SNAPSHOT</version> + <version>2.0-SNAPSHOT</version> <relativePath>../</relativePath> </parent> http://git-wip-us.apache.org/repos/asf/any23/blob/445d13ab/test-resources/src/test/resources/application/rdfa/london-gazette.html ---------------------------------------------------------------------- diff --git a/test-resources/src/test/resources/application/rdfa/london-gazette.html b/test-resources/src/test/resources/application/rdfa/london-gazette.html index 66558e1..d15cab6 100644 --- a/test-resources/src/test/resources/application/rdfa/london-gazette.html +++ b/test-resources/src/test/resources/application/rdfa/london-gazette.html @@ -72,7 +72,7 @@ <script type="text/javascript" src="/scripts/webtrends.js"></script> <title> Search Results -</title><meta name="DC.date.modified" content="2009-09-11" scheme="DCTERMS.W3CDTF" /><meta name="DC.identifier" content="http://www.london-gazette.co.uk/id/issues/59183/notices/917550" scheme="DCTERMS.URI" /><meta name="DC.title" content="London Gazette: Issue dated 2009-09-11: Notice 917550" /><meta name="DCS.Page" content="London Gazette: Issue dated 2009-09-11: Notice 917550" /><meta name="DCS.Location" content="London" /><meta name="DC.creator" content="TSO (The Stationery Office)" /><meta name="DC.date.issued" content="2009-09-11" scheme="DCTERMS.w3.CDTF" /><meta name="eGMS.accessibility" content="Double-A" scheme="eGMS.WCAG10" /><meta name="DC.publisher" content="TSO (The Stationery Office), St Crispins, Duke Street, Norwich, NR3 1PD, 01603 622211, [email protected]" /><meta name="DC.language" content="eng" scheme="DCTERMS.ISO639-2" /><meta name="DC.subject" content="Gas Supply, Insolvency, Regulation and Deregulation, Business Pratice and Regulation, Postal Services , Finacial Service Industries, Mineral Extraction, mining, quarrying, Electricity Supply, Telephone Services, Public Finance, Environmental Protection, Coastal Erosion and Protection, Pollution, Fisheries and Aquaculture, Countryside, Planning (Town and Country), Plants, animals and wildlife, Animal Health, Plant Health, Plants, Water Resources, Cabinet, Government Departments, Ministers, Prime Minister, Monarchy, Scottish Parliament, UK Parliament, Scottish Executive, Policy Making, Health, Medicines, Legal Proceedings, Gambling and Lotteries, Life Events, Death, Religion, Non-Governmental Organisations, Public Private Partnerships, Telephone Services, Air Transport, Public Transport, Rail Transport, Road Transport, Roads and Highways, Transport Planning, Ports and Harbours" scheme="eGMS.IPSV" /><meta property="dc:publisher" content="TSO (The Stationery Office), St Crispins, Duke Street, Norwich, NR3 1PD, 01603 622211, [email protected]" /><meta property="dc:creator" cont ent="TSO (The Stationery Office)" /><meta property="dc:title" content="London Gazette: Issue dated 2009-09-11: Notice 917550" /><meta property="dc:identifier" content="http://www.london-gazette.co.uk/id/issues/59183/notices/917550" datatype="xsd:anyURI" /><meta property="dcterms:issued" content="2009-09-11" datatype="xsd:date" /><meta property="dcterms:modified" content="2009-09-11" datatype="xsd:date" /><link rel="dc:language" resource="[_:lang]" /><link rel="dcam:memberOf" resource="[dcterms:ISO639-2]" about="[_:lang]" /><link rel="dc:subject" resource="[_:subj]" /><link rel="dcam:memberOf" resource="[egms:IPSV]" about="[_:subj]" /><link rel="rdf:value" resource="[ipsv:Insolvency]" about="[_:subj]" /><link rel="g:isInIssue" href="http://www.london-gazette.co.uk/id/issues/59183" /><link property="rdf:value" content="eng" about="[_:lang]" /><meta name="robots" content="index,nofollow" /></head> +</title><meta name="DC.date.modified" content="2009-09-11" scheme="DCTERMS.W3CDTF" /><meta name="DC.identifier" content="http://www.london-gazette.co.uk/id/issues/59183/notices/917550" scheme="DCTERMS.IRI" /><meta name="DC.title" content="London Gazette: Issue dated 2009-09-11: Notice 917550" /><meta name="DCS.Page" content="London Gazette: Issue dated 2009-09-11: Notice 917550" /><meta name="DCS.Location" content="London" /><meta name="DC.creator" content="TSO (The Stationery Office)" /><meta name="DC.date.issued" content="2009-09-11" scheme="DCTERMS.w3.CDTF" /><meta name="eGMS.accessibility" content="Double-A" scheme="eGMS.WCAG10" /><meta name="DC.publisher" content="TSO (The Stationery Office), St Crispins, Duke Street, Norwich, NR3 1PD, 01603 622211, [email protected]" /><meta name="DC.language" content="eng" scheme="DCTERMS.ISO639-2" /><meta name="DC.subject" content="Gas Supply, Insolvency, Regulation and Deregulation, Business Pratice and Regulation, Postal Services , Finacial Service Industries, Mineral Extraction, mining, quarrying, Electricity Supply, Telephone Services, Public Finance, Environmental Protection, Coastal Erosion and Protection, Pollution, Fisheries and Aquaculture, Countryside, Planning (Town and Country), Plants, animals and wildlife, Animal Health, Plant Health, Plants, Water Resources, Cabinet, Government Departments, Ministers, Prime Minister, Monarchy, Scottish Parliament, UK Parliament, Scottish Executive, Policy Making, Health, Medicines, Legal Proceedings, Gambling and Lotteries, Life Events, Death, Religion, Non-Governmental Organisations, Public Private Partnerships, Telephone Services, Air Transport, Public Transport, Rail Transport, Road Transport, Roads and Highways, Transport Planning, Ports and Harbours" scheme="eGMS.IPSV" /><meta property="dc:publisher" content="TSO (The Stationery Office), St Crispins, Duke Street, Norwich, NR3 1PD, 01603 622211, [email protected]" /><meta property="dc:creator" cont ent="TSO (The Stationery Office)" /><meta property="dc:title" content="London Gazette: Issue dated 2009-09-11: Notice 917550" /><meta property="dc:identifier" content="http://www.london-gazette.co.uk/id/issues/59183/notices/917550" datatype="xsd:anyIRI" /><meta property="dcterms:issued" content="2009-09-11" datatype="xsd:date" /><meta property="dcterms:modified" content="2009-09-11" datatype="xsd:date" /><link rel="dc:language" resource="[_:lang]" /><link rel="dcam:memberOf" resource="[dcterms:ISO639-2]" about="[_:lang]" /><link rel="dc:subject" resource="[_:subj]" /><link rel="dcam:memberOf" resource="[egms:IPSV]" about="[_:subj]" /><link rel="rdf:value" resource="[ipsv:Insolvency]" about="[_:subj]" /><link rel="g:isInIssue" href="http://www.london-gazette.co.uk/id/issues/59183" /><link property="rdf:value" content="eng" about="[_:lang]" /><meta name="robots" content="index,nofollow" /></head> <body id="ctl00_documentBody" typeof="g:Notice"> <noscript><div><img alt="" border="0" name="DCSIMG" width="1" height="1" src="http://www.stats.tso.co.uk/dcsi85gtduleroaqmbjq87oq1_3s3h/njs.gif?dcsuri =/nojavascript&WT.js=No" /></div></noscript> <form name="aspnetForm" method="post" id="aspnetForm"> http://git-wip-us.apache.org/repos/asf/any23/blob/445d13ab/test-resources/src/test/resources/application/rdfa/mic.xhtml ---------------------------------------------------------------------- diff --git a/test-resources/src/test/resources/application/rdfa/mic.xhtml b/test-resources/src/test/resources/application/rdfa/mic.xhtml index 4215b93..aca5559 100644 --- a/test-resources/src/test/resources/application/rdfa/mic.xhtml +++ b/test-resources/src/test/resources/application/rdfa/mic.xhtml @@ -90,7 +90,7 @@ <h1>Michael Hausenblas</h1> <p class="purpose"> - The purpose of this document is to determine the referent of the URI <b><a href="http://sw-app.org/mic.xhtml#i">http://sw-app.org/mic.xhtml#i</a></b>.<br /> + The purpose of this document is to determine the referent of the IRI <b><a href="http://sw-app.org/mic.xhtml#i">http://sw-app.org/mic.xhtml#i</a></b>.<br /> It well contains contact information, refers to people I know, and activities I am involved in. </p> http://git-wip-us.apache.org/repos/asf/any23/blob/445d13ab/test-resources/src/test/resources/application/rdfn3/test1 ---------------------------------------------------------------------- diff --git a/test-resources/src/test/resources/application/rdfn3/test1 b/test-resources/src/test/resources/application/rdfn3/test1 index 7a4c288..2940f35 100644 --- a/test-resources/src/test/resources/application/rdfn3/test1 +++ b/test-resources/src/test/resources/application/rdfn3/test1 @@ -165,7 +165,7 @@ _:genid2 <http://www.w3.org/2003/01/geo/wgs84_pos#lat> "53.272226" . <http://www.deri.ie/about/team/member/Karl_Aberer#me> <http://www.w3.org/2002/07/owl#sameAs> <http://data.semanticweb.org/person/karl-aberer> . <http://harth.org/andreas/foaf#ah> <http://xmlns.com/foaf/0.1/knows> <http://www.deri.ie/about/team/member/Karl_Aberer#me> . <http://www.aifb.uni-karlsruhe.de/Personen/viewPersonOWL/id2084instance> <http://www.w3.org/2002/07/owl#sameAs> <http://blog.semantic-web.at/author/pascal-hitzler/#foaf> . -<http://www.aifb.uni-karlsruhe.de/Personen/viewPersonOWL/id2084instance> <http://www.w3.org/2002/07/owl#sameAs> <http://korrekt.org/page/Special:URIResolver/Pascal_Hitzler> . +<http://www.aifb.uni-karlsruhe.de/Personen/viewPersonOWL/id2084instance> <http://www.w3.org/2002/07/owl#sameAs> <http://korrekt.org/page/Special:IRIResolver/Pascal_Hitzler> . <http://www.aifb.uni-karlsruhe.de/Personen/viewPersonOWL/id2084instance> <http://www.w3.org/2002/07/owl#sameAs> <http://semanticweb.org/id/Pascal_Hitzler> . <http://harth.org/andreas/foaf#ah> <http://xmlns.com/foaf/0.1/knows> <http://www.aifb.uni-karlsruhe.de/Personen/viewPersonOWL/id2084instance> . <http://harth.org/andreas/foaf#ah> <http://xmlns.com/foaf/0.1/knows> <http://140.203.154.209/~vit/foaf.rdf#me> . http://git-wip-us.apache.org/repos/asf/any23/blob/445d13ab/test-resources/src/test/resources/application/rdfxml/test1 ---------------------------------------------------------------------- diff --git a/test-resources/src/test/resources/application/rdfxml/test1 b/test-resources/src/test/resources/application/rdfxml/test1 index 43b2d6f..a45aa47 100644 --- a/test-resources/src/test/resources/application/rdfxml/test1 +++ b/test-resources/src/test/resources/application/rdfxml/test1 @@ -295,7 +295,7 @@ <foaf:knows> <rdf:Description rdf:about="http://www.aifb.uni-karlsruhe.de/Personen/viewPersonOWL/id2084instance"> <owl:sameAs rdf:resource="http://blog.semantic-web.at/author/pascal-hitzler/#foaf"/> - <owl:sameAs rdf:resource="http://korrekt.org/page/Special:URIResolver/Pascal_Hitzler"/> + <owl:sameAs rdf:resource="http://korrekt.org/page/Special:IRIResolver/Pascal_Hitzler"/> <owl:sameAs rdf:resource="http://semanticweb.org/id/Pascal_Hitzler"/> </rdf:Description> </foaf:knows> http://git-wip-us.apache.org/repos/asf/any23/blob/445d13ab/test-resources/src/test/resources/application/turtle/test1 ---------------------------------------------------------------------- diff --git a/test-resources/src/test/resources/application/turtle/test1 b/test-resources/src/test/resources/application/turtle/test1 index cb603c7..a5573ed 100644 --- a/test-resources/src/test/resources/application/turtle/test1 +++ b/test-resources/src/test/resources/application/turtle/test1 @@ -203,7 +203,7 @@ owl:sameAs <http://data.semanticweb.org/person/karl-aberer> . <http://www.aifb.uni-karlsruhe.de/Personen/viewPersonOWL/id2084instance> - owl:sameAs <http://blog.semantic-web.at/author/pascal-hitzler/#foaf>, <http://korrekt.org/page/Special:URIResolver/Pascal_Hitzler>, <http://semanticweb.org/id/Pascal_Hitzler> . + owl:sameAs <http://blog.semantic-web.at/author/pascal-hitzler/#foaf>, <http://korrekt.org/page/Special:IRIResolver/Pascal_Hitzler>, <http://semanticweb.org/id/Pascal_Hitzler> . <http://identi.ca/user/226> owl:sameAs <http://danbri.org/foaf#danbri>, <http://danbri.org/foaf.rdf#danbri> . http://git-wip-us.apache.org/repos/asf/any23/blob/445d13ab/test-resources/src/test/resources/application/xhtml/index.html ---------------------------------------------------------------------- diff --git a/test-resources/src/test/resources/application/xhtml/index.html b/test-resources/src/test/resources/application/xhtml/index.html index 212d643..2d8129b 100644 --- a/test-resources/src/test/resources/application/xhtml/index.html +++ b/test-resources/src/test/resources/application/xhtml/index.html @@ -213,7 +213,7 @@ Interaction</a></li> <li><a href="/AudioVideo/TT/" class="navlink">Timed Text</a></li> -<li><a href="/Addressing/" class="navlink"><abbr title="Uniform Resource Identifiers">URI/URL</abbr></a></li> +<li><a href="/Addressing/" class="navlink"><abbr title="Uniform Resource Identifiers">IRI/URL</abbr></a></li> <li><a href="/QA/Tools/#validators" class="navlink">Validators</a></li> @@ -299,7 +299,7 @@ Search</a></p> <div id="item184" class="item"><h3><img alt="" width="17" height="11" src="/Icons/right" />W3C Invites Implementations of Speech Synthesis Markup Language (SSML) Version 1.1 (Candidate Recommendation)</h3><p><span class="date">2008-11-07:</span> The <a href="/Voice/">Voice Browser Working Group</a> invites implementation of the Candidate Recommendation of <a href="/TR/2008/CR-speech-synthesis11-20081107/">Speech Synthesis Markup Language (SSML) Version 1.1</a>. The Speech Synthesis Markup Language Specification is designed to provide a rich, XML-based markup language for assisting the generation of synthetic speech in Web and other applications. The essential role of the markup language is to provide authors of synthesizable content a standard way to control aspects of speech such as pronunciation, volume, pitch, rate, etc. across different synthesis-capable platforms. See the <a href="/Voice/2008/ssml11-irp/">implementation report plan</a> and learn more about the <a href="/Voice/" >Voice Browser Activity</a>.<span class="archive"> (<a title="W3C Invites >Implementations of Speech Synthesis Markup Language (SSML) Version 1.1 >(Candidate Recommendation)" href="/News/2008#item184" >rel="details">Permalink</a>) </span></p></div> -<div id="item183" class="item"><h3><img alt="" width="17" height="11" src="/Icons/right" />Note: Legacy extended IRIs for XML resource identification</h3><p><span class="date">2008-11-07:</span> The <a href="/XML/Core/">XML Core Working Group</a> has published the Group Note of <a href="/TR/2008/NOTE-leiri-20081103/">Legacy extended IRIs for XML resource identification</a>. For historic reasons, some formats have allowed variants of IRIs that are somewhat less restricted in syntax, for example XML system identifiers and W3C XML Schema <code>anyURIs</code>. This document provides a definition and a name (Legacy Extended IRI or LEIRI) for these variants for easy reference. These variants have to be used with care; they require further processing before being fully interchangeable as IRIs. New protocols and formats should not use Legacy Extended IRIs. Learn more about the <a href="/XML/">Extensible Markup Language (XML) Activity</a>.<span class="archive"> (<a title="Note: Legacy exten ded IRIs for XML resource identification" href="/News/2008#item183" rel="details">Permalink</a>) </span></p></div> +<div id="item183" class="item"><h3><img alt="" width="17" height="11" src="/Icons/right" />Note: Legacy extended IRIs for XML resource identification</h3><p><span class="date">2008-11-07:</span> The <a href="/XML/Core/">XML Core Working Group</a> has published the Group Note of <a href="/TR/2008/NOTE-leiri-20081103/">Legacy extended IRIs for XML resource identification</a>. For historic reasons, some formats have allowed variants of IRIs that are somewhat less restricted in syntax, for example XML system identifiers and W3C XML Schema <code>anyIRIs</code>. This document provides a definition and a name (Legacy Extended IRI or LEIRI) for these variants for easy reference. These variants have to be used with care; they require further processing before being fully interchangeable as IRIs. New protocols and formats should not use Legacy Extended IRIs. Learn more about the <a href="/XML/">Extensible Markup Language (XML) Activity</a>.<span class="archive"> (<a title="Note: Legacy exten ded IRIs for XML resource identification" href="/News/2008#item183" rel="details">Permalink</a>) </span></p></div> <div id="item182" class="item"><h3><img alt="" width="17" height="11" src="/Icons/right" />Web Content Accessibility Guidelines (WCAG) 2.0 is a Proposed Recommendation</h3><p><span class="date">2008-11-03:</span> The <a href="/WAI/GL/">Web Content Accessibility Guidelines (WCAG) Working Group</a> has published the <a href="/TR/2008/PR-WCAG20-20081103/">Web Content Accessibility Guidelines 2.0</a> as a Proposed Recommendation, and published updated Working Drafts of <a href="/TR/2008/WD-UNDERSTANDING-WCAG20-20081103/">Understanding WCAG 2.0</a>,<a href="/TR/2008/WD-WCAG20-TECHS-20081103/"> Techniques for WCAG 2.0</a>, and <a href="/WAI/WCAG20/quickref/">How to Meet WCAG 2.0</a>. WCAG defines how to make Web sites, Web applications, and other Web content accessible to people with disabilities. Comments are welcome through 2 December 2008. Read the <a href="http://lists.w3.org/Archives/Public/w3c-wai-ig/2008OctDec/0091.html">announcement</a>, <a href="/WAI/intro/wcag20.php">Overview of WCAG 2.0 Documents</a>, and about the <a href="/WAI/">Web Accessibility Initiative</a>.<span class="archive"> (<a title="Web Content Accessibility Guidelines (WCAG) 2.0 is a Proposed Recommendation" href="/News/2008#item182" rel="details">Permalink</a>) </span></p></div> http://git-wip-us.apache.org/repos/asf/any23/blob/445d13ab/test-resources/src/test/resources/application/xhtml/test1 ---------------------------------------------------------------------- diff --git a/test-resources/src/test/resources/application/xhtml/test1 b/test-resources/src/test/resources/application/xhtml/test1 index 212d643..2d8129b 100644 --- a/test-resources/src/test/resources/application/xhtml/test1 +++ b/test-resources/src/test/resources/application/xhtml/test1 @@ -213,7 +213,7 @@ Interaction</a></li> <li><a href="/AudioVideo/TT/" class="navlink">Timed Text</a></li> -<li><a href="/Addressing/" class="navlink"><abbr title="Uniform Resource Identifiers">URI/URL</abbr></a></li> +<li><a href="/Addressing/" class="navlink"><abbr title="Uniform Resource Identifiers">IRI/URL</abbr></a></li> <li><a href="/QA/Tools/#validators" class="navlink">Validators</a></li> @@ -299,7 +299,7 @@ Search</a></p> <div id="item184" class="item"><h3><img alt="" width="17" height="11" src="/Icons/right" />W3C Invites Implementations of Speech Synthesis Markup Language (SSML) Version 1.1 (Candidate Recommendation)</h3><p><span class="date">2008-11-07:</span> The <a href="/Voice/">Voice Browser Working Group</a> invites implementation of the Candidate Recommendation of <a href="/TR/2008/CR-speech-synthesis11-20081107/">Speech Synthesis Markup Language (SSML) Version 1.1</a>. The Speech Synthesis Markup Language Specification is designed to provide a rich, XML-based markup language for assisting the generation of synthetic speech in Web and other applications. The essential role of the markup language is to provide authors of synthesizable content a standard way to control aspects of speech such as pronunciation, volume, pitch, rate, etc. across different synthesis-capable platforms. See the <a href="/Voice/2008/ssml11-irp/">implementation report plan</a> and learn more about the <a href="/Voice/" >Voice Browser Activity</a>.<span class="archive"> (<a title="W3C Invites >Implementations of Speech Synthesis Markup Language (SSML) Version 1.1 >(Candidate Recommendation)" href="/News/2008#item184" >rel="details">Permalink</a>) </span></p></div> -<div id="item183" class="item"><h3><img alt="" width="17" height="11" src="/Icons/right" />Note: Legacy extended IRIs for XML resource identification</h3><p><span class="date">2008-11-07:</span> The <a href="/XML/Core/">XML Core Working Group</a> has published the Group Note of <a href="/TR/2008/NOTE-leiri-20081103/">Legacy extended IRIs for XML resource identification</a>. For historic reasons, some formats have allowed variants of IRIs that are somewhat less restricted in syntax, for example XML system identifiers and W3C XML Schema <code>anyURIs</code>. This document provides a definition and a name (Legacy Extended IRI or LEIRI) for these variants for easy reference. These variants have to be used with care; they require further processing before being fully interchangeable as IRIs. New protocols and formats should not use Legacy Extended IRIs. Learn more about the <a href="/XML/">Extensible Markup Language (XML) Activity</a>.<span class="archive"> (<a title="Note: Legacy exten ded IRIs for XML resource identification" href="/News/2008#item183" rel="details">Permalink</a>) </span></p></div> +<div id="item183" class="item"><h3><img alt="" width="17" height="11" src="/Icons/right" />Note: Legacy extended IRIs for XML resource identification</h3><p><span class="date">2008-11-07:</span> The <a href="/XML/Core/">XML Core Working Group</a> has published the Group Note of <a href="/TR/2008/NOTE-leiri-20081103/">Legacy extended IRIs for XML resource identification</a>. For historic reasons, some formats have allowed variants of IRIs that are somewhat less restricted in syntax, for example XML system identifiers and W3C XML Schema <code>anyIRIs</code>. This document provides a definition and a name (Legacy Extended IRI or LEIRI) for these variants for easy reference. These variants have to be used with care; they require further processing before being fully interchangeable as IRIs. New protocols and formats should not use Legacy Extended IRIs. Learn more about the <a href="/XML/">Extensible Markup Language (XML) Activity</a>.<span class="archive"> (<a title="Note: Legacy exten ded IRIs for XML resource identification" href="/News/2008#item183" rel="details">Permalink</a>) </span></p></div> <div id="item182" class="item"><h3><img alt="" width="17" height="11" src="/Icons/right" />Web Content Accessibility Guidelines (WCAG) 2.0 is a Proposed Recommendation</h3><p><span class="date">2008-11-03:</span> The <a href="/WAI/GL/">Web Content Accessibility Guidelines (WCAG) Working Group</a> has published the <a href="/TR/2008/PR-WCAG20-20081103/">Web Content Accessibility Guidelines 2.0</a> as a Proposed Recommendation, and published updated Working Drafts of <a href="/TR/2008/WD-UNDERSTANDING-WCAG20-20081103/">Understanding WCAG 2.0</a>,<a href="/TR/2008/WD-WCAG20-TECHS-20081103/"> Techniques for WCAG 2.0</a>, and <a href="/WAI/WCAG20/quickref/">How to Meet WCAG 2.0</a>. WCAG defines how to make Web sites, Web applications, and other Web content accessible to people with disabilities. Comments are welcome through 2 December 2008. Read the <a href="http://lists.w3.org/Archives/Public/w3c-wai-ig/2008OctDec/0091.html">announcement</a>, <a href="/WAI/intro/wcag20.php">Overview of WCAG 2.0 Documents</a>, and about the <a href="/WAI/">Web Accessibility Initiative</a>.<span class="archive"> (<a title="Web Content Accessibility Guidelines (WCAG) 2.0 is a Proposed Recommendation" href="/News/2008#item182" rel="details">Permalink</a>) </span></p></div> http://git-wip-us.apache.org/repos/asf/any23/blob/445d13ab/test-resources/src/test/resources/html/mixed/01-xfn-foaf.html ---------------------------------------------------------------------- diff --git a/test-resources/src/test/resources/html/mixed/01-xfn-foaf.html b/test-resources/src/test/resources/html/mixed/01-xfn-foaf.html index f86ad2c..4c00a25 100644 --- a/test-resources/src/test/resources/html/mixed/01-xfn-foaf.html +++ b/test-resources/src/test/resources/html/mixed/01-xfn-foaf.html @@ -39,7 +39,7 @@ <link rel="alternate" type="application/rss+xml" title="Weblog Netzgeschaedigt RSS Feed" href="http://weblog.netzgeschaedigt.de/?feed=rss2" /> <link rel="pingback" href="http://weblog.netzgeschaedigt.de/xmlrpc.php" /> -<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://weblog.netzgeschaedigt.de/xmlrpc.php?rsd" /> +<link rel="EditIRI" type="application/rsd+xml" title="RSD" href="http://weblog.netzgeschaedigt.de/xmlrpc.php?rsd" /> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://weblog.netzgeschaedigt.de/wp-includes/wlwmanifest.xml" /> <script type='text/javascript' src='http://weblog.netzgeschaedigt.de/wp-includes/js/jquery/jquery.js?ver=1.2.3'></script> <script type='text/javascript' src='http://weblog.netzgeschaedigt.de/wp-includes/js/thickbox/thickbox.js?ver=3.1'></script> http://git-wip-us.apache.org/repos/asf/any23/blob/445d13ab/test-resources/src/test/resources/html/rdfa/ansa_2010-02-26_12645863.html ---------------------------------------------------------------------- diff --git a/test-resources/src/test/resources/html/rdfa/ansa_2010-02-26_12645863.html b/test-resources/src/test/resources/html/rdfa/ansa_2010-02-26_12645863.html index edcb03c..2e7bb48 100644 --- a/test-resources/src/test/resources/html/rdfa/ansa_2010-02-26_12645863.html +++ b/test-resources/src/test/resources/html/rdfa/ansa_2010-02-26_12645863.html @@ -557,7 +557,7 @@ economiche.<h1 style="margin: 10px 0 0">Entity section</h1> Alimentazione e agricoltura biologica </li> <li> - <h4><em>ANSA</em><a href="/web/static/ansa_turismo.html"> TURISMO<img src="/web/images/arrow_dx_map.gif" alt="vai al sito" /></a></h4> + <h4><em>ANSA</em><a href="/web/static/ansa_turismo.html"> TIRISMO<img src="/web/images/arrow_dx_map.gif" alt="vai al sito" /></a></h4> Il turismo nelle Regioni italiane </li> http://git-wip-us.apache.org/repos/asf/any23/blob/445d13ab/test-resources/src/test/resources/html/rdfa/rdfa-issue186-2.xhtml ---------------------------------------------------------------------- diff --git a/test-resources/src/test/resources/html/rdfa/rdfa-issue186-2.xhtml b/test-resources/src/test/resources/html/rdfa/rdfa-issue186-2.xhtml index 2869987..9e5088e 100644 --- a/test-resources/src/test/resources/html/rdfa/rdfa-issue186-2.xhtml +++ b/test-resources/src/test/resources/html/rdfa/rdfa-issue186-2.xhtml @@ -107,7 +107,7 @@ </span> </dd> - <dt>URI:</dt> + <dt>IRI:</dt> <dd><a rel="owl:sameAs" href="http://richard.cyganiak.de/foaf.rdf#cygri">http://richard.cyganiak.de/foaf.rdf#cygri</a></dd> </dl> @@ -261,7 +261,7 @@ </dd> <dt> - <a href="http://www.w3.org/TR/cooluris/"><span property="dc:title">Cool URIs for the Semantic Web</span></a> + <a href="http://www.w3.org/TR/cooluris/"><span property="dc:title">Cool IRIs for the Semantic Web</span></a> </dt> <dd> Leo Sauermann, Richard Cyganiak, Danny Ayers, Max Völkel. http://git-wip-us.apache.org/repos/asf/any23/blob/445d13ab/test-resources/src/test/resources/microformats/hcard/infinite-loop.html ---------------------------------------------------------------------- diff --git a/test-resources/src/test/resources/microformats/hcard/infinite-loop.html b/test-resources/src/test/resources/microformats/hcard/infinite-loop.html index 6194713..d1d080c 100644 --- a/test-resources/src/test/resources/microformats/hcard/infinite-loop.html +++ b/test-resources/src/test/resources/microformats/hcard/infinite-loop.html @@ -4741,7 +4741,7 @@ <!-- POST FOOTER --> <div class="container_16 postfooter"> - <!-- SECURITY/AWARDS --> + <!-- SECIRITY/AWARDS --> <div class="align-center"> http://git-wip-us.apache.org/repos/asf/any23/blob/445d13ab/test-resources/src/test/resources/microformats/hcard/performance.html ---------------------------------------------------------------------- diff --git a/test-resources/src/test/resources/microformats/hcard/performance.html b/test-resources/src/test/resources/microformats/hcard/performance.html index ee8ee2f..dcd17f7 100644 --- a/test-resources/src/test/resources/microformats/hcard/performance.html +++ b/test-resources/src/test/resources/microformats/hcard/performance.html @@ -26,7 +26,7 @@ <link rel="apple-touch-icon" href="//en.wikipedia.org/apple-touch-icon.png" /> <link rel="shortcut icon" href="/favicon.ico" /> <link rel="search" type="application/opensearchdescription+xml" href="/w/opensearch_desc.php" title="Wikipedia (en)" /> -<link rel="EditURI" type="application/rsd+xml" href="//en.wikipedia.org/w/api.php?action=rsd" /> +<link rel="EditIRI" type="application/rsd+xml" href="//en.wikipedia.org/w/api.php?action=rsd" /> <link rel="copyright" href="//creativecommons.org/licenses/by-sa/3.0/" /> <link rel="alternate" type="application/atom+xml" title="Wikipedia Atom feed" href="/w/index.php?title=Special:RecentChanges&feed=atom" /> <link rel="stylesheet" href="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&lang=en&modules=ext.gadget.teahouse%7Cext.wikihiero%7Cmediawiki.legacy.commonPrint%2Cshared%7Cskins.vector&only=styles&skin=vector&*" type="text/css" media="all" /> http://git-wip-us.apache.org/repos/asf/any23/blob/445d13ab/test-resources/src/test/resources/org/apache/any23/extractor/rdf/embedded_json-ld.html ---------------------------------------------------------------------- diff --git a/test-resources/src/test/resources/org/apache/any23/extractor/rdf/embedded_json-ld.html b/test-resources/src/test/resources/org/apache/any23/extractor/rdf/embedded_json-ld.html index 8cf02c1..d26f047 100644 --- a/test-resources/src/test/resources/org/apache/any23/extractor/rdf/embedded_json-ld.html +++ b/test-resources/src/test/resources/org/apache/any23/extractor/rdf/embedded_json-ld.html @@ -11,7 +11,7 @@ <link rel="apple-touch-icon" href="http://bits.wikimedia.org/apple-touch/wikipedia.png"> <link rel="shortcut icon" href="http://bits.wikimedia.org/favicon/wikipedia.ico"> <link rel="search" type="application/opensearchdescription+xml" href="http://en.wikipedia.org/w/opensearch_desc.php" title="Wikipedia (en)"> -<link rel="EditURI" type="application/rsd+xml" href="http://en.wikipedia.org/w/api.php?action=rsd"> +<link rel="EditIRI" type="application/rsd+xml" href="http://en.wikipedia.org/w/api.php?action=rsd"> <link rel="copyright" href="http://creativecommons.org/licenses/by-sa/3.0/"> <link rel="alternate" type="application/atom+xml" title="Wikipedia Atom feed" href="http://en.wikipedia.org/w/index.php?title=Special:RecentChanges&feed=atom"> <link rel="canonical" href="http://en.wikipedia.org/wiki/Ti%C3%ABsto">
