diff options
author | Alejandro Pulver <alepulver@FreeBSD.org> | 2007-09-29 05:50:46 +0000 |
---|---|---|
committer | Alejandro Pulver <alepulver@FreeBSD.org> | 2007-09-29 05:50:46 +0000 |
commit | 17a88465c8d3014adea077e8329ec2f2c9b339bd (patch) | |
tree | 7db0e8b5e0544cb45400c35754f98417fc108992 /databases | |
parent | 51e81dd4c214134073c867a19945ff83395fdbd8 (diff) | |
download | ports-17a88465c8d3014adea077e8329ec2f2c9b339bd.tar.gz ports-17a88465c8d3014adea077e8329ec2f2c9b339bd.zip |
Notes
Diffstat (limited to 'databases')
-rw-r--r-- | databases/Makefile | 1 | ||||
-rw-r--r-- | databases/exist/Makefile | 62 | ||||
-rw-r--r-- | databases/exist/distinfo | 3 | ||||
-rw-r--r-- | databases/exist/files/eXist.in | 70 | ||||
-rw-r--r-- | databases/exist/pkg-descr | 8 | ||||
-rw-r--r-- | databases/exist/pkg-plist | 3774 |
6 files changed, 3918 insertions, 0 deletions
diff --git a/databases/Makefile b/databases/Makefile index 52acbce00cb1..238bef358b5a 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -46,6 +46,7 @@ SUBDIR += erlang-mysql SUBDIR += erserver SUBDIR += evolution-data-server + SUBDIR += exist SUBDIR += fastdb SUBDIR += firebird-client SUBDIR += firebird-server diff --git a/databases/exist/Makefile b/databases/exist/Makefile new file mode 100644 index 000000000000..18597f9e93d5 --- /dev/null +++ b/databases/exist/Makefile @@ -0,0 +1,62 @@ +# Ports collection makefile for: eXist +# Date created: August 9, 2007 +# Whom: Anton Yudin (<contact@toha.org.ua>) +# +# $FreeBSD$ +# + +PORTNAME= exist +PORTVERSION= 1.1.1 +CATEGORIES= databases java +MASTER_SITES= SF +DISTNAME= eXist-${PORTVERSION}-newcore-build4311 +EXTRACT_SUFX= .jar +EXTRACT_ONLY= # + +MAINTAINER= contact@toha.org.ua +COMMENT= Open Source Native XML Database + +USE_ZIP= yes +USE_JAVA= yes +JAVA_VERSION= 1.5+ +USE_RC_SUBR= eXist +REINPLACE_ARGS= -i '' +NO_BUILD= yes + +DATADIR= ${PREFIX}/eXist +EXIST_USER?= ${WWWOWN} +EXIST_GROUP?= ${WWWGRP} + +SUB_LIST= JAVA="${JAVA}" \ + EXIST_USER=${EXIST_USER} \ + EXIST_GROUP=${EXIST_GROUP} + +do-install: + @${JAVA} -Djava.awt.headless=true -jar ${DISTDIR}/${DISTFILES} \ + -p ${DATADIR} + @${CHOWN} -R ${EXIST_USER}:${EXIST_GROUP} ${DATADIR} + +post-install: +# Fix interpreter line. + @${FIND} ${DATADIR} -type f -name "*.sh" | ${XARGS} \ + ${REINPLACE_CMD} -e 's|#!/bin/bash|#!${SH}|' + +# Generate pkg-plist (at maintainer's request, after installing). +# - Configuration files and logs are saved there, so instead of producing +# errors when removing directories, inform the user once at the end. +# - Do not generate when installing, since the configuration files would be +# added and removed in the next update. +maint-gen-plist: install + @if [ -f ${PLIST} ]; then \ + ${ECHO_CMD} "ERROR: the packaging list already exists."; \ + ${FALSE}; \ + fi + @(cd ${DATADIR} && \ + ${FIND} * -not -type d | ${SED} -e 's|^|%%DATADIR%%/|' && \ + ${FIND} -d * -type d | ${SED} -e 's|^|@dirrmtry %%DATADIR%%/|' && \ + ${ECHO_CMD} '@unexec rmdir %D/%%DATADIR%% 2>/dev/null || \ + ${ECHO_CMD} "If you are permanently removing this port, remember to delete the configuration files and logs left in \"%D/%%DATADIR%%\"." | \ + ${FMT}') \ + > ${PLIST} + +.include <bsd.port.mk> diff --git a/databases/exist/distinfo b/databases/exist/distinfo new file mode 100644 index 000000000000..4271aa8fb243 --- /dev/null +++ b/databases/exist/distinfo @@ -0,0 +1,3 @@ +MD5 (eXist-1.1.1-newcore-build4311.jar) = cbb35e3452209b39cfb7c9d4fc11dece +SHA256 (eXist-1.1.1-newcore-build4311.jar) = bbb10e037a939b8fcee57bff63380ca6a94ccf369d9365ddf700c63ad60c50c3 +SIZE (eXist-1.1.1-newcore-build4311.jar) = 28535724 diff --git a/databases/exist/files/eXist.in b/databases/exist/files/eXist.in new file mode 100644 index 000000000000..0e9e0df92cb6 --- /dev/null +++ b/databases/exist/files/eXist.in @@ -0,0 +1,70 @@ +#!/bin/sh +# +# eXist startup script. +# +# $FreeBSD$ +# + +# PROVIDE: eXist +# REQUIRE: NETWORKING SERVERS + +# Add the following lines to /etc/rc.conf to enable eXist: +# eXist_enable (bool): Set to "NO" by default. +# Set it to "YES" to enable eXist +# eXist_flags (str): Set to "-server" by default. +# Extra JVM flags. +# +. %%RC_SUBR%% + +name="eXist" +rcvar=`set_rcvar` + +# Read settings and set default values. +load_rc_config "$name" +: ${eXist_enable="NO"} +: ${eXist_flags="-server -Djetty.port=8081"} + +# Variables. +eXist_user="%%EXIST_USER%%" +eXist_group="%%EXIST_GROUP%%" +eXist_home="%%DATADIR%%" +java_flags="-Xms16000k -Xmx128000k -Dfile.encoding=UTF-8 -Dexist.home=${eXist_home} -Djetty.home=${eXist_home}/tools/jetty -Djava.endorsed.dirs=${eXist_home}/lib/endorsed -jar ${eXist_home}/start.jar" +java_command="%%JAVA%% ${java_flags}" + +# Commands. +pidfile="/var/run/${name}.pid" +command="/usr/sbin/daemon" +flags="-f -p ${pidfile} ${java_command} jetty ${eXist_flags} >${eXist_home}/startup.log 2>&1" +stop_cmd="eXist_stop" + +# Subvert the check_pidfile procname check. +if [ -f $pidfile ]; then + read rc_pid junk < $pidfile + if [ ! -z "$rc_pid" ]; then + procname=`ps -o ucomm= $rc_pid` + fi +fi +if [ -z "$procname" ]; then + procname=nonexistent +fi + +eXist_stop() +{ + rc_pid=$(check_pidfile $pidfile $procname) + + if [ -z "$rc_pid" ]; then + [ -n "$rc_fast" ] && return 0 + if [ -n "$pidfile" ]; then + echo "${name} not running? (check $pidfile)." + else + echo "${name} not running?" + fi + return 1 + fi + + echo "Stopping ${name}." + ${java_command} shutdown >${eXist_home}/shutdown.log 2>&1 + wait_for_pids $rc_pid +} + +run_rc_command "$1" diff --git a/databases/exist/pkg-descr b/databases/exist/pkg-descr new file mode 100644 index 000000000000..6c07ca95b6ef --- /dev/null +++ b/databases/exist/pkg-descr @@ -0,0 +1,8 @@ +eXist is an Open Source native XML database featuring efficient, index-based +XQuery processing, automatic indexing, extensions for full-text search, +XUpdate support, XQuery update extensions and tight integration with existing +XML development tools. The database implements the current XQuery 1.0 working +drafts, with exception of the schema import and schema validation features +defined as optional in the XQuery specification. + +WWW: http://exist-db.org/ diff --git a/databases/exist/pkg-plist b/databases/exist/pkg-plist new file mode 100644 index 000000000000..404d3a143e6d --- /dev/null +++ b/databases/exist/pkg-plist @@ -0,0 +1,3774 @@ +%%DATADIR%%/LICENSE +%%DATADIR%%/README +%%DATADIR%%/Uninstaller/uninstaller.jar +%%DATADIR%%/VERSION.txt +%%DATADIR%%/atom-example.xq +%%DATADIR%%/atom-services.xml +%%DATADIR%%/backup.properties +%%DATADIR%%/bin/startup.bat +%%DATADIR%%/bin/shutdown.sh +%%DATADIR%%/bin/shutdown.bat +%%DATADIR%%/bin/client.bat +%%DATADIR%%/bin/backup.bat +%%DATADIR%%/bin/launch_client.bat +%%DATADIR%%/bin/backup.sh +%%DATADIR%%/bin/client.sh +%%DATADIR%%/bin/startup.sh +%%DATADIR%%/bin/server.bat +%%DATADIR%%/bin/server.sh +%%DATADIR%%/build/scripts/minimal.xml +%%DATADIR%%/build/scripts/installer.xml +%%DATADIR%%/build/scripts/quality.xml +%%DATADIR%%/build/scripts/subversion.xml +%%DATADIR%%/build/scripts/jarsigner.xml +%%DATADIR%%/build/scripts/soap.xml +%%DATADIR%%/build/scripts/dist.xml +%%DATADIR%%/build/scripts/junit.xml +%%DATADIR%%/build/scripts/build-impl.xml +%%DATADIR%%/build/scripts/demoserver.xml +%%DATADIR%%/build.bat +%%DATADIR%%/build.properties +%%DATADIR%%/build.sh +%%DATADIR%%/build.xml +%%DATADIR%%/client.properties +%%DATADIR%%/client.properties.tmpl +%%DATADIR%%/conf.xml +%%DATADIR%%/conf.xml.tmpl +%%DATADIR%%/descriptor.xml +%%DATADIR%%/descriptor.xml.tmpl +%%DATADIR%%/examples.jar +%%DATADIR%%/exist-modules.jar +%%DATADIR%%/exist-optional.jar +%%DATADIR%%/exist.jar +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/image/GetThumbnailsFunction.java +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/image/ImageModule.java +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/image/GetWidthFunction.java +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/image/GetHeightFunction.java +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/xmldiff/Compare.java +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/xmldiff/XmlDiffModule.java +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/context/ContextModule.java +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/context/context.xql +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/context/SetVarFunction.java +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/context/SetSerializerFunction.java +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/context/GetVarFunction.java +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/simpleql/SimpleQLParserTokenTypes.java +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/simpleql/SimpleQLModule.java +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/simpleql/ParseSimpleQL.java +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/simpleql/SimpleQLLexer.java +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/simpleql/SimpleQLParser.java +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/simpleql/SimpleQLParser.g +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/simpleql/SimpleQLParserTokenTypes.txt +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/math/NoParamFunctions.java +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/math/TwoParamFunctions.java +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/math/MathModule.java +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/math/OneParamFunctions.java +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/sql/GetConnectionFunction.java +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/sql/ExecuteFunction.java +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/sql/SQLModule.java +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/mail/send-email_sendmail.xql +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/mail/SendEmailFunction.java +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/mail/send-email_smtp.xql +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/mail/MailModule.java +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/example/EchoFunction.java +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/example/echo.xq +%%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/example/ExampleModule.java +%%DATADIR%%/extensions/modules/build.xml +%%DATADIR%%/icon.bmp +%%DATADIR%%/index.html +%%DATADIR%%/lib/optional/jaxrpc.jar +%%DATADIR%%/lib/optional/saaj.jar +%%DATADIR%%/lib/optional/commons-fileupload-1.1.1.jar +%%DATADIR%%/lib/optional/commons-discovery-0.2.jar +%%DATADIR%%/lib/optional/commons-io-1.1.jar +%%DATADIR%%/lib/optional/jug-lgpl-2.0.0.jar +%%DATADIR%%/lib/optional/axis-ant.jar +%%DATADIR%%/lib/optional/wsdl4j-1.5.1.jar +%%DATADIR%%/lib/optional/commons-httpclient-3.0.jar +%%DATADIR%%/lib/optional/nekohtml-0.9.5.jar +%%DATADIR%%/lib/optional/axis-schema.jar +%%DATADIR%%/lib/optional/axis.jar +%%DATADIR%%/lib/optional/commons-logging-1.0.4.jar +%%DATADIR%%/lib/user/README +%%DATADIR%%/lib/licenses/w3c.LICENSE.sax.txt +%%DATADIR%%/lib/licenses/isorelax.COPYING.txt +%%DATADIR%%/lib/licenses/w3c.LICENSE.dom-documentation.txt +%%DATADIR%%/lib/licenses/castor.LICENSE.txt +%%DATADIR%%/lib/licenses/w3c.LICENSE.dom-software.txt +%%DATADIR%%/lib/licenses/sunxacml.LICENSE.txt +%%DATADIR%%/lib/licenses/nekohtml.LICENSE.txt +%%DATADIR%%/lib/licenses/apache_NOTICE.txt +%%DATADIR%%/lib/licenses/apache_1.1_LICENSE.txt +%%DATADIR%%/lib/licenses/cup.LICENSE.txt +%%DATADIR%%/lib/licenses/apache_2.0_LICENSE.txt +%%DATADIR%%/lib/licenses/lgpl.LICENSE.txt +%%DATADIR%%/lib/core/sunxacml.jar +%%DATADIR%%/lib/core/jEdit-syntax.jar +%%DATADIR%%/lib/core/jgroups-all.jar +%%DATADIR%%/lib/core/jline-0_9_5.jar +%%DATADIR%%/lib/core/javax.servlet.jar +%%DATADIR%%/lib/core/commons-pool-1.2.jar +%%DATADIR%%/lib/core/excalibur-cli-1.0.jar +%%DATADIR%%/lib/core/resolver.jar +%%DATADIR%%/lib/core/antlr-2.7.6.jar +%%DATADIR%%/lib/core/xmldb.jar +%%DATADIR%%/lib/core/log4j-1.2.14.jar +%%DATADIR%%/lib/core/xmlrpc-1.2-patched.jar +%%DATADIR%%/lib/cocoon/cocoon-databases-block.jar +%%DATADIR%%/lib/cocoon/commons-lang-2.0-20041007T2305.jar +%%DATADIR%%/lib/cocoon/excalibur-store-1.0.jar +%%DATADIR%%/lib/cocoon/excalibur-pool-1.2.jar +%%DATADIR%%/lib/cocoon/commons-jxpath-1.2.jar +%%DATADIR%%/lib/cocoon/excalibur-instrument-1.0.jar +%%DATADIR%%/lib/cocoon/cocoon-2.1.7.jar +%%DATADIR%%/lib/cocoon/excalibur-sourceresolve-1.1.jar +%%DATADIR%%/lib/cocoon/excalibur-naming-1.0.jar +%%DATADIR%%/lib/cocoon/avalon-framework-api-4.1.5.jar +%%DATADIR%%/lib/cocoon/excalibur-logger-1.1.jar +%%DATADIR%%/lib/cocoon/cocoon-xsp-block.jar +%%DATADIR%%/lib/cocoon/excalibur-datasource-1.1.1.jar +%%DATADIR%%/lib/cocoon/util.concurrent-1.3.4.jar +%%DATADIR%%/lib/cocoon/excalibur-i18n-1.1.jar +%%DATADIR%%/lib/cocoon/README.cocoon +%%DATADIR%%/lib/cocoon/javacApi-0.9.jar +%%DATADIR%%/lib/cocoon/excalibur-io-1.1.jar +%%DATADIR%%/lib/cocoon/ehcache-1.1.jar +%%DATADIR%%/lib/cocoon/commons-jexl-1.0.jar +%%DATADIR%%/lib/cocoon/javacImpl-0.9.jar +%%DATADIR%%/lib/cocoon/excalibur-instrument-manager-interfaces-1.0.jar +%%DATADIR%%/lib/cocoon/avalon-framework-impl-4.1.5.jar +%%DATADIR%%/lib/cocoon/excalibur-instrument-manager-1.0.jar +%%DATADIR%%/lib/cocoon/logkit-1.2.2.jar +%%DATADIR%%/lib/cocoon/excalibur-component-1.2.jar +%%DATADIR%%/lib/cocoon/excalibur-xmlutil-1.0.jar +%%DATADIR%%/lib/cocoon/cocoon-xmldb-block.jar +%%DATADIR%%/lib/cocoon/cocoon-2.1.7-deprecated.jar +%%DATADIR%%/lib/cocoon/commons-collections-3.1.jar +%%DATADIR%%/lib/endorsed/serializer-2.7.0.jar +%%DATADIR%%/lib/endorsed/xml-apis.jar +%%DATADIR%%/lib/endorsed/xalan-2.7.0.jar +%%DATADIR%%/lib/endorsed/xercesImpl.jar +%%DATADIR%%/log4j.xml +%%DATADIR%%/mime-types.xml +%%DATADIR%%/mime-types.xml.tmpl +%%DATADIR%%/samples/org/exist/examples/triggers/stx/address.stx +%%DATADIR%%/samples/org/exist/examples/triggers/stx/collection.xconf +%%DATADIR%%/samples/org/exist/examples/triggers/stx/data.xml +%%DATADIR%%/samples/org/exist/examples/triggers/ExampleTrigger.java +%%DATADIR%%/samples/org/exist/examples/triggers/collection.xconf +%%DATADIR%%/samples/org/exist/examples/soap/GetDocument.java +%%DATADIR%%/samples/org/exist/examples/soap/QueryExample.java +%%DATADIR%%/samples/org/exist/examples/soap/XUpdateExample.java +%%DATADIR%%/samples/org/exist/examples/xmldb/XQueryExample.java +%%DATADIR%%/samples/org/exist/examples/xmldb/MultipleDatabases.java +%%DATADIR%%/samples/org/exist/examples/xmldb/Put.java +%%DATADIR%%/samples/org/exist/examples/xmldb/Retrieve.java +%%DATADIR%%/samples/org/exist/examples/xmldb/NestedExample.java +%%DATADIR%%/samples/org/exist/examples/http/PutExample.java +%%DATADIR%%/samples/org/exist/examples/http/PostExample.java +%%DATADIR%%/samples/org/exist/examples/xmlrpc/Retrieve.java +%%DATADIR%%/samples/org/exist/examples/xmlrpc/Store.java +%%DATADIR%%/samples/xupdate/address.xml +%%DATADIR%%/samples/xupdate/supdate.xml +%%DATADIR%%/samples/xupdate/xupdate.xml +%%DATADIR%%/samples/xmlrpc/retrieve.pl +%%DATADIR%%/samples/xmlrpc/search2.pl +%%DATADIR%%/samples/xmlrpc/collection.rb +%%DATADIR%%/samples/xmlrpc/retrieve.rb +%%DATADIR%%/samples/xmlrpc/search.pl +%%DATADIR%%/samples/xmlrpc/find.rb +%%DATADIR%%/samples/xquery/java.xq +%%DATADIR%%/samples/xquery/global_var.xq +%%DATADIR%%/samples/xquery/functions.xq +%%DATADIR%%/samples/xquery/display-collections.xq +%%DATADIR%%/samples/xquery/groupby.xq +%%DATADIR%%/samples/xquery/depth.xq +%%DATADIR%%/samples/xquery/xupdate.xq +%%DATADIR%%/samples/xquery/call.xq +%%DATADIR%%/samples/xquery/fibo.xq +%%DATADIR%%/samples/xquery/books.xq +%%DATADIR%%/samples/xquery/max.xq +%%DATADIR%%/samples/xquery/exceptions.xq +%%DATADIR%%/samples/xquery/collations.xq +%%DATADIR%%/samples/xquery/table.xq +%%DATADIR%%/samples/xquery/date.xq +%%DATADIR%%/samples/xinclude/xinclude.xml +%%DATADIR%%/samples/xinclude/disclaimer.xml +%%DATADIR%%/samples/xinclude/display-collection.xq +%%DATADIR%%/samples/xinclude/db2html.xsl +%%DATADIR%%/samples/xinclude/default-style.css +%%DATADIR%%/samples/xinclude/xmlsource.xsl +%%DATADIR%%/samples/xinclude/logo.jpg +%%DATADIR%%/samples/xinclude/sidebar.xml +%%DATADIR%%/samples/validation/dtd/hamlet_invalid.xml +%%DATADIR%%/samples/validation/dtd/hamlet_valid.xml +%%DATADIR%%/samples/validation/dtd/hamlet_nodoctype.xml +%%DATADIR%%/samples/validation/dtd/hamlet_wrongdoctype.xml +%%DATADIR%%/samples/validation/dtd/play.dtd +%%DATADIR%%/samples/validation/dtd/catalog.xml +%%DATADIR%%/samples/validation/addressbook/catalog_schema.xml +%%DATADIR%%/samples/validation/addressbook/addressbook_valid.xml +%%DATADIR%%/samples/validation/addressbook/addressbook.xsd +%%DATADIR%%/samples/validation/addressbook/addressbook_invalid.xml +%%DATADIR%%/samples/soap/query.pl +%%DATADIR%%/samples/soap/getdoc.pl +%%DATADIR%%/samples/soap/store.pl +%%DATADIR%%/samples/soap/rmdoc.pl +%%DATADIR%%/samples/ant/build.xml +%%DATADIR%%/samples/ant/ant-test.xml +%%DATADIR%%/samples/mods/15edb0d6a6226904a06a1c722f45c254.xml +%%DATADIR%%/samples/mods/0216b628b9bdafadb3bea01bb004a97e.xml +%%DATADIR%%/samples/mods/469523cc93747bf924d8e0b958751b80.xml +%%DATADIR%%/samples/mods/516ed5d3441f8e7ee8c288943ec02645.xml +%%DATADIR%%/samples/mods/6d50002e19010956a0c0d7b9de5a1bbf.xml +%%DATADIR%%/samples/mods/97a3be1167805cc60c01ec703c069e7d.xml +%%DATADIR%%/samples/mods/6a01f5fa08b4a1f6cb6ce183a49a3fb3.xml +%%DATADIR%%/samples/mods/4ddc8d34bfbf1d68831f865a38a7e8e4.xml +%%DATADIR%%/samples/mods/6f8722149f877ed67cf87cc436eed91c.xml +%%DATADIR%%/samples/mods/367d023a407d983c87a6fc69d9bbdedc.xml +%%DATADIR%%/samples/mods/f6c36a2b2920ebe5a7ca4f11b9676dc1.xml +%%DATADIR%%/samples/mods/fafee1880d1bce01d2bd8da45621a2e1.xml +%%DATADIR%%/samples/mods/1bc61942b4cfe0d9c7cbcf01354100ff.xml +%%DATADIR%%/samples/mods/0d016e459e3d11d8b38c17a3076b4f5f.xml +%%DATADIR%%/samples/mods/01c73f2b05650de2e6124d9d113f40be.xml +%%DATADIR%%/samples/mods/e0612d926ca7eb7ba70d97225540a80b.xml +%%DATADIR%%/samples/mods/5226ddd6d6771ced637c765eed7b4f25.xml +%%DATADIR%%/samples/mods/3ce658042e6e3a11a5d0282c3535f356.xml +%%DATADIR%%/samples/mods/488781fa2936f68db0019dc5c129c6e0.xml +%%DATADIR%%/samples/mods/b117894858ceada1366e79c2908f0d3b.xml +%%DATADIR%%/samples/http/httpclient.pl +%%DATADIR%%/samples/http/put.py +%%DATADIR%%/samples/http/search.pl +%%DATADIR%%/samples/http/client.sh +%%DATADIR%%/samples/http/get.sh +%%DATADIR%%/samples/http/upload.sh +%%DATADIR%%/samples/http/query.sh +%%DATADIR%%/samples/xacml/reflection_policy.xml +%%DATADIR%%/samples/xacml/builtin_policy.xml +%%DATADIR%%/samples/xacml/external_modules_policy.xml +%%DATADIR%%/samples/examples.xml +%%DATADIR%%/samples/shakespeare/macbeth.xml +%%DATADIR%%/samples/shakespeare/hamlet.xml +%%DATADIR%%/samples/shakespeare/shakes.xsl +%%DATADIR%%/samples/shakespeare/r_and_j.xml +%%DATADIR%%/samples/shakespeare/play.dtd +%%DATADIR%%/samples/shakespeare/shakes.css +%%DATADIR%%/samples/mondial.xconf +%%DATADIR%%/samples/biblio.rdf +%%DATADIR%%/server.xml +%%DATADIR%%/server.xml.tmpl +%%DATADIR%%/src/org/exist/xquery/functions/text/TextRank.java +%%DATADIR%%/src/org/exist/xquery/functions/text/FuzzyMatchAll.java +%%DATADIR%%/src/org/exist/xquery/functions/text/RegexpFilter.java +%%DATADIR%%/src/org/exist/xquery/functions/text/FuzzyMatcher.java +%%DATADIR%%/src/org/exist/xquery/functions/text/MatchRegexp.java +%%DATADIR%%/src/org/exist/xquery/functions/text/IndexTerms.java +%%DATADIR%%/src/org/exist/xquery/functions/text/KWICDisplay.java +%%DATADIR%%/src/org/exist/xquery/functions/text/AbstractMatchFunction.java +%%DATADIR%%/src/org/exist/xquery/functions/text/HighlightMatches.java +%%DATADIR%%/src/org/exist/xquery/functions/text/TextModule.java +%%DATADIR%%/src/org/exist/xquery/functions/text/FuzzyIndexTerms.java +%%DATADIR%%/src/org/exist/xquery/functions/text/Tokenize.java +%%DATADIR%%/src/org/exist/xquery/functions/text/MatchCount.java +%%DATADIR%%/src/org/exist/xquery/functions/text/FuzzyMatchAny.java +%%DATADIR%%/src/org/exist/xquery/functions/util/PrologFunctions.java +%%DATADIR%%/src/org/exist/xquery/functions/util/FunUnEscapeURI.java +%%DATADIR%%/src/org/exist/xquery/functions/util/SystemTime.java +%%DATADIR%%/src/org/exist/xquery/functions/util/RandomFunction.java +%%DATADIR%%/src/org/exist/xquery/functions/util/DocumentNameOrId.java +%%DATADIR%%/src/org/exist/xquery/functions/util/FunctionFunction.java +%%DATADIR%%/src/org/exist/xquery/functions/util/LockFunction.java +%%DATADIR%%/src/org/exist/xquery/functions/util/Profile.java +%%DATADIR%%/src/org/exist/xquery/functions/util/BinaryDoc.java +%%DATADIR%%/src/org/exist/xquery/functions/util/BuiltinFunctions.java +%%DATADIR%%/src/org/exist/xquery/functions/util/LogFunction.java +%%DATADIR%%/src/org/exist/xquery/functions/util/CatchFunction.java +%%DATADIR%%/src/org/exist/xquery/functions/util/MD5.java +%%DATADIR%%/src/org/exist/xquery/functions/util/FileRead.java +%%DATADIR%%/src/org/exist/xquery/functions/util/ModuleInfo.java +%%DATADIR%%/src/org/exist/xquery/functions/util/GetNodeById.java +%%DATADIR%%/src/org/exist/xquery/functions/util/Collations.java +%%DATADIR%%/src/org/exist/xquery/functions/util/IndexKeys.java +%%DATADIR%%/src/org/exist/xquery/functions/util/QNameIndexLookup.java +%%DATADIR%%/src/org/exist/xquery/functions/util/CollectionName.java +%%DATADIR%%/src/org/exist/xquery/functions/util/CallFunction.java +%%DATADIR%%/src/org/exist/xquery/functions/util/Compile.java +%%DATADIR%%/src/org/exist/xquery/functions/util/IndexKeyOccurrences.java +%%DATADIR%%/src/org/exist/xquery/functions/util/Eval.java +%%DATADIR%%/src/org/exist/xquery/functions/util/NodeId.java +%%DATADIR%%/src/org/exist/xquery/functions/util/IndexType.java +%%DATADIR%%/src/org/exist/xquery/functions/util/DescribeFunction.java +%%DATADIR%%/src/org/exist/xquery/functions/util/UtilModule.java +%%DATADIR%%/src/org/exist/xquery/functions/util/Serialize.java +%%DATADIR%%/src/org/exist/xquery/functions/util/SharedLockFunction.java +%%DATADIR%%/src/org/exist/xquery/functions/util/IndexKeyDocuments.java +%%DATADIR%%/src/org/exist/xquery/functions/util/BinaryToString.java +%%DATADIR%%/src/org/exist/xquery/functions/util/ExclusiveLockFunction.java +%%DATADIR%%/src/org/exist/xquery/functions/util/SystemProperty.java +%%DATADIR%%/src/org/exist/xquery/functions/request/GetHeaderNames.java +%%DATADIR%%/src/org/exist/xquery/functions/request/GetQueryString.java +%%DATADIR%%/src/org/exist/xquery/functions/request/GetParameter.java +%%DATADIR%%/src/org/exist/xquery/functions/request/GetUploadedFile.java +%%DATADIR%%/src/org/exist/xquery/functions/request/GetCookieValue.java +%%DATADIR%%/src/org/exist/xquery/functions/request/GetHostname.java +%%DATADIR%%/src/org/exist/xquery/functions/request/GetMethod.java +%%DATADIR%%/src/org/exist/xquery/functions/request/GetCookieNames.java +%%DATADIR%%/src/org/exist/xquery/functions/request/GetData.java +%%DATADIR%%/src/org/exist/xquery/functions/request/RequestModule.java +%%DATADIR%%/src/org/exist/xquery/functions/request/GetHeader.java +%%DATADIR%%/src/org/exist/xquery/functions/request/GetServerPort.java +%%DATADIR%%/src/org/exist/xquery/functions/request/GetUploadedFileName.java +%%DATADIR%%/src/org/exist/xquery/functions/request/GetParameterNames.java +%%DATADIR%%/src/org/exist/xquery/functions/request/GetURL.java +%%DATADIR%%/src/org/exist/xquery/functions/request/GetServerName.java +%%DATADIR%%/src/org/exist/xquery/functions/request/GetURI.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBCollection.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBGetChildResources.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBURIFunctions.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBSize.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBMove.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBChangeUser.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBSetResourcePermissions.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBPermissions.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBCollectionExists.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBModule.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBHasLock.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBAbstractCollectionManipulator.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBUserAccess.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBXUpdate.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBAuthenticate.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBRename.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBCreateUser.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBSetCollectionPermissions.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBChmodCollection.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBRegisterDatabase.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBChmodResource.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBGetUserOrGroup.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBLoadFromPattern.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBCopy.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBGetChildCollections.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBDeleteUser.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBGetCurrentUser.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBCreateCollection.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBCreated.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBStore.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBIsAdmin.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBPermissionsToString.java +%%DATADIR%%/src/org/exist/xquery/functions/xmldb/XMLDBRemove.java +%%DATADIR%%/src/org/exist/xquery/functions/FunInScopePrefixes.java +%%DATADIR%%/src/org/exist/xquery/functions/FunGetDurationComponent.java +%%DATADIR%%/src/org/exist/xquery/functions/FunIRIToURI.java +%%DATADIR%%/src/org/exist/xquery/functions/ExtDoctype.java +%%DATADIR%%/src/org/exist/xquery/functions/ExtFulltext.java +%%DATADIR%%/src/org/exist/xquery/functions/session/Invalidate.java +%%DATADIR%%/src/org/exist/xquery/functions/session/SetCurrentUser.java +%%DATADIR%%/src/org/exist/xquery/functions/session/GetID.java +%%DATADIR%%/src/org/exist/xquery/functions/session/EncodeURL.java +%%DATADIR%%/src/org/exist/xquery/functions/session/GetAttributeNames.java +%%DATADIR%%/src/org/exist/xquery/functions/session/Clear.java +%%DATADIR%%/src/org/exist/xquery/functions/session/RemoveAttribute.java +%%DATADIR%%/src/org/exist/xquery/functions/session/SessionModule.java +%%DATADIR%%/src/org/exist/xquery/functions/session/Create.java +%%DATADIR%%/src/org/exist/xquery/functions/session/GetAttribute.java +%%DATADIR%%/src/org/exist/xquery/functions/session/SetAttribute.java +%%DATADIR%%/src/org/exist/xquery/functions/FunStringToCodepoints.java +%%DATADIR%%/src/org/exist/xquery/functions/FunRoot.java +%%DATADIR%%/src/org/exist/xquery/functions/system/GetModuleLoadPath.java +%%DATADIR%%/src/org/exist/xquery/functions/system/GetVersion.java +%%DATADIR%%/src/org/exist/xquery/functions/system/GetBuild.java +%%DATADIR%%/src/org/exist/xquery/functions/system/SystemModule.java +%%DATADIR%%/src/org/exist/xquery/functions/system/Shutdown.java +%%DATADIR%%/src/org/exist/xquery/functions/system/CountInstances.java +%%DATADIR%%/src/org/exist/xquery/functions/system/FtIndexLookup.java +%%DATADIR%%/src/org/exist/xquery/functions/system/GetRevision.java +%%DATADIR%%/src/org/exist/xquery/functions/system/GetExistHome.java +%%DATADIR%%/src/org/exist/xquery/functions/system/GetMemory.java +%%DATADIR%%/src/org/exist/xquery/functions/FunNamespaceURIForPrefix.java +%%DATADIR%%/src/org/exist/xquery/functions/FunAvg.java +%%DATADIR%%/src/org/exist/xquery/functions/FunContains.java +%%DATADIR%%/src/org/exist/xquery/functions/FunTrueOrFalse.java +%%DATADIR%%/src/org/exist/xquery/functions/FunZeroOrOne.java +%%DATADIR%%/src/org/exist/xquery/functions/response/SetCookie.java +%%DATADIR%%/src/org/exist/xquery/functions/response/ResponseModule.java +%%DATADIR%%/src/org/exist/xquery/functions/response/StreamBinary.java +%%DATADIR%%/src/org/exist/xquery/functions/response/RedirectTo.java +%%DATADIR%%/src/org/exist/xquery/functions/response/SetHeader.java +%%DATADIR%%/src/org/exist/xquery/functions/exist/ExistModule.java +%%DATADIR%%/src/org/exist/xquery/functions/QNameFunctions.java +%%DATADIR%%/src/org/exist/xquery/functions/FunIndexOf.java +%%DATADIR%%/src/org/exist/xquery/functions/FunNormalizeSpace.java +%%DATADIR%%/src/org/exist/xquery/functions/FunName.java +%%DATADIR%%/src/org/exist/xquery/functions/FunUnordered.java +%%DATADIR%%/src/org/exist/xquery/functions/FunCeiling.java +%%DATADIR%%/src/org/exist/xquery/functions/FunOneOrMore.java +%%DATADIR%%/src/org/exist/xquery/functions/FunAbs.java +%%DATADIR%%/src/org/exist/xquery/functions/FunRemove.java +%%DATADIR%%/src/org/exist/xquery/functions/FunEscapeURI.java +%%DATADIR%%/src/org/exist/xquery/functions/FunEndsWith.java +%%DATADIR%%/src/org/exist/xquery/functions/FunItemAt.java +%%DATADIR%%/src/org/exist/xquery/functions/ExtDocument.java +%%DATADIR%%/src/org/exist/xquery/functions/FunStringPad.java +%%DATADIR%%/src/org/exist/xquery/functions/FunRound.java +%%DATADIR%%/src/org/exist/xquery/functions/FunCodepointsToString.java +%%DATADIR%%/src/org/exist/xquery/functions/ModuleImpl.java +%%DATADIR%%/src/org/exist/xquery/functions/FunImplicitTimezone.java +%%DATADIR%%/src/org/exist/xquery/functions/FunNot.java +%%DATADIR%%/src/org/exist/xquery/functions/FunFloor.java +%%DATADIR%%/src/org/exist/xquery/functions/FunTrace.java +%%DATADIR%%/src/org/exist/xquery/functions/ExtPhrase.java +%%DATADIR%%/src/org/exist/xquery/functions/ExtCollection.java +%%DATADIR%%/src/org/exist/xquery/functions/ExtXCollection.java +%%DATADIR%%/src/org/exist/xquery/functions/validation/Validation.java +%%DATADIR%%/src/org/exist/xquery/functions/validation/ValidationModule.java +%%DATADIR%%/src/org/exist/xquery/functions/validation/GrammarTooling.java +%%DATADIR%%/src/org/exist/xquery/functions/transform/TransformModule.java +%%DATADIR%%/src/org/exist/xquery/functions/transform/Transform.java +%%DATADIR%%/src/org/exist/xquery/functions/FunMin.java +%%DATADIR%%/src/org/exist/xquery/functions/FunConcat.java +%%DATADIR%%/src/org/exist/xquery/functions/FunGetDateComponent.java +%%DATADIR%%/src/org/exist/xquery/functions/FunInsertBefore.java +%%DATADIR%%/src/org/exist/xquery/functions/FunPosition.java +%%DATADIR%%/src/org/exist/xquery/functions/FunDocumentURI.java +%%DATADIR%%/src/org/exist/xquery/functions/FunDeepEqual.java +%%DATADIR%%/src/org/exist/xquery/functions/FunId.java +%%DATADIR%%/src/org/exist/xquery/functions/FunSubstring.java +%%DATADIR%%/src/org/exist/xquery/functions/CollatingFunction.java +%%DATADIR%%/src/org/exist/xquery/functions/FunBoolean.java +%%DATADIR%%/src/org/exist/xquery/functions/FunSubstringAfter.java +%%DATADIR%%/src/org/exist/xquery/functions/FunTranslate.java +%%DATADIR%%/src/org/exist/xquery/functions/FunData.java +%%DATADIR%%/src/org/exist/xquery/functions/FunStartsWith.java +%%DATADIR%%/src/org/exist/xquery/functions/FunTokenize.java +%%DATADIR%%/src/org/exist/xquery/functions/FunMax.java +%%DATADIR%%/src/org/exist/xquery/functions/FunLast.java +%%DATADIR%%/src/org/exist/xquery/functions/FunReplace.java +%%DATADIR%%/src/org/exist/xquery/functions/FunResolveQName.java +%%DATADIR%%/src/org/exist/xquery/functions/FunBaseURI.java +%%DATADIR%%/src/org/exist/xquery/functions/FunStringJoin.java +%%DATADIR%%/src/org/exist/xquery/functions/FunNamespaceURI.java +%%DATADIR%%/src/org/exist/xquery/functions/FunDistinctValues.java +%%DATADIR%%/src/org/exist/xquery/functions/FunLocalName.java +%%DATADIR%%/src/org/exist/xquery/functions/ExtRegexp.java +%%DATADIR%%/src/org/exist/xquery/functions/FunReverse.java +%%DATADIR%%/src/org/exist/xquery/functions/FunUpperOrLowerCase.java +%%DATADIR%%/src/org/exist/xquery/functions/ExtNear.java +%%DATADIR%%/src/org/exist/xquery/functions/FunCurrentDateTime.java +%%DATADIR%%/src/org/exist/xquery/functions/FunDoc.java +%%DATADIR%%/src/org/exist/xquery/functions/FunNodeName.java +%%DATADIR%%/src/org/exist/xquery/functions/FunEmpty.java +%%DATADIR%%/src/org/exist/xquery/functions/FunSubSequence.java +%%DATADIR%%/src/org/exist/xquery/functions/FunRoundHalfToEven.java +%%DATADIR%%/src/org/exist/xquery/functions/FunCount.java +%%DATADIR%%/src/org/exist/xquery/functions/FunSubstringBefore.java +%%DATADIR%%/src/org/exist/xquery/functions/FunStrLength.java +%%DATADIR%%/src/org/exist/xquery/functions/ExtRegexpOr.java +%%DATADIR%%/src/org/exist/xquery/functions/FunSum.java +%%DATADIR%%/src/org/exist/xquery/functions/FunNumber.java +%%DATADIR%%/src/org/exist/xquery/functions/FunExists.java +%%DATADIR%%/src/org/exist/xquery/functions/FunError.java +%%DATADIR%%/src/org/exist/xquery/functions/FunAdjustTimezone.java +%%DATADIR%%/src/org/exist/xquery/functions/FunMatches.java +%%DATADIR%%/src/org/exist/xquery/functions/FunExactlyOne.java +%%DATADIR%%/src/org/exist/xquery/functions/FunEncodeForURI.java +%%DATADIR%%/src/org/exist/xquery/functions/FunDocAvailable.java +%%DATADIR%%/src/org/exist/xquery/functions/FunEscapeHTMLURI.java +%%DATADIR%%/src/org/exist/xquery/functions/FunString.java +%%DATADIR%%/src/org/exist/xquery/functions/FunCompare.java +%%DATADIR%%/src/org/exist/xquery/functions/FunLang.java +%%DATADIR%%/src/org/exist/xquery/functions/FunQName.java +%%DATADIR%%/src/org/exist/xquery/PathExpr.java +%%DATADIR%%/src/org/exist/xquery/QuantifiedExpression.java +%%DATADIR%%/src/org/exist/xquery/parser/XQueryParser.java +%%DATADIR%%/src/org/exist/xquery/parser/XQueryTreeParser.java +%%DATADIR%%/src/org/exist/xquery/parser/XQueryAST.java +%%DATADIR%%/src/org/exist/xquery/parser/XQueryTokenTypes.txt +%%DATADIR%%/src/org/exist/xquery/parser/XQueryTree.g +%%DATADIR%%/src/org/exist/xquery/parser/XQueryTokenTypes.java +%%DATADIR%%/src/org/exist/xquery/parser/DeclScanner.g +%%DATADIR%%/src/org/exist/xquery/parser/DeclScanner.java +%%DATADIR%%/src/org/exist/xquery/parser/DeclScannerTokenTypes.txt +%%DATADIR%%/src/org/exist/xquery/parser/package.html +%%DATADIR%%/src/org/exist/xquery/parser/XQuery.g +%%DATADIR%%/src/org/exist/xquery/parser/DeclScannerTokenTypes.java +%%DATADIR%%/src/org/exist/xquery/parser/XQueryTreeParserTokenTypes.txt +%%DATADIR%%/src/org/exist/xquery/parser/XQueryLexer.java +%%DATADIR%%/src/org/exist/xquery/parser/XQueryTreeParserTokenTypes.java +%%DATADIR%%/src/org/exist/xquery/LiteralValue.java +%%DATADIR%%/src/org/exist/xquery/test/XQueryFunctionsTest.java +%%DATADIR%%/src/org/exist/xquery/test/OpNumericTest.java +%%DATADIR%%/src/org/exist/xquery/test/EntitiesTest.java +%%DATADIR%%/src/org/exist/xquery/test/XQueryTest.java +%%DATADIR%%/src/org/exist/xquery/test/XQueryUpdateTest.java +%%DATADIR%%/src/org/exist/xquery/test/SpecialNamesTest.java +%%DATADIR%%/src/org/exist/xquery/test/DeepEqualTest.java +%%DATADIR%%/src/org/exist/xquery/test/XMLNodeAsXQueryParameterTest.java +%%DATADIR%%/src/org/exist/xquery/test/RemoteTests.java +%%DATADIR%%/src/org/exist/xquery/test/JavaFunctionsTest.java +%%DATADIR%%/src/org/exist/xquery/test/XQueryUseCasesTest.java +%%DATADIR%%/src/org/exist/xquery/test/XPathQueryTest.java +%%DATADIR%%/src/org/exist/xquery/test/AllTests.java +%%DATADIR%%/src/org/exist/xquery/test/ConvertionsTest.java +%%DATADIR%%/src/org/exist/xquery/test/NodeTypeTest.java +%%DATADIR%%/src/org/exist/xquery/test/items.xml +%%DATADIR%%/src/org/exist/xquery/test/StoredModuleTest.java +%%DATADIR%%/src/org/exist/xquery/test/SeqOpTest.java +%%DATADIR%%/src/org/exist/xquery/test/LexerTest.java +%%DATADIR%%/src/org/exist/xquery/test/XQueryUseCase.java +%%DATADIR%%/src/org/exist/xquery/test/JavaMethodsTest.java +%%DATADIR%%/src/org/exist/xquery/test/ValueIndexByQNameTest.java +%%DATADIR%%/src/org/exist/xquery/test/QueryPoolTest.java +%%DATADIR%%/src/org/exist/xquery/test/FtQueryTest.java +%%DATADIR%%/src/org/exist/xquery/test/ValueIndexTest.java +%%DATADIR%%/src/org/exist/xquery/test/TabularXMLReader.java +%%DATADIR%%/src/org/exist/xquery/test/NamespaceUpdateTest.java +%%DATADIR%%/src/org/exist/xquery/test/SAXStorageTest.java +%%DATADIR%%/src/org/exist/xquery/test/DocumentUpdateTest.java +%%DATADIR%%/src/org/exist/xquery/AnyNodeTest.java +%%DATADIR%%/src/org/exist/xquery/value/AbstractSequence.java +%%DATADIR%%/src/org/exist/xquery/value/NumericValue.java +%%DATADIR%%/src/org/exist/xquery/value/DoubleValue.java +%%DATADIR%%/src/org/exist/xquery/value/MixedNodeValueComparator.java +%%DATADIR%%/src/org/exist/xquery/value/GDayValue.java +%%DATADIR%%/src/org/exist/xquery/value/GYearMonthValue.java +%%DATADIR%%/src/org/exist/xquery/value/Sequence.java +%%DATADIR%%/src/org/exist/xquery/value/SequenceIterator.java +%%DATADIR%%/src/org/exist/xquery/value/AtomicValue.java +%%DATADIR%%/src/org/exist/xquery/value/test/YearMonthDurationTest.java +%%DATADIR%%/src/org/exist/xquery/value/test/DayTimeDurationTest.java +%%DATADIR%%/src/org/exist/xquery/value/test/DurationTest.java +%%DATADIR%%/src/org/exist/xquery/value/test/AnyURITest.java +%%DATADIR%%/src/org/exist/xquery/value/test/DateTimeTest.java +%%DATADIR%%/src/org/exist/xquery/value/test/AbstractTimeRelatedTestCase.java +%%DATADIR%%/src/org/exist/xquery/value/test/TimeTest.java +%%DATADIR%%/src/org/exist/xquery/value/test/DateTest.java +%%DATADIR%%/src/org/exist/xquery/value/test/NumericOpPromotionTest.java +%%DATADIR%%/src/org/exist/xquery/value/DateValue.java +%%DATADIR%%/src/org/exist/xquery/value/GYearValue.java +%%DATADIR%%/src/org/exist/xquery/value/SequenceType.java +%%DATADIR%%/src/org/exist/xquery/value/Item.java +%%DATADIR%%/src/org/exist/xquery/value/ComputableValue.java +%%DATADIR%%/src/org/exist/xquery/value/IntegerValue.java +%%DATADIR%%/src/org/exist/xquery/value/FloatValue.java +%%DATADIR%%/src/org/exist/xquery/value/NodeValue.java +%%DATADIR%%/src/org/exist/xquery/value/EmptySequence.java +%%DATADIR%%/src/org/exist/xquery/value/GMonthValue.java +%%DATADIR%%/src/org/exist/xquery/value/JavaObjectValue.java +%%DATADIR%%/src/org/exist/xquery/value/GMonthDayValue.java +%%DATADIR%%/src/org/exist/xquery/value/TimeValue.java +%%DATADIR%%/src/org/exist/xquery/value/SingleItemIterator.java +%%DATADIR%%/src/org/exist/xquery/value/HexBinary.java +%%DATADIR%%/src/org/exist/xquery/value/Type.java +%%DATADIR%%/src/org/exist/xquery/value/UntypedAtomicValue.java +%%DATADIR%%/src/org/exist/xquery/value/AnyURIValue.java +%%DATADIR%%/src/org/exist/xquery/value/DecimalValue.java +%%DATADIR%%/src/org/exist/xquery/value/QNameValue.java +%%DATADIR%%/src/org/exist/xquery/value/DayTimeDurationValue.java +%%DATADIR%%/src/org/exist/xquery/value/OrderedDurationValue.java +%%DATADIR%%/src/org/exist/xquery/value/PreorderedValueSequence.java +%%DATADIR%%/src/org/exist/xquery/value/DateTimeValue.java +%%DATADIR%%/src/org/exist/xquery/value/FunctionReference.java +%%DATADIR%%/src/org/exist/xquery/value/DurationValue.java +%%DATADIR%%/src/org/exist/xquery/value/OrderedValueSequence.java +%%DATADIR%%/src/org/exist/xquery/value/BooleanValue.java +%%DATADIR%%/src/org/exist/xquery/value/YearMonthDurationValue.java +%%DATADIR%%/src/org/exist/xquery/value/BinaryValue.java +%%DATADIR%%/src/org/exist/xquery/value/AbstractDateTimeValue.java +%%DATADIR%%/src/org/exist/xquery/value/StringValue.java +%%DATADIR%%/src/org/exist/xquery/value/EmptySequenceIterator.java +%%DATADIR%%/src/org/exist/xquery/value/ValueSequence.java +%%DATADIR%%/src/org/exist/xquery/value/TimeUtils.java +%%DATADIR%%/src/org/exist/xquery/value/Base64Binary.java +%%DATADIR%%/src/org/exist/xquery/LetExpr.java +%%DATADIR%%/src/org/exist/xquery/Option.java +%%DATADIR%%/src/org/exist/xquery/EnclosedExpr.java +%%DATADIR%%/src/org/exist/xquery/OrderSpec.java +%%DATADIR%%/src/org/exist/xquery/update/Modification.java +%%DATADIR%%/src/org/exist/xquery/update/Insert.java +%%DATADIR%%/src/org/exist/xquery/update/Update.java +%%DATADIR%%/src/org/exist/xquery/update/Delete.java +%%DATADIR%%/src/org/exist/xquery/update/Replace.java +%%DATADIR%%/src/org/exist/xquery/update/Rename.java +%%DATADIR%%/src/org/exist/xquery/TypeswitchExpression.java +%%DATADIR%%/src/org/exist/xquery/TimerPragma.java +%%DATADIR%%/src/org/exist/xquery/FunctionFactory.java +%%DATADIR%%/src/org/exist/xquery/FilteredExpression.java +%%DATADIR%%/src/org/exist/xquery/SequenceConstructor.java +%%DATADIR%%/src/org/exist/xquery/XQueryWatchDog.java +%%DATADIR%%/src/org/exist/xquery/util/DocUtils.java +%%DATADIR%%/src/org/exist/xquery/util/RegexTranslator.java +%%DATADIR%%/src/org/exist/xquery/util/ExpressionDumper.java +%%DATADIR%%/src/org/exist/xquery/util/messages.properties +%%DATADIR%%/src/org/exist/xquery/util/Messages.java +%%DATADIR%%/src/org/exist/xquery/util/Error.java +%%DATADIR%%/src/org/exist/xquery/util/URIUtils.java +%%DATADIR%%/src/org/exist/xquery/util/HTTPUtils.java +%%DATADIR%%/src/org/exist/xquery/StaticXQueryException.java +%%DATADIR%%/src/org/exist/xquery/BatchTransactionPragma.java +%%DATADIR%%/src/org/exist/xquery/OpOr.java +%%DATADIR%%/src/org/exist/xquery/XQueryContext.java +%%DATADIR%%/src/org/exist/xquery/RangeExpression.java +%%DATADIR%%/src/org/exist/xquery/InternalFunctionCall.java +%%DATADIR%%/src/org/exist/xquery/Union.java +%%DATADIR%%/src/org/exist/xquery/DocumentConstructor.java +%%DATADIR%%/src/org/exist/xquery/NodeSelector.java +%%DATADIR%%/src/org/exist/xquery/ExternalModuleImpl.java +%%DATADIR%%/src/org/exist/xquery/XPathException.java +%%DATADIR%%/src/org/exist/xquery/XQuery.java +%%DATADIR%%/src/org/exist/xquery/DynamicCardinalityCheck.java +%%DATADIR%%/src/org/exist/xquery/CombiningExpression.java +%%DATADIR%%/src/org/exist/xquery/Atomize.java +%%DATADIR%%/src/org/exist/xquery/CastExpression.java +%%DATADIR%%/src/org/exist/xquery/lib/sequences.xq +%%DATADIR%%/src/org/exist/xquery/ConditionalExpression.java +%%DATADIR%%/src/org/exist/xquery/DescendantOrSelfSelector.java +%%DATADIR%%/src/org/exist/xquery/ExternalModule.java +%%DATADIR%%/src/org/exist/xquery/DynamicTextConstructor.java +%%DATADIR%%/src/org/exist/xquery/BasicExpressionVisitor.java +%%DATADIR%%/src/org/exist/xquery/FunctionDef.java +%%DATADIR%%/src/org/exist/xquery/CachedResult.java +%%DATADIR%%/src/org/exist/xquery/PIConstructor.java +%%DATADIR%%/src/org/exist/xquery/LogicalOp.java +%%DATADIR%%/src/org/exist/xquery/Constants.java +%%DATADIR%%/src/org/exist/xquery/TextConstructor.java +%%DATADIR%%/src/org/exist/xquery/LocationStep.java +%%DATADIR%%/src/org/exist/xquery/FunctionSignature.java +%%DATADIR%%/src/org/exist/xquery/DynamicPIConstructor.java +%%DATADIR%%/src/org/exist/xquery/DynamicAttributeConstructor.java +%%DATADIR%%/src/org/exist/xquery/VariableReference.java +%%DATADIR%%/src/org/exist/xquery/AbstractInternalModule.java +%%DATADIR%%/src/org/exist/xquery/XPathUtil.java +%%DATADIR%%/src/org/exist/xquery/TypeTest.java +%%DATADIR%%/src/org/exist/xquery/DynamicNameCheck.java +%%DATADIR%%/src/org/exist/xquery/NodeConstructor.java +%%DATADIR%%/src/org/exist/xquery/Intersection.java +%%DATADIR%%/src/org/exist/xquery/TerminatedException.java +%%DATADIR%%/src/org/exist/xquery/package.html +%%DATADIR%%/src/org/exist/xquery/ForExpr.java +%%DATADIR%%/src/org/exist/xquery/SimpleStep.java +%%DATADIR%%/src/org/exist/xquery/OpAnd.java +%%DATADIR%%/src/org/exist/xquery/CommentConstructor.java +%%DATADIR%%/src/org/exist/xquery/Step.java +%%DATADIR%%/src/org/exist/xquery/VariableDeclaration.java +%%DATADIR%%/src/org/exist/xquery/JavaCall.java +%%DATADIR%%/src/org/exist/xquery/BasicFunction.java +%%DATADIR%%/src/org/exist/xquery/ExpressionVisitor.java +%%DATADIR%%/src/org/exist/xquery/UnaryExpr.java +%%DATADIR%%/src/org/exist/xquery/ValueComparison.java +%%DATADIR%%/src/org/exist/xquery/ElementConstructor.java +%%DATADIR%%/src/org/exist/xquery/CDATAConstructor.java +%%DATADIR%%/src/org/exist/xquery/NameTest.java +%%DATADIR%%/src/org/exist/xquery/BindingExpression.java +%%DATADIR%%/src/org/exist/xquery/DynamicTypeCheck.java +%%DATADIR%%/src/org/exist/xquery/TreatAsExpression.java +%%DATADIR%%/src/org/exist/xquery/CastableExpression.java +%%DATADIR%%/src/org/exist/xquery/AtomicToString.java +%%DATADIR%%/src/org/exist/xquery/SelfSelector.java +%%DATADIR%%/src/org/exist/xquery/InstanceOfExpression.java +%%DATADIR%%/src/org/exist/xquery/Pragma.java +%%DATADIR%%/src/org/exist/xquery/RootNode.java +%%DATADIR%%/src/org/exist/xquery/AbstractExpression.java +%%DATADIR%%/src/org/exist/xquery/Except.java +%%DATADIR%%/src/org/exist/xquery/UserDefinedFunction.java +%%DATADIR%%/src/org/exist/xquery/ExtensionExpression.java +%%DATADIR%%/src/org/exist/xquery/FunctionId.java +%%DATADIR%%/src/org/exist/xquery/NodeComparison.java +%%DATADIR%%/src/org/exist/xquery/Function.java +%%DATADIR%%/src/org/exist/xquery/Predicate.java +%%DATADIR%%/src/org/exist/xquery/ChildSelector.java +%%DATADIR%%/src/org/exist/xquery/ModuleContext.java +%%DATADIR%%/src/org/exist/xquery/DynamicCommentConstructor.java +%%DATADIR%%/src/org/exist/xquery/NamespaceConstructor.java +%%DATADIR%%/src/org/exist/xquery/Variable.java +%%DATADIR%%/src/org/exist/xquery/AncestorSelector.java +%%DATADIR%%/src/org/exist/xquery/CompiledXQuery.java +%%DATADIR%%/src/org/exist/xquery/AnalyzeContextInfo.java +%%DATADIR%%/src/org/exist/xquery/FunctionCall.java +%%DATADIR%%/src/org/exist/xquery/LocalVariable.java +%%DATADIR%%/src/org/exist/xquery/UntypedValueCheck.java +%%DATADIR%%/src/org/exist/xquery/AttributeConstructor.java +%%DATADIR%%/src/org/exist/xquery/ParentSelector.java +%%DATADIR%%/src/org/exist/xquery/Module.java +%%DATADIR%%/src/org/exist/xquery/Dependency.java +%%DATADIR%%/src/org/exist/xquery/OpNumeric.java +%%DATADIR%%/src/org/exist/xquery/Cardinality.java +%%DATADIR%%/src/org/exist/xquery/GeneralComparison.java +%%DATADIR%%/src/org/exist/xquery/BinaryOp.java +%%DATADIR%%/src/org/exist/xquery/Expression.java +%%DATADIR%%/src/org/exist/xquery/InternalModule.java +%%DATADIR%%/src/org/exist/xquery/DeferredFunctionCall.java +%%DATADIR%%/src/org/exist/xquery/DescendantSelector.java +%%DATADIR%%/src/org/exist/xquery/NodeTest.java +%%DATADIR%%/src/org/exist/xquery/Profiler.java +%%DATADIR%%/src/org/exist/soap/EntityPermissions.java +%%DATADIR%%/src/org/exist/soap/DocumentDescs.java +%%DATADIR%%/src/org/exist/soap/UserDescs.java +%%DATADIR%%/src/org/exist/soap/IndexedElements.java +%%DATADIR%%/src/org/exist/soap/Query.java +%%DATADIR%%/src/org/exist/soap/AdminSoapBindingSkeleton.java +%%DATADIR%%/src/org/exist/soap/EntityPermissionsList.java +%%DATADIR%%/src/org/exist/soap/Strings.java +%%DATADIR%%/src/org/exist/soap/QueryResponse.java +%%DATADIR%%/src/org/exist/soap/Base64BinaryArray.java +%%DATADIR%%/src/org/exist/soap/undeployAdmin.wsdd +%%DATADIR%%/src/org/exist/soap/QueryResponseDocument.java +%%DATADIR%%/src/org/exist/soap/DocumentType.java +%%DATADIR%%/src/org/exist/soap/test/XQueryTest.java +%%DATADIR%%/src/org/exist/soap/test/UsersAndPermissionsTest.java +%%DATADIR%%/src/org/exist/soap/test/CopyMoveTest.java +%%DATADIR%%/src/org/exist/soap/AdminServiceLocator.java +%%DATADIR%%/src/org/exist/soap/admin.wsdl +%%DATADIR%%/src/org/exist/soap/query.wsdl +%%DATADIR%%/src/org/exist/soap/deployAdmin.wsdd +%%DATADIR%%/src/org/exist/soap/QueryResponseCollections.java +%%DATADIR%%/src/org/exist/soap/Session.java +%%DATADIR%%/src/org/exist/soap/StringArray.java +%%DATADIR%%/src/org/exist/soap/QuerySoapBindingSkeleton.java +%%DATADIR%%/src/org/exist/soap/QuerySoapBindingStub.java +%%DATADIR%%/src/org/exist/soap/Collection.java +%%DATADIR%%/src/org/exist/soap/AdminService.java +%%DATADIR%%/src/org/exist/soap/Permissions.java +%%DATADIR%%/src/org/exist/soap/DocumentDesc.java +%%DATADIR%%/src/org/exist/soap/AdminSoapBindingStub.java +%%DATADIR%%/src/org/exist/soap/Admin.java +%%DATADIR%%/src/org/exist/soap/undeployQuery.wsdd +%%DATADIR%%/src/org/exist/soap/IndexedElement.java +%%DATADIR%%/src/org/exist/soap/QuerySoapBindingImpl.java +%%DATADIR%%/src/org/exist/soap/CollectionDesc.java +%%DATADIR%%/src/org/exist/soap/deployQuery.wsdd +%%DATADIR%%/src/org/exist/soap/QueryResponseCollection.java +%%DATADIR%%/src/org/exist/soap/AdminSoapBindingImpl.java +%%DATADIR%%/src/org/exist/soap/QueryService.java +%%DATADIR%%/src/org/exist/soap/SessionManager.java +%%DATADIR%%/src/org/exist/soap/QueryResponseDocuments.java +%%DATADIR%%/src/org/exist/soap/QueryServiceLocator.java +%%DATADIR%%/src/org/exist/soap/UserDesc.java +%%DATADIR%%/src/org/exist/xupdate/test/results/namespaces.xml +%%DATADIR%%/src/org/exist/xupdate/test/results/insertafter_big.xml +%%DATADIR%%/src/org/exist/xupdate/test/results/insertafter.xml +%%DATADIR%%/src/org/exist/xupdate/test/results/append_child.xml +%%DATADIR%%/src/org/exist/xupdate/test/results/insertbefore.xml +%%DATADIR%%/src/org/exist/xupdate/test/results/variables.xml +%%DATADIR%%/src/org/exist/xupdate/test/results/append_attribute.xml +%%DATADIR%%/src/org/exist/xupdate/test/results/replace.xml +%%DATADIR%%/src/org/exist/xupdate/test/results/update.xml +%%DATADIR%%/src/org/exist/xupdate/test/results/whitespace.xml +%%DATADIR%%/src/org/exist/xupdate/test/results/remove.xml +%%DATADIR%%/src/org/exist/xupdate/test/results/conditional.xml +%%DATADIR%%/src/org/exist/xupdate/test/results/append.xml +%%DATADIR%%/src/org/exist/xupdate/test/modifications/replace.xml +%%DATADIR%%/src/org/exist/xupdate/test/modifications/namespaces.xml +%%DATADIR%%/src/org/exist/xupdate/test/modifications/rename_including_namespace.xml +%%DATADIR%%/src/org/exist/xupdate/test/modifications/append_child.xml +%%DATADIR%%/src/org/exist/xupdate/test/modifications/variables.xml +%%DATADIR%%/src/org/exist/xupdate/test/modifications/rename_root_element.xml +%%DATADIR%%/src/org/exist/xupdate/test/modifications/update.xml +%%DATADIR%%/src/org/exist/xupdate/test/modifications/append_attribute.xml +%%DATADIR%%/src/org/exist/xupdate/test/modifications/remove.xml +%%DATADIR%%/src/org/exist/xupdate/test/modifications/conditional.xml +%%DATADIR%%/src/org/exist/xupdate/test/modifications/insertafter.xml +%%DATADIR%%/src/org/exist/xupdate/test/modifications/whitespace.xml +%%DATADIR%%/src/org/exist/xupdate/test/modifications/insertbefore.xml +%%DATADIR%%/src/org/exist/xupdate/test/modifications/append.xml +%%DATADIR%%/src/org/exist/xupdate/test/modifications/insertafter_big.xml +%%DATADIR%%/src/org/exist/xupdate/test/input/address_big.xml +%%DATADIR%%/src/org/exist/xupdate/test/input/namespaces.xml +%%DATADIR%%/src/org/exist/xupdate/test/input/address.xml +%%DATADIR%%/src/org/exist/xupdate/test/CompareDocuments.java +%%DATADIR%%/src/org/exist/xupdate/test/XUpdateTest.java +%%DATADIR%%/src/org/exist/xupdate/test/XUpdateTestCases.java +%%DATADIR%%/src/org/exist/xupdate/test/RemoveAppendTest.java +%%DATADIR%%/src/org/exist/xupdate/test/StressTest.java +%%DATADIR%%/src/org/exist/xupdate/test/AllTests.java +%%DATADIR%%/src/org/exist/xupdate/Conditional.java +%%DATADIR%%/src/org/exist/xupdate/Replace.java +%%DATADIR%%/src/org/exist/xupdate/Modification.java +%%DATADIR%%/src/org/exist/xupdate/XUpdateProcessor.java +%%DATADIR%%/src/org/exist/xupdate/Insert.java +%%DATADIR%%/src/org/exist/xupdate/Remove.java +%%DATADIR%%/src/org/exist/xupdate/Rename.java +%%DATADIR%%/src/org/exist/xupdate/Append.java +%%DATADIR%%/src/org/exist/xupdate/Update.java +%%DATADIR%%/src/org/exist/xmldb/test/RemoteDBTest.java +%%DATADIR%%/src/org/exist/xmldb/test/CollectionTest.java +%%DATADIR%%/src/org/exist/xmldb/test/concurrent/action/AttributeUpdateAction.java +%%DATADIR%%/src/org/exist/xmldb/test/concurrent/action/ComplexUpdateAction.java +%%DATADIR%%/src/org/exist/xmldb/test/concurrent/action/ReplaceResourceAction.java +%%DATADIR%%/src/org/exist/xmldb/test/concurrent/action/MultiResourcesAction.java +%%DATADIR%%/src/org/exist/xmldb/test/concurrent/action/RemoveAppendAction.java +%%DATADIR%%/src/org/exist/xmldb/test/concurrent/action/Action.java +%%DATADIR%%/src/org/exist/xmldb/test/concurrent/action/XQueryAction.java +%%DATADIR%%/src/org/exist/xmldb/test/concurrent/action/ValueAppendAction.java +%%DATADIR%%/src/org/exist/xmldb/test/concurrent/action/XQueryUpdateAction.java +%%DATADIR%%/src/org/exist/xmldb/test/concurrent/action/TextUpdateAction.java +%%DATADIR%%/src/org/exist/xmldb/test/concurrent/action/RetrieveResourceAction.java +%%DATADIR%%/src/org/exist/xmldb/test/concurrent/action/CreateCollectionAction.java +%%DATADIR%%/src/org/exist/xmldb/test/concurrent/ConcurrentQueryTest.java +%%DATADIR%%/src/org/exist/xmldb/test/concurrent/AllTests.java +%%DATADIR%%/src/org/exist/xmldb/test/concurrent/ConcurrentResourceTest3.java +%%DATADIR%%/src/org/exist/xmldb/test/concurrent/FragmentsTest.java +%%DATADIR%%/src/org/exist/xmldb/test/concurrent/ConcurrentTestBase.java +%%DATADIR%%/src/org/exist/xmldb/test/concurrent/ConcurrentAttrUpdateTest.java +%%DATADIR%%/src/org/exist/xmldb/test/concurrent/ConcurrentXUpdateTest.java +%%DATADIR%%/src/org/exist/xmldb/test/concurrent/TextUpdateTest.java +%%DATADIR%%/src/org/exist/xmldb/test/concurrent/ValueIndexUpdateTest.java +%%DATADIR%%/src/org/exist/xmldb/test/concurrent/DBUtils.java +%%DATADIR%%/src/org/exist/xmldb/test/concurrent/DeadlockTest.java +%%DATADIR%%/src/org/exist/xmldb/test/concurrent/ConcurrentResourceTest2.java +%%DATADIR%%/src/org/exist/xmldb/test/concurrent/ConcurrentResourceTest.java +%%DATADIR%%/src/org/exist/xmldb/test/concurrent/XMLGenerator.java +%%DATADIR%%/src/org/exist/xmldb/test/concurrent/ComplexUpdateTest.java +%%DATADIR%%/src/org/exist/xmldb/test/concurrent/ConcurrentQueryUpdateTest.java +%%DATADIR%%/src/org/exist/xmldb/test/MultiDBTest.java +%%DATADIR%%/src/org/exist/xmldb/test/CollectionConfigurationTest.java +%%DATADIR%%/src/org/exist/xmldb/test/TestEXistXMLSerialize.java +%%DATADIR%%/src/org/exist/xmldb/test/IndexingTest.java +%%DATADIR%%/src/org/exist/xmldb/test/RemoteQueryTest.java +%%DATADIR%%/src/org/exist/xmldb/test/RemoteCollectionTest.java +%%DATADIR%%/src/org/exist/xmldb/test/CopyMoveTest.java +%%DATADIR%%/src/org/exist/xmldb/test/ContentAsDOMTest.java +%%DATADIR%%/src/org/exist/xmldb/test/RemoteTests.java +%%DATADIR%%/src/org/exist/xmldb/test/CreateCollectionsTest.java +%%DATADIR%%/src/org/exist/xmldb/test/RemoteDatabaseImplTest.java +%%DATADIR%%/src/org/exist/xmldb/test/ShutdownTest.java +%%DATADIR%%/src/org/exist/xmldb/test/SerializationTest.java +%%DATADIR%%/src/org/exist/xmldb/test/PerformanceTest.xml +%%DATADIR%%/src/org/exist/xmldb/test/ResourceTest.java +%%DATADIR%%/src/org/exist/xmldb/test/ResourceSetTest.java +%%DATADIR%%/src/org/exist/xmldb/test/DTMHandleTest.java +%%DATADIR%%/src/org/exist/xmldb/test/DOMTest.java +%%DATADIR%%/src/org/exist/xmldb/test/DOMTestJUnit.java +%%DATADIR%%/src/org/exist/xmldb/test/TreeLevelOrderTest.java +%%DATADIR%%/src/org/exist/xmldb/test/LocalTests.java +%%DATADIR%%/src/org/exist/xmldb/test/StorageStressTest.java +%%DATADIR%%/src/org/exist/xmldb/test/XmldbURITest.java +%%DATADIR%%/src/org/exist/xmldb/RemoteUserManagementService.java +%%DATADIR%%/src/org/exist/xmldb/LocalXPathQueryService.java +%%DATADIR%%/src/org/exist/xmldb/RemoteDatabaseInstanceManager.java +%%DATADIR%%/src/org/exist/xmldb/RemoteXUpdateQueryService.java +%%DATADIR%%/src/org/exist/xmldb/MapResourceSet.java +%%DATADIR%%/src/org/exist/xmldb/RemoteXPathQueryService.java +%%DATADIR%%/src/org/exist/xmldb/XPathQueryServiceImpl.java +%%DATADIR%%/src/org/exist/xmldb/ShutdownListener.java +%%DATADIR%%/src/org/exist/xmldb/RemoteCompiledExpression.java +%%DATADIR%%/src/org/exist/xmldb/package.html +%%DATADIR%%/src/org/exist/xmldb/LocalDatabaseInstanceManager.java +%%DATADIR%%/src/org/exist/xmldb/LocalXUpdateQueryService.java +%%DATADIR%%/src/org/exist/xmldb/XmldbURI.java +%%DATADIR%%/src/org/exist/xmldb/RemoteBinaryResource.java +%%DATADIR%%/src/org/exist/xmldb/RemoteIndexQueryService.java +%%DATADIR%%/src/org/exist/xmldb/LocalResourceSet.java +%%DATADIR%%/src/org/exist/xmldb/LocalUserManagementService.java +%%DATADIR%%/src/org/exist/xmldb/LocalIndexQueryService.java +%%DATADIR%%/src/org/exist/xmldb/RemoteCollection.java +%%DATADIR%%/src/org/exist/xmldb/DatabaseInstanceManager.java +%%DATADIR%%/src/org/exist/xmldb/CollectionManagementServiceImpl.java +%%DATADIR%%/src/org/exist/xmldb/LocalXMLResource.java +%%DATADIR%%/src/org/exist/xmldb/UserManagementService.java +%%DATADIR%%/src/org/exist/xmldb/FullXmldbURI.java +%%DATADIR%%/src/org/exist/xmldb/RemoteCollectionManagementService.java +%%DATADIR%%/src/org/exist/xmldb/DatabaseImpl.java +%%DATADIR%%/src/org/exist/xmldb/RemoteResourceIterator.java +%%DATADIR%%/src/org/exist/xmldb/LocalCollection.java +%%DATADIR%%/src/org/exist/xmldb/EXistResource.java +%%DATADIR%%/src/org/exist/xmldb/ResourceSetHelper.java +%%DATADIR%%/src/org/exist/xmldb/AbstractEXistResource.java +%%DATADIR%%/src/org/exist/xmldb/RemoteXMLResource.java +%%DATADIR%%/src/org/exist/xmldb/IndexQueryService.java +%%DATADIR%%/src/org/exist/xmldb/LocalBinaryResource.java +%%DATADIR%%/src/org/exist/xmldb/CollectionImpl.java +%%DATADIR%%/src/org/exist/xmldb/DatabaseStatus.java +%%DATADIR%%/src/org/exist/xmldb/RemoteResourceSet.java +%%DATADIR%%/src/org/exist/xmldb/XQueryService.java +%%DATADIR%%/src/org/exist/xmldb/LocalCollectionManagementService.java +%%DATADIR%%/src/org/exist/storage/package.html +%%DATADIR%%/src/org/exist/storage/btree/RemoveValueLoggable.java +%%DATADIR%%/src/org/exist/storage/btree/CreateBTNodeLoggable.java +%%DATADIR%%/src/org/exist/storage/btree/BTree.java +%%DATADIR%%/src/org/exist/storage/btree/IndexQuery.java +%%DATADIR%%/src/org/exist/storage/btree/DBException.java +%%DATADIR%%/src/org/exist/storage/btree/BTreeException.java +%%DATADIR%%/src/org/exist/storage/btree/UpdatePageLoggable.java +%%DATADIR%%/src/org/exist/storage/btree/SetParentLoggable.java +%%DATADIR%%/src/org/exist/storage/btree/UpdateValueLoggable.java +%%DATADIR%%/src/org/exist/storage/btree/BTreeCallback.java +%%DATADIR%%/src/org/exist/storage/btree/Paged.java +%%DATADIR%%/src/org/exist/storage/btree/InsertValueLoggable.java +%%DATADIR%%/src/org/exist/storage/btree/Value.java +%%DATADIR%%/src/org/exist/storage/btree/BTAbstractLoggable.java +%%DATADIR%%/src/org/exist/storage/dom/NodeIterator.java +%%DATADIR%%/src/org/exist/storage/dom/UpdateLinkLoggable.java +%%DATADIR%%/src/org/exist/storage/dom/RemoveOverflowLoggable.java +%%DATADIR%%/src/org/exist/storage/dom/DOMFile.java +%%DATADIR%%/src/org/exist/storage/dom/DOMTransaction.java +%%DATADIR%%/src/org/exist/storage/dom/UpdateHeaderLoggable.java +%%DATADIR%%/src/org/exist/storage/dom/RemovePageLoggable.java +%%DATADIR%%/src/org/exist/storage/dom/DOMFileIterator.java +%%DATADIR%%/src/org/exist/storage/dom/CreatePageLoggable.java +%%DATADIR%%/src/org/exist/storage/dom/AddLinkLoggable.java +%%DATADIR%%/src/org/exist/storage/dom/UpdateValueLoggable.java +%%DATADIR%%/src/org/exist/storage/dom/InsertValueLoggable.java +%%DATADIR%%/src/org/exist/storage/dom/ItemId.java +%%DATADIR%%/src/org/exist/storage/dom/AddMovedValueLoggable.java +%%DATADIR%%/src/org/exist/storage/dom/SplitPageLoggable.java +%%DATADIR%%/src/org/exist/storage/dom/AddValueLoggable.java +%%DATADIR%%/src/org/exist/storage/dom/RemoveEmptyPageLoggable.java +%%DATADIR%%/src/org/exist/storage/dom/RemoveValueLoggable.java +%%DATADIR%%/src/org/exist/storage/dom/WriteOverflowPageLoggable.java +%%DATADIR%%/src/org/exist/storage/index/OverflowModifiedLoggable.java +%%DATADIR%%/src/org/exist/storage/index/OverflowCreatePageLoggable.java +%%DATADIR%%/src/org/exist/storage/index/OverflowRemoveLoggable.java +%%DATADIR%%/src/org/exist/storage/index/OverflowStoreLoggable.java +%%DATADIR%%/src/org/exist/storage/index/StoreValueLoggable.java +%%DATADIR%%/src/org/exist/storage/index/BFile.java +%%DATADIR%%/src/org/exist/storage/index/FreeSpace.java +%%DATADIR%%/src/org/exist/storage/index/AbstractBFileLoggable.java +%%DATADIR%%/src/org/exist/storage/index/RemoveEmptyPageLoggable.java +%%DATADIR%%/src/org/exist/storage/index/OverflowAppendLoggable.java +%%DATADIR%%/src/org/exist/storage/index/FreeList.java +%%DATADIR%%/src/org/exist/storage/index/BFileCallback.java +%%DATADIR%%/src/org/exist/storage/index/RemoveValueLoggable.java +%%DATADIR%%/src/org/exist/storage/index/CollectionStore.java +%%DATADIR%%/src/org/exist/storage/index/CreatePageLoggable.java +%%DATADIR%%/src/org/exist/storage/index/OverflowCreateLoggable.java +%%DATADIR%%/src/org/exist/storage/SystemTask.java +%%DATADIR%%/src/org/exist/storage/txn/TxnStart.java +%%DATADIR%%/src/org/exist/storage/txn/Txn.java +%%DATADIR%%/src/org/exist/storage/txn/Checkpoint.java +%%DATADIR%%/src/org/exist/storage/txn/TransactionException.java +%%DATADIR%%/src/org/exist/storage/txn/TxnAbort.java +%%DATADIR%%/src/org/exist/storage/txn/TransactionManager.java +%%DATADIR%%/src/org/exist/storage/txn/TxnCommit.java +%%DATADIR%%/src/org/exist/storage/serializers/Serializer.java +%%DATADIR%%/src/org/exist/storage/serializers/XIncludeFilter.java +%%DATADIR%%/src/org/exist/storage/serializers/NativeSerializer.java +%%DATADIR%%/src/org/exist/storage/serializers/package.html +%%DATADIR%%/src/org/exist/storage/serializers/WSDLFilter.java +%%DATADIR%%/src/org/exist/storage/serializers/EXistOutputKeys.java +%%DATADIR%%/src/org/exist/storage/test/AbstractUpdateTest.java +%%DATADIR%%/src/org/exist/storage/test/CollectionTest.java +%%DATADIR%%/src/org/exist/storage/test/RecoveryTest.java +%%DATADIR%%/src/org/exist/storage/test/RemoveTest.java +%%DATADIR%%/src/org/exist/storage/test/ResourceTest.java +%%DATADIR%%/src/org/exist/storage/test/UpdateRecoverTest.java +%%DATADIR%%/src/org/exist/storage/test/CopyResourceTest.java +%%DATADIR%%/src/org/exist/storage/test/AppendTest.java +%%DATADIR%%/src/org/exist/storage/test/UpdateAttributeTest.java +%%DATADIR%%/src/org/exist/storage/test/ConcurrentStoreTest.java +%%DATADIR%%/src/org/exist/storage/test/RecoverBinaryTest2.java +%%DATADIR%%/src/org/exist/storage/test/MoveCollectionTest.java +%%DATADIR%%/src/org/exist/storage/test/UpdateTest.java +%%DATADIR%%/src/org/exist/storage/test/RecoveryTest3.java +%%DATADIR%%/src/org/exist/storage/test/MoveResourceTest.java +%%DATADIR%%/src/org/exist/storage/test/RecoveryTest2.java +%%DATADIR%%/src/org/exist/storage/test/BFileRecoverTest.java +%%DATADIR%%/src/org/exist/storage/test/CopyCollectionTest.java +%%DATADIR%%/src/org/exist/storage/test/AllTests.java +%%DATADIR%%/src/org/exist/storage/test/BTreeRecoverTest.java +%%DATADIR%%/src/org/exist/storage/test/DOMFileRecoverTest.java +%%DATADIR%%/src/org/exist/storage/test/RecoverBinaryTest.java +%%DATADIR%%/src/org/exist/storage/test/RemoveCollectionTest.java +%%DATADIR%%/src/org/exist/storage/test/RenameTest.java +%%DATADIR%%/src/org/exist/storage/test/ReplaceTest.java +%%DATADIR%%/src/org/exist/storage/test/ShutdownTest.java +%%DATADIR%%/src/org/exist/storage/test/LowLevelText.java +%%DATADIR%%/src/org/exist/storage/test/BFileOverflowTest.java +%%DATADIR%%/src/org/exist/storage/test/XIncludeSerializerTest.java +%%DATADIR%%/src/org/exist/storage/RegexMatcher.java +%%DATADIR%%/src/org/exist/storage/journal/Journal.java +%%DATADIR%%/src/org/exist/storage/journal/FileSyncThread.java +%%DATADIR%%/src/org/exist/storage/journal/Lsn.java +%%DATADIR%%/src/org/exist/storage/journal/JournalReader.java +%%DATADIR%%/src/org/exist/storage/journal/LogException.java +%%DATADIR%%/src/org/exist/storage/journal/AbstractLoggable.java +%%DATADIR%%/src/org/exist/storage/journal/Loggable.java +%%DATADIR%%/src/org/exist/storage/journal/LogEntryTypes.java +%%DATADIR%%/src/org/exist/storage/cache/Cacheable.java +%%DATADIR%%/src/org/exist/storage/cache/LRUCache.java +%%DATADIR%%/src/org/exist/storage/cache/Accounting.java +%%DATADIR%%/src/org/exist/storage/cache/Cache.java +%%DATADIR%%/src/org/exist/storage/cache/LRDCache.java +%%DATADIR%%/src/org/exist/storage/cache/GClockCache.java +%%DATADIR%%/src/org/exist/storage/cache/package.html +%%DATADIR%%/src/org/exist/storage/StorageAddress.java +%%DATADIR%%/src/org/exist/storage/BrokerFactory.java +%%DATADIR%%/src/org/exist/storage/analysis/SimpleTokenizer.java +%%DATADIR%%/src/org/exist/storage/analysis/Tokenizer.java +%%DATADIR%%/src/org/exist/storage/analysis/TextToken.java +%%DATADIR%%/src/org/exist/storage/analysis/ParseException.java +%%DATADIR%%/src/org/exist/storage/analysis/Token.java +%%DATADIR%%/src/org/exist/storage/ValueIndexFactory.java +%%DATADIR%%/src/org/exist/storage/XQueryMonitor.java +%%DATADIR%%/src/org/exist/storage/NativeElementIndex.java +%%DATADIR%%/src/org/exist/storage/sync/Sync.java +%%DATADIR%%/src/org/exist/storage/sync/SyncDaemon.java +%%DATADIR%%/src/org/exist/storage/Indexable.java +%%DATADIR%%/src/org/exist/storage/IndexStats.java +%%DATADIR%%/src/org/exist/storage/io/VariableByteArrayInput.java +%%DATADIR%%/src/org/exist/storage/io/test/VariableByteStreamTest.java +%%DATADIR%%/src/org/exist/storage/io/VariableByteInput.java +%%DATADIR%%/src/org/exist/storage/io/VariableByteOutputStream.java +%%DATADIR%%/src/org/exist/storage/io/AbstractVariableByteInput.java +%%DATADIR%%/src/org/exist/storage/io/VariableByteInputStream.java +%%DATADIR%%/src/org/exist/storage/lock/Lock.java +%%DATADIR%%/src/org/exist/storage/lock/ReentrantReadWriteLock.java +%%DATADIR%%/src/org/exist/storage/lock/MultiReadReentrantLock.java +%%DATADIR%%/src/org/exist/storage/lock/FileLock.java +%%DATADIR%%/src/org/exist/storage/ElementValue.java +%%DATADIR%%/src/org/exist/storage/UpdateListener.java +%%DATADIR%%/src/org/exist/storage/recovery/RecoveryManager.java +%%DATADIR%%/src/org/exist/storage/NodePath.java +%%DATADIR%%/src/org/exist/storage/GeneralRangeIndexSpec.java +%%DATADIR%%/src/org/exist/storage/NotificationService.java +%%DATADIR%%/src/org/exist/storage/Signatures.java +%%DATADIR%%/src/org/exist/storage/CacheManager.java +%%DATADIR%%/src/org/exist/storage/report/Statistics.java +%%DATADIR%%/src/org/exist/storage/report/XMLStatistics.java +%%DATADIR%%/src/org/exist/storage/DataBackup.java +%%DATADIR%%/src/org/exist/storage/NativeClusterBroker.java +%%DATADIR%%/src/org/exist/storage/ValueIndexKeyFactory.java +%%DATADIR%%/src/org/exist/storage/QNameRangeIndexSpec.java +%%DATADIR%%/src/org/exist/storage/TermMatcher.java +%%DATADIR%%/src/org/exist/storage/BrokerPool.java +%%DATADIR%%/src/org/exist/storage/NativeValueIndexByQName.java +%%DATADIR%%/src/org/exist/storage/ValueIndexKeyFactorySimple.java +%%DATADIR%%/src/org/exist/storage/TextSearchEngine.java +%%DATADIR%%/src/org/exist/storage/NativeValueIndex.java +%%DATADIR%%/src/org/exist/storage/ContentLoadingObserver.java +%%DATADIR%%/src/org/exist/storage/NativeBroker.java +%%DATADIR%%/src/org/exist/storage/ElementIndex.java +%%DATADIR%%/src/org/exist/storage/FulltextIndexSpec.java +%%DATADIR%%/src/org/exist/storage/IndexSpec.java +%%DATADIR%%/src/org/exist/storage/RangeIndexSpec.java +%%DATADIR%%/src/org/exist/storage/NativeTextEngine.java +%%DATADIR%%/src/org/exist/storage/XQueryPool.java +%%DATADIR%%/src/org/exist/storage/BufferStats.java +%%DATADIR%%/src/org/exist/storage/DBBroker.java +%%DATADIR%%/src/org/exist/dom/StoredNode.java +%%DATADIR%%/src/org/exist/dom/NodeImpl.java +%%DATADIR%%/src/org/exist/dom/ExtArrayNodeSet.java +%%DATADIR%%/src/org/exist/dom/QName.java +%%DATADIR%%/src/org/exist/dom/test/BasicNodeSetTest.java +%%DATADIR%%/src/org/exist/dom/test/NodeTest.java +%%DATADIR%%/src/org/exist/dom/package.html +%%DATADIR%%/src/org/exist/dom/VirtualNodeSet.java +%%DATADIR%%/src/org/exist/dom/Visitable.java +%%DATADIR%%/src/org/exist/dom/NodeImplRef.java +%%DATADIR%%/src/org/exist/dom/ElementImpl.java +%%DATADIR%%/src/org/exist/dom/DocumentSet.java +%%DATADIR%%/src/org/exist/dom/PoolableNodeObjectFactory.java +%%DATADIR%%/src/org/exist/dom/AVLTreeNodeSet.java +%%DATADIR%%/src/org/exist/dom/NamedNode.java +%%DATADIR%%/src/org/exist/dom/TextImpl.java +%%DATADIR%%/src/org/exist/dom/ByDocumentIterator.java +%%DATADIR%%/src/org/exist/dom/DocumentImpl.java +%%DATADIR%%/src/org/exist/dom/LockToken.java +%%DATADIR%%/src/org/exist/dom/QNamePool.java +%%DATADIR%%/src/org/exist/dom/BinaryDocument.java +%%DATADIR%%/src/org/exist/dom/SymbolTable.java +%%DATADIR%%/src/org/exist/dom/DocumentTypeImpl.java +%%DATADIR%%/src/org/exist/dom/NamedNodeMapImpl.java +%%DATADIR%%/src/org/exist/dom/NodeVisitor.java +%%DATADIR%%/src/org/exist/dom/NodeSetHelper.java +%%DATADIR%%/src/org/exist/dom/AbstractNodeSet.java +%%DATADIR%%/src/org/exist/dom/NodeObjectPool.java +%%DATADIR%%/src/org/exist/dom/EmptyNodeSet.java +%%DATADIR%%/src/org/exist/dom/StoredDOMImplementation.java +%%DATADIR%%/src/org/exist/dom/CDATASectionImpl.java +%%DATADIR%%/src/org/exist/dom/CommentImpl.java +%%DATADIR%%/src/org/exist/dom/NodeSetIterator.java +%%DATADIR%%/src/org/exist/dom/ProcessingInstructionImpl.java +%%DATADIR%%/src/org/exist/dom/SortedNodeSet.java +%%DATADIR%%/src/org/exist/dom/Match.java +%%DATADIR%%/src/org/exist/dom/NodeListImpl.java +%%DATADIR%%/src/org/exist/dom/DocumentMetadata.java +%%DATADIR%%/src/org/exist/dom/NullNodeIndexListener.java +%%DATADIR%%/src/org/exist/dom/CharacterDataImpl.java +%%DATADIR%%/src/org/exist/dom/NodeIndexListener.java +%%DATADIR%%/src/org/exist/dom/AttrImpl.java +%%DATADIR%%/src/org/exist/dom/NodeSet.java +%%DATADIR%%/src/org/exist/dom/XMLUtil.java +%%DATADIR%%/src/org/exist/dom/ContextItem.java +%%DATADIR%%/src/org/exist/dom/QNameable.java +%%DATADIR%%/src/org/exist/dom/NodeProxy.java +%%DATADIR%%/src/org/exist/util/hashtable/SequencedLongHashMap.java +%%DATADIR%%/src/org/exist/util/hashtable/test/HashtableTest.java +%%DATADIR%%/src/org/exist/util/hashtable/Object2LongHashMap.java +%%DATADIR%%/src/org/exist/util/hashtable/ObjectHashSet.java +%%DATADIR%%/src/org/exist/util/hashtable/Object2ObjectHashMap.java +%%DATADIR%%/src/org/exist/util/hashtable/Long2ObjectHashMap.java +%%DATADIR%%/src/org/exist/util/hashtable/Int2ObjectHashMap.java +%%DATADIR%%/src/org/exist/util/hashtable/Object2LongIdentityHashMap.java +%%DATADIR%%/src/org/exist/util/hashtable/Object2IntHashMap.java +%%DATADIR%%/src/org/exist/util/hashtable/NamePool.java +%%DATADIR%%/src/org/exist/util/hashtable/AbstractHashtable.java +%%DATADIR%%/src/org/exist/util/hashtable/package.html +%%DATADIR%%/src/org/exist/util/GlobToRegex.java +%%DATADIR%%/src/org/exist/util/CompressedWhitespace.java +%%DATADIR%%/src/org/exist/util/ArrayUtils.java +%%DATADIR%%/src/org/exist/util/IndexCallback.java +%%DATADIR%%/src/org/exist/util/Base64Decoder.java +%%DATADIR%%/src/org/exist/util/ByteArray.java +%%DATADIR%%/src/org/exist/util/serializer/Receiver.java +%%DATADIR%%/src/org/exist/util/serializer/encodings/ASCIICharSet.java +%%DATADIR%%/src/org/exist/util/serializer/encodings/Latin2CharSet.java +%%DATADIR%%/src/org/exist/util/serializer/encodings/UnicodeCharSet.java +%%DATADIR%%/src/org/exist/util/serializer/encodings/KOI8RCharSet.java +%%DATADIR%%/src/org/exist/util/serializer/encodings/Latin1CharSet.java +%%DATADIR%%/src/org/exist/util/serializer/encodings/CharacterSet.java +%%DATADIR%%/src/org/exist/util/serializer/SerializerObjectFactory.java +%%DATADIR%%/src/org/exist/util/serializer/XHTMLWriter.java +%%DATADIR%%/src/org/exist/util/serializer/IndentingXMLWriter.java +%%DATADIR%%/src/org/exist/util/serializer/package.html +%%DATADIR%%/src/org/exist/util/serializer/AttrList.java +%%DATADIR%%/src/org/exist/util/serializer/ReceiverToSAX.java +%%DATADIR%%/src/org/exist/util/serializer/XMLWriter.java +%%DATADIR%%/src/org/exist/util/serializer/SAXSerializer.java +%%DATADIR%%/src/org/exist/util/serializer/ExtendedDOMStreamer.java +%%DATADIR%%/src/org/exist/util/serializer/SerializerPool.java +%%DATADIR%%/src/org/exist/util/serializer/ExtendedDOMSerializer.java +%%DATADIR%%/src/org/exist/util/serializer/DOMSerializer.java +%%DATADIR%%/src/org/exist/util/serializer/DOMStreamer.java +%%DATADIR%%/src/org/exist/util/serializer/TEXTWriter.java +%%DATADIR%%/src/org/exist/util/DatabaseConfigurationException.java +%%DATADIR%%/src/org/exist/util/CharArrayPool.java +%%DATADIR%%/src/org/exist/util/FastQSort.java +%%DATADIR%%/src/org/exist/util/ProgressListener.java +%%DATADIR%%/src/org/exist/util/ReadOnlyException.java +%%DATADIR%%/src/org/exist/util/Lockable.java +%%DATADIR%%/src/org/exist/util/DirectoryScanner.java +%%DATADIR%%/src/org/exist/util/FastByteBuffer.java +%%DATADIR%%/src/org/exist/util/MimeTable.java +%%DATADIR%%/src/org/exist/util/OrderedLinkedList.java +%%DATADIR%%/src/org/exist/util/Configuration.java +%%DATADIR%%/src/org/exist/util/test/XMLStringTest.java +%%DATADIR%%/src/org/exist/util/test/DOMSerializerTest.java +%%DATADIR%%/src/org/exist/util/Collations.java +%%DATADIR%%/src/org/exist/util/ByteConversion.java +%%DATADIR%%/src/org/exist/util/CharSlice.java +%%DATADIR%%/src/org/exist/util/Occurrences.java +%%DATADIR%%/src/org/exist/util/mime-types.xml +%%DATADIR%%/src/org/exist/util/OrderedLongLinkedList.java +%%DATADIR%%/src/org/exist/util/IncludeXMLFilter.java +%%DATADIR%%/src/org/exist/util/FixedByteArray.java +%%DATADIR%%/src/org/exist/util/ProgressBar.java +%%DATADIR%%/src/org/exist/util/Range.java +%%DATADIR%%/src/org/exist/util/sanity/AssertFailure.java +%%DATADIR%%/src/org/exist/util/sanity/SanityCheck.java +%%DATADIR%%/src/org/exist/util/Base64Encoder.java +%%DATADIR%%/src/org/exist/util/Heap.java +%%DATADIR%%/src/org/exist/util/LockException.java +%%DATADIR%%/src/org/exist/util/XMLReaderObjectFactory.java +%%DATADIR%%/src/org/exist/util/SelectorUtils.java +%%DATADIR%%/src/org/exist/util/XMLFilenameFilter.java +%%DATADIR%%/src/org/exist/util/FloatingPointConverter.java +%%DATADIR%%/src/org/exist/util/XMLChar.java +%%DATADIR%%/src/org/exist/util/CollectionScanner.java +%%DATADIR%%/src/org/exist/util/ProgressIndicator.java +%%DATADIR%%/src/org/exist/util/SyntaxException.java +%%DATADIR%%/src/org/exist/util/HeapSort.java +%%DATADIR%%/src/org/exist/util/XMLReaderPool.java +%%DATADIR%%/src/org/exist/util/InsertionSort.java +%%DATADIR%%/src/org/exist/util/LongLinkedList.java +%%DATADIR%%/src/org/exist/util/FastStringBuffer.java +%%DATADIR%%/src/org/exist/util/PorterStemmer.java +%%DATADIR%%/src/org/exist/util/Compressor.java +%%DATADIR%%/src/org/exist/util/UTF8.java +%%DATADIR%%/src/org/exist/util/ValueOccurrences.java +%%DATADIR%%/src/org/exist/util/SwapVals.java +%%DATADIR%%/src/org/exist/util/ByteArrayPool.java +%%DATADIR%%/src/org/exist/util/XMLString.java +%%DATADIR%%/src/org/exist/util/MimeType.java +%%DATADIR%%/src/org/exist/client/icons/SaveAs24.gif +%%DATADIR%%/src/org/exist/client/icons/New24.gif +%%DATADIR%%/src/org/exist/client/icons/Import24.gif +%%DATADIR%%/src/org/exist/client/icons/Copy24.gif +%%DATADIR%%/src/org/exist/client/icons/Find24.gif +%%DATADIR%%/src/org/exist/client/icons/Back16.gif +%%DATADIR%%/src/org/exist/client/icons/Delete24.gif +%%DATADIR%%/src/org/exist/client/icons/Forward16.gif +%%DATADIR%%/src/org/exist/client/icons/Target.png +%%DATADIR%%/src/org/exist/client/icons/Refresh24.gif +%%DATADIR%%/src/org/exist/client/icons/Rule.png +%%DATADIR%%/src/org/exist/client/icons/Export24.gif +%%DATADIR%%/src/org/exist/client/icons/Preferences24.gif +%%DATADIR%%/src/org/exist/client/icons/Policy.png +%%DATADIR%%/src/org/exist/client/icons/Up24.gif +%%DATADIR%%/src/org/exist/client/icons/Cut24.gif +%%DATADIR%%/src/org/exist/client/icons/PolicySet.png +%%DATADIR%%/src/org/exist/client/icons/Paste24.gif +%%DATADIR%%/src/org/exist/client/icons/keyring-small.png +%%DATADIR%%/src/org/exist/client/icons/Open24.gif +%%DATADIR%%/src/org/exist/client/icons/Condition.png +%%DATADIR%%/src/org/exist/client/icons/Add24.gif +%%DATADIR%%/src/org/exist/client/icons/NewDir.png +%%DATADIR%%/src/org/exist/client/icons/New16.gif +%%DATADIR%%/src/org/exist/client/icons/Save24.gif +%%DATADIR%%/src/org/exist/client/xacml/RuleEditor.java +%%DATADIR%%/src/org/exist/client/xacml/PolicyElementContainer.java +%%DATADIR%%/src/org/exist/client/xacml/XACMLTreeModel.java +%%DATADIR%%/src/org/exist/client/xacml/AutoScroller.java +%%DATADIR%%/src/org/exist/client/xacml/PolicySetNode.java +%%DATADIR%%/src/org/exist/client/xacml/policies.xconf +%%DATADIR%%/src/org/exist/client/xacml/NodeEditor.java +%%DATADIR%%/src/org/exist/client/xacml/ResourceCategoryAttributeHandler.java +%%DATADIR%%/src/org/exist/client/xacml/UserAttributeHandler.java +%%DATADIR%%/src/org/exist/client/xacml/XACMLEditor.java +%%DATADIR%%/src/org/exist/client/xacml/CustomRenderer.java +%%DATADIR%%/src/org/exist/client/xacml/TargetEditor.java +%%DATADIR%%/src/org/exist/client/xacml/AbstractPolicyNode.java +%%DATADIR%%/src/org/exist/client/xacml/PolicyElementNode.java +%%DATADIR%%/src/org/exist/client/xacml/AbstractPolicyEditor.java +%%DATADIR%%/src/org/exist/client/xacml/NodeContainer.java +%%DATADIR%%/src/org/exist/client/xacml/NodeTransferable.java +%%DATADIR%%/src/org/exist/client/xacml/Abbreviator.java +%%DATADIR%%/src/org/exist/client/xacml/PolicyElementEditor.java +%%DATADIR%%/src/org/exist/client/xacml/NodeExpander.java +%%DATADIR%%/src/org/exist/client/xacml/NodeCopyAction.java +%%DATADIR%%/src/org/exist/client/xacml/ActionAttributeHandler.java +%%DATADIR%%/src/org/exist/client/xacml/AbstractNodeContainer.java +%%DATADIR%%/src/org/exist/client/xacml/DatabaseInterface.java +%%DATADIR%%/src/org/exist/client/xacml/AbstractTreeNode.java +%%DATADIR%%/src/org/exist/client/xacml/TargetNode.java +%%DATADIR%%/src/org/exist/client/xacml/TargetTableModel.java +%%DATADIR%%/src/org/exist/client/xacml/AttributeHandler.java +%%DATADIR%%/src/org/exist/client/xacml/RootNode.java +%%DATADIR%%/src/org/exist/client/xacml/TreeMutator.java +%%DATADIR%%/src/org/exist/client/xacml/XACMLTreeNode.java +%%DATADIR%%/src/org/exist/client/xacml/ResizingTable.java +%%DATADIR%%/src/org/exist/client/xacml/RuleNode.java +%%DATADIR%%/src/org/exist/client/xacml/NodeChangeListener.java +%%DATADIR%%/src/org/exist/client/xacml/ConditionNode.java +%%DATADIR%%/src/org/exist/client/xacml/PolicyNode.java +%%DATADIR%%/src/org/exist/client/xacml/MatchEditor.java +%%DATADIR%%/src/org/exist/client/xacml/ModuleAttributeHandler.java +%%DATADIR%%/src/org/exist/client/xacml/AbstractNodeEditor.java +%%DATADIR%%/src/org/exist/client/Messages.java +%%DATADIR%%/src/org/exist/client/messages_no.properties +%%DATADIR%%/src/org/exist/client/messages_ru_RU.properties +%%DATADIR%%/src/org/exist/client/ClientFrame.java +%%DATADIR%%/src/org/exist/client/CommandlineOptions.java +%%DATADIR%%/src/org/exist/client/messages.properties +%%DATADIR%%/src/org/exist/client/ClientTextArea.java +%%DATADIR%%/src/org/exist/client/LoginPanel.java +%%DATADIR%%/src/org/exist/client/QueryDialog.java +%%DATADIR%%/src/org/exist/client/messages_sv_SE.properties +%%DATADIR%%/src/org/exist/client/ResourceDescriptor.java +%%DATADIR%%/src/org/exist/client/PrettyXmldbURI.java +%%DATADIR%%/src/org/exist/client/messages_fr_FR.properties +%%DATADIR%%/src/org/exist/client/messages_it_IT.properties +%%DATADIR%%/src/org/exist/client/TriggersDialog.java +%%DATADIR%%/src/org/exist/client/messages_es_ES.properties +%%DATADIR%%/src/org/exist/client/UserDialog.java +%%DATADIR%%/src/org/exist/client/CollectionXConf.java +%%DATADIR%%/src/org/exist/client/IndexDialog.java +%%DATADIR%%/src/org/exist/client/DocumentView.java +%%DATADIR%%/src/org/exist/client/messages_zh_CN.properties +%%DATADIR%%/src/org/exist/client/messages_nl_NL.properties +%%DATADIR%%/src/org/exist/client/InteractiveClient.java +%%DATADIR%%/src/org/exist/client/ResourcePropertyDialog.java +%%DATADIR%%/src/org/exist/client/UploadDialog.java +%%DATADIR%%/src/org/exist/validation/test/EntityResolverTest.java +%%DATADIR%%/src/org/exist/validation/test/DatabaseTools.java +%%DATADIR%%/src/org/exist/validation/test/DatabaseResourcesTest.java +%%DATADIR%%/src/org/exist/validation/test/ApacheXmlComponentsTest.java +%%DATADIR%%/src/org/exist/validation/test/XQueryValidationFunctionsTest.java +%%DATADIR%%/src/org/exist/validation/test/ValidationServiceTest.java +%%DATADIR%%/src/org/exist/validation/internal/BlockingOutputStream.java +%%DATADIR%%/src/org/exist/validation/internal/query/find_publicid_in_catalogs.xq +%%DATADIR%%/src/org/exist/validation/internal/query/find_xsd_in_catalog.xq +%%DATADIR%%/src/org/exist/validation/internal/query/find_schema.xq +%%DATADIR%%/src/org/exist/validation/internal/query/find_catalog.xq +%%DATADIR%%/src/org/exist/validation/internal/query/find_dtd_in_catalog.xq +%%DATADIR%%/src/org/exist/validation/internal/query/find_dtd.xq +%%DATADIR%%/src/org/exist/validation/internal/ResourceInputStream.java +%%DATADIR%%/src/org/exist/validation/internal/ResourceThread.java +%%DATADIR%%/src/org/exist/validation/internal/DatabaseResources.java +%%DATADIR%%/src/org/exist/validation/resolver/eXistCatalogResolver.java +%%DATADIR%%/src/org/exist/validation/service/RemoteValidationService.java +%%DATADIR%%/src/org/exist/validation/service/ValidationService.java +%%DATADIR%%/src/org/exist/validation/service/LocalValidationService.java +%%DATADIR%%/src/org/exist/validation/GrammarPool.java +%%DATADIR%%/src/org/exist/validation/ValidationReport.java +%%DATADIR%%/src/org/exist/validation/XmlLibraryChecker.java +%%DATADIR%%/src/org/exist/validation/EntityResolver.java +%%DATADIR%%/src/org/exist/validation/Validator.java +%%DATADIR%%/src/org/exist/collections/triggers/test/XQueryTriggerTest.java +%%DATADIR%%/src/org/exist/collections/triggers/DocumentTrigger.java +%%DATADIR%%/src/org/exist/collections/triggers/TriggerException.java +%%DATADIR%%/src/org/exist/collections/triggers/FilteringTrigger.java +%%DATADIR%%/src/org/exist/collections/triggers/Dumper.java +%%DATADIR%%/src/org/exist/collections/triggers/HistoryTrigger.java +%%DATADIR%%/src/org/exist/collections/triggers/STXTransformerTrigger.java +%%DATADIR%%/src/org/exist/collections/triggers/CollectionTrigger.java +%%DATADIR%%/src/org/exist/collections/triggers/TriggerStatePerThread.java +%%DATADIR%%/src/org/exist/collections/triggers/Trigger.java +%%DATADIR%%/src/org/exist/collections/triggers/XQueryTrigger.java +%%DATADIR%%/src/org/exist/collections/CollectionCache.java +%%DATADIR%%/src/org/exist/collections/package.html +%%DATADIR%%/src/org/exist/collections/CollectionConfigurationException.java +%%DATADIR%%/src/org/exist/collections/CollectionConfiguration.java +%%DATADIR%%/src/org/exist/collections/Collection.java +%%DATADIR%%/src/org/exist/collections/CollectionConfigurationManager.java +%%DATADIR%%/src/org/exist/collections/IndexInfo.java +%%DATADIR%%/src/org/exist/security/xacml/AccessContext.java +%%DATADIR%%/src/org/exist/security/xacml/policies/main_modules_policy.xml +%%DATADIR%%/src/org/exist/security/xacml/policies/builtin_policy.xml +%%DATADIR%%/src/org/exist/security/xacml/policies/external_modules_policy.xml +%%DATADIR%%/src/org/exist/security/xacml/policies/reflection_policy.xml +%%DATADIR%%/src/org/exist/security/xacml/UserAttributeModule.java +%%DATADIR%%/src/org/exist/security/xacml/ExistPDP.java +%%DATADIR%%/src/org/exist/security/xacml/RequestHelper.java +%%DATADIR%%/src/org/exist/security/xacml/XACMLConstants.java +%%DATADIR%%/src/org/exist/security/xacml/XACMLSource.java +%%DATADIR%%/src/org/exist/security/xacml/ExistPolicyModule.java +%%DATADIR%%/src/org/exist/security/xacml/NullAccessContextException.java +%%DATADIR%%/src/org/exist/security/xacml/XACMLUtil.java +%%DATADIR%%/src/org/exist/security/SecurityManager.java +%%DATADIR%%/src/org/exist/security/Base64Coder.java +%%DATADIR%%/src/org/exist/security/package.html +%%DATADIR%%/src/org/exist/security/PermissionDeniedException.java +%%DATADIR%%/src/org/exist/security/MD5.java +%%DATADIR%%/src/org/exist/security/LDAPbindSecurityManager.java +%%DATADIR%%/src/org/exist/security/LDAPSecurityManager.java +%%DATADIR%%/src/org/exist/security/security.properties +%%DATADIR%%/src/org/exist/security/Permission.java +%%DATADIR%%/src/org/exist/security/Group.java +%%DATADIR%%/src/org/exist/security/XMLSecurityManager.java +%%DATADIR%%/src/org/exist/security/User.java +%%DATADIR%%/src/org/exist/security/XmldbPrincipal.java +%%DATADIR%%/src/org/exist/ant/antlib.xml +%%DATADIR%%/src/org/exist/ant/XMLDBRemoveTask.java +%%DATADIR%%/src/org/exist/ant/XMLDBQueryTask.java +%%DATADIR%%/src/org/exist/ant/ListGroupsTask.java +%%DATADIR%%/src/org/exist/ant/package.html +%%DATADIR%%/src/org/exist/ant/XMLDBXUpdateTask.java +%%DATADIR%%/src/org/exist/ant/AddUserTask.java +%%DATADIR%%/src/org/exist/ant/XMLDBCreateTask.java +%%DATADIR%%/src/org/exist/ant/XMLDBShutdownTask.java +%%DATADIR%%/src/org/exist/ant/RestoreTask.java +%%DATADIR%%/src/org/exist/ant/RemoveUserTask.java +%%DATADIR%%/src/org/exist/ant/ListUsersTask.java +%%DATADIR%%/src/org/exist/ant/ChmodTask.java +%%DATADIR%%/src/org/exist/ant/XMLDBCopyTask.java +%%DATADIR%%/src/org/exist/ant/UserTask.java +%%DATADIR%%/src/org/exist/ant/ChownTask.java +%%DATADIR%%/src/org/exist/ant/AbstractXMLDBTask.java +%%DATADIR%%/src/org/exist/ant/XMLDBStoreTask.java +%%DATADIR%%/src/org/exist/ant/XMLDBExtractTask.java +%%DATADIR%%/src/org/exist/ant/LockResourceTask.java +%%DATADIR%%/src/org/exist/ant/XMLDBExistTask.java +%%DATADIR%%/src/org/exist/ant/XMLDBXPathTask.java +%%DATADIR%%/src/org/exist/ant/XMLDBXQueryTask.java +%%DATADIR%%/src/org/exist/ant/BackupTask.java +%%DATADIR%%/src/org/exist/ant/XMLDBMoveTask.java +%%DATADIR%%/src/org/exist/ant/XMLDBListTask.java +%%DATADIR%%/src/org/exist/memtree/TextImpl.java +%%DATADIR%%/src/org/exist/memtree/test/DOMTest.java +%%DATADIR%%/src/org/exist/memtree/test/DOMIndexerTest.java +%%DATADIR%%/src/org/exist/memtree/MemTreeBuilder.java +%%DATADIR%%/src/org/exist/memtree/ReferenceNode.java +%%DATADIR%%/src/org/exist/memtree/NamespaceNode.java +%%DATADIR%%/src/org/exist/memtree/package.html +%%DATADIR%%/src/org/exist/memtree/DocumentBuilderReceiver.java +%%DATADIR%%/src/org/exist/memtree/NodeImpl.java +%%DATADIR%%/src/org/exist/memtree/CDATASectionImpl.java +%%DATADIR%%/src/org/exist/memtree/NodeFactory.java +%%DATADIR%%/src/org/exist/memtree/SAXAdapter.java +%%DATADIR%%/src/org/exist/memtree/DocumentImpl.java +%%DATADIR%%/src/org/exist/memtree/AttributeImpl.java +%%DATADIR%%/src/org/exist/memtree/ProcessingInstructionImpl.java +%%DATADIR%%/src/org/exist/memtree/DOMIndexer.java +%%DATADIR%%/src/org/exist/memtree/CommentImpl.java +%%DATADIR%%/src/org/exist/memtree/ElementImpl.java +%%DATADIR%%/src/org/exist/xmldb2.xsl +%%DATADIR%%/src/org/exist/xqj/XQItem.java +%%DATADIR%%/src/org/exist/xqj/XQDataSource.java +%%DATADIR%%/src/org/exist/xqj/XQCommonHandler.java +%%DATADIR%%/src/org/exist/xqj/XQResultSequence.java +%%DATADIR%%/src/org/exist/xqj/XQConnection.java +%%DATADIR%%/src/org/exist/xqj/XQException.java +%%DATADIR%%/src/org/exist/xqj/XQExpression.java +%%DATADIR%%/src/org/exist/xqj/XQItemType.java +%%DATADIR%%/src/org/exist/xqj/XQMetaData.java +%%DATADIR%%/src/org/exist/cluster/journal/test/JournalManagerTest.java +%%DATADIR%%/src/org/exist/cluster/journal/JournalIdGenerator.java +%%DATADIR%%/src/org/exist/cluster/journal/ClusterEventMarshaller.java +%%DATADIR%%/src/org/exist/cluster/journal/JournalManager.java +%%DATADIR%%/src/org/exist/cluster/StoreClusterEvent.java +%%DATADIR%%/src/org/exist/cluster/ClusterChannel.java +%%DATADIR%%/src/org/exist/cluster/RemoveClusterEvent.java +%%DATADIR%%/src/org/exist/cluster/ClusterEvent.java +%%DATADIR%%/src/org/exist/cluster/ClusterException.java +%%DATADIR%%/src/org/exist/cluster/cocoon/ConsoleInfo.java +%%DATADIR%%/src/org/exist/cluster/cocoon/ClusterInfoGenerator.java +%%DATADIR%%/src/org/exist/cluster/cocoon/ClusterGenerator.java +%%DATADIR%%/src/org/exist/cluster/ClusterCollection.java +%%DATADIR%%/src/org/exist/cluster/RemoveCollectionClusterEvent.java +%%DATADIR%%/src/org/exist/cluster/CreateCollectionClusterEvent.java +%%DATADIR%%/src/org/exist/cluster/UpdateClusterEvent.java +%%DATADIR%%/src/org/exist/cluster/ClusterComunication.java +%%DATADIR%%/src/org/exist/xmlrpc/AuthenticatedHandler.java +%%DATADIR%%/src/org/exist/xmlrpc/RpcServlet.java +%%DATADIR%%/src/org/exist/xmlrpc/RpcAPI.java +%%DATADIR%%/src/org/exist/xmlrpc/test/MoveResourceTest.java +%%DATADIR%%/src/org/exist/xmlrpc/test/XmlRpcTest.java +%%DATADIR%%/src/org/exist/xmlrpc/QueryResult.java +%%DATADIR%%/src/org/exist/xmlrpc/RpcConnection.java +%%DATADIR%%/src/org/exist/xmlrpc/RpcServer.java +%%DATADIR%%/src/org/exist/atom/util/DOMDB.java +%%DATADIR%%/src/org/exist/atom/util/DOM.java +%%DATADIR%%/src/org/exist/atom/util/NodeHandler.java +%%DATADIR%%/src/org/exist/atom/util/DateFormatter.java +%%DATADIR%%/src/org/exist/atom/modules/introspect.xq +%%DATADIR%%/src/org/exist/atom/modules/AtomProtocol.java +%%DATADIR%%/src/org/exist/atom/modules/AtomFeeds.java +%%DATADIR%%/src/org/exist/atom/modules/Query.java +%%DATADIR%%/src/org/exist/atom/modules/AtomModuleBase.java +%%DATADIR%%/src/org/exist/atom/modules/topic.xq +%%DATADIR%%/src/org/exist/atom/http/HttpResponseMessage.java +%%DATADIR%%/src/org/exist/atom/http/HttpRequestMessage.java +%%DATADIR%%/src/org/exist/atom/http/AtomServlet.java +%%DATADIR%%/src/org/exist/atom/http/WebDAVServlet.java +%%DATADIR%%/src/org/exist/atom/AtomModule.java +%%DATADIR%%/src/org/exist/atom/OutgoingMessage.java +%%DATADIR%%/src/org/exist/atom/IncomingMessage.java +%%DATADIR%%/src/org/exist/atom/Atom.java +%%DATADIR%%/src/org/exist/http/RESTServer.java +%%DATADIR%%/src/org/exist/http/webdav/methods/Unlock.java +%%DATADIR%%/src/org/exist/http/webdav/methods/Mkcol.java +%%DATADIR%%/src/org/exist/http/webdav/methods/Move.java +%%DATADIR%%/src/org/exist/http/webdav/methods/Propfind.java +%%DATADIR%%/src/org/exist/http/webdav/methods/Put.java +%%DATADIR%%/src/org/exist/http/webdav/methods/Lock.java +%%DATADIR%%/src/org/exist/http/webdav/methods/Options.java +%%DATADIR%%/src/org/exist/http/webdav/methods/Head.java +%%DATADIR%%/src/org/exist/http/webdav/methods/AbstractWebDAVMethod.java +%%DATADIR%%/src/org/exist/http/webdav/methods/Copy.java +%%DATADIR%%/src/org/exist/http/webdav/methods/Delete.java +%%DATADIR%%/src/org/exist/http/webdav/methods/collection.xq +%%DATADIR%%/src/org/exist/http/webdav/methods/Get.java +%%DATADIR%%/src/org/exist/http/webdav/WebDAV.java +%%DATADIR%%/src/org/exist/http/webdav/WebDAVUtil.java +%%DATADIR%%/src/org/exist/http/webdav/WebDAVMethod.java +%%DATADIR%%/src/org/exist/http/webdav/WebDAVMethodFactory.java +%%DATADIR%%/src/org/exist/http/servlets/Authenticator.java +%%DATADIR%%/src/org/exist/http/servlets/EXistServlet.java +%%DATADIR%%/src/org/exist/http/servlets/BasicAuthenticator.java +%%DATADIR%%/src/org/exist/http/servlets/ResponseWrapper.java +%%DATADIR%%/src/org/exist/http/servlets/Log4jInit.java +%%DATADIR%%/src/org/exist/http/servlets/WebDAVServlet.java +%%DATADIR%%/src/org/exist/http/servlets/SessionWrapper.java +%%DATADIR%%/src/org/exist/http/servlets/HttpRequestWrapper.java +%%DATADIR%%/src/org/exist/http/servlets/XQueryServlet.java +%%DATADIR%%/src/org/exist/http/servlets/RequestWrapper.java +%%DATADIR%%/src/org/exist/http/servlets/DigestAuthenticator.java +%%DATADIR%%/src/org/exist/http/servlets/HttpServletRequestWrapper.java +%%DATADIR%%/src/org/exist/http/servlets/DatabaseAdminServlet.java +%%DATADIR%%/src/org/exist/http/servlets/HttpSessionWrapper.java +%%DATADIR%%/src/org/exist/http/servlets/HttpResponseWrapper.java +%%DATADIR%%/src/org/exist/http/Descriptor.java +%%DATADIR%%/src/org/exist/http/NotFoundException.java +%%DATADIR%%/src/org/exist/http/test/RESTServiceTest.java +%%DATADIR%%/src/org/exist/http/SOAPServer.java +%%DATADIR%%/src/org/exist/http/realm/XmldbRealm.java +%%DATADIR%%/src/org/exist/http/Response.java +%%DATADIR%%/src/org/exist/http/BadRequestException.java +%%DATADIR%%/src/org/exist/Indexer.java +%%DATADIR%%/src/org/exist/cocoon/XQueryGenerator.java +%%DATADIR%%/src/org/exist/cocoon/ShutdownAction.java +%%DATADIR%%/src/org/exist/cocoon/CocoonRequestWrapper.java +%%DATADIR%%/src/org/exist/cocoon/CocoonResponseWrapper.java +%%DATADIR%%/src/org/exist/cocoon/XMLDBTransformer.java +%%DATADIR%%/src/org/exist/cocoon/XMLReaderWrapper.java +%%DATADIR%%/src/org/exist/cocoon/StatusGenerator.java +%%DATADIR%%/src/org/exist/cocoon/CocoonSessionWrapper.java +%%DATADIR%%/src/org/exist/cocoon/XMLDBSourceFactory.java +%%DATADIR%%/src/org/exist/cocoon/package.html +%%DATADIR%%/src/org/exist/cocoon/XMLDBSource.java +%%DATADIR%%/src/org/exist/cocoon/XMLDBSessionLoginAction.java +%%DATADIR%%/src/org/exist/cocoon/XSPHelper.java +%%DATADIR%%/src/org/exist/backup/Main.java +%%DATADIR%%/src/org/exist/backup/package.html +%%DATADIR%%/src/org/exist/backup/Restore.java +%%DATADIR%%/src/org/exist/backup/BackupDialog.java +%%DATADIR%%/src/org/exist/backup/RestoreDialog.java +%%DATADIR%%/src/org/exist/backup/CreateBackupDialog.java +%%DATADIR%%/src/org/exist/backup/Backup.java +%%DATADIR%%/src/org/exist/source/StringSource.java +%%DATADIR%%/src/org/exist/source/DBSource.java +%%DATADIR%%/src/org/exist/source/Source.java +%%DATADIR%%/src/org/exist/source/CocoonSource.java +%%DATADIR%%/src/org/exist/source/ClassLoaderSource.java +%%DATADIR%%/src/org/exist/source/URLSource.java +%%DATADIR%%/src/org/exist/source/SourceFactory.java +%%DATADIR%%/src/org/exist/source/FileSource.java +%%DATADIR%%/src/org/exist/source/AbstractSource.java +%%DATADIR%%/src/org/exist/server.xml +%%DATADIR%%/src/org/exist/numbering/test/DLNTest.java +%%DATADIR%%/src/org/exist/numbering/test/DLNStorageTest.java +%%DATADIR%%/src/org/exist/numbering/DLNFactory.java +%%DATADIR%%/src/org/exist/numbering/DLNBase.java +%%DATADIR%%/src/org/exist/numbering/NodeIdFactory.java +%%DATADIR%%/src/org/exist/numbering/NodeId.java +%%DATADIR%%/src/org/exist/numbering/DLN.java +%%DATADIR%%/src/org/exist/start/Classpath.java +%%DATADIR%%/src/org/exist/start/Version.java +%%DATADIR%%/src/org/exist/start/start.config +%%DATADIR%%/src/org/exist/start/LatestFileResolver.java +%%DATADIR%%/src/org/exist/start/Main.java +%%DATADIR%%/src/org/exist/start/package.html +%%DATADIR%%/src/org/exist/exist.xsl +%%DATADIR%%/src/org/exist/jsp/CollectionTag.java +%%DATADIR%%/src/org/exist/jsp/CollectionTagInfo.java +%%DATADIR%%/src/org/exist/webstart/JnlpWriter.java +%%DATADIR%%/src/org/exist/webstart/JnlpHelper.java +%%DATADIR%%/src/org/exist/webstart/JnlpJarFiles.java +%%DATADIR%%/src/org/exist/webstart/JnlpServlet.java +%%DATADIR%%/src/org/exist/test/TestConstants.java +%%DATADIR%%/src/org/exist/xslt/TransformerFactoryAllocator.java +%%DATADIR%%/src/org/exist/ServerShutdown.java +%%DATADIR%%/src/org/exist/StandaloneServer.java +%%DATADIR%%/src/org/exist/xmldb.xsl +%%DATADIR%%/src/org/exist/Namespaces.java +%%DATADIR%%/src/org/exist/JettyStart.java +%%DATADIR%%/src/org/exist/EXistException.java +%%DATADIR%%/src/org/exist/system.properties +%%DATADIR%%/src/javax/xml/xquery/XQDynamicContext.java +%%DATADIR%%/src/javax/xml/xquery/XQDataSource.java +%%DATADIR%%/src/javax/xml/xquery/XQDataFactory.java +%%DATADIR%%/src/javax/xml/xquery/XQStaticContext.java +%%DATADIR%%/src/javax/xml/xquery/XQPreparedExpression.java +%%DATADIR%%/src/javax/xml/xquery/XQWarning.java +%%DATADIR%%/src/javax/xml/xquery/XQConstants.java +%%DATADIR%%/src/javax/xml/xquery/XQCommonHandler.java +%%DATADIR%%/src/javax/xml/xquery/XQResultSequence.java +%%DATADIR%%/src/javax/xml/xquery/XQStackTraceElement.java +%%DATADIR%%/src/javax/xml/xquery/XQSequenceType.java +%%DATADIR%%/src/javax/xml/xquery/XQException.java +%%DATADIR%%/src/javax/xml/xquery/XQSequence.java +%%DATADIR%%/src/javax/xml/xquery/XQItem.java +%%DATADIR%%/src/javax/xml/xquery/XQStackTraceVariable.java +%%DATADIR%%/src/javax/xml/xquery/XQExpression.java +%%DATADIR%%/src/javax/xml/xquery/XQItemAccessor.java +%%DATADIR%%/src/javax/xml/xquery/XQQueryException.java +%%DATADIR%%/src/javax/xml/xquery/XQConnection.java +%%DATADIR%%/src/javax/xml/xquery/XQItemType.java +%%DATADIR%%/src/javax/xml/xquery/XQResultItem.java +%%DATADIR%%/src/javax/xml/xquery/XQCancelledException.java +%%DATADIR%%/src/javax/xml/xquery/XQMetaData.java +%%DATADIR%%/src/javax/xml/namespace/NamespaceContext.java +%%DATADIR%%/src/CatalogManager.properties +%%DATADIR%%/start.jar +%%DATADIR%%/thirdparty/jboss/src/org/exist/jboss/XmlDbServiceMBean.java +%%DATADIR%%/thirdparty/jboss/src/org/exist/jboss/exist/EXistServiceMBean.java +%%DATADIR%%/thirdparty/jboss/src/org/exist/jboss/exist/EXistService.java +%%DATADIR%%/thirdparty/jboss/src/org/exist/jboss/XmlDbService.java +%%DATADIR%%/thirdparty/jboss/src/samples/XmlDbClientServiceMBean.java +%%DATADIR%%/thirdparty/jboss/src/samples/XmlDbClientService.java +%%DATADIR%%/thirdparty/jboss/conf/eXist/jboss-service.xml +%%DATADIR%%/thirdparty/jboss/conf/samples/jboss-service.xml +%%DATADIR%%/thirdparty/jboss/README +%%DATADIR%%/thirdparty/jboss/build.xml +%%DATADIR%%/thirdparty/jboss/lib/readme.jars +%%DATADIR%%/thirdparty/tomcat5/server/lib/catalina-5.0.28.jar +%%DATADIR%%/thirdparty/tomcat5/LICENSE +%%DATADIR%%/thirdparty/tomcat5/bin/jmx.jar +%%DATADIR%%/tools/XFormsFilter/xslt/html4.xsl +%%DATADIR%%/tools/XFormsFilter/xslt/xhtml-form-controls.xsl +%%DATADIR%%/tools/XFormsFilter/xslt/ui.xsl +%%DATADIR%%/tools/XFormsFilter/xslt/xhtml-ui.xsl +%%DATADIR%%/tools/XFormsFilter/xslt/xhtml.xsl +%%DATADIR%%/tools/XFormsFilter/xslt/html-form-controls.xsl +%%DATADIR%%/tools/XFormsFilter/xslt/xforms.css +%%DATADIR%%/tools/XFormsFilter/org/chiba/adapter/servlet/HttpRequestHandler$DateTimeValue.class +%%DATADIR%%/tools/XFormsFilter/org/chiba/adapter/servlet/ServletAdapter.java +%%DATADIR%%/tools/XFormsFilter/org/chiba/adapter/servlet/HttpRequestHandler.java +%%DATADIR%%/tools/XFormsFilter/org/chiba/adapter/servlet/XFormsSession.java +%%DATADIR%%/tools/XFormsFilter/org/chiba/adapter/upload/OutputStreamListener.java +%%DATADIR%%/tools/XFormsFilter/org/chiba/adapter/upload/MonitoredDiskFileItem.java +%%DATADIR%%/tools/XFormsFilter/org/chiba/adapter/upload/MonitoredOutputStream.java +%%DATADIR%%/tools/XFormsFilter/org/chiba/adapter/upload/UploadMonitor.java +%%DATADIR%%/tools/XFormsFilter/org/chiba/adapter/upload/UploadInfo.java +%%DATADIR%%/tools/XFormsFilter/org/chiba/adapter/upload/UploadListener.java +%%DATADIR%%/tools/XFormsFilter/org/chiba/adapter/upload/MonitoredDiskFileItemFactory.java +%%DATADIR%%/tools/XFormsFilter/uk/gov/devonline/www/xforms/XFormsFilter.java +%%DATADIR%%/tools/XFormsFilter/uk/gov/devonline/www/xforms/BufferedServletOutputStream.java +%%DATADIR%%/tools/XFormsFilter/uk/gov/devonline/www/xforms/BufferedHttpServletResponseWrapper.java +%%DATADIR%%/tools/XFormsFilter/chiba.default.xml +%%DATADIR%%/tools/XFormsFilter/XFormsFilter.jar +%%DATADIR%%/tools/XFormsFilter/.project +%%DATADIR%%/tools/XFormsFilter/web.xml +%%DATADIR%%/tools/XFormsFilter/.classpath +%%DATADIR%%/tools/XFormsFilter/README.txt +%%DATADIR%%/tools/rulesets/codesize.xml +%%DATADIR%%/tools/rulesets/scratchpad.xml +%%DATADIR%%/tools/rulesets/.optimizations.xml.swp +%%DATADIR%%/tools/rulesets/logging-jakarta-commons.xml +%%DATADIR%%/tools/rulesets/strictexception.xml +%%DATADIR%%/tools/rulesets/migrating.xml +%%DATADIR%%/tools/rulesets/coupling.xml +%%DATADIR%%/tools/rulesets/favorites.xml +%%DATADIR%%/tools/rulesets/design.xml +%%DATADIR%%/tools/rulesets/optimizations.xml +%%DATADIR%%/tools/rulesets/migrating_to_14.xml +%%DATADIR%%/tools/rulesets/rulesets.properties +%%DATADIR%%/tools/rulesets/finalizers.xml +%%DATADIR%%/tools/rulesets/junit.xml +%%DATADIR%%/tools/rulesets/sunsecure.xml +%%DATADIR%%/tools/rulesets/migrating_to_15.xml +%%DATADIR%%/tools/rulesets/imports.xml +%%DATADIR%%/tools/rulesets/naming.xml +%%DATADIR%%/tools/rulesets/clone.xml +%%DATADIR%%/tools/rulesets/logging-java.xml +%%DATADIR%%/tools/rulesets/migrating_to_13.xml +%%DATADIR%%/tools/rulesets/unusedcode.xml +%%DATADIR%%/tools/rulesets/strings.xml +%%DATADIR%%/tools/rulesets/javabeans.xml +%%DATADIR%%/tools/rulesets/controversial.xml +%%DATADIR%%/tools/rulesets/basic.xml +%%DATADIR%%/tools/rulesets/braces.xml +%%DATADIR%%/tools/wrapper/bin/uninstall.bat +%%DATADIR%%/tools/wrapper/bin/exist.sh +%%DATADIR%%/tools/wrapper/bin/install.bat +%%DATADIR%%/tools/wrapper/bin/wrapper.exe +%%DATADIR%%/tools/wrapper/bin/exist.sh.in +%%DATADIR%%/tools/wrapper/bin/exist.bat +%%DATADIR%%/tools/wrapper/bin/wrapper +%%DATADIR%%/tools/wrapper/lib/wrapper.jar +%%DATADIR%%/tools/wrapper/lib/libwrapper.so +%%DATADIR%%/tools/wrapper/lib/wrapper.dll +%%DATADIR%%/tools/wrapper/classes/org/exist/wrapper/Main.class +%%DATADIR%%/tools/wrapper/src/org/exist/wrapper/Main.java +%%DATADIR%%/tools/wrapper/wrapper-log4j.xsl +%%DATADIR%%/tools/wrapper/license.txt +%%DATADIR%%/tools/wrapper/conf/wrapper.conf.install +%%DATADIR%%/tools/wrapper/conf/wrapper.conf +%%DATADIR%%/tools/wrapper/conf/log4j.xml +%%DATADIR%%/tools/wrapper/conf/wrapper.conf.in +%%DATADIR%%/tools/wrapper/build.xml +%%DATADIR%%/tools/jetty/LICENSE.TXT +%%DATADIR%%/tools/jetty/etc/jetty.xml +%%DATADIR%%/tools/jetty/etc/webdefault.xml +%%DATADIR%%/tools/jetty/lib/jasper-compiler.jar +%%DATADIR%%/tools/jetty/lib/org.mortbay.jetty.jar +%%DATADIR%%/tools/jetty/lib/jasper-runtime.jar +%%DATADIR%%/tools/requestlog/src/org/exist/requestlog/RequestReplayer.java +%%DATADIR%%/tools/requestlog/build.xml +%%DATADIR%%/tools/requestlog/run.bat +%%DATADIR%%/tools/requestlog/run.sh +%%DATADIR%%/tools/ant/lib/ant.jar +%%DATADIR%%/tools/ant/lib/jdepend-2.9.jar +%%DATADIR%%/tools/ant/lib/asocat-exist.jar +%%DATADIR%%/tools/ant/lib/junit.jar +%%DATADIR%%/tools/ant/lib/ant-trax.jar +%%DATADIR%%/tools/ant/lib/ant-jdepend.jar +%%DATADIR%%/tools/ant/lib/ant-nodeps.jar +%%DATADIR%%/tools/ant/lib/xmlunit1.0.jar +%%DATADIR%%/tools/ant/lib/ant-junit.jar +%%DATADIR%%/tools/ant/lib/ant-launcher.jar +%%DATADIR%%/tools/ant/lib/ant-antlr.jar +%%DATADIR%%/tools/ant/etc/junit-frames.xsl +%%DATADIR%%/tools/ant/etc/jdepend-frames.xsl +%%DATADIR%%/tools/izpack/clinstaller.jar +%%DATADIR%%/webapp/xquery/logo.jpg +%%DATADIR%%/webapp/xquery/table.xq +%%DATADIR%%/webapp/xquery/error.css +%%DATADIR%%/webapp/xquery/acronyms.xq +%%DATADIR%%/webapp/xquery/stylesheets/acronyms.xsl +%%DATADIR%%/webapp/xquery/stylesheets/overview.xsl +%%DATADIR%%/webapp/xquery/stylesheets/detailed.xsl +%%DATADIR%%/webapp/xquery/stylesheets/functions.xsl +%%DATADIR%%/webapp/xquery/fibo.xq +%%DATADIR%%/webapp/xquery/sitemap.xmap +%%DATADIR%%/webapp/xquery/resources/powered.gif +%%DATADIR%%/webapp/xquery/resources/javanet_button_90.gif +%%DATADIR%%/webapp/xquery/styles/default-style.css +%%DATADIR%%/webapp/xquery/styles/niftycube.js +%%DATADIR%%/webapp/xquery/styles/acronyms.css +%%DATADIR%%/webapp/xquery/styles/niftyCorners.css +%%DATADIR%%/webapp/xquery/styles/functions.css +%%DATADIR%%/webapp/xquery/styles/xquery.css +%%DATADIR%%/webapp/xquery/login.css +%%DATADIR%%/webapp/xquery/hello.xq +%%DATADIR%%/webapp/xquery/biblio.xq +%%DATADIR%%/webapp/xquery/functions.xq +%%DATADIR%%/webapp/xquery/header.xml +%%DATADIR%%/webapp/xquery/hello-plural.xq +%%DATADIR%%/webapp/xquery/biblio.xml +%%DATADIR%%/webapp/xquery/hello-plural-db.xq +%%DATADIR%%/webapp/xquery/transform.xql +%%DATADIR%%/webapp/xquery/watchdog.gif +%%DATADIR%%/webapp/xquery/session.xql +%%DATADIR%%/webapp/xquery/login.xql +%%DATADIR%%/webapp/xquery/parameters.xq +%%DATADIR%%/webapp/xquery/guess.xql +%%DATADIR%%/webapp/xquery/functions.xsl +%%DATADIR%%/webapp/xquery/call.xql +%%DATADIR%%/webapp/xquery/sidebar.xml +%%DATADIR%%/webapp/xquery/collections.xqm +%%DATADIR%%/webapp/resources/policy-editor_target2.png +%%DATADIR%%/webapp/resources/styles/style.css +%%DATADIR%%/webapp/resources/services.png +%%DATADIR%%/webapp/resources/policy-editor_initial.png +%%DATADIR%%/webapp/resources/webstart.small.jpg +%%DATADIR%%/webapp/resources/client4.png +%%DATADIR%%/webapp/resources/exist.png +%%DATADIR%%/webapp/resources/webdav_konqueror.png +%%DATADIR%%/webapp/resources/jnlp_icon_32x32.gif +%%DATADIR%%/webapp/resources/index1.png +%%DATADIR%%/webapp/resources/subclipse2.png +%%DATADIR%%/webapp/resources/javanet_button_90.gif +%%DATADIR%%/webapp/resources/webdav_xp_mnp3.png +%%DATADIR%%/webapp/resources/policy-hierarchy.png +%%DATADIR%%/webapp/resources/webdav_xmlspy.png +%%DATADIR%%/webapp/resources/xml.gif +%%DATADIR%%/webapp/resources/webdav_xp_mnp0.png +%%DATADIR%%/webapp/resources/powered.gif +%%DATADIR%%/webapp/resources/lc1.gif +%%DATADIR%%/webapp/resources/devonline.png +%%DATADIR%%/webapp/resources/lc2.gif +%%DATADIR%%/webapp/resources/trapeze.gif +%%DATADIR%%/webapp/resources/izpack-88x31.png +%%DATADIR%%/webapp/resources/policy-editor_policy.png +%%DATADIR%%/webapp/resources/jnlp_icon_64x64.gif +%%DATADIR%%/webapp/resources/webdav_xp_mnp2.png +%%DATADIR%%/webapp/resources/webdav_xp_mnp4.png +%%DATADIR%%/webapp/resources/jnlp_logo.jpg +%%DATADIR%%/webapp/resources/webdav_xp_webfolders.png +%%DATADIR%%/webapp/resources/admin1.png +%%DATADIR%%/webapp/resources/client1.png +%%DATADIR%%/webapp/resources/backup3.png +%%DATADIR%%/webapp/resources/admin2.png +%%DATADIR%%/webapp/resources/thyssen.png +%%DATADIR%%/webapp/resources/cswgroup.gif +%%DATADIR%%/webapp/resources/policy-editor_target.png +%%DATADIR%%/webapp/resources/download.gif +%%DATADIR%%/webapp/resources/backup2.png +%%DATADIR%%/webapp/resources/policy-editor_disabled.png +%%DATADIR%%/webapp/resources/sandbox.png +%%DATADIR%%/webapp/resources/client2.png +%%DATADIR%%/webapp/resources/webdav_xp_mnp1.png +%%DATADIR%%/webapp/resources/client3.png +%%DATADIR%%/webapp/resources/webdav_oxygen.png +%%DATADIR%%/webapp/resources/yjp.gif +%%DATADIR%%/webapp/resources/new.gif +%%DATADIR%%/webapp/resources/bbf2.gif +%%DATADIR%%/webapp/resources/tortoise.png +%%DATADIR%%/webapp/resources/cpd-xquery.png +%%DATADIR%%/webapp/resources/TOY2006s.jpg +%%DATADIR%%/webapp/resources/backup1.png +%%DATADIR%%/webapp/resources/subclipse1.png +%%DATADIR%%/webapp/xqts/styles/xml2html.css +%%DATADIR%%/webapp/xqts/styles/tableft1.gif +%%DATADIR%%/webapp/xqts/styles/report.css +%%DATADIR%%/webapp/xqts/styles/SyntaxHighlighter.css +%%DATADIR%%/webapp/xqts/styles/tree.css +%%DATADIR%%/webapp/xqts/styles/tabright1.gif +%%DATADIR%%/webapp/xqts/styles/container.css +%%DATADIR%%/webapp/xqts/images/vline.gif +%%DATADIR%%/webapp/xqts/images/tm.gif +%%DATADIR%%/webapp/xqts/images/lmh.gif +%%DATADIR%%/webapp/xqts/images/lph.gif +%%DATADIR%%/webapp/xqts/images/tp.gif +%%DATADIR%%/webapp/xqts/images/loading.gif +%%DATADIR%%/webapp/xqts/images/tmh.gif +%%DATADIR%%/webapp/xqts/images/ln.gif +%%DATADIR%%/webapp/xqts/images/lm.gif +%%DATADIR%%/webapp/xqts/images/lp.gif +%%DATADIR%%/webapp/xqts/images/tn.gif +%%DATADIR%%/webapp/xqts/images/tph.gif +%%DATADIR%%/webapp/xqts/scripts/shBrushXQuery.js +%%DATADIR%%/webapp/xqts/scripts/shCore.js +%%DATADIR%%/webapp/xqts/scripts/event.js +%%DATADIR%%/webapp/xqts/scripts/yahoo.js +%%DATADIR%%/webapp/xqts/scripts/report.js +%%DATADIR%%/webapp/xqts/scripts/shBrushXml.js +%%DATADIR%%/webapp/xqts/scripts/container.js +%%DATADIR%%/webapp/xqts/scripts/connection.js +%%DATADIR%%/webapp/xqts/scripts/dom.js +%%DATADIR%%/webapp/xqts/scripts/treeview.js +%%DATADIR%%/webapp/xqts/xqts.xql +%%DATADIR%%/webapp/xqts/skip.xml +%%DATADIR%%/webapp/xqts/config.xml +%%DATADIR%%/webapp/xqts/build.xml +%%DATADIR%%/webapp/xqts/progress.xql +%%DATADIR%%/webapp/xqts/collectresults.xql +%%DATADIR%%/webapp/xqts/config.xml.tmpl +%%DATADIR%%/webapp/xqts/stylesheets/xml-highlight.xsl +%%DATADIR%%/webapp/xqts/xqts.xconf +%%DATADIR%%/webapp/xqts/report.xql +%%DATADIR%%/webapp/WEB-INF/web.xml +%%DATADIR%%/webapp/WEB-INF/data/.DO_NOT_DELETE +%%DATADIR%%/webapp/WEB-INF/entities/mondial.dtd +%%DATADIR%%/webapp/WEB-INF/entities/xml.xsd +%%DATADIR%%/webapp/WEB-INF/entities/play.dtd +%%DATADIR%%/webapp/WEB-INF/catalog.txt +%%DATADIR%%/webapp/WEB-INF/logs/.DO_NOT_DELETE +%%DATADIR%%/webapp/WEB-INF/logkit.xconf +%%DATADIR%%/webapp/WEB-INF/classes/CatalogManager.properties +%%DATADIR%%/webapp/WEB-INF/user.roles +%%DATADIR%%/webapp/WEB-INF/exist.tld +%%DATADIR%%/webapp/WEB-INF/instrumentation.xconf +%%DATADIR%%/webapp/WEB-INF/server-config.wsdd +%%DATADIR%%/webapp/WEB-INF/cocoon.xconf +%%DATADIR%%/webapp/WEB-INF/catalog.xml +%%DATADIR%%/webapp/mods/styles/mods-overview.xsl +%%DATADIR%%/webapp/mods/styles/default-style.css +%%DATADIR%%/webapp/mods/styles/mods-common.xsl +%%DATADIR%%/webapp/mods/styles/display.css +%%DATADIR%%/webapp/mods/display.xq +%%DATADIR%%/webapp/mods/mods-display.xq +%%DATADIR%%/webapp/mods/logo.jpg +%%DATADIR%%/webapp/mods/lifesearch.css +%%DATADIR%%/webapp/mods/export.xql +%%DATADIR%%/webapp/mods/livesearch.js +%%DATADIR%%/webapp/mods/config.xqm +%%DATADIR%%/webapp/mods/biblio.xq +%%DATADIR%%/webapp/mods/livesearch.xq +%%DATADIR%%/webapp/mods/images/delete.gif +%%DATADIR%%/webapp/mods/images/shadow-2.png +%%DATADIR%%/webapp/mods/images/down.png +%%DATADIR%%/webapp/mods/images/up.png +%%DATADIR%%/webapp/mods/sitemap.xmap +%%DATADIR%%/webapp/mods/login.xhtml +%%DATADIR%%/webapp/mods/load.js +%%DATADIR%%/webapp/mods/sort.xq +%%DATADIR%%/webapp/mods/export.xq +%%DATADIR%%/webapp/mods/details.xq +%%DATADIR%%/webapp/irclog/images/center_left.gif +%%DATADIR%%/webapp/irclog/images/top_right.gif +%%DATADIR%%/webapp/irclog/images/bottom_right.gif +%%DATADIR%%/webapp/irclog/images/sizer.gif +%%DATADIR%%/webapp/irclog/images/close.gif +%%DATADIR%%/webapp/irclog/images/connect.png +%%DATADIR%%/webapp/irclog/images/logo.gif +%%DATADIR%%/webapp/irclog/images/top_mid.gif +%%DATADIR%%/webapp/irclog/images/overlay.png +%%DATADIR%%/webapp/irclog/images/bottom_left.gif +%%DATADIR%%/webapp/irclog/images/connect.jpg +%%DATADIR%%/webapp/irclog/images/bottom_right_resize.gif +%%DATADIR%%/webapp/irclog/images/contents_bg.gif +%%DATADIR%%/webapp/irclog/images/bottom_mid.gif +%%DATADIR%%/webapp/irclog/images/logo.png +%%DATADIR%%/webapp/irclog/images/center_right.gif +%%DATADIR%%/webapp/irclog/images/top_left.gif +%%DATADIR%%/webapp/irclog/images/indicator_medium.gif +%%DATADIR%%/webapp/irclog/index.html +%%DATADIR%%/webapp/irclog/scripts/scriptaculous.js +%%DATADIR%%/webapp/irclog/scripts/dragdrop.js +%%DATADIR%%/webapp/irclog/scripts/controls.js +%%DATADIR%%/webapp/irclog/scripts/calendar.js +%%DATADIR%%/webapp/irclog/scripts/builder.js +%%DATADIR%%/webapp/irclog/scripts/effects.js +%%DATADIR%%/webapp/irclog/scripts/windows.js +%%DATADIR%%/webapp/irclog/scripts/irc.js +%%DATADIR%%/webapp/irclog/scripts/behaviour.js +%%DATADIR%%/webapp/irclog/scripts/prototype.js +%%DATADIR%%/webapp/irclog/scripts/slider.js +%%DATADIR%%/webapp/irclog/scripts/calendar-setup.js +%%DATADIR%%/webapp/irclog/scripts/irclog.js +%%DATADIR%%/webapp/irclog/scripts/calendar-en.js +%%DATADIR%%/webapp/irclog/styles/irclog.css +%%DATADIR%%/webapp/irclog/styles/calendar-blue.css +%%DATADIR%%/webapp/irclog/styles/irc.css +%%DATADIR%%/webapp/irclog/irclog.xql +%%DATADIR%%/webapp/developper.html +%%DATADIR%%/webapp/sandbox/browse.xql +%%DATADIR%%/webapp/sandbox/scripts/slider.js +%%DATADIR%%/webapp/sandbox/scripts/sandbox.js +%%DATADIR%%/webapp/sandbox/scripts/behaviour.js +%%DATADIR%%/webapp/sandbox/scripts/builder.js +%%DATADIR%%/webapp/sandbox/scripts/prototype.js +%%DATADIR%%/webapp/sandbox/scripts/scriptaculous.js +%%DATADIR%%/webapp/sandbox/scripts/controls.js +%%DATADIR%%/webapp/sandbox/scripts/ajax.js +%%DATADIR%%/webapp/sandbox/scripts/dragdrop.js +%%DATADIR%%/webapp/sandbox/scripts/effects.js +%%DATADIR%%/webapp/sandbox/stylesheets/xml-highlight.xsl +%%DATADIR%%/webapp/sandbox/window_close_grey.gif +%%DATADIR%%/webapp/sandbox/sandbox.xql +%%DATADIR%%/webapp/sandbox/list-collections.xql +%%DATADIR%%/webapp/sandbox/styles/sandbox.css +%%DATADIR%%/webapp/sandbox/styles/xml2html.css +%%DATADIR%%/webapp/sandbox/get-examples.xql +%%DATADIR%%/webapp/dln_tree.png +%%DATADIR%%/webapp/styles/default-style.css +%%DATADIR%%/webapp/styles/roadmap.css +%%DATADIR%%/webapp/styles/niftycube.js +%%DATADIR%%/webapp/styles/niftyCorners.css +%%DATADIR%%/webapp/security.xml +%%DATADIR%%/webapp/apps/applications.xsl +%%DATADIR%%/webapp/apps/sidebar.xml +%%DATADIR%%/webapp/apps/applications.xml +%%DATADIR%%/webapp/apps/styles/niftycube.js +%%DATADIR%%/webapp/apps/styles/default-style.css +%%DATADIR%%/webapp/apps/styles/niftyCorners.css +%%DATADIR%%/webapp/apps/styles/display.css +%%DATADIR%%/webapp/apps/template.xml +%%DATADIR%%/webapp/apps/applications.xsd +%%DATADIR%%/webapp/apps/logo.jpg +%%DATADIR%%/webapp/apps/sitemap.xmap +%%DATADIR%%/webapp/apps/applications.xsd.html +%%DATADIR%%/webapp/client.xml +%%DATADIR%%/webapp/admin/admin.xql +%%DATADIR%%/webapp/admin/logo.jpg +%%DATADIR%%/webapp/admin/error.css +%%DATADIR%%/webapp/admin/xml2html.xslt +%%DATADIR%%/webapp/admin/shutdown.xqm +%%DATADIR%%/webapp/admin/status.xqm +%%DATADIR%%/webapp/admin/dates.xqm +%%DATADIR%%/webapp/admin/setup.xqm +%%DATADIR%%/webapp/admin/admin.css +%%DATADIR%%/webapp/admin/view-source.xql +%%DATADIR%%/webapp/admin/users.xqm +%%DATADIR%%/webapp/admin/browse.xqm +%%DATADIR%%/webapp/xacml-intro.xml +%%DATADIR%%/webapp/acronyms/query.xsp +%%DATADIR%%/webapp/acronyms/resources/powered.gif +%%DATADIR%%/webapp/acronyms/sidebar.xml +%%DATADIR%%/webapp/acronyms/styles/default-style.css +%%DATADIR%%/webapp/acronyms/style.css +%%DATADIR%%/webapp/acronyms/stylesheets/acronyms.xsl +%%DATADIR%%/webapp/acronyms/sitemap.xmap +%%DATADIR%%/webapp/acronyms/logo.jpg +%%DATADIR%%/webapp/acronyms/new.gif +%%DATADIR%%/webapp/stylesheets/system/scripts/main.js +%%DATADIR%%/webapp/stylesheets/system/main.css +%%DATADIR%%/webapp/stylesheets/system/xml2html.xslt +%%DATADIR%%/webapp/stylesheets/system/xmlform2html.xslt +%%DATADIR%%/webapp/stylesheets/system/status2html.xslt +%%DATADIR%%/webapp/stylesheets/system/directory2html.xslt +%%DATADIR%%/webapp/stylesheets/system/linkstatus2html.xslt +%%DATADIR%%/webapp/stylesheets/system/error2html.xslt +%%DATADIR%%/webapp/stylesheets/system/sitemap2html.xslt +%%DATADIR%%/webapp/stylesheets/xmlsource.xsl +%%DATADIR%%/webapp/stylesheets/xmldb-collection.xsl +%%DATADIR%%/webapp/stylesheets/sitemap/simple-sitemap2html.xsl +%%DATADIR%%/webapp/stylesheets/status.xsl +%%DATADIR%%/webapp/stylesheets/db2html.xsl +%%DATADIR%%/webapp/stylesheets/xmldb-query.xsl +%%DATADIR%%/webapp/stylesheets/roadmap.xsl +%%DATADIR%%/webapp/stylesheets/simple-xml2html.xsl +%%DATADIR%%/webapp/stylesheets/clusterinfo.xsl +%%DATADIR%%/webapp/stylesheets/simple-samples2html.xsl +%%DATADIR%%/webapp/stylesheets/changes.xsl +%%DATADIR%%/webapp/stylesheets/query.xsl +%%DATADIR%%/webapp/stylesheets/cluster.xsl +%%DATADIR%%/webapp/stylesheets/shakes.xsl +%%DATADIR%%/webapp/stylesheets/facts.xsl +%%DATADIR%%/webapp/stylesheets/fragment-extractor.xsl +%%DATADIR%%/webapp/stylesheets/simple-sql2html.xsl +%%DATADIR%%/webapp/stylesheets/doc2html-2.xsl +%%DATADIR%%/webapp/stylesheets/xml2html.xsl +%%DATADIR%%/webapp/index.xml +%%DATADIR%%/webapp/journal.xml +%%DATADIR%%/webapp/xmlprague06.xml +%%DATADIR%%/webapp/update_ext.xml +%%DATADIR%%/webapp/indexing.xml +%%DATADIR%%/webapp/webtest/testmod.xq +%%DATADIR%%/webapp/webtest/test-modules1.xql +%%DATADIR%%/webapp/webtest/test-modules3.xq +%%DATADIR%%/webapp/webtest/postreceiver2.xql +%%DATADIR%%/webapp/webtest/xmldb-module.xql +%%DATADIR%%/webapp/webtest/sitemap.xmap +%%DATADIR%%/webapp/webtest/scan-range-index.xql +%%DATADIR%%/webapp/webtest/test-modules2.xql +%%DATADIR%%/webapp/webtest/postdata.txt +%%DATADIR%%/webapp/webtest/test-modules4.xq +%%DATADIR%%/webapp/webtest/postreceiver1.xql +%%DATADIR%%/webapp/webtest/included.xml +%%DATADIR%%/webapp/webtest/xinclude-test.html +%%DATADIR%%/webapp/webtest/image-module.xql +%%DATADIR%%/webapp/scripts/main.js +%%DATADIR%%/webapp/scripts/prototype.js +%%DATADIR%%/webapp/building.xml +%%DATADIR%%/webapp/credits.xml +%%DATADIR%%/webapp/configuration.xml +%%DATADIR%%/webapp/xacml-features.xml +%%DATADIR%%/webapp/ant-tasks.xml +%%DATADIR%%/webapp/xacml-dev.xml +%%DATADIR%%/webapp/style.css +%%DATADIR%%/webapp/xacml-usage.xml +%%DATADIR%%/webapp/deployment.xml +%%DATADIR%%/webapp/ldap-security.xml +%%DATADIR%%/webapp/logo.jpg +%%DATADIR%%/webapp/xinclude.xml +%%DATADIR%%/webapp/lorder_tree.png +%%DATADIR%%/webapp/xacml.xml +%%DATADIR%%/webapp/extensions.xml +%%DATADIR%%/webapp/facts.xml +%%DATADIR%%/webapp/webdav.xml +%%DATADIR%%/webapp/header.xml.tmpl +%%DATADIR%%/webapp/xmldb.xsl.html +%%DATADIR%%/webapp/roadmap.xml +%%DATADIR%%/webapp/backup.xml +%%DATADIR%%/webapp/rss_import.xql +%%DATADIR%%/webapp/header.xml +%%DATADIR%%/webapp/cluster.xml +%%DATADIR%%/webapp/xquery.xml +%%DATADIR%%/webapp/devguide.xml +%%DATADIR%%/webapp/sitemap.xmap +%%DATADIR%%/webapp/atompub.xml +%%DATADIR%%/webapp/quickstart.xml +%%DATADIR%%/webapp/sidebar.xml +%%DATADIR%%/webapp/documentation.xml +%%DATADIR%%/webapp/acknowledge.xml +%%DATADIR%%/webapp/examples.xml +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/GetNodeById.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/IndexType.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/CollectionName.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/PrologFunctions.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/Eval.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/BinaryToString.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/MD5.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/FunctionFunction.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/package-summary.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/FileRead.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/SystemTime.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/SharedLockFunction.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/LogFunction.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/SystemProperty.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/CallFunction.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/CatchFunction.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/LockFunction.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/Serialize.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/DescribeFunction.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/FunUnEscapeURI.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/Collations.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/IndexKeys.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/ModuleInfo.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/Profile.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/package-frame.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/ExclusiveLockFunction.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/BinaryDoc.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/Compile.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/IndexKeyDocuments.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/UtilModule.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/QNameIndexLookup.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/DocumentNameOrId.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/NodeId.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/BuiltinFunctions.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/RandomFunction.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/util/IndexKeyOccurrences.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBChangeUser.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBGetUserOrGroup.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBPermissionsToString.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBURIFunctions.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBLoadFromPattern.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBSize.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBMove.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBIsAdmin.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBSetResourcePermissions.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBCollectionExists.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBHasLock.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBCreateUser.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBCreateCollection.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBXUpdate.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBModule.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBRename.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBCollection.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/package-frame.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/package-summary.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBRegisterDatabase.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBCreated.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBSetCollectionPermissions.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBStore.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBUserAccess.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBDeleteUser.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBGetChildCollections.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBAbstractCollectionManipulator.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBAuthenticate.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBGetCurrentUser.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBGetChildResources.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBCopy.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBChmodResource.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBPermissions.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBRemove.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb/XMLDBChmodCollection.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/request/GetHostname.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/request/GetUploadedFile.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/request/GetParameter.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/request/GetHeader.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/request/package-frame.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/request/GetQueryString.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/request/GetData.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/request/GetServerPort.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/request/GetCookieNames.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/request/GetCookieValue.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/request/package-summary.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/request/GetMethod.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/request/GetParameterNames.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/request/GetHeaderNames.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/request/GetServerName.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/request/GetURL.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/request/GetUploadedFileName.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/request/RequestModule.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/request/GetURI.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/system/GetModuleLoadPath.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/system/Shutdown.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/system/package-frame.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/system/CountInstances.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/system/GetExistHome.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/system/GetVersion.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/system/FtIndexLookup.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/system/GetBuild.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/system/GetRevision.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/system/SystemModule.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/system/GetMemory.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/system/package-summary.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/session/Invalidate.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/session/SetAttribute.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/session/SessionModule.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/session/package-summary.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/session/GetID.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/session/package-frame.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/session/SetCurrentUser.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/session/GetAttributeNames.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/session/RemoveAttribute.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/session/EncodeURL.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/session/Create.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/session/GetAttribute.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/session/Clear.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunBoolean.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/text/FuzzyMatchAny.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/text/KWICDisplay.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/text/FuzzyMatchAll.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/text/IndexTerms.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/text/FuzzyIndexTerms.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/text/package-summary.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/text/Tokenize.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/text/TextModule.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/text/MatchRegexp.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/text/HighlightMatches.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/text/FuzzyMatcher.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/text/TextRank.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/text/AbstractMatchFunction.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/text/RegexpFilter.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/text/package-frame.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/text/MatchCount.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/package-frame.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunImplicitTimezone.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunCompare.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/ExtNear.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunError.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunIndexOf.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunQName.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunNamespaceURI.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunLocalName.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunCurrentDateTime.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/transform/package-summary.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/transform/package-frame.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/transform/Transform.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/transform/TransformModule.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunItemAt.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunSubstringAfter.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/exist/package-frame.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/exist/ExistModule.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/exist/package-summary.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunMin.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/ExtCollection.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/validation/GrammarTooling.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/validation/package-frame.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/validation/Validation.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/validation/package-summary.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/validation/ValidationModule.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/ExtRegexpOr.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunUnordered.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/ExtDocument.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunAvg.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunContains.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunStringPad.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunStringToCodepoints.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunExists.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunSubstringBefore.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/ExtXCollection.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunReplace.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunTrueOrFalse.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunDeepEqual.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunCeiling.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunCodepointsToString.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunEmpty.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunRound.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/QNameFunctions.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunSubSequence.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunAdjustTimezone.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunInScopePrefixes.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunReverse.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunRoot.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunUpperOrLowerCase.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunFloor.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunOneOrMore.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunLang.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunConcat.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/response/SetCookie.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/response/ResponseModule.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/response/RedirectTo.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/response/package-frame.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/response/SetHeader.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/response/StreamBinary.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/response/package-summary.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunRemove.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/package-summary.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunTrace.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunNormalizeSpace.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunRoundHalfToEven.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunNot.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunDistinctValues.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunDocAvailable.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunGetDateComponent.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunEscapeURI.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunBaseURI.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/ExtRegexp.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunGetDurationComponent.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunPosition.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunEncodeForURI.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunNamespaceURIForPrefix.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/ExtDoctype.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunNumber.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunLast.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunName.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunTranslate.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunString.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/ModuleImpl.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunSum.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunEscapeHTMLURI.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunIRIToURI.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunNodeName.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunCount.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunId.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunStartsWith.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunDoc.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunInsertBefore.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunMatches.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunMax.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunStrLength.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunDocumentURI.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunResolveQName.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunZeroOrOne.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/CollatingFunction.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/ExtPhrase.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunAbs.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunStringJoin.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunTokenize.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunEndsWith.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/ExtFulltext.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunData.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunExactlyOne.html +%%DATADIR%%/webapp/api/org/exist/xquery/functions/FunSubstring.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/SequenceType.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/FunctionReference.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/GYearValue.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/AbstractDateTimeValue.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/DateTimeValue.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/QNameValue.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/test/DurationTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/test/DayTimeDurationTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/test/TimeTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/test/package-summary.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/test/NumericOpPromotionTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/test/YearMonthDurationTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/test/AbstractTimeRelatedTestCase.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/test/package-frame.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/test/DateTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/test/AnyURITest.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/test/DateTimeTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/PreorderedValueSequence.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/GYearMonthValue.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/GMonthValue.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/GMonthDayValue.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/SequenceIterator.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/DoubleValue.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/SingleItemIterator.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/Type.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/BooleanValue.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/JavaObjectValue.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/package-summary.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/AtomicValue.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/Item.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/NumericValue.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/DayTimeDurationValue.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/MixedNodeValueComparator.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/DurationValue.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/AbstractSequence.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/Sequence.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/TimeUtils.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/Base64Binary.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/DateValue.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/EmptySequenceIterator.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/EmptySequence.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/ValueSequence.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/TimeValue.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/GDayValue.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/BinaryValue.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/ComputableValue.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/FloatValue.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/DecimalValue.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/OrderedValueSequence.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/NodeValue.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/StringValue.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/YearMonthDurationValue.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/package-frame.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/AnyURIValue.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/HexBinary.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/IntegerValue.html +%%DATADIR%%/webapp/api/org/exist/xquery/value/UntypedAtomicValue.html +%%DATADIR%%/webapp/api/org/exist/xquery/TerminatedException.SizeLimitException.html +%%DATADIR%%/webapp/api/org/exist/xquery/EnclosedExpr.html +%%DATADIR%%/webapp/api/org/exist/xquery/Step.html +%%DATADIR%%/webapp/api/org/exist/xquery/XQueryContext.html +%%DATADIR%%/webapp/api/org/exist/xquery/util/RegexTranslator.html +%%DATADIR%%/webapp/api/org/exist/xquery/util/DocUtils.html +%%DATADIR%%/webapp/api/org/exist/xquery/util/URIUtils.html +%%DATADIR%%/webapp/api/org/exist/xquery/util/package-summary.html +%%DATADIR%%/webapp/api/org/exist/xquery/util/Messages.html +%%DATADIR%%/webapp/api/org/exist/xquery/util/HTTPUtils.html +%%DATADIR%%/webapp/api/org/exist/xquery/util/ExpressionDumper.html +%%DATADIR%%/webapp/api/org/exist/xquery/util/Error.html +%%DATADIR%%/webapp/api/org/exist/xquery/util/RegexTranslator.RegexSyntaxException.html +%%DATADIR%%/webapp/api/org/exist/xquery/util/package-frame.html +%%DATADIR%%/webapp/api/org/exist/xquery/test/QueryPoolTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/test/NamespaceUpdateTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/test/ValueIndexTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/test/JavaFunctionsTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/test/XMLNodeAsXQueryParameterTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/test/StoredModuleTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/test/XQueryUseCase.html +%%DATADIR%%/webapp/api/org/exist/xquery/test/LexerTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/test/package-summary.html +%%DATADIR%%/webapp/api/org/exist/xquery/test/package-frame.html +%%DATADIR%%/webapp/api/org/exist/xquery/test/XPathQueryTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/test/SAXStorageTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/test/FtQueryTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/test/ValueIndexByQNameTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/test/SeqOpTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/test/SpecialNamesTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/test/OpNumericTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/test/XQueryUseCasesTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/test/DeepEqualTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/test/RemoteTests.html +%%DATADIR%%/webapp/api/org/exist/xquery/test/EntitiesTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/test/JavaMethodsTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/test/XQueryFunctionsTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/test/ConvertionsTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/test/XQueryUpdateTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/test/NodeTypeTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/test/DocumentUpdateTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/test/AllTests.html +%%DATADIR%%/webapp/api/org/exist/xquery/test/XQueryTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/Dependency.html +%%DATADIR%%/webapp/api/org/exist/xquery/ExtensionExpression.html +%%DATADIR%%/webapp/api/org/exist/xquery/PIConstructor.html +%%DATADIR%%/webapp/api/org/exist/xquery/BinaryOp.html +%%DATADIR%%/webapp/api/org/exist/xquery/NodeSelector.html +%%DATADIR%%/webapp/api/org/exist/xquery/package-frame.html +%%DATADIR%%/webapp/api/org/exist/xquery/Predicate.html +%%DATADIR%%/webapp/api/org/exist/xquery/CDATAConstructor.html +%%DATADIR%%/webapp/api/org/exist/xquery/ExternalModule.html +%%DATADIR%%/webapp/api/org/exist/xquery/OpNumeric.html +%%DATADIR%%/webapp/api/org/exist/xquery/update/Delete.html +%%DATADIR%%/webapp/api/org/exist/xquery/update/Replace.html +%%DATADIR%%/webapp/api/org/exist/xquery/update/Insert.html +%%DATADIR%%/webapp/api/org/exist/xquery/update/Update.html +%%DATADIR%%/webapp/api/org/exist/xquery/update/package-summary.html +%%DATADIR%%/webapp/api/org/exist/xquery/update/Modification.html +%%DATADIR%%/webapp/api/org/exist/xquery/update/package-frame.html +%%DATADIR%%/webapp/api/org/exist/xquery/update/Rename.html +%%DATADIR%%/webapp/api/org/exist/xquery/AtomicToString.html +%%DATADIR%%/webapp/api/org/exist/xquery/AttributeConstructor.html +%%DATADIR%%/webapp/api/org/exist/xquery/package-summary.html +%%DATADIR%%/webapp/api/org/exist/xquery/OpOr.html +%%DATADIR%%/webapp/api/org/exist/xquery/LiteralValue.html +%%DATADIR%%/webapp/api/org/exist/xquery/ForExpr.html +%%DATADIR%%/webapp/api/org/exist/xquery/DeferredFunctionCall.html +%%DATADIR%%/webapp/api/org/exist/xquery/CastableExpression.html +%%DATADIR%%/webapp/api/org/exist/xquery/UntypedValueCheck.html +%%DATADIR%%/webapp/api/org/exist/xquery/NodeTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/XQueryWatchDog.html +%%DATADIR%%/webapp/api/org/exist/xquery/AnalyzeContextInfo.html +%%DATADIR%%/webapp/api/org/exist/xquery/Expression.html +%%DATADIR%%/webapp/api/org/exist/xquery/FunctionCall.html +%%DATADIR%%/webapp/api/org/exist/xquery/TypeswitchExpression.html +%%DATADIR%%/webapp/api/org/exist/xquery/XQuery.html +%%DATADIR%%/webapp/api/org/exist/xquery/parser/DeclScanner.html +%%DATADIR%%/webapp/api/org/exist/xquery/parser/XQueryTreeParser.html +%%DATADIR%%/webapp/api/org/exist/xquery/parser/DeclScannerTokenTypes.html +%%DATADIR%%/webapp/api/org/exist/xquery/parser/XQueryLexer.html +%%DATADIR%%/webapp/api/org/exist/xquery/parser/XQueryTreeParserTokenTypes.html +%%DATADIR%%/webapp/api/org/exist/xquery/parser/XQueryAST.html +%%DATADIR%%/webapp/api/org/exist/xquery/parser/XQueryParser.html +%%DATADIR%%/webapp/api/org/exist/xquery/parser/XQueryTokenTypes.html +%%DATADIR%%/webapp/api/org/exist/xquery/parser/package-frame.html +%%DATADIR%%/webapp/api/org/exist/xquery/parser/package-summary.html +%%DATADIR%%/webapp/api/org/exist/xquery/ModuleContext.html +%%DATADIR%%/webapp/api/org/exist/xquery/DescendantOrSelfSelector.html +%%DATADIR%%/webapp/api/org/exist/xquery/StaticXQueryException.html +%%DATADIR%%/webapp/api/org/exist/xquery/TypeTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/TextConstructor.html +%%DATADIR%%/webapp/api/org/exist/xquery/AbstractInternalModule.html +%%DATADIR%%/webapp/api/org/exist/xquery/SelfSelector.html +%%DATADIR%%/webapp/api/org/exist/xquery/OrderSpec.html +%%DATADIR%%/webapp/api/org/exist/xquery/DynamicNameCheck.html +%%DATADIR%%/webapp/api/org/exist/xquery/AncestorSelector.html +%%DATADIR%%/webapp/api/org/exist/xquery/TreatAsExpression.html +%%DATADIR%%/webapp/api/org/exist/xquery/Pragma.html +%%DATADIR%%/webapp/api/org/exist/xquery/DynamicPIConstructor.html +%%DATADIR%%/webapp/api/org/exist/xquery/UnaryExpr.html +%%DATADIR%%/webapp/api/org/exist/xquery/DynamicAttributeConstructor.html +%%DATADIR%%/webapp/api/org/exist/xquery/ChildSelector.html +%%DATADIR%%/webapp/api/org/exist/xquery/ConditionalExpression.html +%%DATADIR%%/webapp/api/org/exist/xquery/OpAnd.html +%%DATADIR%%/webapp/api/org/exist/xquery/FunctionId.html +%%DATADIR%%/webapp/api/org/exist/xquery/FunctionFactory.html +%%DATADIR%%/webapp/api/org/exist/xquery/CastExpression.html +%%DATADIR%%/webapp/api/org/exist/xquery/LocalVariable.html +%%DATADIR%%/webapp/api/org/exist/xquery/NodeComparison.html +%%DATADIR%%/webapp/api/org/exist/xquery/TerminatedException.html +%%DATADIR%%/webapp/api/org/exist/xquery/Union.html +%%DATADIR%%/webapp/api/org/exist/xquery/TimerPragma.html +%%DATADIR%%/webapp/api/org/exist/xquery/BasicFunction.html +%%DATADIR%%/webapp/api/org/exist/xquery/Function.html +%%DATADIR%%/webapp/api/org/exist/xquery/AnyNodeTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/FunctionSignature.html +%%DATADIR%%/webapp/api/org/exist/xquery/CombiningExpression.html +%%DATADIR%%/webapp/api/org/exist/xquery/Profiler.html +%%DATADIR%%/webapp/api/org/exist/xquery/ValueComparison.html +%%DATADIR%%/webapp/api/org/exist/xquery/NameTest.html +%%DATADIR%%/webapp/api/org/exist/xquery/CommentConstructor.html +%%DATADIR%%/webapp/api/org/exist/xquery/CompiledXQuery.html +%%DATADIR%%/webapp/api/org/exist/xquery/Variable.html +%%DATADIR%%/webapp/api/org/exist/xquery/FilteredExpression.html +%%DATADIR%%/webapp/api/org/exist/xquery/Atomize.html +%%DATADIR%%/webapp/api/org/exist/xquery/XPathException.html +%%DATADIR%%/webapp/api/org/exist/xquery/VariableReference.html +%%DATADIR%%/webapp/api/org/exist/xquery/XPathUtil.html +%%DATADIR%%/webapp/api/org/exist/xquery/DescendantSelector.html +%%DATADIR%%/webapp/api/org/exist/xquery/RangeExpression.html +%%DATADIR%%/webapp/api/org/exist/xquery/LetExpr.html +%%DATADIR%%/webapp/api/org/exist/xquery/PathExpr.html +%%DATADIR%%/webapp/api/org/exist/xquery/ExternalModuleImpl.html +%%DATADIR%%/webapp/api/org/exist/xquery/AbstractExpression.html +%%DATADIR%%/webapp/api/org/exist/xquery/NamespaceConstructor.html +%%DATADIR%%/webapp/api/org/exist/xquery/VariableDeclaration.html +%%DATADIR%%/webapp/api/org/exist/xquery/DynamicTextConstructor.html +%%DATADIR%%/webapp/api/org/exist/xquery/LocationStep.html +%%DATADIR%%/webapp/api/org/exist/xquery/DynamicTypeCheck.html +%%DATADIR%%/webapp/api/org/exist/xquery/Module.html +%%DATADIR%%/webapp/api/org/exist/xquery/TerminatedException.TimeoutException.html +%%DATADIR%%/webapp/api/org/exist/xquery/Except.html +%%DATADIR%%/webapp/api/org/exist/xquery/GeneralComparison.html +%%DATADIR%%/webapp/api/org/exist/xquery/SequenceConstructor.html +%%DATADIR%%/webapp/api/org/exist/xquery/Intersection.html +%%DATADIR%%/webapp/api/org/exist/xquery/ParentSelector.html +%%DATADIR%%/webapp/api/org/exist/xquery/UserDefinedFunction.html +%%DATADIR%%/webapp/api/org/exist/xquery/BatchTransactionPragma.html +%%DATADIR%%/webapp/api/org/exist/xquery/ExpressionVisitor.html +%%DATADIR%%/webapp/api/org/exist/xquery/InstanceOfExpression.html +%%DATADIR%%/webapp/api/org/exist/xquery/NodeConstructor.html +%%DATADIR%%/webapp/api/org/exist/xquery/InternalModule.html +%%DATADIR%%/webapp/api/org/exist/xquery/JavaCall.html +%%DATADIR%%/webapp/api/org/exist/xquery/QuantifiedExpression.html +%%DATADIR%%/webapp/api/org/exist/xquery/BasicExpressionVisitor.html +%%DATADIR%%/webapp/api/org/exist/xquery/Option.html +%%DATADIR%%/webapp/api/org/exist/xquery/DocumentConstructor.html +%%DATADIR%%/webapp/api/org/exist/xquery/RootNode.html +%%DATADIR%%/webapp/api/org/exist/xquery/DynamicCommentConstructor.html +%%DATADIR%%/webapp/api/org/exist/xquery/Cardinality.html +%%DATADIR%%/webapp/api/org/exist/xquery/SimpleStep.html +%%DATADIR%%/webapp/api/org/exist/xquery/Constants.html +%%DATADIR%%/webapp/api/org/exist/xquery/BindingExpression.html +%%DATADIR%%/webapp/api/org/exist/xquery/DynamicCardinalityCheck.html +%%DATADIR%%/webapp/api/org/exist/xquery/FunctionDef.html +%%DATADIR%%/webapp/api/org/exist/xquery/InternalFunctionCall.html +%%DATADIR%%/webapp/api/org/exist/xquery/ElementConstructor.html +%%DATADIR%%/webapp/api/org/exist/xquery/LogicalOp.html +%%DATADIR%%/webapp/api/org/exist/xquery/CachedResult.html +%%DATADIR%%/webapp/api/org/exist/storage/dom/AddLinkLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/dom/UpdateValueLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/dom/package-summary.html +%%DATADIR%%/webapp/api/org/exist/storage/dom/RemovePageLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/dom/AddValueLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/dom/DOMFile.html +%%DATADIR%%/webapp/api/org/exist/storage/dom/RemoveValueLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/dom/RemoveEmptyPageLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/dom/UpdateHeaderLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/dom/SplitPageLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/dom/InsertValueLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/dom/AddMovedValueLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/dom/package-frame.html +%%DATADIR%%/webapp/api/org/exist/storage/dom/RemoveOverflowLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/dom/CreatePageLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/dom/WriteOverflowPageLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/dom/DOMTransaction.html +%%DATADIR%%/webapp/api/org/exist/storage/dom/NodeIterator.html +%%DATADIR%%/webapp/api/org/exist/storage/dom/DOMFileIterator.html +%%DATADIR%%/webapp/api/org/exist/storage/dom/UpdateLinkLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/index/RemoveValueLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/index/StoreValueLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/index/RemoveEmptyPageLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/index/CollectionStore.DocumentKey.html +%%DATADIR%%/webapp/api/org/exist/storage/index/OverflowAppendLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/index/FreeSpace.html +%%DATADIR%%/webapp/api/org/exist/storage/index/BFile.PageInputStream.html +%%DATADIR%%/webapp/api/org/exist/storage/index/OverflowCreatePageLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/index/package-frame.html +%%DATADIR%%/webapp/api/org/exist/storage/index/FreeList.html +%%DATADIR%%/webapp/api/org/exist/storage/index/AbstractBFileLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/index/OverflowCreateLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/index/OverflowStoreLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/index/CreatePageLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/index/CollectionStore.html +%%DATADIR%%/webapp/api/org/exist/storage/index/BFileCallback.html +%%DATADIR%%/webapp/api/org/exist/storage/index/OverflowRemoveLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/index/package-summary.html +%%DATADIR%%/webapp/api/org/exist/storage/index/CollectionStore.CollectionKey.html +%%DATADIR%%/webapp/api/org/exist/storage/index/OverflowModifiedLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/index/BFile.html +%%DATADIR%%/webapp/api/org/exist/storage/txn/TransactionManager.html +%%DATADIR%%/webapp/api/org/exist/storage/txn/TxnStart.html +%%DATADIR%%/webapp/api/org/exist/storage/txn/TransactionException.html +%%DATADIR%%/webapp/api/org/exist/storage/txn/Checkpoint.html +%%DATADIR%%/webapp/api/org/exist/storage/txn/TxnCommit.html +%%DATADIR%%/webapp/api/org/exist/storage/txn/package-frame.html +%%DATADIR%%/webapp/api/org/exist/storage/txn/Txn.html +%%DATADIR%%/webapp/api/org/exist/storage/txn/TxnAbort.html +%%DATADIR%%/webapp/api/org/exist/storage/txn/package-summary.html +%%DATADIR%%/webapp/api/org/exist/storage/analysis/Token.html +%%DATADIR%%/webapp/api/org/exist/storage/analysis/package-frame.html +%%DATADIR%%/webapp/api/org/exist/storage/analysis/package-summary.html +%%DATADIR%%/webapp/api/org/exist/storage/analysis/TextToken.html +%%DATADIR%%/webapp/api/org/exist/storage/analysis/SimpleTokenizer.html +%%DATADIR%%/webapp/api/org/exist/storage/analysis/Tokenizer.html +%%DATADIR%%/webapp/api/org/exist/storage/analysis/ParseException.html +%%DATADIR%%/webapp/api/org/exist/storage/test/LowLevelText.html +%%DATADIR%%/webapp/api/org/exist/storage/test/DOMFileRecoverTest.html +%%DATADIR%%/webapp/api/org/exist/storage/test/RecoveryTest.html +%%DATADIR%%/webapp/api/org/exist/storage/test/package-summary.html +%%DATADIR%%/webapp/api/org/exist/storage/test/RecoveryTest2.html +%%DATADIR%%/webapp/api/org/exist/storage/test/MoveResourceTest.html +%%DATADIR%%/webapp/api/org/exist/storage/test/AppendTest.html +%%DATADIR%%/webapp/api/org/exist/storage/test/BTreeRecoverTest.html +%%DATADIR%%/webapp/api/org/exist/storage/test/BFileOverflowTest.html +%%DATADIR%%/webapp/api/org/exist/storage/test/ReplaceTest.html +%%DATADIR%%/webapp/api/org/exist/storage/test/ShutdownTest.html +%%DATADIR%%/webapp/api/org/exist/storage/test/package-frame.html +%%DATADIR%%/webapp/api/org/exist/storage/test/AllTests.html +%%DATADIR%%/webapp/api/org/exist/storage/test/XIncludeSerializerTest.html +%%DATADIR%%/webapp/api/org/exist/storage/test/AbstractUpdateTest.html +%%DATADIR%%/webapp/api/org/exist/storage/test/MoveCollectionTest.html +%%DATADIR%%/webapp/api/org/exist/storage/test/CopyResourceTest.html +%%DATADIR%%/webapp/api/org/exist/storage/test/RecoverBinaryTest2.html +%%DATADIR%%/webapp/api/org/exist/storage/test/RemoveCollectionTest.html +%%DATADIR%%/webapp/api/org/exist/storage/test/UpdateRecoverTest.html +%%DATADIR%%/webapp/api/org/exist/storage/test/UpdateAttributeTest.html +%%DATADIR%%/webapp/api/org/exist/storage/test/RemoveTest.html +%%DATADIR%%/webapp/api/org/exist/storage/test/UpdateTest.html +%%DATADIR%%/webapp/api/org/exist/storage/test/ConcurrentStoreTest.html +%%DATADIR%%/webapp/api/org/exist/storage/test/ResourceTest.html +%%DATADIR%%/webapp/api/org/exist/storage/test/RecoverBinaryTest.html +%%DATADIR%%/webapp/api/org/exist/storage/test/RenameTest.html +%%DATADIR%%/webapp/api/org/exist/storage/test/BFileRecoverTest.html +%%DATADIR%%/webapp/api/org/exist/storage/test/RecoveryTest3.html +%%DATADIR%%/webapp/api/org/exist/storage/test/CopyCollectionTest.html +%%DATADIR%%/webapp/api/org/exist/storage/test/CollectionTest.html +%%DATADIR%%/webapp/api/org/exist/storage/ValueIndexKeyFactory.html +%%DATADIR%%/webapp/api/org/exist/storage/io/package-frame.html +%%DATADIR%%/webapp/api/org/exist/storage/io/test/package-summary.html +%%DATADIR%%/webapp/api/org/exist/storage/io/test/VariableByteStreamTest.html +%%DATADIR%%/webapp/api/org/exist/storage/io/test/package-frame.html +%%DATADIR%%/webapp/api/org/exist/storage/io/VariableByteInput.html +%%DATADIR%%/webapp/api/org/exist/storage/io/VariableByteArrayInput.html +%%DATADIR%%/webapp/api/org/exist/storage/io/AbstractVariableByteInput.html +%%DATADIR%%/webapp/api/org/exist/storage/io/VariableByteInputStream.html +%%DATADIR%%/webapp/api/org/exist/storage/io/package-summary.html +%%DATADIR%%/webapp/api/org/exist/storage/io/VariableByteOutputStream.html +%%DATADIR%%/webapp/api/org/exist/storage/TextSearchEngine.html +%%DATADIR%%/webapp/api/org/exist/storage/journal/LogEntryTypes.html +%%DATADIR%%/webapp/api/org/exist/storage/journal/Journal.html +%%DATADIR%%/webapp/api/org/exist/storage/journal/Lsn.html +%%DATADIR%%/webapp/api/org/exist/storage/journal/JournalReader.html +%%DATADIR%%/webapp/api/org/exist/storage/journal/Loggable.html +%%DATADIR%%/webapp/api/org/exist/storage/journal/LogException.html +%%DATADIR%%/webapp/api/org/exist/storage/journal/AbstractLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/journal/FileSyncThread.html +%%DATADIR%%/webapp/api/org/exist/storage/journal/package-frame.html +%%DATADIR%%/webapp/api/org/exist/storage/journal/package-summary.html +%%DATADIR%%/webapp/api/org/exist/storage/NativeBroker.NodeRef.html +%%DATADIR%%/webapp/api/org/exist/storage/NotificationService.html +%%DATADIR%%/webapp/api/org/exist/storage/SystemTask.html +%%DATADIR%%/webapp/api/org/exist/storage/NativeValueIndex.html +%%DATADIR%%/webapp/api/org/exist/storage/report/package-frame.html +%%DATADIR%%/webapp/api/org/exist/storage/report/Statistics.html +%%DATADIR%%/webapp/api/org/exist/storage/report/XMLStatistics.html +%%DATADIR%%/webapp/api/org/exist/storage/report/package-summary.html +%%DATADIR%%/webapp/api/org/exist/storage/cache/Cacheable.html +%%DATADIR%%/webapp/api/org/exist/storage/cache/package-summary.html +%%DATADIR%%/webapp/api/org/exist/storage/cache/LRDCache.html +%%DATADIR%%/webapp/api/org/exist/storage/cache/package-frame.html +%%DATADIR%%/webapp/api/org/exist/storage/cache/Accounting.html +%%DATADIR%%/webapp/api/org/exist/storage/cache/Cache.html +%%DATADIR%%/webapp/api/org/exist/storage/cache/LRUCache.html +%%DATADIR%%/webapp/api/org/exist/storage/cache/GClockCache.html +%%DATADIR%%/webapp/api/org/exist/storage/recovery/package-frame.html +%%DATADIR%%/webapp/api/org/exist/storage/recovery/RecoveryManager.html +%%DATADIR%%/webapp/api/org/exist/storage/recovery/package-summary.html +%%DATADIR%%/webapp/api/org/exist/storage/serializers/Serializer.html +%%DATADIR%%/webapp/api/org/exist/storage/serializers/EXistOutputKeys.html +%%DATADIR%%/webapp/api/org/exist/storage/serializers/package-frame.html +%%DATADIR%%/webapp/api/org/exist/storage/serializers/NativeSerializer.html +%%DATADIR%%/webapp/api/org/exist/storage/serializers/XIncludeFilter.html +%%DATADIR%%/webapp/api/org/exist/storage/serializers/package-summary.html +%%DATADIR%%/webapp/api/org/exist/storage/serializers/WSDLFilter.html +%%DATADIR%%/webapp/api/org/exist/storage/btree/package-summary.html +%%DATADIR%%/webapp/api/org/exist/storage/btree/BTree.html +%%DATADIR%%/webapp/api/org/exist/storage/btree/Value.html +%%DATADIR%%/webapp/api/org/exist/storage/btree/RemoveValueLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/btree/UpdatePageLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/btree/BTreeCallback.html +%%DATADIR%%/webapp/api/org/exist/storage/btree/SetParentLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/btree/Paged.PageHeader.html +%%DATADIR%%/webapp/api/org/exist/storage/btree/package-frame.html +%%DATADIR%%/webapp/api/org/exist/storage/btree/Paged.html +%%DATADIR%%/webapp/api/org/exist/storage/btree/InsertValueLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/btree/BTAbstractLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/btree/IndexQuery.html +%%DATADIR%%/webapp/api/org/exist/storage/btree/UpdateValueLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/btree/Paged.FileHeader.html +%%DATADIR%%/webapp/api/org/exist/storage/btree/DBException.html +%%DATADIR%%/webapp/api/org/exist/storage/btree/Paged.Page.html +%%DATADIR%%/webapp/api/org/exist/storage/btree/CreateBTNodeLoggable.html +%%DATADIR%%/webapp/api/org/exist/storage/btree/BTreeException.html +%%DATADIR%%/webapp/api/org/exist/storage/lock/MultiReadReentrantLock.html +%%DATADIR%%/webapp/api/org/exist/storage/lock/ReentrantReadWriteLock.html +%%DATADIR%%/webapp/api/org/exist/storage/lock/package-summary.html +%%DATADIR%%/webapp/api/org/exist/storage/lock/FileLock.html +%%DATADIR%%/webapp/api/org/exist/storage/lock/Lock.html +%%DATADIR%%/webapp/api/org/exist/storage/lock/package-frame.html +%%DATADIR%%/webapp/api/org/exist/storage/sync/SyncDaemon.html +%%DATADIR%%/webapp/api/org/exist/storage/sync/Sync.html +%%DATADIR%%/webapp/api/org/exist/storage/sync/package-frame.html +%%DATADIR%%/webapp/api/org/exist/storage/sync/package-summary.html +%%DATADIR%%/webapp/api/org/exist/storage/NativeValueIndexByQName.html +%%DATADIR%%/webapp/api/org/exist/storage/CacheManager.html +%%DATADIR%%/webapp/api/org/exist/storage/NativeElementIndex.html +%%DATADIR%%/webapp/api/org/exist/storage/ElementValue.html +%%DATADIR%%/webapp/api/org/exist/storage/IndexSpec.html +%%DATADIR%%/webapp/api/org/exist/storage/ValueIndexFactory.html +%%DATADIR%%/webapp/api/org/exist/storage/XQueryPool.html +%%DATADIR%%/webapp/api/org/exist/storage/DBBroker.html +%%DATADIR%%/webapp/api/org/exist/storage/ValueIndexKeyFactorySimple.html +%%DATADIR%%/webapp/api/org/exist/storage/ContentLoadingObserver.html +%%DATADIR%%/webapp/api/org/exist/storage/package-frame.html +%%DATADIR%%/webapp/api/org/exist/storage/FulltextIndexSpec.html +%%DATADIR%%/webapp/api/org/exist/storage/IndexStats.html +%%DATADIR%%/webapp/api/org/exist/storage/NativeClusterBroker.html +%%DATADIR%%/webapp/api/org/exist/storage/GeneralRangeIndexSpec.html +%%DATADIR%%/webapp/api/org/exist/storage/QNameRangeIndexSpec.html +%%DATADIR%%/webapp/api/org/exist/storage/BrokerPool.html +%%DATADIR%%/webapp/api/org/exist/storage/Indexable.html +%%DATADIR%%/webapp/api/org/exist/storage/XQueryMonitor.html +%%DATADIR%%/webapp/api/org/exist/storage/BufferStats.html +%%DATADIR%%/webapp/api/org/exist/storage/DataBackup.html +%%DATADIR%%/webapp/api/org/exist/storage/RangeIndexSpec.html +%%DATADIR%%/webapp/api/org/exist/storage/ElementIndex.html +%%DATADIR%%/webapp/api/org/exist/storage/UpdateListener.html +%%DATADIR%%/webapp/api/org/exist/storage/StorageAddress.html +%%DATADIR%%/webapp/api/org/exist/storage/NativeBroker.html +%%DATADIR%%/webapp/api/org/exist/storage/BrokerFactory.html +%%DATADIR%%/webapp/api/org/exist/storage/package-summary.html +%%DATADIR%%/webapp/api/org/exist/storage/NodePath.html +%%DATADIR%%/webapp/api/org/exist/storage/TermMatcher.html +%%DATADIR%%/webapp/api/org/exist/storage/NativeTextEngine.html +%%DATADIR%%/webapp/api/org/exist/storage/Signatures.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/action/Action.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/action/XQueryAction.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/action/CreateCollectionAction.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/action/TextUpdateAction.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/action/package-summary.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/action/RetrieveResourceAction.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/action/ComplexUpdateAction.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/action/AttributeUpdateAction.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/action/ValueAppendAction.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/action/RemoveAppendAction.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/action/ReplaceResourceAction.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/action/MultiResourcesAction.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/action/package-frame.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/action/XQueryUpdateAction.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/ComplexUpdateTest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/ValueIndexUpdateTest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/ConcurrentQueryTest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/ConcurrentXUpdateTest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/ConcurrentQueryUpdateTest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/DeadlockTest.WriterThread.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/ConcurrentResourceTest2.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/ConcurrentTestBase.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/DeadlockTest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/FragmentsTest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/ConcurrentResourceTest3.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/XMLGenerator.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/ConcurrentAttrUpdateTest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/AllTests.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/DBUtils.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/ConcurrentResourceTest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/package-summary.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/TextUpdateTest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/package-frame.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/IndexingTest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/LocalTests.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/CollectionConfigurationTest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/package-frame.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/TreeLevelOrderTest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/DOMTest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/ResourceTest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/MultiDBTest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/CopyMoveTest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/XmldbURITest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/RemoteQueryTest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/DOMTestJUnit.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/StorageStressTest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/DTMHandleTest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/package-summary.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/ResourceSetTest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/DOMTest.SAXHandler.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/SerializationTest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/RemoteDBTest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/RemoteDatabaseImplTest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/ContentAsDOMTest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/TestEXistXMLSerialize.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/RemoteTests.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/ShutdownTest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/RemoteCollectionTest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/CreateCollectionsTest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/test/CollectionTest.html +%%DATADIR%%/webapp/api/org/exist/xmldb/package-summary.html +%%DATADIR%%/webapp/api/org/exist/xmldb/RemoteCompiledExpression.html +%%DATADIR%%/webapp/api/org/exist/xmldb/RemoteXUpdateQueryService.html +%%DATADIR%%/webapp/api/org/exist/xmldb/DatabaseInstanceManager.html +%%DATADIR%%/webapp/api/org/exist/xmldb/DatabaseStatus.html +%%DATADIR%%/webapp/api/org/exist/xmldb/XmldbURI.html +%%DATADIR%%/webapp/api/org/exist/xmldb/LocalCollection.html +%%DATADIR%%/webapp/api/org/exist/xmldb/LocalIndexQueryService.html +%%DATADIR%%/webapp/api/org/exist/xmldb/RemoteCollection.html +%%DATADIR%%/webapp/api/org/exist/xmldb/package-frame.html +%%DATADIR%%/webapp/api/org/exist/xmldb/LocalBinaryResource.html +%%DATADIR%%/webapp/api/org/exist/xmldb/RemoteUserManagementService.html +%%DATADIR%%/webapp/api/org/exist/xmldb/XQueryService.html +%%DATADIR%%/webapp/api/org/exist/xmldb/DatabaseImpl.html +%%DATADIR%%/webapp/api/org/exist/xmldb/ShutdownListener.html +%%DATADIR%%/webapp/api/org/exist/xmldb/IndexQueryService.html +%%DATADIR%%/webapp/api/org/exist/xmldb/CollectionManagementServiceImpl.html +%%DATADIR%%/webapp/api/org/exist/xmldb/LocalCollectionManagementService.html +%%DATADIR%%/webapp/api/org/exist/xmldb/LocalXUpdateQueryService.html +%%DATADIR%%/webapp/api/org/exist/xmldb/EXistResource.html +%%DATADIR%%/webapp/api/org/exist/xmldb/LocalXMLResource.html +%%DATADIR%%/webapp/api/org/exist/xmldb/RemoteBinaryResource.html +%%DATADIR%%/webapp/api/org/exist/xmldb/LocalDatabaseInstanceManager.html +%%DATADIR%%/webapp/api/org/exist/xmldb/MapResourceSet.html +%%DATADIR%%/webapp/api/org/exist/xmldb/CollectionImpl.html +%%DATADIR%%/webapp/api/org/exist/xmldb/RemoteXPathQueryService.html +%%DATADIR%%/webapp/api/org/exist/xmldb/RemoteResourceSet.html +%%DATADIR%%/webapp/api/org/exist/xmldb/RemoteDatabaseInstanceManager.html +%%DATADIR%%/webapp/api/org/exist/xmldb/LocalUserManagementService.html +%%DATADIR%%/webapp/api/org/exist/xmldb/LocalResourceSet.html +%%DATADIR%%/webapp/api/org/exist/xmldb/RemoteResourceIterator.html +%%DATADIR%%/webapp/api/org/exist/xmldb/RemoteIndexQueryService.html +%%DATADIR%%/webapp/api/org/exist/xmldb/RemoteXMLResource.html +%%DATADIR%%/webapp/api/org/exist/xmldb/UserManagementService.html +%%DATADIR%%/webapp/api/org/exist/xmldb/FullXmldbURI.html +%%DATADIR%%/webapp/api/org/exist/xmldb/XPathQueryServiceImpl.html +%%DATADIR%%/webapp/api/org/exist/xmldb/RemoteCollectionManagementService.html +%%DATADIR%%/webapp/api/org/exist/xmldb/AbstractEXistResource.html +%%DATADIR%%/webapp/api/org/exist/xmldb/ResourceSetHelper.html +%%DATADIR%%/webapp/api/org/exist/xmldb/LocalXPathQueryService.html +%%DATADIR%%/webapp/api/org/exist/http/Response.html +%%DATADIR%%/webapp/api/org/exist/http/servlets/EXistServlet.html +%%DATADIR%%/webapp/api/org/exist/http/servlets/Log4jInit.html +%%DATADIR%%/webapp/api/org/exist/http/servlets/DatabaseAdminServlet.html +%%DATADIR%%/webapp/api/org/exist/http/servlets/HttpSessionWrapper.html +%%DATADIR%%/webapp/api/org/exist/http/servlets/DigestAuthenticator.html +%%DATADIR%%/webapp/api/org/exist/http/servlets/package-summary.html +%%DATADIR%%/webapp/api/org/exist/http/servlets/XQueryServlet.html +%%DATADIR%%/webapp/api/org/exist/http/servlets/Authenticator.html +%%DATADIR%%/webapp/api/org/exist/http/servlets/HttpResponseWrapper.html +%%DATADIR%%/webapp/api/org/exist/http/servlets/ResponseWrapper.html +%%DATADIR%%/webapp/api/org/exist/http/servlets/WebDAVServlet.html +%%DATADIR%%/webapp/api/org/exist/http/servlets/RequestWrapper.html +%%DATADIR%%/webapp/api/org/exist/http/servlets/HttpServletRequestWrapper.html +%%DATADIR%%/webapp/api/org/exist/http/servlets/BasicAuthenticator.html +%%DATADIR%%/webapp/api/org/exist/http/servlets/HttpRequestWrapper.html +%%DATADIR%%/webapp/api/org/exist/http/servlets/package-frame.html +%%DATADIR%%/webapp/api/org/exist/http/servlets/SessionWrapper.html +%%DATADIR%%/webapp/api/org/exist/http/webdav/WebDAVUtil.html +%%DATADIR%%/webapp/api/org/exist/http/webdav/methods/Delete.html +%%DATADIR%%/webapp/api/org/exist/http/webdav/methods/Unlock.html +%%DATADIR%%/webapp/api/org/exist/http/webdav/methods/AbstractWebDAVMethod.html +%%DATADIR%%/webapp/api/org/exist/http/webdav/methods/Mkcol.html +%%DATADIR%%/webapp/api/org/exist/http/webdav/methods/package-summary.html +%%DATADIR%%/webapp/api/org/exist/http/webdav/methods/Get.html +%%DATADIR%%/webapp/api/org/exist/http/webdav/methods/Propfind.html +%%DATADIR%%/webapp/api/org/exist/http/webdav/methods/Lock.html +%%DATADIR%%/webapp/api/org/exist/http/webdav/methods/Move.html +%%DATADIR%%/webapp/api/org/exist/http/webdav/methods/Head.html +%%DATADIR%%/webapp/api/org/exist/http/webdav/methods/package-frame.html +%%DATADIR%%/webapp/api/org/exist/http/webdav/methods/Copy.html +%%DATADIR%%/webapp/api/org/exist/http/webdav/methods/Put.html +%%DATADIR%%/webapp/api/org/exist/http/webdav/methods/Options.html +%%DATADIR%%/webapp/api/org/exist/http/webdav/WebDAVMethodFactory.html +%%DATADIR%%/webapp/api/org/exist/http/webdav/WebDAVMethod.html +%%DATADIR%%/webapp/api/org/exist/http/webdav/package-frame.html +%%DATADIR%%/webapp/api/org/exist/http/webdav/package-summary.html +%%DATADIR%%/webapp/api/org/exist/http/webdav/WebDAV.html +%%DATADIR%%/webapp/api/org/exist/http/test/package-summary.html +%%DATADIR%%/webapp/api/org/exist/http/test/package-frame.html +%%DATADIR%%/webapp/api/org/exist/http/test/RESTServiceTest.html +%%DATADIR%%/webapp/api/org/exist/http/realm/package-summary.html +%%DATADIR%%/webapp/api/org/exist/http/realm/package-frame.html +%%DATADIR%%/webapp/api/org/exist/http/realm/XmldbRealm.html +%%DATADIR%%/webapp/api/org/exist/http/package-summary.html +%%DATADIR%%/webapp/api/org/exist/http/Descriptor.html +%%DATADIR%%/webapp/api/org/exist/http/RESTServer.html +%%DATADIR%%/webapp/api/org/exist/http/BadRequestException.html +%%DATADIR%%/webapp/api/org/exist/http/NotFoundException.html +%%DATADIR%%/webapp/api/org/exist/http/SOAPServer.html +%%DATADIR%%/webapp/api/org/exist/http/package-frame.html +%%DATADIR%%/webapp/api/org/exist/atom/package-summary.html +%%DATADIR%%/webapp/api/org/exist/atom/util/DOM.html +%%DATADIR%%/webapp/api/org/exist/atom/util/NodeHandler.html +%%DATADIR%%/webapp/api/org/exist/atom/util/package-frame.html +%%DATADIR%%/webapp/api/org/exist/atom/util/DateFormatter.html +%%DATADIR%%/webapp/api/org/exist/atom/util/DOMDB.html +%%DATADIR%%/webapp/api/org/exist/atom/util/package-summary.html +%%DATADIR%%/webapp/api/org/exist/atom/AtomModule.Context.html +%%DATADIR%%/webapp/api/org/exist/atom/Atom.html +%%DATADIR%%/webapp/api/org/exist/atom/http/HttpRequestMessage.html +%%DATADIR%%/webapp/api/org/exist/atom/http/HttpResponseMessage.html +%%DATADIR%%/webapp/api/org/exist/atom/http/package-summary.html +%%DATADIR%%/webapp/api/org/exist/atom/http/AtomServlet.html +%%DATADIR%%/webapp/api/org/exist/atom/http/WebDAVServlet.html +%%DATADIR%%/webapp/api/org/exist/atom/http/package-frame.html +%%DATADIR%%/webapp/api/org/exist/atom/modules/AtomProtocol.html +%%DATADIR%%/webapp/api/org/exist/atom/modules/Query.html +%%DATADIR%%/webapp/api/org/exist/atom/modules/package-frame.html +%%DATADIR%%/webapp/api/org/exist/atom/modules/package-summary.html +%%DATADIR%%/webapp/api/org/exist/atom/modules/AtomModuleBase.html +%%DATADIR%%/webapp/api/org/exist/atom/modules/AtomFeeds.html +%%DATADIR%%/webapp/api/org/exist/atom/modules/Query.MethodConfiguration.html +%%DATADIR%%/webapp/api/org/exist/atom/IncomingMessage.html +%%DATADIR%%/webapp/api/org/exist/atom/package-frame.html +%%DATADIR%%/webapp/api/org/exist/atom/OutgoingMessage.html +%%DATADIR%%/webapp/api/org/exist/atom/AtomModule.html +%%DATADIR%%/webapp/api/org/exist/util/CharArrayPool.html +%%DATADIR%%/webapp/api/org/exist/util/OrderedLinkedList.Node.html +%%DATADIR%%/webapp/api/org/exist/util/serializer/ReceiverToSAX.html +%%DATADIR%%/webapp/api/org/exist/util/serializer/encodings/CharacterSet.html +%%DATADIR%%/webapp/api/org/exist/util/serializer/encodings/Latin1CharSet.html +%%DATADIR%%/webapp/api/org/exist/util/serializer/encodings/KOI8RCharSet.html +%%DATADIR%%/webapp/api/org/exist/util/serializer/encodings/ASCIICharSet.html +%%DATADIR%%/webapp/api/org/exist/util/serializer/encodings/package-frame.html +%%DATADIR%%/webapp/api/org/exist/util/serializer/encodings/Latin2CharSet.html +%%DATADIR%%/webapp/api/org/exist/util/serializer/encodings/package-summary.html +%%DATADIR%%/webapp/api/org/exist/util/serializer/encodings/UnicodeCharSet.html +%%DATADIR%%/webapp/api/org/exist/util/serializer/package-summary.html +%%DATADIR%%/webapp/api/org/exist/util/serializer/ExtendedDOMSerializer.html +%%DATADIR%%/webapp/api/org/exist/util/serializer/IndentingXMLWriter.html +%%DATADIR%%/webapp/api/org/exist/util/serializer/XHTMLWriter.html +%%DATADIR%%/webapp/api/org/exist/util/serializer/DOMStreamer.html +%%DATADIR%%/webapp/api/org/exist/util/serializer/AttrList.html +%%DATADIR%%/webapp/api/org/exist/util/serializer/TEXTWriter.html +%%DATADIR%%/webapp/api/org/exist/util/serializer/SAXSerializer.html +%%DATADIR%%/webapp/api/org/exist/util/serializer/SerializerPool.html +%%DATADIR%%/webapp/api/org/exist/util/serializer/Receiver.html +%%DATADIR%%/webapp/api/org/exist/util/serializer/SerializerObjectFactory.html +%%DATADIR%%/webapp/api/org/exist/util/serializer/ExtendedDOMStreamer.html +%%DATADIR%%/webapp/api/org/exist/util/serializer/package-frame.html +%%DATADIR%%/webapp/api/org/exist/util/serializer/XMLWriter.html +%%DATADIR%%/webapp/api/org/exist/util/serializer/DOMSerializer.html +%%DATADIR%%/webapp/api/org/exist/util/hashtable/ObjectHashSet.html +%%DATADIR%%/webapp/api/org/exist/util/hashtable/NamePool.html +%%DATADIR%%/webapp/api/org/exist/util/hashtable/Object2ObjectHashMap.html +%%DATADIR%%/webapp/api/org/exist/util/hashtable/test/HashtableTest.html +%%DATADIR%%/webapp/api/org/exist/util/hashtable/test/package-frame.html +%%DATADIR%%/webapp/api/org/exist/util/hashtable/test/package-summary.html +%%DATADIR%%/webapp/api/org/exist/util/hashtable/AbstractHashtable.html +%%DATADIR%%/webapp/api/org/exist/util/hashtable/Object2LongHashMap.html +%%DATADIR%%/webapp/api/org/exist/util/hashtable/package-frame.html +%%DATADIR%%/webapp/api/org/exist/util/hashtable/Object2IntHashMap.html +%%DATADIR%%/webapp/api/org/exist/util/hashtable/package-summary.html +%%DATADIR%%/webapp/api/org/exist/util/hashtable/Long2ObjectHashMap.html +%%DATADIR%%/webapp/api/org/exist/util/hashtable/SequencedLongHashMap.Entry.html +%%DATADIR%%/webapp/api/org/exist/util/hashtable/Object2LongIdentityHashMap.html +%%DATADIR%%/webapp/api/org/exist/util/hashtable/SequencedLongHashMap.html +%%DATADIR%%/webapp/api/org/exist/util/hashtable/Int2ObjectHashMap.html +%%DATADIR%%/webapp/api/org/exist/util/SyntaxException.html +%%DATADIR%%/webapp/api/org/exist/util/Configuration.SystemTaskConfig.html +%%DATADIR%%/webapp/api/org/exist/util/test/package-summary.html +%%DATADIR%%/webapp/api/org/exist/util/test/package-frame.html +%%DATADIR%%/webapp/api/org/exist/util/test/DOMSerializerTest.html +%%DATADIR%%/webapp/api/org/exist/util/test/XMLStringTest.html +%%DATADIR%%/webapp/api/org/exist/util/sanity/package-frame.html +%%DATADIR%%/webapp/api/org/exist/util/sanity/package-summary.html +%%DATADIR%%/webapp/api/org/exist/util/sanity/AssertFailure.html +%%DATADIR%%/webapp/api/org/exist/util/sanity/SanityCheck.html +%%DATADIR%%/webapp/api/org/exist/util/FastByteBuffer.html +%%DATADIR%%/webapp/api/org/exist/util/OrderedLongLinkedList.html +%%DATADIR%%/webapp/api/org/exist/util/GlobToRegex.html +%%DATADIR%%/webapp/api/org/exist/util/PorterStemmer.html +%%DATADIR%%/webapp/api/org/exist/util/HeapSort.html +%%DATADIR%%/webapp/api/org/exist/util/ValueOccurrences.html +%%DATADIR%%/webapp/api/org/exist/util/ProgressListener.html +%%DATADIR%%/webapp/api/org/exist/util/MimeType.html +%%DATADIR%%/webapp/api/org/exist/util/package-summary.html +%%DATADIR%%/webapp/api/org/exist/util/FixedByteArray.html +%%DATADIR%%/webapp/api/org/exist/util/InsertionSort.html +%%DATADIR%%/webapp/api/org/exist/util/CompressedWhitespace.html +%%DATADIR%%/webapp/api/org/exist/util/ByteArrayPool.html +%%DATADIR%%/webapp/api/org/exist/util/ProgressIndicator.html +%%DATADIR%%/webapp/api/org/exist/util/XMLReaderObjectFactory.html +%%DATADIR%%/webapp/api/org/exist/util/Collations.html +%%DATADIR%%/webapp/api/org/exist/util/SelectorUtils.html +%%DATADIR%%/webapp/api/org/exist/util/Lockable.html +%%DATADIR%%/webapp/api/org/exist/util/CollectionScanner.html +%%DATADIR%%/webapp/api/org/exist/util/LongLinkedList.ListItem.html +%%DATADIR%%/webapp/api/org/exist/util/OrderedLinkedList.html +%%DATADIR%%/webapp/api/org/exist/util/LongLinkedList.html +%%DATADIR%%/webapp/api/org/exist/util/Range.html +%%DATADIR%%/webapp/api/org/exist/util/MimeTable.html +%%DATADIR%%/webapp/api/org/exist/util/FastQSort.html +%%DATADIR%%/webapp/api/org/exist/util/ByteConversion.html +%%DATADIR%%/webapp/api/org/exist/util/UTF8.html +%%DATADIR%%/webapp/api/org/exist/util/XMLChar.html +%%DATADIR%%/webapp/api/org/exist/util/XMLFilenameFilter.html +%%DATADIR%%/webapp/api/org/exist/util/Configuration.html +%%DATADIR%%/webapp/api/org/exist/util/DirectoryScanner.html +%%DATADIR%%/webapp/api/org/exist/util/ReadOnlyException.html +%%DATADIR%%/webapp/api/org/exist/util/IndexCallback.html +%%DATADIR%%/webapp/api/org/exist/util/SwapVals.html +%%DATADIR%%/webapp/api/org/exist/util/ByteArray.html +%%DATADIR%%/webapp/api/org/exist/util/package-frame.html +%%DATADIR%%/webapp/api/org/exist/util/XMLReaderPool.html +%%DATADIR%%/webapp/api/org/exist/util/IncludeXMLFilter.html +%%DATADIR%%/webapp/api/org/exist/util/Base64Encoder.html +%%DATADIR%%/webapp/api/org/exist/util/Heap.html +%%DATADIR%%/webapp/api/org/exist/util/XMLString.html +%%DATADIR%%/webapp/api/org/exist/util/FloatingPointConverter.html +%%DATADIR%%/webapp/api/org/exist/util/ArrayUtils.html +%%DATADIR%%/webapp/api/org/exist/util/DatabaseConfigurationException.html +%%DATADIR%%/webapp/api/org/exist/util/CharSlice.html +%%DATADIR%%/webapp/api/org/exist/util/ProgressBar.html +%%DATADIR%%/webapp/api/org/exist/util/Compressor.html +%%DATADIR%%/webapp/api/org/exist/util/Base64Decoder.html +%%DATADIR%%/webapp/api/org/exist/util/Occurrences.html +%%DATADIR%%/webapp/api/org/exist/util/FastStringBuffer.html +%%DATADIR%%/webapp/api/org/exist/util/OrderedLinkedList.SimpleNode.html +%%DATADIR%%/webapp/api/org/exist/util/LockException.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/NodeExpander.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/NodeChangeListener.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/TargetEditor.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/PolicyElementContainer.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/MatchEditor.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/AbstractTreeNode.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/XACMLTreeModel.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/CustomRenderer.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/RuleEditor.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/ConditionNode.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/NodeEditor.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/NodeContainer.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/package-summary.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/PolicySetNode.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/AbstractNodeContainer.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/package-frame.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/PolicyNode.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/ModuleAttributeHandler.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/DatabaseInterface.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/NodeTransferable.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/AbstractPolicyEditor.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/XACMLEditor.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/AbstractNodeEditor.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/PolicyElementEditor.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/Abbreviator.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/XACMLTreeNode.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/PolicyElementNode.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/AutoScroller.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/UserAttributeHandler.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/TargetTableModel.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/ActionAttributeHandler.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/RuleNode.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/ResizingTable.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/RootNode.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/ResourceCategoryAttributeHandler.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/AbstractPolicyNode.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/NodeCopyAction.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/TreeMutator.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/TargetNode.html +%%DATADIR%%/webapp/api/org/exist/client/xacml/AttributeHandler.html +%%DATADIR%%/webapp/api/org/exist/client/ResourceDescriptor.html +%%DATADIR%%/webapp/api/org/exist/client/InteractiveClient.html +%%DATADIR%%/webapp/api/org/exist/client/InteractiveClient.ProgressObserver.html +%%DATADIR%%/webapp/api/org/exist/client/CommandlineOptions.html +%%DATADIR%%/webapp/api/org/exist/client/package-frame.html +%%DATADIR%%/webapp/api/org/exist/client/PrettyXmldbURI.html +%%DATADIR%%/webapp/api/org/exist/client/CollectionXConf.html +%%DATADIR%%/webapp/api/org/exist/client/package-summary.html +%%DATADIR%%/webapp/api/org/exist/client/ClientFrame.html +%%DATADIR%%/webapp/api/org/exist/client/ResourcePropertyDialog.html +%%DATADIR%%/webapp/api/org/exist/client/ResourceDescriptor.Collection.html +%%DATADIR%%/webapp/api/org/exist/client/Messages.html +%%DATADIR%%/webapp/api/org/exist/client/ClientTextArea.html +%%DATADIR%%/webapp/api/org/exist/client/LoginPanel.html +%%DATADIR%%/webapp/api/org/exist/client/QueryDialog.html +%%DATADIR%%/webapp/api/org/exist/client/ResourceDescriptor.Document.html +%%DATADIR%%/webapp/api/org/exist/validation/ValidationReport.html +%%DATADIR%%/webapp/api/org/exist/validation/internal/ResourceInputStream.html +%%DATADIR%%/webapp/api/org/exist/validation/internal/package-summary.html +%%DATADIR%%/webapp/api/org/exist/validation/internal/DatabaseResources.html +%%DATADIR%%/webapp/api/org/exist/validation/internal/BlockingOutputStream.html +%%DATADIR%%/webapp/api/org/exist/validation/internal/package-frame.html +%%DATADIR%%/webapp/api/org/exist/validation/internal/ResourceThread.html +%%DATADIR%%/webapp/api/org/exist/validation/Validator.html +%%DATADIR%%/webapp/api/org/exist/validation/XmlLibraryChecker.html +%%DATADIR%%/webapp/api/org/exist/validation/resolver/package-frame.html +%%DATADIR%%/webapp/api/org/exist/validation/resolver/eXistCatalogResolver.html +%%DATADIR%%/webapp/api/org/exist/validation/resolver/package-summary.html +%%DATADIR%%/webapp/api/org/exist/validation/service/LocalValidationService.html +%%DATADIR%%/webapp/api/org/exist/validation/service/ValidationService.html +%%DATADIR%%/webapp/api/org/exist/validation/service/package-summary.html +%%DATADIR%%/webapp/api/org/exist/validation/service/package-frame.html +%%DATADIR%%/webapp/api/org/exist/validation/service/RemoteValidationService.html +%%DATADIR%%/webapp/api/org/exist/validation/EntityResolver.html +%%DATADIR%%/webapp/api/org/exist/validation/test/EntityResolverTest.html +%%DATADIR%%/webapp/api/org/exist/validation/test/ApacheXmlComponentsTest.html +%%DATADIR%%/webapp/api/org/exist/validation/test/DatabaseResourcesTest.html +%%DATADIR%%/webapp/api/org/exist/validation/test/package-frame.html +%%DATADIR%%/webapp/api/org/exist/validation/test/package-summary.html +%%DATADIR%%/webapp/api/org/exist/validation/test/DatabaseTools.html +%%DATADIR%%/webapp/api/org/exist/validation/test/ValidationServiceTest.html +%%DATADIR%%/webapp/api/org/exist/validation/test/XQueryValidationFunctionsTest.html +%%DATADIR%%/webapp/api/org/exist/validation/GrammarPool.html +%%DATADIR%%/webapp/api/org/exist/validation/package-summary.html +%%DATADIR%%/webapp/api/org/exist/validation/package-frame.html +%%DATADIR%%/webapp/api/org/exist/security/xacml/XACMLUtil.html +%%DATADIR%%/webapp/api/org/exist/security/xacml/package-summary.html +%%DATADIR%%/webapp/api/org/exist/security/xacml/XACMLSource.html +%%DATADIR%%/webapp/api/org/exist/security/xacml/XACMLConstants.html +%%DATADIR%%/webapp/api/org/exist/security/xacml/NullAccessContextException.html +%%DATADIR%%/webapp/api/org/exist/security/xacml/RequestHelper.html +%%DATADIR%%/webapp/api/org/exist/security/xacml/UserAttributeModule.html +%%DATADIR%%/webapp/api/org/exist/security/xacml/package-frame.html +%%DATADIR%%/webapp/api/org/exist/security/xacml/ExistPolicyModule.html +%%DATADIR%%/webapp/api/org/exist/security/xacml/AccessContext.html +%%DATADIR%%/webapp/api/org/exist/security/xacml/ExistPDP.html +%%DATADIR%%/webapp/api/org/exist/security/Permission.html +%%DATADIR%%/webapp/api/org/exist/security/LDAPSecurityManager.html +%%DATADIR%%/webapp/api/org/exist/security/package-summary.html +%%DATADIR%%/webapp/api/org/exist/security/XmldbPrincipal.html +%%DATADIR%%/webapp/api/org/exist/security/LDAPbindSecurityManager.html +%%DATADIR%%/webapp/api/org/exist/security/package-frame.html +%%DATADIR%%/webapp/api/org/exist/security/User.html +%%DATADIR%%/webapp/api/org/exist/security/MD5.html +%%DATADIR%%/webapp/api/org/exist/security/Group.html +%%DATADIR%%/webapp/api/org/exist/security/Base64Coder.html +%%DATADIR%%/webapp/api/org/exist/security/PermissionDeniedException.html +%%DATADIR%%/webapp/api/org/exist/security/XMLSecurityManager.html +%%DATADIR%%/webapp/api/org/exist/security/SecurityManager.html +%%DATADIR%%/webapp/api/org/exist/ant/XMLDBStoreTask.html +%%DATADIR%%/webapp/api/org/exist/ant/XMLDBListTask.html +%%DATADIR%%/webapp/api/org/exist/ant/XMLDBRemoveTask.html +%%DATADIR%%/webapp/api/org/exist/ant/XMLDBExistTask.html +%%DATADIR%%/webapp/api/org/exist/ant/ListGroupsTask.html +%%DATADIR%%/webapp/api/org/exist/ant/AbstractXMLDBTask.html +%%DATADIR%%/webapp/api/org/exist/ant/XMLDBQueryTask.html +%%DATADIR%%/webapp/api/org/exist/ant/ChownTask.html +%%DATADIR%%/webapp/api/org/exist/ant/RestoreTask.html +%%DATADIR%%/webapp/api/org/exist/ant/AddUserTask.html +%%DATADIR%%/webapp/api/org/exist/ant/LockResourceTask.html +%%DATADIR%%/webapp/api/org/exist/ant/XMLDBXQueryTask.Variable.html +%%DATADIR%%/webapp/api/org/exist/ant/package-frame.html +%%DATADIR%%/webapp/api/org/exist/ant/ChmodTask.html +%%DATADIR%%/webapp/api/org/exist/ant/UserTask.html +%%DATADIR%%/webapp/api/org/exist/ant/XMLDBExtractTask.html +%%DATADIR%%/webapp/api/org/exist/ant/BackupTask.html +%%DATADIR%%/webapp/api/org/exist/ant/RemoveUserTask.html +%%DATADIR%%/webapp/api/org/exist/ant/XMLDBXPathTask.html +%%DATADIR%%/webapp/api/org/exist/ant/XMLDBCreateTask.html +%%DATADIR%%/webapp/api/org/exist/ant/XMLDBShutdownTask.html +%%DATADIR%%/webapp/api/org/exist/ant/XMLDBXQueryTask.html +%%DATADIR%%/webapp/api/org/exist/ant/XMLDBXUpdateTask.html +%%DATADIR%%/webapp/api/org/exist/ant/XMLDBMoveTask.html +%%DATADIR%%/webapp/api/org/exist/ant/XMLDBCopyTask.html +%%DATADIR%%/webapp/api/org/exist/ant/package-summary.html +%%DATADIR%%/webapp/api/org/exist/ant/ListUsersTask.html +%%DATADIR%%/webapp/api/org/exist/xupdate/test/XUpdateTestCases.html +%%DATADIR%%/webapp/api/org/exist/xupdate/test/RemoveAppendTest.html +%%DATADIR%%/webapp/api/org/exist/xupdate/test/XUpdateTest.html +%%DATADIR%%/webapp/api/org/exist/xupdate/test/AllTests.html +%%DATADIR%%/webapp/api/org/exist/xupdate/test/StressTest.html +%%DATADIR%%/webapp/api/org/exist/xupdate/test/package-summary.html +%%DATADIR%%/webapp/api/org/exist/xupdate/test/package-frame.html +%%DATADIR%%/webapp/api/org/exist/xupdate/test/CompareDocuments.html +%%DATADIR%%/webapp/api/org/exist/xupdate/Rename.html +%%DATADIR%%/webapp/api/org/exist/xupdate/Modification.html +%%DATADIR%%/webapp/api/org/exist/xupdate/Replace.html +%%DATADIR%%/webapp/api/org/exist/xupdate/Append.html +%%DATADIR%%/webapp/api/org/exist/xupdate/Conditional.html +%%DATADIR%%/webapp/api/org/exist/xupdate/Update.html +%%DATADIR%%/webapp/api/org/exist/xupdate/Insert.html +%%DATADIR%%/webapp/api/org/exist/xupdate/package-summary.html +%%DATADIR%%/webapp/api/org/exist/xupdate/Remove.html +%%DATADIR%%/webapp/api/org/exist/xupdate/XUpdateProcessor.html +%%DATADIR%%/webapp/api/org/exist/xupdate/package-frame.html +%%DATADIR%%/webapp/api/org/exist/soap/Session.QueryResult.html +%%DATADIR%%/webapp/api/org/exist/soap/QuerySoapBindingSkeleton.html +%%DATADIR%%/webapp/api/org/exist/soap/QuerySoapBindingImpl.html +%%DATADIR%%/webapp/api/org/exist/soap/UserDescs.html +%%DATADIR%%/webapp/api/org/exist/soap/test/package-frame.html +%%DATADIR%%/webapp/api/org/exist/soap/test/CopyMoveTest.html +%%DATADIR%%/webapp/api/org/exist/soap/test/package-summary.html +%%DATADIR%%/webapp/api/org/exist/soap/test/UsersAndPermissionsTest.html +%%DATADIR%%/webapp/api/org/exist/soap/test/XQueryTest.html +%%DATADIR%%/webapp/api/org/exist/soap/Query.html +%%DATADIR%%/webapp/api/org/exist/soap/QueryResponseDocument.html +%%DATADIR%%/webapp/api/org/exist/soap/IndexedElement.html +%%DATADIR%%/webapp/api/org/exist/soap/DocumentDescs.html +%%DATADIR%%/webapp/api/org/exist/soap/EntityPermissions.html +%%DATADIR%%/webapp/api/org/exist/soap/AdminSoapBindingSkeleton.html +%%DATADIR%%/webapp/api/org/exist/soap/QueryResponseCollections.html +%%DATADIR%%/webapp/api/org/exist/soap/AdminServiceLocator.html +%%DATADIR%%/webapp/api/org/exist/soap/DocumentType.html +%%DATADIR%%/webapp/api/org/exist/soap/QueryResponse.html +%%DATADIR%%/webapp/api/org/exist/soap/Admin.html +%%DATADIR%%/webapp/api/org/exist/soap/StringArray.html +%%DATADIR%%/webapp/api/org/exist/soap/AdminSoapBindingImpl.html +%%DATADIR%%/webapp/api/org/exist/soap/DocumentDesc.html +%%DATADIR%%/webapp/api/org/exist/soap/package-summary.html +%%DATADIR%%/webapp/api/org/exist/soap/CollectionDesc.html +%%DATADIR%%/webapp/api/org/exist/soap/QuerySoapBindingStub.html +%%DATADIR%%/webapp/api/org/exist/soap/AdminService.html +%%DATADIR%%/webapp/api/org/exist/soap/UserDesc.html +%%DATADIR%%/webapp/api/org/exist/soap/IndexedElements.html +%%DATADIR%%/webapp/api/org/exist/soap/AdminSoapBindingStub.html +%%DATADIR%%/webapp/api/org/exist/soap/Permissions.html +%%DATADIR%%/webapp/api/org/exist/soap/Strings.html +%%DATADIR%%/webapp/api/org/exist/soap/Collection.html +%%DATADIR%%/webapp/api/org/exist/soap/QueryService.html +%%DATADIR%%/webapp/api/org/exist/soap/QueryResponseCollection.html +%%DATADIR%%/webapp/api/org/exist/soap/EntityPermissionsList.html +%%DATADIR%%/webapp/api/org/exist/soap/Session.html +%%DATADIR%%/webapp/api/org/exist/soap/SessionManager.html +%%DATADIR%%/webapp/api/org/exist/soap/Base64BinaryArray.html +%%DATADIR%%/webapp/api/org/exist/soap/QueryResponseDocuments.html +%%DATADIR%%/webapp/api/org/exist/soap/QueryServiceLocator.html +%%DATADIR%%/webapp/api/org/exist/soap/package-frame.html +%%DATADIR%%/webapp/api/org/exist/collections/CollectionConfiguration.html +%%DATADIR%%/webapp/api/org/exist/collections/package-frame.html +%%DATADIR%%/webapp/api/org/exist/collections/triggers/TriggerStatePerThread.html +%%DATADIR%%/webapp/api/org/exist/collections/triggers/CollectionTrigger.html +%%DATADIR%%/webapp/api/org/exist/collections/triggers/Dumper.html +%%DATADIR%%/webapp/api/org/exist/collections/triggers/package-frame.html +%%DATADIR%%/webapp/api/org/exist/collections/triggers/TriggerStatePerThread.TriggerState.html +%%DATADIR%%/webapp/api/org/exist/collections/triggers/test/package-summary.html +%%DATADIR%%/webapp/api/org/exist/collections/triggers/test/package-frame.html +%%DATADIR%%/webapp/api/org/exist/collections/triggers/test/XQueryTriggerTest.html +%%DATADIR%%/webapp/api/org/exist/collections/triggers/TriggerException.html +%%DATADIR%%/webapp/api/org/exist/collections/triggers/Trigger.html +%%DATADIR%%/webapp/api/org/exist/collections/triggers/XQueryTrigger.html +%%DATADIR%%/webapp/api/org/exist/collections/triggers/package-summary.html +%%DATADIR%%/webapp/api/org/exist/collections/triggers/DocumentTrigger.html +%%DATADIR%%/webapp/api/org/exist/collections/triggers/STXTransformerTrigger.html +%%DATADIR%%/webapp/api/org/exist/collections/triggers/HistoryTrigger.html +%%DATADIR%%/webapp/api/org/exist/collections/triggers/FilteringTrigger.html +%%DATADIR%%/webapp/api/org/exist/collections/IndexInfo.html +%%DATADIR%%/webapp/api/org/exist/collections/CollectionConfigurationException.html +%%DATADIR%%/webapp/api/org/exist/collections/CollectionCache.html +%%DATADIR%%/webapp/api/org/exist/collections/package-summary.html +%%DATADIR%%/webapp/api/org/exist/collections/CollectionConfigurationManager.html +%%DATADIR%%/webapp/api/org/exist/collections/Collection.html +%%DATADIR%%/webapp/api/org/exist/dom/CDATASectionImpl.html +%%DATADIR%%/webapp/api/org/exist/dom/ExtArrayNodeSet.html +%%DATADIR%%/webapp/api/org/exist/dom/CharacterDataImpl.html +%%DATADIR%%/webapp/api/org/exist/dom/AttrImpl.html +%%DATADIR%%/webapp/api/org/exist/dom/test/package-frame.html +%%DATADIR%%/webapp/api/org/exist/dom/test/package-summary.html +%%DATADIR%%/webapp/api/org/exist/dom/test/NodeTest.html +%%DATADIR%%/webapp/api/org/exist/dom/test/BasicNodeSetTest.html +%%DATADIR%%/webapp/api/org/exist/dom/Match.Offset.html +%%DATADIR%%/webapp/api/org/exist/dom/NodeImplRef.html +%%DATADIR%%/webapp/api/org/exist/dom/EmptyNodeSet.html +%%DATADIR%%/webapp/api/org/exist/dom/DocumentImpl.html +%%DATADIR%%/webapp/api/org/exist/dom/NodeSet.html +%%DATADIR%%/webapp/api/org/exist/dom/StoredDOMImplementation.html +%%DATADIR%%/webapp/api/org/exist/dom/CommentImpl.html +%%DATADIR%%/webapp/api/org/exist/dom/QName.html +%%DATADIR%%/webapp/api/org/exist/dom/NamedNodeMapImpl.html +%%DATADIR%%/webapp/api/org/exist/dom/package-summary.html +%%DATADIR%%/webapp/api/org/exist/dom/SortedNodeSet.html +%%DATADIR%%/webapp/api/org/exist/dom/ElementImpl.html +%%DATADIR%%/webapp/api/org/exist/dom/ByDocumentIterator.html +%%DATADIR%%/webapp/api/org/exist/dom/PoolableNodeObjectFactory.html +%%DATADIR%%/webapp/api/org/exist/dom/NodeSetIterator.html +%%DATADIR%%/webapp/api/org/exist/dom/AVLTreeNodeSet.html +%%DATADIR%%/webapp/api/org/exist/dom/NodeImpl.html +%%DATADIR%%/webapp/api/org/exist/dom/NodeObjectPool.html +%%DATADIR%%/webapp/api/org/exist/dom/DocumentTypeImpl.html +%%DATADIR%%/webapp/api/org/exist/dom/StoredNode.html +%%DATADIR%%/webapp/api/org/exist/dom/AbstractNodeSet.html +%%DATADIR%%/webapp/api/org/exist/dom/ProcessingInstructionImpl.html +%%DATADIR%%/webapp/api/org/exist/dom/QNameable.html +%%DATADIR%%/webapp/api/org/exist/dom/XMLUtil.html +%%DATADIR%%/webapp/api/org/exist/dom/Visitable.html +%%DATADIR%%/webapp/api/org/exist/dom/package-frame.html +%%DATADIR%%/webapp/api/org/exist/dom/VirtualNodeSet.html +%%DATADIR%%/webapp/api/org/exist/dom/QNamePool.html +%%DATADIR%%/webapp/api/org/exist/dom/NullNodeIndexListener.html +%%DATADIR%%/webapp/api/org/exist/dom/DocumentSet.html +%%DATADIR%%/webapp/api/org/exist/dom/Match.html +%%DATADIR%%/webapp/api/org/exist/dom/LockToken.html +%%DATADIR%%/webapp/api/org/exist/dom/NodeVisitor.html +%%DATADIR%%/webapp/api/org/exist/dom/NodeIndexListener.html +%%DATADIR%%/webapp/api/org/exist/dom/NodeListImpl.html +%%DATADIR%%/webapp/api/org/exist/dom/NodeSetHelper.html +%%DATADIR%%/webapp/api/org/exist/dom/ContextItem.html +%%DATADIR%%/webapp/api/org/exist/dom/SymbolTable.html +%%DATADIR%%/webapp/api/org/exist/dom/NamedNode.html +%%DATADIR%%/webapp/api/org/exist/dom/TextImpl.html +%%DATADIR%%/webapp/api/org/exist/dom/NodeProxy.html +%%DATADIR%%/webapp/api/org/exist/dom/BinaryDocument.html +%%DATADIR%%/webapp/api/org/exist/dom/DocumentMetadata.html +%%DATADIR%%/webapp/api/org/exist/memtree/package-frame.html +%%DATADIR%%/webapp/api/org/exist/memtree/test/package-frame.html +%%DATADIR%%/webapp/api/org/exist/memtree/test/DOMIndexerTest.html +%%DATADIR%%/webapp/api/org/exist/memtree/test/package-summary.html +%%DATADIR%%/webapp/api/org/exist/memtree/test/DOMTest.html +%%DATADIR%%/webapp/api/org/exist/memtree/MemTreeBuilder.html +%%DATADIR%%/webapp/api/org/exist/memtree/SAXAdapter.html +%%DATADIR%%/webapp/api/org/exist/memtree/DocumentImpl.html +%%DATADIR%%/webapp/api/org/exist/memtree/AttributeImpl.html +%%DATADIR%%/webapp/api/org/exist/memtree/CDATASectionImpl.html +%%DATADIR%%/webapp/api/org/exist/memtree/CommentImpl.html +%%DATADIR%%/webapp/api/org/exist/memtree/DocumentBuilderReceiver.html +%%DATADIR%%/webapp/api/org/exist/memtree/ReferenceNode.html +%%DATADIR%%/webapp/api/org/exist/memtree/NodeImpl.html +%%DATADIR%%/webapp/api/org/exist/memtree/NamespaceNode.html +%%DATADIR%%/webapp/api/org/exist/memtree/ProcessingInstructionImpl.html +%%DATADIR%%/webapp/api/org/exist/memtree/package-summary.html +%%DATADIR%%/webapp/api/org/exist/memtree/ElementImpl.html +%%DATADIR%%/webapp/api/org/exist/memtree/TextImpl.html +%%DATADIR%%/webapp/api/org/exist/memtree/NodeFactory.html +%%DATADIR%%/webapp/api/org/exist/memtree/DOMIndexer.html +%%DATADIR%%/webapp/api/org/exist/xslt/package-summary.html +%%DATADIR%%/webapp/api/org/exist/xslt/TransformerFactoryAllocator.html +%%DATADIR%%/webapp/api/org/exist/xslt/package-frame.html +%%DATADIR%%/webapp/api/org/exist/xmlrpc/test/package-summary.html +%%DATADIR%%/webapp/api/org/exist/xmlrpc/test/MoveResourceTest.html +%%DATADIR%%/webapp/api/org/exist/xmlrpc/test/package-frame.html +%%DATADIR%%/webapp/api/org/exist/xmlrpc/test/XmlRpcTest.html +%%DATADIR%%/webapp/api/org/exist/xmlrpc/package-frame.html +%%DATADIR%%/webapp/api/org/exist/xmlrpc/package-summary.html +%%DATADIR%%/webapp/api/org/exist/xmlrpc/RpcServer.html +%%DATADIR%%/webapp/api/org/exist/xmlrpc/RpcAPI.html +%%DATADIR%%/webapp/api/org/exist/xmlrpc/AuthenticatedHandler.html +%%DATADIR%%/webapp/api/org/exist/xmlrpc/RpcConnection.html +%%DATADIR%%/webapp/api/org/exist/xmlrpc/RpcServlet.html +%%DATADIR%%/webapp/api/org/exist/xmlrpc/QueryResult.html +%%DATADIR%%/webapp/api/org/exist/cluster/cocoon/package-frame.html +%%DATADIR%%/webapp/api/org/exist/cluster/cocoon/ConsoleInfo.html +%%DATADIR%%/webapp/api/org/exist/cluster/cocoon/ClusterInfoGenerator.html +%%DATADIR%%/webapp/api/org/exist/cluster/cocoon/ClusterGenerator.html +%%DATADIR%%/webapp/api/org/exist/cluster/cocoon/package-summary.html +%%DATADIR%%/webapp/api/org/exist/cluster/UpdateClusterEvent.html +%%DATADIR%%/webapp/api/org/exist/cluster/ClusterChannel.html +%%DATADIR%%/webapp/api/org/exist/cluster/ClusterCollection.html +%%DATADIR%%/webapp/api/org/exist/cluster/ClusterComunication.html +%%DATADIR%%/webapp/api/org/exist/cluster/journal/package-frame.html +%%DATADIR%%/webapp/api/org/exist/cluster/journal/test/package-summary.html +%%DATADIR%%/webapp/api/org/exist/cluster/journal/test/package-frame.html +%%DATADIR%%/webapp/api/org/exist/cluster/journal/test/JournalManagerTest.html +%%DATADIR%%/webapp/api/org/exist/cluster/journal/package-summary.html +%%DATADIR%%/webapp/api/org/exist/cluster/journal/JournalManager.html +%%DATADIR%%/webapp/api/org/exist/cluster/journal/JournalIdGenerator.html +%%DATADIR%%/webapp/api/org/exist/cluster/journal/ClusterEventMarshaller.html +%%DATADIR%%/webapp/api/org/exist/cluster/ClusterEvent.html +%%DATADIR%%/webapp/api/org/exist/cluster/StoreClusterEvent.html +%%DATADIR%%/webapp/api/org/exist/cluster/ClusterException.html +%%DATADIR%%/webapp/api/org/exist/cluster/RemoveCollectionClusterEvent.html +%%DATADIR%%/webapp/api/org/exist/cluster/package-frame.html +%%DATADIR%%/webapp/api/org/exist/cluster/package-summary.html +%%DATADIR%%/webapp/api/org/exist/cluster/CreateCollectionClusterEvent.html +%%DATADIR%%/webapp/api/org/exist/cluster/RemoveClusterEvent.html +%%DATADIR%%/webapp/api/org/exist/numbering/DLNFactory.html +%%DATADIR%%/webapp/api/org/exist/numbering/test/DLNTest.html +%%DATADIR%%/webapp/api/org/exist/numbering/test/package-summary.html +%%DATADIR%%/webapp/api/org/exist/numbering/test/DLNStorageTest.html +%%DATADIR%%/webapp/api/org/exist/numbering/test/package-frame.html +%%DATADIR%%/webapp/api/org/exist/numbering/DLN.html +%%DATADIR%%/webapp/api/org/exist/numbering/NodeId.html +%%DATADIR%%/webapp/api/org/exist/numbering/package-summary.html +%%DATADIR%%/webapp/api/org/exist/numbering/package-frame.html +%%DATADIR%%/webapp/api/org/exist/numbering/NodeIdFactory.html +%%DATADIR%%/webapp/api/org/exist/numbering/DLNBase.html +%%DATADIR%%/webapp/api/org/exist/package-summary.html +%%DATADIR%%/webapp/api/org/exist/xqj/XQConnection.html +%%DATADIR%%/webapp/api/org/exist/xqj/XQException.html +%%DATADIR%%/webapp/api/org/exist/xqj/XQCommonHandler.html +%%DATADIR%%/webapp/api/org/exist/xqj/XQResultSequence.html +%%DATADIR%%/webapp/api/org/exist/xqj/package-frame.html +%%DATADIR%%/webapp/api/org/exist/xqj/XQDataSource.html +%%DATADIR%%/webapp/api/org/exist/xqj/XQExpression.html +%%DATADIR%%/webapp/api/org/exist/xqj/XQItemType.html +%%DATADIR%%/webapp/api/org/exist/xqj/package-summary.html +%%DATADIR%%/webapp/api/org/exist/xqj/XQMetaData.html +%%DATADIR%%/webapp/api/org/exist/xqj/XQItem.html +%%DATADIR%%/webapp/api/org/exist/source/Source.html +%%DATADIR%%/webapp/api/org/exist/source/package-summary.html +%%DATADIR%%/webapp/api/org/exist/source/AbstractSource.html +%%DATADIR%%/webapp/api/org/exist/source/package-frame.html +%%DATADIR%%/webapp/api/org/exist/source/FileSource.html +%%DATADIR%%/webapp/api/org/exist/source/ClassLoaderSource.html +%%DATADIR%%/webapp/api/org/exist/source/DBSource.html +%%DATADIR%%/webapp/api/org/exist/source/URLSource.html +%%DATADIR%%/webapp/api/org/exist/source/SourceFactory.html +%%DATADIR%%/webapp/api/org/exist/source/CocoonSource.html +%%DATADIR%%/webapp/api/org/exist/source/StringSource.html +%%DATADIR%%/webapp/api/org/exist/cocoon/XMLDBSourceFactory.html +%%DATADIR%%/webapp/api/org/exist/cocoon/CocoonSessionWrapper.html +%%DATADIR%%/webapp/api/org/exist/cocoon/XQueryGenerator.html +%%DATADIR%%/webapp/api/org/exist/cocoon/ShutdownAction.html +%%DATADIR%%/webapp/api/org/exist/cocoon/package-frame.html +%%DATADIR%%/webapp/api/org/exist/cocoon/StatusGenerator.html +%%DATADIR%%/webapp/api/org/exist/cocoon/XSPHelper.html +%%DATADIR%%/webapp/api/org/exist/cocoon/package-summary.html +%%DATADIR%%/webapp/api/org/exist/cocoon/CocoonRequestWrapper.html +%%DATADIR%%/webapp/api/org/exist/cocoon/CocoonResponseWrapper.html +%%DATADIR%%/webapp/api/org/exist/cocoon/XMLDBTransformer.html +%%DATADIR%%/webapp/api/org/exist/cocoon/XMLReaderWrapper.html +%%DATADIR%%/webapp/api/org/exist/cocoon/XMLDBSessionLoginAction.html +%%DATADIR%%/webapp/api/org/exist/cocoon/XMLDBSource.html +%%DATADIR%%/webapp/api/org/exist/start/Main.html +%%DATADIR%%/webapp/api/org/exist/start/LatestFileResolver.html +%%DATADIR%%/webapp/api/org/exist/start/Version.html +%%DATADIR%%/webapp/api/org/exist/start/package-summary.html +%%DATADIR%%/webapp/api/org/exist/start/Classpath.html +%%DATADIR%%/webapp/api/org/exist/start/package-frame.html +%%DATADIR%%/webapp/api/org/exist/backup/Backup.html +%%DATADIR%%/webapp/api/org/exist/backup/BackupDialog.html +%%DATADIR%%/webapp/api/org/exist/backup/Main.html +%%DATADIR%%/webapp/api/org/exist/backup/package-summary.html +%%DATADIR%%/webapp/api/org/exist/backup/package-frame.html +%%DATADIR%%/webapp/api/org/exist/backup/RestoreDialog.html +%%DATADIR%%/webapp/api/org/exist/backup/Restore.html +%%DATADIR%%/webapp/api/org/exist/backup/CreateBackupDialog.html +%%DATADIR%%/webapp/api/org/exist/JettyStart.html +%%DATADIR%%/webapp/api/org/exist/package-frame.html +%%DATADIR%%/webapp/api/org/exist/test/package-frame.html +%%DATADIR%%/webapp/api/org/exist/test/package-summary.html +%%DATADIR%%/webapp/api/org/exist/test/TestConstants.html +%%DATADIR%%/webapp/api/org/exist/webstart/package-frame.html +%%DATADIR%%/webapp/api/org/exist/webstart/package-summary.html +%%DATADIR%%/webapp/api/org/exist/webstart/JnlpHelper.html +%%DATADIR%%/webapp/api/org/exist/webstart/JnlpJarFiles.html +%%DATADIR%%/webapp/api/org/exist/webstart/JnlpServlet.html +%%DATADIR%%/webapp/api/org/exist/webstart/JnlpWriter.html +%%DATADIR%%/webapp/api/org/exist/jsp/package-frame.html +%%DATADIR%%/webapp/api/org/exist/jsp/CollectionTag.html +%%DATADIR%%/webapp/api/org/exist/jsp/package-summary.html +%%DATADIR%%/webapp/api/org/exist/jsp/CollectionTagInfo.html +%%DATADIR%%/webapp/api/org/exist/EXistException.html +%%DATADIR%%/webapp/api/org/exist/StandaloneServer.ServletBootstrap.html +%%DATADIR%%/webapp/api/org/exist/ServerShutdown.html +%%DATADIR%%/webapp/api/org/exist/StandaloneServer.html +%%DATADIR%%/webapp/api/org/exist/Indexer.html +%%DATADIR%%/webapp/api/org/exist/Namespaces.html +%%DATADIR%%/webapp/api/org/xmldb/api/base/ErrorCodes.html +%%DATADIR%%/webapp/api/org/xmldb/api/base/Resource.html +%%DATADIR%%/webapp/api/org/xmldb/api/base/package-frame.html +%%DATADIR%%/webapp/api/org/xmldb/api/base/Service.html +%%DATADIR%%/webapp/api/org/xmldb/api/base/ResourceSet.html +%%DATADIR%%/webapp/api/org/xmldb/api/base/Collection.html +%%DATADIR%%/webapp/api/org/xmldb/api/base/CompiledExpression.html +%%DATADIR%%/webapp/api/org/xmldb/api/base/XMLDBException.html +%%DATADIR%%/webapp/api/org/xmldb/api/base/Configurable.html +%%DATADIR%%/webapp/api/org/xmldb/api/base/ResourceIterator.html +%%DATADIR%%/webapp/api/org/xmldb/api/base/package-summary.html +%%DATADIR%%/webapp/api/org/xmldb/api/base/Database.html +%%DATADIR%%/webapp/api/org/xmldb/api/modules/XUpdateQueryService.html +%%DATADIR%%/webapp/api/org/xmldb/api/modules/package-summary.html +%%DATADIR%%/webapp/api/org/xmldb/api/modules/XQueryService.html +%%DATADIR%%/webapp/api/org/xmldb/api/modules/TransactionService.html +%%DATADIR%%/webapp/api/org/xmldb/api/modules/BinaryResource.html +%%DATADIR%%/webapp/api/org/xmldb/api/modules/XMLResource.html +%%DATADIR%%/webapp/api/org/xmldb/api/modules/CollectionManagementService.html +%%DATADIR%%/webapp/api/org/xmldb/api/modules/XPathQueryService.html +%%DATADIR%%/webapp/api/org/xmldb/api/modules/package-frame.html +%%DATADIR%%/webapp/api/org/xmldb/api/package-summary.html +%%DATADIR%%/webapp/api/org/xmldb/api/DatabaseManager.html +%%DATADIR%%/webapp/api/org/xmldb/api/package-frame.html +%%DATADIR%%/webapp/api/packages.html +%%DATADIR%%/webapp/api/overview-summary.html +%%DATADIR%%/webapp/api/allclasses-noframe.html +%%DATADIR%%/webapp/api/resources/inherit.gif +%%DATADIR%%/webapp/api/stylesheet.css +%%DATADIR%%/webapp/api/constant-values.html +%%DATADIR%%/webapp/api/index.html +%%DATADIR%%/webapp/api/allclasses-frame.html +%%DATADIR%%/webapp/api/deprecated-list.html +%%DATADIR%%/webapp/api/package-list +%%DATADIR%%/webapp/api/help-doc.html +%%DATADIR%%/webapp/api/serialized-form.html +%%DATADIR%%/webapp/api/overview-frame.html +@dirrmtry %%DATADIR%%/Uninstaller +@dirrmtry %%DATADIR%%/bin +@dirrmtry %%DATADIR%%/build/scripts +@dirrmtry %%DATADIR%%/build +@dirrmtry %%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/image +@dirrmtry %%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/xmldiff +@dirrmtry %%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/context +@dirrmtry %%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/simpleql +@dirrmtry %%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/math +@dirrmtry %%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/sql +@dirrmtry %%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/mail +@dirrmtry %%DATADIR%%/extensions/modules/src/org/exist/xquery/modules/example +@dirrmtry %%DATADIR%%/extensions/modules/src/org/exist/xquery/modules +@dirrmtry %%DATADIR%%/extensions/modules/src/org/exist/xquery +@dirrmtry %%DATADIR%%/extensions/modules/src/org/exist +@dirrmtry %%DATADIR%%/extensions/modules/src/org +@dirrmtry %%DATADIR%%/extensions/modules/src +@dirrmtry %%DATADIR%%/extensions/modules +@dirrmtry %%DATADIR%%/extensions +@dirrmtry %%DATADIR%%/lib/optional +@dirrmtry %%DATADIR%%/lib/user +@dirrmtry %%DATADIR%%/lib/licenses +@dirrmtry %%DATADIR%%/lib/core +@dirrmtry %%DATADIR%%/lib/cocoon +@dirrmtry %%DATADIR%%/lib/endorsed +@dirrmtry %%DATADIR%%/lib +@dirrmtry %%DATADIR%%/samples/org/exist/examples/triggers/stx +@dirrmtry %%DATADIR%%/samples/org/exist/examples/triggers +@dirrmtry %%DATADIR%%/samples/org/exist/examples/soap +@dirrmtry %%DATADIR%%/samples/org/exist/examples/xmldb +@dirrmtry %%DATADIR%%/samples/org/exist/examples/http +@dirrmtry %%DATADIR%%/samples/org/exist/examples/xmlrpc +@dirrmtry %%DATADIR%%/samples/org/exist/examples +@dirrmtry %%DATADIR%%/samples/org/exist +@dirrmtry %%DATADIR%%/samples/org +@dirrmtry %%DATADIR%%/samples/xupdate +@dirrmtry %%DATADIR%%/samples/xmlrpc +@dirrmtry %%DATADIR%%/samples/xquery +@dirrmtry %%DATADIR%%/samples/xinclude +@dirrmtry %%DATADIR%%/samples/validation/dtd +@dirrmtry %%DATADIR%%/samples/validation/addressbook +@dirrmtry %%DATADIR%%/samples/validation +@dirrmtry %%DATADIR%%/samples/soap +@dirrmtry %%DATADIR%%/samples/ant +@dirrmtry %%DATADIR%%/samples/mods +@dirrmtry %%DATADIR%%/samples/http +@dirrmtry %%DATADIR%%/samples/xacml +@dirrmtry %%DATADIR%%/samples/shakespeare +@dirrmtry %%DATADIR%%/samples +@dirrmtry %%DATADIR%%/src/org/exist/xquery/functions/text +@dirrmtry %%DATADIR%%/src/org/exist/xquery/functions/util +@dirrmtry %%DATADIR%%/src/org/exist/xquery/functions/request +@dirrmtry %%DATADIR%%/src/org/exist/xquery/functions/xmldb +@dirrmtry %%DATADIR%%/src/org/exist/xquery/functions/session +@dirrmtry %%DATADIR%%/src/org/exist/xquery/functions/system +@dirrmtry %%DATADIR%%/src/org/exist/xquery/functions/response +@dirrmtry %%DATADIR%%/src/org/exist/xquery/functions/exist +@dirrmtry %%DATADIR%%/src/org/exist/xquery/functions/validation +@dirrmtry %%DATADIR%%/src/org/exist/xquery/functions/transform +@dirrmtry %%DATADIR%%/src/org/exist/xquery/functions +@dirrmtry %%DATADIR%%/src/org/exist/xquery/parser +@dirrmtry %%DATADIR%%/src/org/exist/xquery/test +@dirrmtry %%DATADIR%%/src/org/exist/xquery/value/test +@dirrmtry %%DATADIR%%/src/org/exist/xquery/value +@dirrmtry %%DATADIR%%/src/org/exist/xquery/update +@dirrmtry %%DATADIR%%/src/org/exist/xquery/util +@dirrmtry %%DATADIR%%/src/org/exist/xquery/lib +@dirrmtry %%DATADIR%%/src/org/exist/xquery +@dirrmtry %%DATADIR%%/src/org/exist/soap/test +@dirrmtry %%DATADIR%%/src/org/exist/soap +@dirrmtry %%DATADIR%%/src/org/exist/xupdate/test/results +@dirrmtry %%DATADIR%%/src/org/exist/xupdate/test/modifications +@dirrmtry %%DATADIR%%/src/org/exist/xupdate/test/input +@dirrmtry %%DATADIR%%/src/org/exist/xupdate/test +@dirrmtry %%DATADIR%%/src/org/exist/xupdate +@dirrmtry %%DATADIR%%/src/org/exist/xmldb/test/concurrent/action +@dirrmtry %%DATADIR%%/src/org/exist/xmldb/test/concurrent +@dirrmtry %%DATADIR%%/src/org/exist/xmldb/test +@dirrmtry %%DATADIR%%/src/org/exist/xmldb +@dirrmtry %%DATADIR%%/src/org/exist/storage/btree +@dirrmtry %%DATADIR%%/src/org/exist/storage/dom +@dirrmtry %%DATADIR%%/src/org/exist/storage/index +@dirrmtry %%DATADIR%%/src/org/exist/storage/txn +@dirrmtry %%DATADIR%%/src/org/exist/storage/serializers +@dirrmtry %%DATADIR%%/src/org/exist/storage/test +@dirrmtry %%DATADIR%%/src/org/exist/storage/journal +@dirrmtry %%DATADIR%%/src/org/exist/storage/cache +@dirrmtry %%DATADIR%%/src/org/exist/storage/analysis +@dirrmtry %%DATADIR%%/src/org/exist/storage/sync +@dirrmtry %%DATADIR%%/src/org/exist/storage/io/test +@dirrmtry %%DATADIR%%/src/org/exist/storage/io +@dirrmtry %%DATADIR%%/src/org/exist/storage/lock +@dirrmtry %%DATADIR%%/src/org/exist/storage/recovery +@dirrmtry %%DATADIR%%/src/org/exist/storage/report +@dirrmtry %%DATADIR%%/src/org/exist/storage +@dirrmtry %%DATADIR%%/src/org/exist/dom/test +@dirrmtry %%DATADIR%%/src/org/exist/dom +@dirrmtry %%DATADIR%%/src/org/exist/util/hashtable/test +@dirrmtry %%DATADIR%%/src/org/exist/util/hashtable +@dirrmtry %%DATADIR%%/src/org/exist/util/serializer/encodings +@dirrmtry %%DATADIR%%/src/org/exist/util/serializer +@dirrmtry %%DATADIR%%/src/org/exist/util/test +@dirrmtry %%DATADIR%%/src/org/exist/util/sanity +@dirrmtry %%DATADIR%%/src/org/exist/util +@dirrmtry %%DATADIR%%/src/org/exist/client/icons +@dirrmtry %%DATADIR%%/src/org/exist/client/xacml +@dirrmtry %%DATADIR%%/src/org/exist/client +@dirrmtry %%DATADIR%%/src/org/exist/validation/test +@dirrmtry %%DATADIR%%/src/org/exist/validation/internal/query +@dirrmtry %%DATADIR%%/src/org/exist/validation/internal +@dirrmtry %%DATADIR%%/src/org/exist/validation/resolver +@dirrmtry %%DATADIR%%/src/org/exist/validation/service +@dirrmtry %%DATADIR%%/src/org/exist/validation +@dirrmtry %%DATADIR%%/src/org/exist/collections/triggers/test +@dirrmtry %%DATADIR%%/src/org/exist/collections/triggers +@dirrmtry %%DATADIR%%/src/org/exist/collections +@dirrmtry %%DATADIR%%/src/org/exist/security/xacml/policies +@dirrmtry %%DATADIR%%/src/org/exist/security/xacml +@dirrmtry %%DATADIR%%/src/org/exist/security +@dirrmtry %%DATADIR%%/src/org/exist/ant +@dirrmtry %%DATADIR%%/src/org/exist/memtree/test +@dirrmtry %%DATADIR%%/src/org/exist/memtree +@dirrmtry %%DATADIR%%/src/org/exist/xqj +@dirrmtry %%DATADIR%%/src/org/exist/cluster/journal/test +@dirrmtry %%DATADIR%%/src/org/exist/cluster/journal +@dirrmtry %%DATADIR%%/src/org/exist/cluster/cocoon +@dirrmtry %%DATADIR%%/src/org/exist/cluster +@dirrmtry %%DATADIR%%/src/org/exist/xmlrpc/test +@dirrmtry %%DATADIR%%/src/org/exist/xmlrpc +@dirrmtry %%DATADIR%%/src/org/exist/atom/util +@dirrmtry %%DATADIR%%/src/org/exist/atom/modules +@dirrmtry %%DATADIR%%/src/org/exist/atom/http +@dirrmtry %%DATADIR%%/src/org/exist/atom +@dirrmtry %%DATADIR%%/src/org/exist/http/webdav/methods +@dirrmtry %%DATADIR%%/src/org/exist/http/webdav +@dirrmtry %%DATADIR%%/src/org/exist/http/servlets +@dirrmtry %%DATADIR%%/src/org/exist/http/test +@dirrmtry %%DATADIR%%/src/org/exist/http/realm +@dirrmtry %%DATADIR%%/src/org/exist/http +@dirrmtry %%DATADIR%%/src/org/exist/cocoon +@dirrmtry %%DATADIR%%/src/org/exist/backup +@dirrmtry %%DATADIR%%/src/org/exist/source +@dirrmtry %%DATADIR%%/src/org/exist/numbering/test +@dirrmtry %%DATADIR%%/src/org/exist/numbering +@dirrmtry %%DATADIR%%/src/org/exist/start +@dirrmtry %%DATADIR%%/src/org/exist/jsp +@dirrmtry %%DATADIR%%/src/org/exist/webstart +@dirrmtry %%DATADIR%%/src/org/exist/test +@dirrmtry %%DATADIR%%/src/org/exist/xslt +@dirrmtry %%DATADIR%%/src/org/exist +@dirrmtry %%DATADIR%%/src/org +@dirrmtry %%DATADIR%%/src/javax/xml/xquery +@dirrmtry %%DATADIR%%/src/javax/xml/namespace +@dirrmtry %%DATADIR%%/src/javax/xml +@dirrmtry %%DATADIR%%/src/javax +@dirrmtry %%DATADIR%%/src +@dirrmtry %%DATADIR%%/thirdparty/jboss/src/org/exist/jboss/exist +@dirrmtry %%DATADIR%%/thirdparty/jboss/src/org/exist/jboss +@dirrmtry %%DATADIR%%/thirdparty/jboss/src/org/exist +@dirrmtry %%DATADIR%%/thirdparty/jboss/src/org +@dirrmtry %%DATADIR%%/thirdparty/jboss/src/samples +@dirrmtry %%DATADIR%%/thirdparty/jboss/src +@dirrmtry %%DATADIR%%/thirdparty/jboss/conf/eXist +@dirrmtry %%DATADIR%%/thirdparty/jboss/conf/samples +@dirrmtry %%DATADIR%%/thirdparty/jboss/conf +@dirrmtry %%DATADIR%%/thirdparty/jboss/lib +@dirrmtry %%DATADIR%%/thirdparty/jboss +@dirrmtry %%DATADIR%%/thirdparty/tomcat5/server/lib +@dirrmtry %%DATADIR%%/thirdparty/tomcat5/server +@dirrmtry %%DATADIR%%/thirdparty/tomcat5/bin +@dirrmtry %%DATADIR%%/thirdparty/tomcat5 +@dirrmtry %%DATADIR%%/thirdparty +@dirrmtry %%DATADIR%%/tools/XFormsFilter/xslt +@dirrmtry %%DATADIR%%/tools/XFormsFilter/org/chiba/adapter/servlet +@dirrmtry %%DATADIR%%/tools/XFormsFilter/org/chiba/adapter/upload +@dirrmtry %%DATADIR%%/tools/XFormsFilter/org/chiba/adapter +@dirrmtry %%DATADIR%%/tools/XFormsFilter/org/chiba +@dirrmtry %%DATADIR%%/tools/XFormsFilter/org +@dirrmtry %%DATADIR%%/tools/XFormsFilter/uk/gov/devonline/www/xforms +@dirrmtry %%DATADIR%%/tools/XFormsFilter/uk/gov/devonline/www +@dirrmtry %%DATADIR%%/tools/XFormsFilter/uk/gov/devonline +@dirrmtry %%DATADIR%%/tools/XFormsFilter/uk/gov +@dirrmtry %%DATADIR%%/tools/XFormsFilter/uk +@dirrmtry %%DATADIR%%/tools/XFormsFilter/lib +@dirrmtry %%DATADIR%%/tools/XFormsFilter +@dirrmtry %%DATADIR%%/tools/rulesets +@dirrmtry %%DATADIR%%/tools/wrapper/logs +@dirrmtry %%DATADIR%%/tools/wrapper/bin +@dirrmtry %%DATADIR%%/tools/wrapper/lib +@dirrmtry %%DATADIR%%/tools/wrapper/classes/org/exist/wrapper +@dirrmtry %%DATADIR%%/tools/wrapper/classes/org/exist +@dirrmtry %%DATADIR%%/tools/wrapper/classes/org +@dirrmtry %%DATADIR%%/tools/wrapper/classes +@dirrmtry %%DATADIR%%/tools/wrapper/src/org/exist/wrapper +@dirrmtry %%DATADIR%%/tools/wrapper/src/org/exist +@dirrmtry %%DATADIR%%/tools/wrapper/src/org +@dirrmtry %%DATADIR%%/tools/wrapper/src +@dirrmtry %%DATADIR%%/tools/wrapper/conf +@dirrmtry %%DATADIR%%/tools/wrapper/work +@dirrmtry %%DATADIR%%/tools/wrapper +@dirrmtry %%DATADIR%%/tools/jetty/etc +@dirrmtry %%DATADIR%%/tools/jetty/work +@dirrmtry %%DATADIR%%/tools/jetty/lib +@dirrmtry %%DATADIR%%/tools/jetty/logs +@dirrmtry %%DATADIR%%/tools/jetty +@dirrmtry %%DATADIR%%/tools/requestlog/src/org/exist/requestlog +@dirrmtry %%DATADIR%%/tools/requestlog/src/org/exist +@dirrmtry %%DATADIR%%/tools/requestlog/src/org +@dirrmtry %%DATADIR%%/tools/requestlog/src +@dirrmtry %%DATADIR%%/tools/requestlog +@dirrmtry %%DATADIR%%/tools/ant/lib +@dirrmtry %%DATADIR%%/tools/ant/etc +@dirrmtry %%DATADIR%%/tools/ant +@dirrmtry %%DATADIR%%/tools/izpack +@dirrmtry %%DATADIR%%/tools +@dirrmtry %%DATADIR%%/webapp/xquery/stylesheets +@dirrmtry %%DATADIR%%/webapp/xquery/resources +@dirrmtry %%DATADIR%%/webapp/xquery/styles +@dirrmtry %%DATADIR%%/webapp/xquery +@dirrmtry %%DATADIR%%/webapp/resources/styles +@dirrmtry %%DATADIR%%/webapp/resources +@dirrmtry %%DATADIR%%/webapp/xqts/styles +@dirrmtry %%DATADIR%%/webapp/xqts/images +@dirrmtry %%DATADIR%%/webapp/xqts/scripts +@dirrmtry %%DATADIR%%/webapp/xqts/stylesheets +@dirrmtry %%DATADIR%%/webapp/xqts +@dirrmtry %%DATADIR%%/webapp/WEB-INF/data +@dirrmtry %%DATADIR%%/webapp/WEB-INF/entities +@dirrmtry %%DATADIR%%/webapp/WEB-INF/logs +@dirrmtry %%DATADIR%%/webapp/WEB-INF/classes +@dirrmtry %%DATADIR%%/webapp/WEB-INF/attachments +@dirrmtry %%DATADIR%%/webapp/WEB-INF +@dirrmtry %%DATADIR%%/webapp/mods/styles +@dirrmtry %%DATADIR%%/webapp/mods/images +@dirrmtry %%DATADIR%%/webapp/mods +@dirrmtry %%DATADIR%%/webapp/irclog/images +@dirrmtry %%DATADIR%%/webapp/irclog/scripts +@dirrmtry %%DATADIR%%/webapp/irclog/styles +@dirrmtry %%DATADIR%%/webapp/irclog +@dirrmtry %%DATADIR%%/webapp/sandbox/scripts +@dirrmtry %%DATADIR%%/webapp/sandbox/stylesheets +@dirrmtry %%DATADIR%%/webapp/sandbox/styles +@dirrmtry %%DATADIR%%/webapp/sandbox +@dirrmtry %%DATADIR%%/webapp/styles +@dirrmtry %%DATADIR%%/webapp/apps/styles +@dirrmtry %%DATADIR%%/webapp/apps +@dirrmtry %%DATADIR%%/webapp/admin +@dirrmtry %%DATADIR%%/webapp/acronyms/resources +@dirrmtry %%DATADIR%%/webapp/acronyms/styles +@dirrmtry %%DATADIR%%/webapp/acronyms/stylesheets +@dirrmtry %%DATADIR%%/webapp/acronyms +@dirrmtry %%DATADIR%%/webapp/stylesheets/system/scripts +@dirrmtry %%DATADIR%%/webapp/stylesheets/system +@dirrmtry %%DATADIR%%/webapp/stylesheets/sitemap +@dirrmtry %%DATADIR%%/webapp/stylesheets +@dirrmtry %%DATADIR%%/webapp/webtest +@dirrmtry %%DATADIR%%/webapp/scripts +@dirrmtry %%DATADIR%%/webapp/api/org/exist/xquery/functions/util +@dirrmtry %%DATADIR%%/webapp/api/org/exist/xquery/functions/xmldb +@dirrmtry %%DATADIR%%/webapp/api/org/exist/xquery/functions/request +@dirrmtry %%DATADIR%%/webapp/api/org/exist/xquery/functions/system +@dirrmtry %%DATADIR%%/webapp/api/org/exist/xquery/functions/session +@dirrmtry %%DATADIR%%/webapp/api/org/exist/xquery/functions/text +@dirrmtry %%DATADIR%%/webapp/api/org/exist/xquery/functions/transform +@dirrmtry %%DATADIR%%/webapp/api/org/exist/xquery/functions/exist +@dirrmtry %%DATADIR%%/webapp/api/org/exist/xquery/functions/validation +@dirrmtry %%DATADIR%%/webapp/api/org/exist/xquery/functions/response +@dirrmtry %%DATADIR%%/webapp/api/org/exist/xquery/functions +@dirrmtry %%DATADIR%%/webapp/api/org/exist/xquery/value/test +@dirrmtry %%DATADIR%%/webapp/api/org/exist/xquery/value +@dirrmtry %%DATADIR%%/webapp/api/org/exist/xquery/util +@dirrmtry %%DATADIR%%/webapp/api/org/exist/xquery/test +@dirrmtry %%DATADIR%%/webapp/api/org/exist/xquery/update +@dirrmtry %%DATADIR%%/webapp/api/org/exist/xquery/parser +@dirrmtry %%DATADIR%%/webapp/api/org/exist/xquery +@dirrmtry %%DATADIR%%/webapp/api/org/exist/storage/dom +@dirrmtry %%DATADIR%%/webapp/api/org/exist/storage/index +@dirrmtry %%DATADIR%%/webapp/api/org/exist/storage/txn +@dirrmtry %%DATADIR%%/webapp/api/org/exist/storage/analysis +@dirrmtry %%DATADIR%%/webapp/api/org/exist/storage/test +@dirrmtry %%DATADIR%%/webapp/api/org/exist/storage/io/test +@dirrmtry %%DATADIR%%/webapp/api/org/exist/storage/io +@dirrmtry %%DATADIR%%/webapp/api/org/exist/storage/journal +@dirrmtry %%DATADIR%%/webapp/api/org/exist/storage/report +@dirrmtry %%DATADIR%%/webapp/api/org/exist/storage/cache +@dirrmtry %%DATADIR%%/webapp/api/org/exist/storage/recovery +@dirrmtry %%DATADIR%%/webapp/api/org/exist/storage/serializers +@dirrmtry %%DATADIR%%/webapp/api/org/exist/storage/btree +@dirrmtry %%DATADIR%%/webapp/api/org/exist/storage/lock +@dirrmtry %%DATADIR%%/webapp/api/org/exist/storage/sync +@dirrmtry %%DATADIR%%/webapp/api/org/exist/storage +@dirrmtry %%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent/action +@dirrmtry %%DATADIR%%/webapp/api/org/exist/xmldb/test/concurrent +@dirrmtry %%DATADIR%%/webapp/api/org/exist/xmldb/test +@dirrmtry %%DATADIR%%/webapp/api/org/exist/xmldb +@dirrmtry %%DATADIR%%/webapp/api/org/exist/http/servlets +@dirrmtry %%DATADIR%%/webapp/api/org/exist/http/webdav/methods +@dirrmtry %%DATADIR%%/webapp/api/org/exist/http/webdav +@dirrmtry %%DATADIR%%/webapp/api/org/exist/http/test +@dirrmtry %%DATADIR%%/webapp/api/org/exist/http/realm +@dirrmtry %%DATADIR%%/webapp/api/org/exist/http +@dirrmtry %%DATADIR%%/webapp/api/org/exist/atom/util +@dirrmtry %%DATADIR%%/webapp/api/org/exist/atom/http +@dirrmtry %%DATADIR%%/webapp/api/org/exist/atom/modules +@dirrmtry %%DATADIR%%/webapp/api/org/exist/atom +@dirrmtry %%DATADIR%%/webapp/api/org/exist/util/serializer/encodings +@dirrmtry %%DATADIR%%/webapp/api/org/exist/util/serializer +@dirrmtry %%DATADIR%%/webapp/api/org/exist/util/hashtable/test +@dirrmtry %%DATADIR%%/webapp/api/org/exist/util/hashtable +@dirrmtry %%DATADIR%%/webapp/api/org/exist/util/test +@dirrmtry %%DATADIR%%/webapp/api/org/exist/util/sanity +@dirrmtry %%DATADIR%%/webapp/api/org/exist/util +@dirrmtry %%DATADIR%%/webapp/api/org/exist/client/xacml +@dirrmtry %%DATADIR%%/webapp/api/org/exist/client +@dirrmtry %%DATADIR%%/webapp/api/org/exist/validation/internal +@dirrmtry %%DATADIR%%/webapp/api/org/exist/validation/resolver +@dirrmtry %%DATADIR%%/webapp/api/org/exist/validation/service +@dirrmtry %%DATADIR%%/webapp/api/org/exist/validation/test +@dirrmtry %%DATADIR%%/webapp/api/org/exist/validation +@dirrmtry %%DATADIR%%/webapp/api/org/exist/security/xacml +@dirrmtry %%DATADIR%%/webapp/api/org/exist/security +@dirrmtry %%DATADIR%%/webapp/api/org/exist/ant +@dirrmtry %%DATADIR%%/webapp/api/org/exist/xupdate/test +@dirrmtry %%DATADIR%%/webapp/api/org/exist/xupdate +@dirrmtry %%DATADIR%%/webapp/api/org/exist/soap/test +@dirrmtry %%DATADIR%%/webapp/api/org/exist/soap +@dirrmtry %%DATADIR%%/webapp/api/org/exist/collections/triggers/test +@dirrmtry %%DATADIR%%/webapp/api/org/exist/collections/triggers +@dirrmtry %%DATADIR%%/webapp/api/org/exist/collections +@dirrmtry %%DATADIR%%/webapp/api/org/exist/dom/test +@dirrmtry %%DATADIR%%/webapp/api/org/exist/dom +@dirrmtry %%DATADIR%%/webapp/api/org/exist/memtree/test +@dirrmtry %%DATADIR%%/webapp/api/org/exist/memtree +@dirrmtry %%DATADIR%%/webapp/api/org/exist/xslt +@dirrmtry %%DATADIR%%/webapp/api/org/exist/xmlrpc/test +@dirrmtry %%DATADIR%%/webapp/api/org/exist/xmlrpc +@dirrmtry %%DATADIR%%/webapp/api/org/exist/cluster/cocoon +@dirrmtry %%DATADIR%%/webapp/api/org/exist/cluster/journal/test +@dirrmtry %%DATADIR%%/webapp/api/org/exist/cluster/journal +@dirrmtry %%DATADIR%%/webapp/api/org/exist/cluster +@dirrmtry %%DATADIR%%/webapp/api/org/exist/numbering/test +@dirrmtry %%DATADIR%%/webapp/api/org/exist/numbering +@dirrmtry %%DATADIR%%/webapp/api/org/exist/xqj +@dirrmtry %%DATADIR%%/webapp/api/org/exist/source +@dirrmtry %%DATADIR%%/webapp/api/org/exist/cocoon +@dirrmtry %%DATADIR%%/webapp/api/org/exist/start +@dirrmtry %%DATADIR%%/webapp/api/org/exist/backup +@dirrmtry %%DATADIR%%/webapp/api/org/exist/test +@dirrmtry %%DATADIR%%/webapp/api/org/exist/webstart +@dirrmtry %%DATADIR%%/webapp/api/org/exist/jsp +@dirrmtry %%DATADIR%%/webapp/api/org/exist +@dirrmtry %%DATADIR%%/webapp/api/org/xmldb/api/base +@dirrmtry %%DATADIR%%/webapp/api/org/xmldb/api/modules +@dirrmtry %%DATADIR%%/webapp/api/org/xmldb/api +@dirrmtry %%DATADIR%%/webapp/api/org/xmldb +@dirrmtry %%DATADIR%%/webapp/api/org +@dirrmtry %%DATADIR%%/webapp/api/resources +@dirrmtry %%DATADIR%%/webapp/api +@dirrmtry %%DATADIR%%/webapp +@unexec rmdir %D/%%DATADIR%% 2>/dev/null || echo "If you are permanently removing this port, remember to delete the configuration files and logs left in \"%D/%%DATADIR%%\"." | /usr/bin/fmt |