-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsession-import-local-do.xqy
94 lines (87 loc) · 2.81 KB
/
session-import-local-do.xqy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
xquery version "1.0-ml";
(:
: cq
:
: Copyright (c) 2002-2011 MarkLogic Corporation. All Rights Reserved.
:
: Licensed under the Apache License, Version 2.0 (the "License");
: you may not use this file except in compliance with the License.
: You may obtain a copy of the License at
:
: http://www.apache.org/licenses/LICENSE-2.0
:
: Unless required by applicable law or agreed to in writing, software
: distributed under the License is distributed on an "AS IS" BASIS,
: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
: See the License for the specific language governing permissions and
: limitations under the License.
:
: The use of the Apache License does not indicate that this project is
: affiliated with the Apache Software Foundation.
:)
declare namespace sess = "com.marklogic.developer.cq.session";
import module namespace c = "com.marklogic.developer.cq.controller"
at "lib-controller.xqy";
import module namespace d = "com.marklogic.developer.cq.debug"
at "lib-debug.xqy";
import module namespace v = "com.marklogic.developer.cq.view"
at "lib-view.xqy";
declare option xdmp:mapping "false";
d:check-debug()
,
if ('POST' eq xdmp:get-request-method()) then ()
else c:error('CQ-UNEXPECTED')
,
c:set-content-type(),
<html xmlns="http://www.w3.org/1999/xhtml">
{ v:get-html-head('Import Local Session', false(), true()) }
<body onload="sessionImportLocal()">
<h1>Import Local Session from File</h1>
{
try {
(: stubs for a query page :)
for $id in (
"query", "eval", "buffer-list", "textarea-status",
"history",
"buffer-tabs", "buffer-tabs-0", "buffer-tabs-1",
"buffer-accesskey-text")
return element div {
attribute id { $id }
}
,
v:session-restore(
xdmp:unquote(
xdmp:get-request-field("import") )/sess:session
treat as element(sess:session) )
} catch ($ex) {
element div {
element h2 {
'Error: the import failed.' },
<p>
Perhaps the file you selected does not contain
a valid cq session export?</p>,
element p {
element a {
attribute href { 'session-import-local.xqy' },
'Try again' } },
element p {
element a {
attribute href { 'session.xqy' },
'Return to the cq session manager' } },
<p>
The full error message follows.
If you believe that your selected file does contain
a valid cq session export, please visit
the <a href="http://github.com/marklogic/cq/issues">issues</a>
page for cq on github.
There you can create a new issue for this problem.
Be sure to attach a copy of this error message,
and a copy of the session file that caused the error.
</p>,
element pre { xdmp:quote($ex) }
}
}
}
</body>
</html>
(: session-import-local-do.xqy :)