Mercurial > hg > dml-home
annotate var/dml/config-enabled/isearch.pl @ 100:a4cd935561d4 dml-dockerised tip
small updates and version pin for cliopatria
author | wolffd <wolffd.mail@googlemail.com> |
---|---|
date | Fri, 29 Jun 2018 17:48:41 +0100 |
parents | dd7f423292ee |
children |
rev | line source |
---|---|
samer@23 | 1 :- module(conf_isearch, []). |
samer@23 | 2 :- use_module(library(http/http_dispatch)). |
samer@23 | 3 :- use_module(isearch(applications/isearch)). |
samer@23 | 4 |
samer@23 | 5 /** <module> Interactive search |
samer@23 | 6 |
samer@23 | 7 Provide interactive search based on property-chains and multi-facetted |
samer@23 | 8 browsing. |
samer@23 | 9 |
samer@23 | 10 @author Michiel Hildebrand |
samer@23 | 11 */ |
samer@23 | 12 |
samer@23 | 13 % Hijack the search-field, redirecting the queries to the interactive |
samer@23 | 14 % search page. |
samer@23 | 15 |
samer@23 | 16 % SA- disabled |
samer@23 | 17 % :- http_handler(cliopatria(isearch_literal), |
samer@23 | 18 % isearch_page([ header(false), |
samer@23 | 19 % query_type(literal) |
samer@23 | 20 % ]), |
samer@23 | 21 % [id(list_triples_with_literal), priority(10)]). |
samer@23 | 22 % :- http_handler(cliopatria(isearch), |
samer@23 | 23 % isearch_page([ header(false) |
samer@23 | 24 % ]), |
samer@23 | 25 % [id(search), priority(10)]). |