Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexmilowski/green-turtle
An RDFa 1.1. implementation for browsers.
https://github.com/alexmilowski/green-turtle
Last synced: about 1 month ago
JSON representation
An RDFa 1.1. implementation for browsers.
- Host: GitHub
- URL: https://github.com/alexmilowski/green-turtle
- Owner: alexmilowski
- License: mit
- Created: 2013-09-26T13:29:55.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2016-06-14T19:34:18.000Z (over 8 years ago)
- Last Synced: 2024-08-01T12:35:10.955Z (4 months ago)
- Language: JavaScript
- Size: 15.4 MB
- Stars: 56
- Watchers: 14
- Forks: 20
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - alexmilowski/green-turtle - An RDFa 1.1. implementation for browsers. (others)
README
# Green Turtle
An RDFa 1.1 implementation in JavaScript for browsers.
Note: This project has transitioned from its former [Google Code project](http://code.google.com/p/green-turtle).
## Conformance
Green Turtle passes all the tests for XML, XHTML1, XHTML5, HTML4, and HTML5 as provided by the [RDFa WG](http://rdfa.info/test-suite/) except for the following notable issues:
* [XML Test 0332](http://rdfa.info/test-suite/test-cases/rdfa1.1/xml/0332.xml) uses a bare `lang` attribute instead of an `xml:lang` attribute. I believe this is a bug in the test. Green Turtle does the right thing with respect to `xml:lang` attributes in XML and `lang` attributes in HTML. A `lang` attribute in arbitrary XML has no special meaning.
* [XHTML1 Test 0198](http://rdfa.info/test-suite/test-cases/rdfa1.1/xhtml1/0198.xhtml) and [XHTML5 Test 0198](http://rdfa.info/test-suite/test-cases/rdfa1.1/xhtml5/0198.xhtml) both have extra namespaces serialized in the XMLLiteral as expected output. The input for the test cases does not have XML namespace attributes. Instead, they use a `prefix` attribute to declare the prefixes used in the RDFa annotations. Meanwhile, when the literal is serialized, they are not in the in-scope namespaces. The RDFa specification says nothing about doing any kind of merging of prefixes and in-scope namespaces. I believe these test cases are incorrect. The correct serialization will not contain the `rdf:` and `foaf:` namespace declarations as they are not present in the source document.I have submitted these issue to the working group for consideration.
## Test Suite
To run the tests yourself, you will need Java and Ant installed and then do the following:
1. Build Green Turtle by running [ant](http://ant.apache.org) in the root directory.
2. Build the SPARQL service:
cd tests/sparql-service/
ant
cd ../..
3. Cache the test cases:
cd tests/harness
./make-cache.sh
./download-xml.sh
./download-xhtml1.sh
./download-xhtml5.sh
./download-html4.sh
./download-html5.sh
4. Run the server:
../server/server.sh web.xml
5. Visit [http://localhost:8888/](http://localhost:8888/) in your browser.
6. Select the markup language from the drop-down list box and hit the 'Test' button. The system will run the test cases rather silently unless you look at the console. Eventually, it will output a table of the status of all the test cases.