diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..50cb4eb --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2025 Knud Möller, BerlinOnline GmbH + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/README.md b/README.md index 281051a..2a7c937 100644 --- a/README.md +++ b/README.md @@ -73,3 +73,7 @@ Jinja-RDF is inspired by [Jekyll-RDF](https://github.com/AKSW/jekyll-rdf), an ex Jekyll is a Ruby application, and so Jekyll-RDF uses [Ruby-RDF](https://github.com/ruby-rdf). Ruby-RDF is great, but I had some issues loading largish datasets with it. Also, I find the Jinja2 templating language more convenient than Liquid, that Jekyll uses. + +## License + +All code in this repository is published under the [MIT License](License). diff --git a/berlinonline/jinjardf/tests/data/bnodes.ttl b/berlinonline/jinjardf/tests/data/bnodes.ttl new file mode 100644 index 0000000..2079cca --- /dev/null +++ b/berlinonline/jinjardf/tests/data/bnodes.ttl @@ -0,0 +1,11 @@ +@prefix bnodes: <https://berlinonline.github.io/jinja-rdf/example/bnodes/> . + +bnodes:something + bnodes:link bnodes:something_else ; + bnodes:link_2 [ + bnodes:link_3 "hello" ; + bnodes:link_4 [ + bnodes:link_3 "world" ; + ] + ] ; +. \ No newline at end of file