Skip to content
Snippets Groups Projects
Verified Commit ea33a547 authored by Stefan Hynek's avatar Stefan Hynek :drooling_face:
Browse files

fix(ifweb): register library modules

allow to depend on namespace resolution of the packages modules

closes #5
parent 5fb7b360
No related branches found
No related tags found
1 merge request!9Resolve "register library module(s) correctly"
......@@ -8,7 +8,7 @@
<dependency processor="http://exist-db.org" semver-min="@project.processorversion@"/>
<dependency package="http://exist-db.org/apps/shared"/>
<xquery>
<namespace>http://bdn-edition.de/intermediate_format</namespace>
<file>ifweb.xqm</file>
<namespace>http://bdn-edition.de/intermediate_format/ifweb</namespace>
<file>ifweb.xql</file>
</xquery>
</package>
......@@ -35,9 +35,9 @@ module namespace ifweb="http://bdn-edition.de/intermediate_format/ifweb";
declare namespace tei = "http://www.tei-c.org/ns/1.0";
import module namespace console="http://exist-db.org/xquery/console";
import module namespace pre="http://bdn-edition.de/intermediate_format/preprocessing" at "xmldb:exist:///db/apps/interformat/modules/intermediate_format/preprocessing.xqm";
import module namespace ident = "http://bdn-edition.de/intermediate_format/identification" at "xmldb:exist:///db/apps/interformat/modules/intermediate_format/identification.xqm";
import module namespace config = "http://bdn-edition.de/intermediate_format/config" at "xmldb:exist:///db/apps/interformat/modules/config.xqm";
import module namespace pre="http://bdn-edition.de/intermediate_format/preprocessing" at "preprocessing.xqm";
import module namespace ident = "http://bdn-edition.de/intermediate_format/identification" at "identification.xqm";
import module namespace config = "http://bdn-edition.de/intermediate_format/config" at "../config.xqm";
declare option exist:serialize "method=xml media-type=text/xml omit-xml-declaration=no indent=no";
......
......@@ -10,5 +10,5 @@
<target>interformat</target>
<prepare>pre-install.xql</prepare>
<finish/>
<deployed>2018-03-26T10:38:10.685+02:00</deployed>
<deployed />
</meta>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment