Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
X
xnat-web
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dhcp
xnat-web
Commits
bfa77cc7
Commit
bfa77cc7
authored
8 years ago
by
Mark M. Florida
Browse files
Options
Downloads
Patches
Plain Diff
Added 'wrapper' tag on initial setup page.
parent
c7f27e77
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/webapp/setup/index.jsp
+65
-63
65 additions, 63 deletions
src/main/webapp/setup/index.jsp
with
65 additions
and
63 deletions
src/main/webapp/setup/index.jsp
+
65
−
63
View file @
bfa77cc7
...
...
@@ -2,85 +2,87 @@
<%@ taglib
prefix=
"c"
uri=
"http://java.sun.com/jsp/jstl/core"
%>
<%@ taglib
prefix=
"pg"
tagdir=
"/WEB-INF/tags/page"
%>
<pg:xnat
page=
"setup"
title=
"XNAT Setup"
>
<pg:wrapper>
<pg:xnat
page=
"setup"
title=
"XNAT Setup"
>
<div
id=
"page-body"
>
<div
class=
"pad"
>
<div
id=
"page-body"
>
<div
class=
"pad"
>
<div
id=
"setup-page"
>
<div
id=
"setup-page"
>
<c:set
var=
"message"
>
<header
id=
"content-header"
>
<h2>
XNAT Site Setup
</h2>
<div
class=
"message"
>
This XNAT system has not yet been configured for use.
Please contact your site administrator to have the system set up.
</div>
</header>
</c:set>
<pg:restricted
msg=
"
${
message
}
"
>
<c:import
url=
"/xapi/siteConfig"
var=
"siteConfig"
/>
<script>
XNAT
.
data
=
extend
({},
XNAT
.
data
,
{
siteConfig
:
$
{
siteConfig
}
});
// get rid of the 'targetSource' property
delete
XNAT
.
data
.
siteConfig
.
targetSource
;
</script>
<header
id=
"content-header"
>
<h2
class=
"pull-left"
>
XNAT Site Setup
</h2>
<div
class=
"hidden message pull-left"
>
The settings below need to be configured before this XNAT system
can be used. Please set the properties below and submit the form to continue.
</div>
<div
class=
"clearfix"
></div>
</header>
<c:set
var=
"message"
>
<header
id=
"content-header"
>
<h2>
XNAT Site Setup
</h2>
<div
class=
"message"
>
This XNAT system has not yet been configured for use.
Please contact your site administrator to have the system set up.
</div>
</header>
</c:set>
<pg:restricted
msg=
"
${
message
}
"
>
<!-- Setup tab container -->
<div
id=
"site-setup-panels"
>
<c:import
url=
"/xapi/siteConfig"
var=
"siteConfig"
/>
<script>
XNAT
.
data
=
extend
({},
XNAT
.
data
,
{
siteConfig
:
$
{
siteConfig
}
});
// get rid of the 'targetSource' property
delete
XNAT
.
data
.
siteConfig
.
targetSource
;
</script>
<!-- ======================== -->
<!-- PANELS WILL SHOW UP HERE -->
<!-- ======================== -->
<header
id=
"content-header"
>
<h2
class=
"pull-left"
>
XNAT Site Setup
</h2>
<div
class=
"hidden message pull-left"
>
The settings below need to be configured before this XNAT system
can be used. Please set the properties below and submit the form to continue.
</div>
<div
class=
"clearfix"
></div>
</header>
<!-- Setup tab container -->
<div
id=
"site-setup-panels"
>
</div>
<!-- /#site-setup-panels -->
<script
src=
"
<c:url
value=
"/scripts/xnat/app/siteSetup.js"
/>
"
></script>
<!-- ======================== -->
<!-- PANELS WILL SHOW UP HERE -->
<!-- ======================== -->
<script>
// XNAT.app.setupComplete = function(){
// XNAT.xhr.form('#site-setup', {});
// };
</div>
<!-- /#site-setup-panels -->
<script
src=
"
<c:url
value=
"/scripts/xnat/app/siteSetup.js"
/>
"
></script>
XNAT
.
xhr
.
get
({
url
:
XNAT
.
url
.
rootUrl
(
'
/setup/site-setup.yaml
'
),
//url: XNAT.url.rootUrl('/xapi/spawner/resolve/siteAdmin/siteSetup'),
success
:
function
(
data
){
if
(
typeof
data
===
'
string
'
)
{
data
=
YAML
.
parse
(
data
);
<script>
// XNAT.app.setupComplete = function(){
// XNAT.xhr.form('#site-setup', {});
// };
XNAT
.
xhr
.
get
({
url
:
XNAT
.
url
.
rootUrl
(
'
/setup/site-setup.yaml
'
),
//url: XNAT.url.rootUrl('/xapi/spawner/resolve/siteAdmin/siteSetup'),
success
:
function
(
data
)
{
if
(
typeof
data
===
'
string
'
)
{
data
=
YAML
.
parse
(
data
);
}
var
setupPanels
=
XNAT
.
spawner
.
spawn
(
data
);
setupPanels
.
render
(
'
#site-setup-panels
'
);
}
var
setupPanels
=
XNAT
.
spawner
.
spawn
(
data
);
setupPanels
.
render
(
'
#site-setup-panels
'
);
}
});
});
</script>
</script>
</pg:restricted>
</pg:restricted>
</div>
<!-- /#setup-page -->
</div>
<!-- /#setup-page -->
</div>
</div>
</div>
<!-- /#page-body -->
<!-- /#page-body -->
</pg:xnat>
</pg:xnat>
</pg:wrapper>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment