-- -- $Id$ -- -- This file is part of the OpenLink Software Virtuoso Open-Source (VOS) -- project. -- -- Copyright (C) 1998-2014 OpenLink Software -- -- This project is free software; you can redistribute it and/or modify it -- under the terms of the GNU General Public License as published by the -- Free Software Foundation; only version 2 of the License, dated June 1991. -- -- This program is distributed in the hope that it will be useful, but -- WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- General Public License for more details. -- -- You should have received a copy of the GNU General Public License along -- with this program; if not, write to the Free Software Foundation, Inc., -- 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -- --set ignore_params=on; -- Facets web page registry_set ('_fct_xslt_', case when registry_get('_fct_url_') = 0 then 'file://fct/' else registry_get('_fct_url_') end); create procedure fct_view_info (in tree any, in ctx int, in txt any) { declare pos, lim, offs int; declare mode varchar; pos := 1 + fct_view_pos (tree); tree := xpath_eval ('//view', tree); mode := cast (xpath_eval ('./@type', tree, 1) as varchar); lim := atoi (cast (xpath_eval ('./@limit', tree, 1) as varchar)); offs := atoi (cast (xpath_eval ('./@offset', tree, 1) as varchar)); http ('
These are example facet views and SPARQL queries in the server.
'); http_value (fsq_title); http (' | '); http_value ( fsq_expln ); http (' |
There are currently no featured views. | '); } http ('
These queries will open in iSPARQL - a SPARQL query visualization and editing tool.
There are currently no saved SPARQL queries.
'); } http('
Your query has been saved.
Please bookmark this link: '); http_value ( title ); http (' to return to it.