comparison software/eXist/webapp/mpdl/doc/admin.xql @ 7:5589d865af7a

Erstellung XQL/XSL Applikation
author Josef Willenborg <jwillenborg@mpiwg-berlin.mpg.de>
date Tue, 08 Feb 2011 15:16:46 +0100
parents
children
comparison
equal deleted inserted replaced
6:2396a569e446 7:5589d865af7a
1 xquery version "1.0";
2
3 import module namespace request="http://exist-db.org/xquery/request";
4
5 let $operation := request:get-parameter("operation", "")
6 let $jobId := mpdldoc:do(string($operation), 'empty', 'empty', 'empty', 'empty', 'empty', 'empty')
7
8 return
9 <html>
10 <head>
11 <title>Admin</title>
12 </head>
13 <body>
14 <h1>Admin</h1>
15 <b>JobId of your operation:</b> {$jobId}
16
17 </body>
18 </html>