Releases: gawati/gawati-data
Releases · gawati/gawati-data
v 1.19
v 1.18
v 1.17
v 1.16
v 1.15
v 1.14
This version deprecates the need for a separate gawati-data-xml package.
The data folder has been migrated from /db/apps/gw-data
to /db/docs/gawati-data
.
For existing installations, The below script will move your data from the old folder structure to the new one (Run this after installing the new gawati-data
package)
xquery version "3.1";
xmldb:move(
"/db/apps/gw-data/akn",
"/db/docs/gawati-data"
), xmldb:move(
"/db/apps/gw-data/akn_ft",
"/db/docs/gawati-data"
)
v 1.13
v 1.12
v 1.11
v 1.9
This version provides a search syntax based search API, which needs the following HTTPD config:
<Location "/gw/service/search/filter/">
AddType text/cache-manifest .appcache
ProxyPass "http://localhost:8080/exist/restxq/gw/search/filter/json"
ProxyPassReverse "http://localhost:8080/exist/restxq/gw/search/filter/json"
ProxyPassReverseCookiePath /exist /
SetEnv force-proxy-request-1.0 1
SetEnv proxy-nokeepalive 1
</Location>