Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Fix map constructor syntax
· d854b9e4
Joe Wicentowski
authored
Jul 24, 2019
See
https://github.com/eXist-db/exist/issues/2887
.
d854b9e4
Merge branch 'fix-map-constructor-syntax' into 'master'
· 8769b36b
Wolfgang
authored
Jul 30, 2019
Fix map constructor syntax See merge request
!1
8769b36b
Show whitespace changes
Inline
Side-by-side
modules/view.xql
View file @
8769b36b
...
...
@@ -24,8 +24,8 @@ declare option output:method "html5";
declare option output:media-type "text/html";
let $config := map {
$templates:CONFIG_APP_ROOT :
=
$config:app-root,
$templates:CONFIG_STOP_ON_ERROR :
=
true()
$templates:CONFIG_APP_ROOT : $config:app-root,
$templates:CONFIG_STOP_ON_ERROR : true()
}
(:
: We have to provide a lookup function to templates:apply to help it
...
...