@prefix rdf: . @prefix rdfs: . @prefix dcterms: . @prefix foaf: . @prefix cpack: . # This file is a Turtle-format RDF file that describes the package. It # *must* be located in rdf/cpack/swish.ttl # # Author is a FOAF Person. If you have a FOAF profile, you can link to # this. Otherwise you can specify the information inline as done below. # See http://xmlns.com/foaf/spec/ for defines fields. <> a cpack:Package ; cpack:packageName "swish" ; dcterms:title "Add Prolog interaction to ClioPatria" ; cpack:author [ a foaf:Person ; foaf:name "Jan Wielemaker" ; foaf:mbox ; ] ; cpack:primaryRepository [ a cpack:GitRepository ; cpack:gitURL ] ; cpack:description """Package description goes here. You can use markdown. Make the SWI-Prolog [SWISH](https://github.com/SWI-Prolog/swish.git) package available as a ClioPatria _cpack_. SWISH brings a Prolog interface to ClioPatria, providing: - Ask RDF queries about our data - Make example programs available about your data - Save an example program and share it with anyone on the web - Collaborate on a program using [TogetherJS](https://togetherjs.com/) - Manage a server remotely from the Prolog shell (requires login with `admin` rigths). """ .