[
https://issues.apache.org/jira/browse/ANY23-174?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13864576#comment-13864576
]
Wes Turner commented on ANY23-174:
----------------------------------
Thanks.
I tried with 0.9.1 (master from github.com/apache/any23) and with the ANY23-137
commit you linked to.
0.9.1 had the same issue.
ANY23-137 failed to build for me:
git clone git://git.apache.org/any23.git
git checkout 5d6873ccabbf4e4666d7ae204dd18cef9df4a535 # ANY23-137
git reset --hard
mvn -Dmaven.test.skip=true clean install -U
Build output:
[INFO] Apache Any23 :: Base API .......................... SUCCESS [3.096s]
[INFO] Apache Any23 :: Test Resources .................... SUCCESS [0.496s]
[INFO] Apache Any23 :: NQuads Parser and Writer .......... FAILURE [12.999s]
[INFO] Apache Any23 :: CSV Utilities ..................... SKIPPED
[INFO] Apache Any23 :: Mime Type Detection ............... SKIPPED
[INFO] Apache Any23 :: Encoding Detection ................ SKIPPED
[INFO] Apache Any23 :: Core .............................. SKIPPED
[INFO] Apache Any23 :: Plugins :: Basic Crawler .......... SKIPPED
[INFO] Apache Any23 :: Plugins :: HTML Scraper ........... SKIPPED
[INFO] Apache Any23 :: Plugins :: Office Scraper ......... SKIPPED
[INFO] Apache Any23 :: Plugins :: Integration Test ....... SKIPPED
[INFO] Apache Any23 :: Service ........................... SKIPPED
[INFO]
------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO]
------------------------------------------------------------------------
[INFO] Total time: 28.215s
[INFO] Finished at: Tue Jan 07 13:11:23 CST 2014
[INFO] Final Memory: 15M/39M
[INFO]
------------------------------------------------------------------------
[ERROR] Failed to execute goal on project apache-any23-nquads: Could not
resolve dependencies for project
org.apache.any23:apache-any23-nquads:jar:0.9.0-SNAPSHOT: Could not find
artifact org.apache.any23:apache-any23-test-resources:jar:tests:0.9.0-SNAPSHOT
in any23-repository-external (http://svn.apache.org/repos/asf/any23/repo-ext/)
-> [Help 1]
So, what you're telling me is the RDFa (Lite 1.1, which is valid RDFa)
extractor is not yet correct/compliant in any version of any23?
For reference, I'm working / corss-validating with:
https://github.com/RDFLib/PyRDFa
> Incorrect RDFa Lite 1.1 extractions
> -----------------------------------
>
> Key: ANY23-174
> URL: https://issues.apache.org/jira/browse/ANY23-174
> Project: Apache Any23
> Issue Type: Bug
> Affects Versions: 0.9.0
> Reporter: Wes Turner
> Labels: rdfa, rdfa-lite
>
> RDFa Lite 1.1 Test Case
> From: http://www.w3.org/TR/rdfa-lite/#vocab--typeof--and-property
> Input
> --------
> $ any23 rover [-e html-rdfa11] -f turtle
> <p vocab="http://schema.org/" typeof="Person">
> My name is
> <span property="name">Manu Sporny</span>
> and you can give me a ring via
> <span property="telephone">1-800-555-0199</span>
> or visit
> <a property="url" href="http://manu.sporny.org/">my homepage</a>.
> </p>
> Output
> -----------
> _:node18dj3bhkhx1 a <http://schema.org/Person> ;
> <http://schema.org/name> "Manu Sporny" ;
> <http://schema.org/telephone> "1-800-555-0199" .
> <http://manu.sporny.org/> <http://schema.org/url> <http://manu.sporny.org/> .
> Expected Output
> ---------------------------
> _:node18dj3bhkhx1 a <http://schema.org/Person> ;
> <http://schema.org/name> "Manu Sporny" ;
> <http://schema.org/telephone> "1-800-555-0199" .
> <http://schema.org/url> <http://manu.sporny.org/> .
--
This message was sent by Atlassian JIRA
(v6.1.5#6160)