diff --git a/modules/config.xqm b/modules/config.xqm index 5305293b5187d0b787971db5ae448e043e260256..3692eef3bf9d53fa42008b10974b61649efa3284 100644 --- a/modules/config.xqm +++ b/modules/config.xqm @@ -11,10 +11,10 @@ declare namespace templates="http://exist-db.org/xquery/templates"; declare namespace repo="http://exist-db.org/xquery/repo"; declare namespace expath="http://expath.org/ns/pkg"; -(: +(: Determine the application root collection from the current module load path. :) -declare variable $config:app-root := +declare variable $config:app-root := let $rawPath := system:get-module-load-path() let $modulePath := (: strip the xmldb: part :) @@ -35,6 +35,10 @@ declare variable $config:repo-descriptor := doc(concat($config:app-root, "/repo. declare variable $config:expath-descriptor := doc(concat($config:app-root, "/expath-pkg.xml"))/expath:package; +declare variable $config:sade := "/db/sade-projects/textgrid/data/xml/"; +declare variable $config:sade-data := $config:sade || "data/"; +declare variable $config:sade-meta := $config:sade || "meta/"; + (:~ : Resolve the given path using the current application context. : If the app resides in the file system, @@ -97,4 +101,4 @@ declare function config:app-info($node as node(), $model as map(*)) { <td>{ request:get-attribute("$exist:controller") }</td> </tr> </table> -}; \ No newline at end of file +};