Skip to content

Commit 3d9e361

Browse files
authored
Merge pull request #190 from duncdrum/master
minor fixes
2 parents 5ccee03 + edba6f7 commit 3d9e361

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

ISSUE_TEMPLATE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77

88

99
### Please provide the following
10-
* exist-db version: 3.6.0
11-
* documentation version: 0.6.1
10+
* exist-db version: `4.0.0`
11+
* documentation version: `4.0.0`

src/main/xar-resources/data/extensions/extensions.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<note>
3333
<para>eXist-db will require a restart to load any new modules added. </para>
3434
</note>
35-
<para>Once a Module is configured and loaded eXist-db will display the module and its function definitions as part of the <link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="{fundocs}">function library</link> page or through
35+
<para>Once a Module is configured and loaded eXist-db will display the module and its function definitions as part of the <link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="{${fundocs.pkg.abbrev}}">function library</link> page or through
3636
<literal>util:decribe-function()</literal>.</para>
3737
</sect1>
3838

src/main/xar-resources/data/incompatibilities/incompatibilities.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
<listitem>
7777
<para>The XQuery engine has been updated to support the changed syntax for <emphasis>maps in XQuery 3.1</emphasis>. The query parser will
7878
still accept the old syntax for map constructors though (<code>map { x:= "y"}</code> instead of <code>map { x: "y" }</code> in XQuery 3.1),
79-
so old code should run without modifications. All map module functions from XQuery 3.1 are <link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="{fundocs}/view.html?uri=http://www.w3.org/2005/xpath-functions/map&amp;location=java:org.exist.xquery.functions.map.MapModule">available</link>.</para>
79+
so old code should run without modifications. All map module functions from XQuery 3.1 are <link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="{${fundocs.pkg.abbrev}}/view.html?uri=http://www.w3.org/2005/xpath-functions/map&amp;location=java:org.exist.xquery.functions.map.MapModule">available</link>.</para>
8080
</listitem>
8181
<listitem>
8282
<para>The signatures for some <emphasis>higher-order utility functions</emphasis> like <code>fn:filter</code>, <code>fn:fold-left</code> and
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
declare
1+
declare
22
%templates:wrap
33
function demo:search($node as node(), $model as map(*), $query as xs:string) as map(*) {
44
let $result :=
55
for $hit in collection($config:app-root)//SCENE[ft:query(., $query)]
66
order by ft:score($hit) descending
77
return $hit
88
return
9-
map { "result" := $result }
10-
};
9+
map { "result": $result }
10+
};

0 commit comments

Comments
 (0)