Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
PERFORMA_REPLICA
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Muhammad Usman
PERFORMA_REPLICA
Commits
cbdd2a92
Commit
cbdd2a92
authored
Aug 31, 2017
by
Harsh Shah
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Application specific error page
parent
d070edcb
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
360 additions
and
253 deletions
+360
-253
small_content_post.jspf
...webroot/editor/skin/oneit/include/small_content_post.jspf
+23
-0
small_content_pre.jspf
.../webroot/editor/skin/oneit/include/small_content_pre.jspf
+8
-0
small_head_pre.jspf
...App/webroot/editor/skin/oneit/include/small_head_pre.jspf
+30
-0
forgot_password.jsp
cmsWebApp/webroot/extensions/adminportal/forgot_password.jsp
+53
-68
htmlfooter_nopriv.jsp
.../webroot/extensions/adminportal/inc/htmlfooter_nopriv.jsp
+14
-0
htmlheader_nopriv.jsp
.../webroot/extensions/adminportal/inc/htmlheader_nopriv.jsp
+17
-0
reset_password.jsp
cmsWebApp/webroot/extensions/adminportal/reset_password.jsp
+65
-80
sign_in.jsp
cmsWebApp/webroot/extensions/adminportal/sign_in.jsp
+82
-105
20170831_Update_HomeArticle.cms.xml
.../adminportal/upgrades/20170831_Update_HomeArticle.cms.xml
+64
-0
GeneralConfig_performa.xml
...pp/webroot/extensions/performa/GeneralConfig_performa.xml
+4
-0
No files found.
cmsWebApp/webroot/editor/skin/oneit/include/small_content_post.jspf
0 → 100644
View file @
cbdd2a92
<div class="small_footer">
<div style="float: left" class="cms_footer_annotation">
<%
String footerAnnotation = (String)request.getAttribute("cms.small_footer.annotation");
%>
<%= footerAnnotation == null ? "" : footerAnnotation %>
</div>
<div class="clear"> </div>
</div>
</div>
</div>
<footer class="power-footer">
<div class="footer-link text-center">
<ul>
<li><a href="#">© <%= Calendar.getInstance().get(Calendar.YEAR) %> Talentology</a></li>
<li><a href="#">Privacy Policy</a></li>
</ul>
</div>
</footer>
</div>
</div>
</div>
cmsWebApp/webroot/editor/skin/oneit/include/small_content_pre.jspf
0 → 100644
View file @
cbdd2a92
<div class="container">
<div class="row">
<div class="main-verify-identity">
<div class="login-logo"><img src="<%= request.getContextPath() %>/images/logo.svg" /></div>
<div class="main-box-layout login-box">
<div class="small_error_box ">
\ No newline at end of file
cmsWebApp/webroot/editor/skin/oneit/include/small_head_pre.jspf
0 → 100644
View file @
cbdd2a92
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html
lang=
"en"
>
<head>
<meta
charset=
"utf-8"
></meta>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
></meta>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
></meta>
<
%@
taglib
uri=
"/WEB-INF/oneit_tags.tld"
prefix=
"oneit"
%
>
<
%@
include
file=
"/inc/std_imports.jsp"
%
>
<script
type=
"text/javascript"
>
$
(
document
).
ready
(
function
()
{
$
(
"body"
).
addClass
(
"bg-color"
);
});
</script>
<style>
.small_error_box
{
background-color
:
inherit
!important
;
padding
:
0
!important
;
}
.small_error_box
.login_desc
{
color
:
#f05128
;
font-size
:
13px
;
font-weight
:
300
;
line-height
:
16px
;
text-align
:
center
;
}
</style>
\ No newline at end of file
cmsWebApp/webroot/extensions/adminportal/forgot_password.jsp
View file @
cbdd2a92
...
...
@@ -6,75 +6,60 @@
<%! protected String getName (ServletConfig config) { return "forgot_password_jsp"; } %>
<html
lang=
"en"
>
<head>
<meta
charset=
"utf-8"
></meta>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
></meta>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
></meta>
<title>
Talentology
</title>
<
%@
include
file=
"/inc/std_imports.jsp"
%
>
</head>
<body
class=
"bg-color"
>
<script
type=
"text/javascript"
>
$
(
document
).
ready
(
function
()
{
validate
();
$
(
'input'
).
on
(
'change keyup'
,
function
()
{
validate
()
});
});
function
validate
()
{
var
empty
=
false
;
$
(
'input[required]'
).
each
(
function
()
{
if
(
$
.
trim
(
$
(
this
).
val
())
==
''
)
{
empty
=
true
;
if
(
$
(
this
).
css
(
'background-color'
)
==
'rgb(250, 255, 189)'
)
{
empty
=
false
;
}
}
});
<%@ include file="inc/htmlheader_nopriv.jsp" %>
if
(
empty
)
{
$
(
'.send-btn'
).
attr
(
'disabled'
,
'disabled'
);
}
else
{
$
(
'.send-btn'
).
removeAttr
(
'disabled'
);
<script type="text/javascript">
$(document).ready(function() {
validate();
$('input').on('change keyup', function() { validate() });
});
function validate() {
var empty = false;
$('input[required]').each(function() {
if ( $.trim($( this ).val()) == '') {
empty = true;
if ($( this ).css('background-color') == 'rgb(250, 255, 189)') {
empty = false;
}
}
</script>
<style>
button
[
disabled
]
{
opacity
:
0.6
;
background-color
:
#0582ba
;
}
</style>
<div
class=
"container"
>
<div
class=
"row"
>
<div
class=
"main-verify-identity"
>
<div
class=
"login-logo"
><img
src=
"<%= request.getContextPath() %>/images/logo.svg"
/></div>
<oneit:form
name=
"forgotPassword"
method=
"post"
>
<oneit:dynInclude
page=
"/extensions/applicantportal/inc/multifieldtext.jsp"
data=
"<%= CollectionUtils.EMPTY_MAP%>"
/>
<div
class=
"main-box-layout login-box"
>
<div
class=
"text-left"
>
<p
>
Enter your email address below. If we find a matching account, then you'll receive an email with a password reset link.
</p>
</div>
<div>
</div>
<div
class=
"form-group text-left"
>
<label>
Email Address
</label>
<input
type=
"email"
class=
"form-control"
name=
"email"
required
>
</div>
});
<div
class=
"form-group"
>
<oneit:button
value=
"Send"
name=
"forgotPassword"
cssClass=
"box-btn send-btn"
requestAttribs=
"<%= CollectionUtils.mapEntry("
nextPage
",
"
sign_in
.
jsp
?
sent=
true")
.
mapEntry
(
NotificationUtils
.
NOTIFICATION_MSG_PARAM
,
"
resetPasswordEmailSent
")
.
toMap
()
%
>
"/>
</div>
</div>
</oneit:form>
</div>
</div>
if (empty) {
$('.send-btn').attr('disabled', 'disabled');
} else {
$('.send-btn').removeAttr('disabled');
}
}
</script>
<style>
button[disabled] {
opacity: 0.6;
background-color: #0582ba;
}
</style>
<oneit:form name="forgotPassword" method="post">
<oneit:dynInclude page="/extensions/applicantportal/inc/multifieldtext.jsp" data="<%= CollectionUtils.EMPTY_MAP%>"/>
<div class="main-box-layout login-box">
<div class="text-left">
<p >
Enter your email address below. If we find a matching account, then you'll receive an email with a password reset link.
</p>
</div>
<div> </div>
<div class="form-group text-left">
<label>Email Address</label>
<input type="email" class="form-control" name="email" required>
</div>
</body>
</html>
\ No newline at end of file
<div class="form-group">
<oneit:button value="Send" name="forgotPassword" cssClass="box-btn send-btn"
requestAttribs="<%= CollectionUtils.mapEntry("nextPage", "sign_in.jsp?sent=true")
.mapEntry(NotificationUtils.NOTIFICATION_MSG_PARAM, "resetPasswordEmailSent")
.toMap() %>"/>
</div>
</div>
</oneit:form>
<%@ include file="inc/htmlfooter_nopriv.jsp" %>
\ No newline at end of file
cmsWebApp/webroot/extensions/adminportal/inc/htmlfooter_nopriv.jsp
0 → 100644
View file @
cbdd2a92
<footer class="power-footer">
<div class="footer-link text-center">
<ul>
<li><a href="#">© <%= Calendar.getInstance().get(Calendar.YEAR) %> Talentology</a></li>
<li><a href="#">Privacy Policy</a></li>
</ul>
</div>
</footer>
</div>
</div>
</div>
</body>
</html>
\ No newline at end of file
cmsWebApp/webroot/extensions/adminportal/inc/htmlheader_nopriv.jsp
0 → 100644
View file @
cbdd2a92
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html
lang=
"en"
>
<head>
<meta
charset=
"utf-8"
></meta>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
></meta>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
></meta>
<title>
Talentology
</title>
<
%@
include
file=
"/inc/std_imports.jsp"
%
>
</head>
<body
class=
"bg-color"
>
<div
class=
"container"
>
<div
class=
"row"
>
<div
class=
"main-verify-identity"
>
<div
class=
"login-logo"
><img
src=
"<%= request.getContextPath() %>/images/logo.svg"
/></div>
cmsWebApp/webroot/extensions/adminportal/reset_password.jsp
View file @
cbdd2a92
...
...
@@ -46,88 +46,73 @@
}
%>
<html
lang=
"en"
>
<head>
<meta
charset=
"utf-8"
></meta>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
></meta>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
></meta>
<title>
Talentology
</title>
<
%@
include
file=
"/inc/std_imports.jsp"
%
>
</head>
<body
class=
"bg-color"
>
<script
type=
"text/javascript"
>
$
(
document
).
ready
(
function
()
{
validate
();
$
(
'input'
).
on
(
'change keyup'
,
function
()
{
validate
()
});
});
function
validate
()
{
var
empty
=
false
;
$
(
'.password-field'
).
each
(
function
()
{
if
(
$
.
trim
(
$
(
this
).
val
())
==
''
)
{
empty
=
true
;
}
});
<%@ include file="inc/htmlheader_nopriv.jsp" %>
if
(
empty
)
{
$
(
'.reset-btn'
).
attr
(
'disabled'
,
'disabled'
);
}
else
{
$
(
'.reset-btn'
).
removeAttr
(
'disabled'
);
}
}
</script>
<style>
button
[
disabled
]
{
opacity
:
0.6
;
background-color
:
#0582ba
;
<script type="text/javascript">
$(document).ready(function() {
validate();
$('input').on('change keyup', function() { validate() }
);
});
function validate() {
var empty = false;
$('.password-field').each(function()
{
if ( $.trim($( this ).val()) == '') {
empty = true
;
}
</style>
<div
class=
"container"
>
<div
class=
"row"
>
<div
class=
"main-verify-identity"
>
<div
class=
"login-logo"
><img
src=
"<%= request.getContextPath() %>/images/logo.svg"
/></div>
<oneit:form
name=
"resetPassword"
method=
"post"
>
<oneit:dynInclude
page=
"/extensions/applicantportal/inc/multifieldtext.jsp"
data=
"<%= CollectionUtils.EMPTY_MAP%>"
/>
});
if (empty) {
$('.reset-btn').attr('disabled', 'disabled');
} else {
$('.reset-btn').removeAttr('disabled');
}
}
</script>
<style>
button[disabled] {
opacity: 0.6;
background-color: #0582ba;
}
</style>
<
%
if
(
user
!=
null
)
{
String
key =
Utils.getPwdKeyOfSecUser(request,
user
,
true
);
%
>
<div
class=
"main-box-layout login-box"
>
<div
class=
"text-left"
>
<p
>
Please enter a new password below.
</p>
</div>
<div>
</div>
<div
class=
"form-group text-left"
>
<label>
Password *
</label>
<oneit:input
type=
"password"
name=
"<%= key %>"
class=
"form-control password-field"
/>
</div>
<!-- form-group -->
<div
class=
"form-group text-left"
>
<label>
Confirm Password *
</label>
<oneit:input
type=
"password"
name=
"<%= key + 2 %>"
class=
"form-control password-field"
/>
</div>
<!-- form-group -->
<div
class=
"col-sm-12"
>
<oneit:button
value=
"Set New Password"
name=
"resetPassword"
cssClass=
"box-btn reset-btn"
requestAttribs=
"<%= CollectionUtils.mapEntry("
nextPage
",
nextPage
).
toMap
()
%
>
"/>
</div>
</div>
<
%
}
else
{
%
>
<h3
class=
"text-danger"
>
Invalid User or this link has been expired, generate new link to access this page.
</h3>
<
%
}
%
>
</oneit:form>
<oneit:form name="resetPassword" method="post">
<oneit:dynInclude page="/extensions/applicantportal/inc/multifieldtext.jsp" data="<%= CollectionUtils.EMPTY_MAP%>"/>
<%
if(user!=null)
{
String key = Utils.getPwdKeyOfSecUser(request, user, true);
%>
<div class="main-box-layout login-box">
<div class="text-left">
<p >
Please enter a new password below.
</p>
</div>
<div> </div>
<div class="form-group text-left">
<label>Password *</label>
<oneit:input type="password" name="<%= key %>" class="form-control password-field"/>
</div> <!-- form-group -->
<div class="form-group text-left">
<label>Confirm Password *</label>
<oneit:input type="password" name="<%= key + 2 %>" class="form-control password-field"/>
</div> <!-- form-group -->
<div class="col-sm-12">
<oneit:button value="Set New Password" name="resetPassword" cssClass="box-btn reset-btn"
requestAttribs="<%= CollectionUtils.mapEntry("nextPage", nextPage).toMap() %>"/>
</div>
</div>
</div>
</body>
</html>
<%
}
else
{
%>
<h3 class="text-danger">Invalid User or this link has been expired, generate new link to access this page.</h3>
<%
}
%>
</oneit:form>
<%@ include file="inc/htmlfooter_nopriv.jsp" %>
cmsWebApp/webroot/extensions/adminportal/sign_in.jsp
View file @
cbdd2a92
...
...
@@ -10,112 +10,89 @@
ObjectTransaction objTran = process.getTransaction ();
String nextPage = WebUtils.getArticleByShortCut(objTran, WebUtils.ADMIN_HOME).getLink(request);
%>
<html
lang=
"en"
>
<head>
<meta
charset=
"utf-8"
></meta>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
></meta>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
></meta>
<title>
Talentology
</title>
<
%@
include
file=
"/inc/std_imports.jsp"
%
>
</head>
<body
class=
"bg-color"
>
<script
type=
"text/javascript"
>
var
interval
;
$
(
document
).
ready
(
function
()
{
validate
();
$
(
'input'
).
on
(
'change keyup'
,
function
()
{
validate
()
});
interval
=
setInterval
(
function
()
{
validate
();
},
500
);
});
function
validate
()
{
var
empty
=
false
;
$
(
'input[required]'
).
each
(
function
()
{
if
(
$
(
this
).
val
()
==
''
)
{
empty
=
true
;
if
(
$
(
this
).
css
(
'background-color'
)
==
'rgb(250, 255, 189)'
)
{
empty
=
false
;
}
}
});
if
(
empty
)
{
$
(
'.login-btn'
).
attr
(
'disabled'
,
'disabled'
);
}
else
{
$
(
'.login-btn'
).
removeAttr
(
'disabled'
);
clearInterval
(
interval
);
<%@ include file="inc/htmlheader_nopriv.jsp" %>
<script type="text/javascript">
var interval;
$(document).ready(function() {
validate();
$('input').on('change keyup', function() { validate() });
interval = setInterval(function() { validate(); }, 500);
});
function validate() {
var empty = false;
$('input[required]').each(function() {
if ($( this ).val() == '') {
empty = true;
if ($( this ).css('background-color') == 'rgb(250, 255, 189)') {
empty = false;
}
}
</script>
<style>
button
[
disabled
]
{
opacity
:
0.6
;
background-color
:
#0582ba
;
}
</style>
<div
class=
"container"
>
<div
class=
"row"
>
<div
class=
"main-verify-identity"
>
<div
class=
"login-logo"
><img
src=
"<%= request.getContextPath() %>/images/logo.svg"
/></div>
<div
class=
"main-box-layout login-box"
>
<oneit:form
name=
"login"
method=
"post"
>
<oneit:dynInclude
page=
"/extensions/applicantportal/inc/multifieldtext.jsp"
data=
"<%= CollectionUtils.EMPTY_MAP%>"
/>
<div
class=
"form-group text-left"
>
<label>
Email Address
</label>
<input
type=
"text"
class=
"form-control"
name=
"username"
required
>
</div>
<div
class=
"form-group text-left"
>
<label>
Password
</label>
<input
type=
"password"
class=
"form-control"
name=
"password"
required
>
</div>
<div
class=
"form-group"
>
});
if (empty) {
$('.login-btn').attr('disabled', 'disabled');
} else {
$('.login-btn').removeAttr('disabled');
clearInterval(interval);
}
}
</script>
<style>
button[disabled] {
opacity: 0.6;
background-color: #0582ba;
}
</style>
<oneit:button
value=
"Forgot password?"
name=
"gotoPage"
cssClass=
"forgot-pass"
skin=
"link"
requestAttribs=
"<%= CollectionUtils.mapEntry("
nextPage
",
"
forgot_password
.
jsp
")
.
toMap
()
%
>
">
</oneit:button>
<oneit:button
value=
"Sign in"
name=
"login"
cssClass=
"box-btn login-btn"
requestAttribs=
"<%= CollectionUtils.EMPTY_MAP%>"
/>
</div>
</oneit:form>
<div
class=
"box-br-line"
><span></span></div>
<div
class=
"box-label"
>
Sign in using your social network of choice
</div>
<oneit:form
name=
"socialLogin"
method=
"post"
>
<ul
class=
"social-login"
>
<li>
<oneit:button
value=
" "
name=
"linkedinOAuthLogin"
skin=
"link"
cssClass=
"social_login_btn"
requestAttribs=
"<%= CollectionUtils.mapEntry ("
nextPage
",
nextPage
).
toMap
()
%
>
">
<img
src=
"<%= request.getContextPath() %>/images/login-linkedin-icon.svg"
/>
</oneit:button>
</li>
<li>
<oneit:button
value=
" "
name=
"facebookOAuthLogin"
skin=
"link"
cssClass=
"social_login_btn"
requestAttribs=
"<%= CollectionUtils.mapEntry ("
nextPage
",
nextPage
).
toMap
()
%
>
">
<img
src=
"<%= request.getContextPath() %>/images/login-facebok-icon.svg"
/>
</oneit:button>
</li>
<li>
<oneit:button
value=
" "
name=
"googleOAuthLogin"
skin=
"link"
cssClass=
"social_login_btn"
requestAttribs=
"<%= CollectionUtils.mapEntry ("
nextPage
",
nextPage
).
toMap
()
%
>
">
<img
src=
"<%= request.getContextPath() %>/images/login-google.png"
/>
</oneit:button>
</li>
</ul>
</oneit:form>
</div>
<footer
class=
"power-footer"
>
<div
class=
"footer-link text-center"
>
<ul>
<li><a
href=
"#"
>
©
<
%=
Calendar
.
getInstance
().
get
(
Calendar
.
YEAR
)
%
>
Talentology
</a></li>
<li><a
href=
"#"
>
Privacy Policy
</a></li>
</ul>
</div>
</footer>
</div>
</div>
<div class="main-box-layout login-box">
<oneit:form name="login" method="post">
<oneit:dynInclude page="/extensions/applicantportal/inc/multifieldtext.jsp" data="<%= CollectionUtils.EMPTY_MAP%>"/>
<div class="form-group text-left">
<label>Email Address</label>
<input type="text" class="form-control" name="username" required>
</div>
<div class="form-group text-left">
<label>Password</label>
<input type="password" class="form-control" name="password" required>
</div>
</body>
</html>
\ No newline at end of file
<div class="form-group">
<oneit:button value="Forgot password?" name="gotoPage" cssClass="forgot-pass" skin="link"
requestAttribs="<%= CollectionUtils.mapEntry("nextPage", "forgot_password.jsp")
.toMap() %>"></oneit:button>
<oneit:button value="Sign in" name="login" cssClass="box-btn login-btn"
requestAttribs="<%= CollectionUtils.EMPTY_MAP%>"/>
</div>
</oneit:form>
<div class="box-br-line"><span></span></div>
<div class="box-label">Sign in using your social network of choice</div>
<oneit:form name="socialLogin" method="post">
<ul class="social-login">
<li>
<oneit:button value=" " name="linkedinOAuthLogin" skin="link" cssClass="social_login_btn"
requestAttribs="<%= CollectionUtils.mapEntry ("nextPage", nextPage).toMap() %>">
<img src="<%= request.getContextPath() %>/images/login-linkedin-icon.svg" />
</oneit:button>
</li>
<li>
<oneit:button value=" " name="facebookOAuthLogin" skin="link" cssClass="social_login_btn"
requestAttribs="<%= CollectionUtils.mapEntry ("nextPage", nextPage).toMap() %>">
<img src="<%= request.getContextPath() %>/images/login-facebok-icon.svg" />
</oneit:button>
</li>
<li>
<oneit:button value=" " name="googleOAuthLogin" skin="link" cssClass="social_login_btn"
requestAttribs="<%= CollectionUtils.mapEntry ("nextPage", nextPage).toMap() %>">
<img src="<%= request.getContextPath() %>/images/login-google.png" />
</oneit:button>
</li>
</ul>
</oneit:form>
</div>
<%@ include file="inc/htmlfooter_nopriv.jsp" %>
\ No newline at end of file
cmsWebApp/webroot/extensions/adminportal/upgrades/20170831_Update_HomeArticle.cms.xml
0 → 100644
View file @
cbdd2a92
<?xml version="1.0" encoding="UTF-8"?>
<!-- @AutoRun -->
<OBJECTS
xmlns:oneit=
"http://www.1iT.com.au"
name=
""
>
<NODE
factory=
"Vector"
name=
"Script"
><NODE
class=
"oneit.appservices.upgrade.cms.CMSArticleUpdateOperation"
factory=
"Participant"
name=
"Home"
>
<createSpecificIdentifier
factory=
'String'
value=
'HOME'
/>
<articleIdentifiers
factory=
"Array"
class=
"java.lang.String"
>
<NODE
factory=
"String"
value=
"HOME"
/>
</articleIdentifiers>
<createdLabel
factory=
"String"
value=
"HOME"
/>
<articleAttributeChanges
factory=
"Map"
>
<NODE
name=
"OnLeftMenu"
factory=
"Boolean"
value=
"false"
/>
<NODE
name=
"Shortcuts"
factory=
"Null"
/>
</articleAttributeChanges>
<ormAttributeChanges
factory=
"Map"
>
<NODE
name=
"PublishDate"
factory=
"Date"
value=
"2000-01-01 00:00:00"
/>
<NODE
name=
"WithdrawDate"
factory=
"Date"
value=
"3000-01-01 00:00:00"
/>
<NODE
name=
"Title"
factory=
"String"
value=
"Home"
/>
<NODE
name=
"ShortTitle"
factory=
"String"
value=
"Home"
/>
<NODE
name=
"SortOrder"
factory=
"Integer"
value=
"-200203"
/>
<NODE
name=
"Type"
factory=
"Enumerated"
class=
"oneit.business.content.ArticleType"
value=
"ARTICLE"
/>
<NODE
name=
"Template"
factory=
"Enumerated"
class=
"oneit.business.content.ArticleTemplate"
value=
"ADMIN_PORTAL_HOME"
/>
</ormAttributeChanges>
<content
factory=
"Map"
>
<NODE
name=
"Body"
factory=
"Map"
>
<NODE
name=
"Content"
factory=
"String"
>
<![CDATA[<html>
<head>
<META
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<title></title>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"css/cms_style.css"
>
</head>
<body
class=
"CMS_GENERIC_EDITOR CMS_${oneit.Template} CMS_${oneit.Template}_${oneit.ContentType} CMS_${oneit.ContentType}"
>
<p>
This is some content that should sit within the Home page.
</p>
<br>
</body>
</html>
]]>
</NODE>
<NODE
name=
"TransformedContent"
factory=
"String"
>
<![CDATA[<p>
This is some content that should sit within the Home page.
</p>
<br>
]]>
</NODE>
<NODE
name=
"IncludeContent"
factory=
"Boolean"
value=
"true"
/>
</NODE>
<NODE
name=
"Synopsis"
factory=
"Map"
>
<NODE
name=
"Content"
factory=
"String"
>
<![CDATA[
<html>
<head>
<meta
name=
'author'
content=
'Cougar Content by 1iT www.1it.com.au'
>
<link
href=
"css/cms_style.css"
rel=
"stylesheet"
type=
"text/css"
>
</head>
<body>
<p>
</p>
<br>
</body>
</html>
]]>
</NODE>
<NODE
name=
"IncludeContent"
factory=
"Boolean"
value=
"true"
/>
</NODE>
</content>
</NODE>
</NODE>
</OBJECTS>
\ No newline at end of file
cmsWebApp/webroot/extensions/performa/GeneralConfig_performa.xml
View file @
cbdd2a92
...
...
@@ -20,4 +20,7 @@
<MAP
code=
"CompanyUser"
class=
"performa.orm.CompanyUser"
/>
</NODE>
<NODE
name=
"CONFIG.GLOBAL::Performa"
>
<PARAM
name=
"HasWebsite"
factory=
"Boolean"
value=
"true"
/>
</NODE>
</OBJECTS>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment