Skip to content

Commit

Permalink
Copy edits
Browse files Browse the repository at this point in the history
  • Loading branch information
joewiz committed Dec 19, 2023
1 parent a7ddc06 commit fba8c14
Show file tree
Hide file tree
Showing 7 changed files with 289 additions and 226 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
xquery version "3.1";

declare namespace exist = "http://exist.sourceforge.net/NS/exist";
declare namespace exist="http://exist.sourceforge.net/NS/exist";

declare variable $exist:path external;
declare variable $exist:resource external;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
if (starts-with($path, "/sandbox/execute"))
if (starts-with($path, "/eXide/execute"))
then
let $query := request:get-parameter("qu", ())
let $startTime := util:system-time()
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<clear-attribute name="xxx">
<clear-attribute name="xxx"/>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
xquery version "3.1";

declare namespace exist = "http://exist.sourceforge.net/NS/exist";
declare namespace exist="http://exist.sourceforge.net/NS/exist";

declare variable $exist:path external;
declare variable $exist:resource external;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<dispatch xmlns="http://exist.sourceforge.net/NS/exist">
<redirect url="..."/>
</dispatch>
10 changes: 6 additions & 4 deletions src/main/xar-resources/data/urlrewrite/listings/listing-7.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<!--
Default configuration: main web application is served from the
webapp directory.
<!-- HTTP requests to /apps are mapped onto the database path /db/apps -->
<root pattern="/apps" path="xmldb:exist:///db/apps"/>

<!--
++ The default fallback web application is served from the
++ /etc/webapp directory on the filesystem.
-->
<root pattern="/tools" path="xmldb:exist:///db/www"/>
<root pattern=".*" path="/"/>
494 changes: 276 additions & 218 deletions src/main/xar-resources/data/urlrewrite/urlrewrite.xml

Large diffs are not rendered by default.

0 comments on commit fba8c14

Please sign in to comment.