├── .gitignore ├── LICENSE ├── README.md ├── css ├── bootstrap-responsive.css ├── bootstrap-responsive.min.css ├── bootstrap.css └── bootstrap.min.css ├── index.html ├── js └── jsonld.js └── spec ├── js ├── jsonld.js └── respec-w3c-extensions.js └── latest ├── core ├── core.jsonld ├── index.html └── vocabulary.png ├── linked-data-fragments └── index.html ├── schema.org └── index.html └── triple-pattern-fragments └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanthaler/Hydra/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanthaler/Hydra/HEAD/README.md -------------------------------------------------------------------------------- /css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanthaler/Hydra/HEAD/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanthaler/Hydra/HEAD/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanthaler/Hydra/HEAD/css/bootstrap.css -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanthaler/Hydra/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanthaler/Hydra/HEAD/index.html -------------------------------------------------------------------------------- /js/jsonld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanthaler/Hydra/HEAD/js/jsonld.js -------------------------------------------------------------------------------- /spec/js/jsonld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanthaler/Hydra/HEAD/spec/js/jsonld.js -------------------------------------------------------------------------------- /spec/js/respec-w3c-extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanthaler/Hydra/HEAD/spec/js/respec-w3c-extensions.js -------------------------------------------------------------------------------- /spec/latest/core/core.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanthaler/Hydra/HEAD/spec/latest/core/core.jsonld -------------------------------------------------------------------------------- /spec/latest/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanthaler/Hydra/HEAD/spec/latest/core/index.html -------------------------------------------------------------------------------- /spec/latest/core/vocabulary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanthaler/Hydra/HEAD/spec/latest/core/vocabulary.png -------------------------------------------------------------------------------- /spec/latest/linked-data-fragments/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanthaler/Hydra/HEAD/spec/latest/linked-data-fragments/index.html -------------------------------------------------------------------------------- /spec/latest/schema.org/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanthaler/Hydra/HEAD/spec/latest/schema.org/index.html -------------------------------------------------------------------------------- /spec/latest/triple-pattern-fragments/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanthaler/Hydra/HEAD/spec/latest/triple-pattern-fragments/index.html --------------------------------------------------------------------------------