diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/software/eXist/webapp/mpdl/doc/admin.xql	Tue Feb 08 15:16:46 2011 +0100
@@ -0,0 +1,18 @@
+xquery version "1.0";
+
+import module namespace request="http://exist-db.org/xquery/request";
+
+let $operation := request:get-parameter("operation", "")
+let $jobId := mpdldoc:do(string($operation), 'empty', 'empty', 'empty', 'empty', 'empty', 'empty')
+
+return 
+<html>
+<head>
+  <title>Admin</title>
+</head>
+<body>
+  <h1>Admin</h1>
+  <b>JobId of your operation:</b> {$jobId}
+  
+</body>
+</html>