Mercurial > hg > dtl-dml-home
annotate var/dml/config-enabled/isearch.pl.disabled @ 16:b2b7aecaeb2c
Added DML CPACK archive
author | samer |
---|---|
date | Fri, 23 Jan 2015 17:16:06 +0000 |
parents | b39b8b8f7e83 |
children |
rev | line source |
---|---|
samer@6 | 1 :- module(conf_isearch, []). |
samer@6 | 2 :- use_module(library(http/http_dispatch)). |
samer@6 | 3 :- use_module(isearch(applications/isearch)). |
samer@6 | 4 :- use_module(cliopatria(hooks)). |
samer@6 | 5 |
samer@6 | 6 /** <module> Interactive search |
samer@6 | 7 |
samer@6 | 8 Provide interactive search based on property-chains and multi-facetted |
samer@6 | 9 browsing. |
samer@6 | 10 |
samer@6 | 11 @author Michiel Hildebrand |
samer@6 | 12 */ |
samer@6 | 13 |
samer@6 | 14 % Hijack the search-field, redirecting the queries to the interactive |
samer@6 | 15 % search page. |
samer@6 | 16 |
samer@6 | 17 % SA- disabled |
samer@6 | 18 % :- http_handler(cliopatria(isearch_literal), |
samer@6 | 19 % isearch_page([ header(false), |
samer@6 | 20 % query_type(literal) |
samer@6 | 21 % ]), |
samer@6 | 22 % [id(list_triples_with_literal), priority(10)]). |
samer@6 | 23 % :- http_handler(cliopatria(isearch), |
samer@6 | 24 % isearch_page([ header(false) |
samer@6 | 25 % ]), |
samer@6 | 26 % [id(search), priority(10)]). |
samer@6 | 27 |
samer@6 | 28 |
samer@6 | 29 |
samer@6 | 30 |