Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Roque
erp5
Commits
cf8e1da2
Commit
cf8e1da2
authored
Oct 10, 2018
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
officejs_support_request_ui: use a handlbars template for comments
This prevents html injection for Mr. <script>
parent
a5fcbc4f
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
87 additions
and
54 deletions
+87
-54
bt5/erp5_officejs_support_request_ui/PathTemplateItem/web_page_module/gadget_supportrequest_pt_form_view_discussable_html.html
.../gadget_supportrequest_pt_form_view_discussable_html.html
+22
-0
bt5/erp5_officejs_support_request_ui/PathTemplateItem/web_page_module/gadget_supportrequest_pt_form_view_discussable_html.xml
...e/gadget_supportrequest_pt_form_view_discussable_html.xml
+1
-1
bt5/erp5_officejs_support_request_ui/PathTemplateItem/web_page_module/gadget_supportrequest_pt_form_view_discussable_js.js
...dule/gadget_supportrequest_pt_form_view_discussable_js.js
+36
-52
bt5/erp5_officejs_support_request_ui/PathTemplateItem/web_page_module/gadget_supportrequest_pt_form_view_discussable_js.xml
...ule/gadget_supportrequest_pt_form_view_discussable_js.xml
+1
-1
bt5/erp5_officejs_support_request_ui_test/PathTemplateItem/portal_tests/officejs_support_request_ui_zuite/testCheckComment.zpt
...ts/officejs_support_request_ui_zuite/testCheckComment.zpt
+27
-0
No files found.
bt5/erp5_officejs_support_request_ui/PathTemplateItem/web_page_module/gadget_supportrequest_pt_form_view_discussable_html.html
View file @
cf8e1da2
...
...
@@ -10,10 +10,32 @@
<script
src=
"renderjs.js"
type=
"text/javascript"
></script>
<!-- custom script -->
<script
src=
"handlebars.js"
type=
"text/javascript"
></script>
<script
src=
"gadget_erp5_global.js"
type=
"text/javascript"
></script>
<script
src=
"gadget_erp5_pt_form_view_discussable.js"
type=
"text/javascript"
></script>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"gadget_erp5_pt_form_view_discussable.css"
>
<!-- templates -->
<script
id=
"template-document-list"
type=
"text/x-handlebars-template"
>
{{
#
if
comments
}}
{{
#
each
comments
}}
<
li
>
By
<
strong
>
{{
user
}}
<
/strong>
-
<
time
datetime
=
"
{{ date }}
"
title
=
"
{{ date_formatted }}
"
>
{{
date_relative
}}
<
/time
>
<
br
/>
{{{
text
}}}
{{
#
if
attachment_link
}}
<
br
/>
<
strong
>
Attachment
:
<
/strong
>
<
a
href
=
"
{{attachment_link}}
"
>
{{
attachment_name
}}
<
/a
>
{{
/
if
}}
<
hr
id
=
"
post_item
"
>
<
/li
>
{{
/
each
}}
{{
else
}}
<
p
><
em
>
No
comment
yet
.
<
/em></
p
><
hr
id
=
"
post_item
"
>
{{
/
if
}}
</script>
</head>
<body>
<!-- XXX this is a form replacement -->
...
...
bt5/erp5_officejs_support_request_ui/PathTemplateItem/web_page_module/gadget_supportrequest_pt_form_view_discussable_html.xml
View file @
cf8e1da2
...
...
@@ -252,7 +252,7 @@
</tuple>
<state>
<tuple>
<float>
153
8971816.32
</float>
<float>
153
9136980.8
</float>
<string>
GMT+9
</string>
</tuple>
</state>
...
...
bt5/erp5_officejs_support_request_ui/PathTemplateItem/web_page_module/gadget_supportrequest_pt_form_view_discussable_js.js
View file @
cf8e1da2
/*global window, rJS, RSVP, calculatePageTitle, FormData, URI, jIO, moment */
/*global window, rJS, RSVP, calculatePageTitle, FormData, URI, jIO, moment
, Handlebars
*/
/*jslint nomen: true, indent: 2, maxerr: 3 */
(
function
(
window
,
rJS
,
RSVP
,
calculatePageTitle
,
moment
)
{
(
function
(
window
,
rJS
,
RSVP
,
calculatePageTitle
,
moment
,
Handlebars
)
{
"
use strict
"
;
var
gadget_klass
=
rJS
(
window
),
comment_list_template
=
Handlebars
.
compile
(
gadget_klass
.
__template_element
.
getElementById
(
"
template-document-list
"
).
innerHTML
);
rJS
(
window
)
gadget_klass
/////////////////////////////////////////////////////////////////
// Acquired methods
/////////////////////////////////////////////////////////////////
...
...
@@ -68,11 +72,9 @@
});
})
.
onStateChange
(
function
()
{
/** @type {GadgetInstance} */
var
gadget
=
this
;
// render the erp5 form
return
this
.
getDeclaredGadget
(
"
erp5_form
"
)
return
gadget
.
getDeclaredGadget
(
"
erp5_form
"
)
.
push
(
function
(
erp5_form
)
{
return
gadget
.
getDeclaredGadget
(
"
editor
"
)
.
push
(
function
(
editor
)
{
...
...
@@ -166,55 +168,37 @@
);
})
.
push
(
function
(
post_list
)
{
var
queue_list
=
[],
i
=
0
;
if
(
post_list
.
length
)
{
for
(
i
=
0
;
i
<
post_list
.
length
;
i
+=
1
)
{
if
(
post_list
[
i
].
attachment_link
!==
null
&&
post_list
[
i
].
attachment_link
.
indexOf
(
"
image_module
"
)
!==
-
1
)
{
queue_list
.
push
(
gadget
.
getImageUrl
(
post_list
[
i
].
attachment_link
));
}
else
if
(
post_list
[
i
].
attachment_link
!==
null
&&
post_list
[
i
].
attachment_link
.
indexOf
(
"
document_module
"
)
!==
-
1
)
{
queue_list
.
push
(
gadget
.
getDocumentUrl
(
post_list
[
i
].
attachment_link
));
}
else
{
queue_list
.
push
(
null
);
}
}
}
queue_list
.
push
(
post_list
);
return
RSVP
.
all
(
queue_list
);
})
.
push
(
function
(
result_list
)
{
var
s
=
''
,
i
,
comments
=
gadget
.
element
.
querySelector
(
"
#post_list
"
),
plain_content
,
post_list
=
result_list
.
pop
();
if
(
post_list
.
length
)
{
for
(
i
=
0
;
i
<
post_list
.
length
;
i
+=
1
)
{
s
+=
'
<li>
'
+
'
By <strong>
'
+
post_list
[
i
].
user
+
'
</strong>
'
+
'
- <time datetime="
'
+
post_list
[
i
].
date
+
'
" title="
'
+
moment
(
post_list
[
i
].
date
).
format
(
'
LLLL
'
)
+
'
">
'
+
moment
(
post_list
[
i
].
date
).
fromNow
()
+
'
</time><br/>
'
;
if
(
post_list
[
i
].
attachment_link
!==
null
&&
result_list
[
i
]
!==
null
)
{
post_list
[
i
].
attachment_link
=
result_list
[
i
];
function
getPostWithLinkAndLocalDate
(
post
)
{
post
.
date_formatted
=
moment
(
post
.
date
).
format
(
'
LLLL
'
);
post
.
date_relative
=
moment
(
post
.
date
).
fromNow
();
if
(
post
.
attachment_link
===
null
)
{
return
post
;
}
if
(
post_list
[
i
].
text
)
{
plain_content
=
post_list
[
i
].
text
;
if
(
post_list
[
i
].
attachment_link
)
{
s
+=
plain_content
+
'
<strong>Attachment: </strong>
'
+
'
<a href=
\
"
'
+
post_list
[
i
].
attachment_link
+
'
\
">
'
+
post_list
[
i
].
attachment_name
+
'
</a>
'
;
}
else
{
s
+=
plain_content
;
if
(
post
.
attachment_link
.
indexOf
(
"
image_module
"
)
!==
-
1
)
{
return
gadget
.
getImageUrl
(
post
.
attachment_link
).
push
(
function
(
attachment_link
)
{
post
.
attachment_link
=
attachment_link
;
return
post
;
}
}
else
{
if
(
post_list
[
i
].
attachment_link
)
{
s
+=
'
<strong>Attachment: </strong>
'
+
'
<a href=
\
"
'
+
post_list
[
i
].
attachment_link
+
'
\
">
'
+
post_list
[
i
].
attachment_name
+
'
</a>
'
;
);
}
return
gadget
.
getDocumentUrl
(
post
.
attachment_link
).
push
(
function
(
attachment_link
)
{
post
.
attachment_link
=
attachment_link
;
return
post
;
}
s
+=
'
<hr id=post_item>
'
;
// XXX XSS attack!
);
}
comments
.
innerHTML
=
s
;
}
else
{
comments
.
innerHTML
=
"
<p><em>No comment yet.</em></p><hr id=post_item>
"
;
// build links with attachments and localized dates
var
queue_list
=
[],
i
=
0
;
for
(
i
=
0
;
i
<
post_list
.
length
;
i
+=
1
)
{
queue_list
.
push
(
getPostWithLinkAndLocalDate
(
post_list
[
i
]));
}
return
RSVP
.
all
(
queue_list
);
})
.
push
(
function
(
comment_list
)
{
var
comments
=
gadget
.
element
.
querySelector
(
"
#post_list
"
);
comments
.
innerHTML
=
comment_list_template
({
comments
:
comment_list
});
});
})
.
declareJob
(
'
submitPostComment
'
,
function
()
{
...
...
@@ -276,4 +260,4 @@
.
onEvent
(
'
submit
'
,
function
()
{
this
.
submitPostComment
();
});
}(
window
,
rJS
,
RSVP
,
calculatePageTitle
,
moment
));
\ No newline at end of file
}(
window
,
rJS
,
RSVP
,
calculatePageTitle
,
moment
,
Handlebars
));
\ No newline at end of file
bt5/erp5_officejs_support_request_ui/PathTemplateItem/web_page_module/gadget_supportrequest_pt_form_view_discussable_js.xml
View file @
cf8e1da2
...
...
@@ -252,7 +252,7 @@
</tuple>
<state>
<tuple>
<float>
15391
35182.86
</float>
<float>
15391
40577.69
</float>
<string>
GMT+9
</string>
</tuple>
</state>
...
...
bt5/erp5_officejs_support_request_ui_test/PathTemplateItem/portal_tests/officejs_support_request_ui_zuite/testCheckComment.zpt
View file @
cf8e1da2
...
...
@@ -72,6 +72,22 @@
<td>
//ol[@id="post_list"]//li[1]/p
</td>
<td>
Post test 1
</td>
</tr>
<tr>
<td>
waitForText
</td>
<td>
//ol[@id="post_list"]//li[1]/p
</td>
<td>
Post test 1
</td>
</tr>
<tr>
<td>
assertElementPresent
</td>
<td>
//ol[@id="post_list"]//li[1]/strong
</td>
<td></td>
</tr>
<tr>
<td>
assertText
</td>
<td>
//ol[@id="post_list"]//li[1]/time
</td>
<td>
a few seconds ago
</td>
</tr>
<!-- The "just posted" message is available because it is retrieved from memcached,
eventhough it's not ingested yet. But this works only for one message, so to first message
posted when opening the SR and the second one posted as a comment, we need to flush
...
...
@@ -120,6 +136,17 @@ displayed
<td>
//ol[@id="post_list"]//li[1]/p
</td>
<td>
Post test 1
</td>
</tr>
<tr>
<td>
assertText
</td>
<td>
//ol[@id="post_list"]//li[1]/strong
</td>
<td>
A1 Corporation
</td>
</tr>
<tr>
<td>
assertText
</td>
<td>
//ol[@id="post_list"]//li[1]/time
</td>
<td>
a few seconds ago
</td>
</tr>
<!-- flush activities and post one more message, to exercice ingesting post
posted from support request comment, which uses a different code path than
...
...
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