View source with formatted comments or as raw
    1/*  Part of ClioPatria SeRQL and SPARQL server
    2
    3    Author:        Jan Wielemaker
    4    E-mail:        J.Wielemaker@cs.vu.nl
    5    WWW:           http://www.swi-prolog.org
    6    Copyright (C): 2014, University of Amsterdam,
    7		   VU University Amsterdam
    8
    9    This program is free software; you can redistribute it and/or
   10    modify it under the terms of the GNU General Public License
   11    as published by the Free Software Foundation; either version 2
   12    of the License, or (at your option) any later version.
   13
   14    This program is distributed in the hope that it will be useful,
   15    but WITHOUT ANY WARRANTY; without even the implied warranty of
   16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   17    GNU General Public License for more details.
   18
   19    You should have received a copy of the GNU General Public
   20    License along with this library; if not, write to the Free Software
   21    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   22
   23    As a special exception, if you link this library with other files,
   24    compiled with a Free Software compiler, to produce an executable, this
   25    library does not by itself cause the resulting executable to be covered
   26    by the GNU General Public License. This exception does not however
   27    invalidate any other reasons why the executable file might be covered by
   28    the GNU General Public License.
   29*/
   30
   31:- module(cliopatria_pengines, []).   32:- use_module(library(pengines), []).   33:- use_module(pengine_sandbox:library(semweb/rdf_db)).   34:- use_module(pengine_sandbox:library(semweb/rdfs)).   35:- use_module(library(sandbox), []).   36
   37/** <module> Provide pengines Prolog and JavaScript API
   38
   39This module makes the ClioPatria RDF  API available through the pengines
   40package. Pengines provide an ideal mechanism for accessing the data from
   41web applications through JavaScript or from other Prolog processes using
   42pengine_rpc/3.
   43
   44@see http://www.swi-prolog.org/pldoc/package/pengines.html
   45*/