Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add compatibility to html-templating module #27

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
4 changes: 2 additions & 2 deletions expath-pkg.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<package xmlns="http://expath.org/ns/pkg" name="http://www.bbaw.de/telota/software/ediarum" abbrev="ediarum.DB" version="4.1.1" spec="1.0">
<package xmlns="http://expath.org/ns/pkg" name="http://www.bbaw.de/telota/software/ediarum" abbrev="ediarum.DB" version="4.2.0" spec="1.0">
<title>ediarum.DB</title>
<dependency package="http://exist-db.org/apps/shared"/>
<dependency package="http://exist-db.org/html-templating" semver-min="1.0.0"/>
<dependency package="http://www.functx.com"/>
<xquery>
<namespace>http://www.bbaw.de/telota/software/ediarum/existdb</namespace>
Expand Down
2 changes: 1 addition & 1 deletion expath-pkg.xml.ant
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<package xmlns="http://expath.org/ns/pkg" name="http://www.bbaw.de/telota/software/ediarum" abbrev="ediarum.DB" version="@VERSION@" spec="1.0">
<title>ediarum.DB</title>
<dependency package="http://exist-db.org/apps/shared"/>
<dependency package="http://exist-db.org/html-templating" semver-min="1.0.0"/>
<dependency package="http://www.functx.com"/>
<xquery>
<namespace>http://www.bbaw.de/telota/software/ediarum/existdb</namespace>
Expand Down
2 changes: 1 addition & 1 deletion modules/config.xqm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import module namespace ediarum="http://www.bbaw.de/telota/software/ediarum/edia
import module namespace http = "http://expath.org/ns/http-client";
import module namespace functx = "http://www.functx.com";

declare namespace templates="http://exist-db.org/xquery/templates";
declare namespace templates="http://exist-db.org/xquery/html-templating";
declare namespace exist="http://exist.sourceforge.net/NS/exist";
declare namespace repo="http://exist-db.org/xquery/repo";
declare namespace expath="http://expath.org/ns/pkg";
Expand Down
3 changes: 1 addition & 2 deletions modules/view.xql
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
:)
xquery version "3.0";

import module namespace templates="http://exist-db.org/xquery/templates" ;

import module namespace templates="http://exist-db.org/xquery/html-templating" ;
(:
: The following modules provide functions which will be called by the
: templating.
Expand Down