From d4737b8b9488bb6cbfc89a147040480fd6a90378 Mon Sep 17 00:00:00 2001 From: Hizkiel Date: Fri, 18 Oct 2024 17:52:31 +0200 Subject: [PATCH] Make-all-module-imports-relative Resolving issue #368 --- add/data/xqm/util.xqm | 4 ++-- add/data/xqm/work.xqm | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/add/data/xqm/util.xqm b/add/data/xqm/util.xqm index a8fb2e7d..49e46609 100644 --- a/add/data/xqm/util.xqm +++ b/add/data/xqm/util.xqm @@ -17,8 +17,8 @@ module namespace eutil = "http://www.edirom.de/xquery/util"; import module namespace functx = "http://www.functx.com"; -import module namespace annotation="http://www.edirom.de/xquery/annotation" at "../xqm/annotation.xqm"; -import module namespace edition="http://www.edirom.de/xquery/edition" at "../xqm/edition.xqm"; +import module namespace annotation="http://www.edirom.de/xquery/annotation" at "annotation.xqm"; +import module namespace edition="http://www.edirom.de/xquery/edition" at "edition.xqm"; import module namespace source="http://www.edirom.de/xquery/source" at "source.xqm"; import module namespace teitext="http://www.edirom.de/xquery/teitext" at "teitext.xqm"; import module namespace work="http://www.edirom.de/xquery/work" at "work.xqm"; diff --git a/add/data/xqm/work.xqm b/add/data/xqm/work.xqm index aa0ea7eb..d6d52af6 100644 --- a/add/data/xqm/work.xqm +++ b/add/data/xqm/work.xqm @@ -12,7 +12,7 @@ module namespace work = "http://www.edirom.de/xquery/work"; (: IMPORTS ================================================================= :) -import module namespace eutil="http://www.edirom.de/xquery/util" at "../xqm/util.xqm"; +import module namespace eutil="http://www.edirom.de/xquery/util" at "util.xqm"; (: NAMESPACE DECLARATIONS ================================================== :)