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
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Nicolas Wavrant
erp5
Commits
f6961fbb
Commit
f6961fbb
authored
May 04, 2018
by
Nicolas Wavrant
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
erp5_hal_json_style: allow to define custom page templates as gadgets
parent
8f49b88f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
bt5/erp5_hal_json_style/SkinTemplateItem/portal_skins/erp5_hal_json_style/ERP5Document_getHateoas.py
...rtal_skins/erp5_hal_json_style/ERP5Document_getHateoas.py
+7
-7
No files found.
bt5/erp5_hal_json_style/SkinTemplateItem/portal_skins/erp5_hal_json_style/ERP5Document_getHateoas.py
View file @
f6961fbb
...
...
@@ -999,7 +999,7 @@ def renderForm(traversed_document, form, response_dict, key_prefix=None, selecti
# Following pop/push of form_id resp. dialog_id is here because of FormBox - an embedded form in a form
# Fields of forms use form_id in their TALES expressions and obviously FormBox's form_id is different
# from its parent's form. It is very important that we do not remove form_id in case of a Dialog Form.
if
form
.
pt
==
"form_dialog"
:
if
form
.
pt
.
endswith
(
"form_dialog"
)
:
previous_request_other
[
'dialog_id'
]
=
REQUEST
.
other
.
pop
(
'dialog_id'
,
None
)
REQUEST
.
set
(
'dialog_id'
,
form
.
id
)
else
:
...
...
@@ -1009,7 +1009,7 @@ def renderForm(traversed_document, form, response_dict, key_prefix=None, selecti
field_errors
=
REQUEST
.
get
(
'field_errors'
,
{})
include_action
=
True
if
form
.
pt
==
'form_dialog'
:
if
form
.
pt
.
endswith
(
'form_dialog'
)
:
action_to_call
=
"Base_callDialogMethod"
else
:
action_to_call
=
form
.
action
...
...
@@ -1030,7 +1030,7 @@ def renderForm(traversed_document, form, response_dict, key_prefix=None, selecti
}
}
if
form
.
pt
==
"form_dialog"
:
if
form
.
pt
.
endswith
(
"form_dialog"
)
:
# If there is a "form_id" in the REQUEST then it means that last view was actually a form
# and we are most likely in a dialog. We save previous form into `last_form_id` ...
last_form_id
=
extra_param_json
.
pop
(
"form_id"
,
""
)
or
REQUEST
.
get
(
"form_id"
,
""
)
...
...
@@ -1096,7 +1096,7 @@ def renderForm(traversed_document, form, response_dict, key_prefix=None, selecti
# Form Edit handler uses form_id to recover the submitted form and to control its
# properties like editability
if
form
.
pt
==
'form_dialog'
:
if
form
.
pt
.
endswith
(
'form_dialog'
)
:
# overwrite "form_id" field's value because old UI does that by passing
# the form_id in query string and hidden fields
renderHiddenField
(
response_dict
,
"form_id"
,
last_form_id
)
...
...
@@ -1199,7 +1199,7 @@ def renderForm(traversed_document, form, response_dict, key_prefix=None, selecti
response_dict
[
'report_section_list'
]
=
report_result_list
# end-if report_section
if
form
.
pt
==
"form_dialog"
:
if
form
.
pt
.
endswith
(
"form_dialog"
)
:
# extra_param_json is a special field in forms (just like form_id). extra_param_json field holds JSON
# metadata about the form (its hash and dynamic fields)
renderHiddenField
(
response_dict
,
'extra_param_json'
,
json
.
dumps
(
extra_param_json
))
...
...
@@ -1233,7 +1233,7 @@ def renderFormDefinition(form, response_dict):
# each form has hidden attribute `form_id`
group_list
[
-
1
][
1
].
append
((
'form_id'
,
{
'meta_type'
:
'StringField'
}))
if
form
.
pt
==
"form_dialog"
:
if
form
.
pt
.
endswith
(
"form_dialog"
)
:
# every form dialog has its dialog_id and meta (control) attributes in extra_param_json
group_list
[
-
1
][
1
].
extend
([
(
'dialog_id'
,
{
'meta_type'
:
'StringField'
}),
...
...
@@ -1440,7 +1440,7 @@ def calculateHateoas(is_portal=None, is_site_root=None, traversed_document=None,
return
traversed_document
.
Base_redirect
(
keep_items
=
{
'portal_status_message'
:
status_message
})
if
view_instance
.
pt
==
"form_dialog"
:
if
view_instance
.
pt
.
endswith
(
"form_dialog"
)
:
# If there is a "form_id" in the REQUEST then it means that last view was actually a form
# and we are most likely in a dialog. We save previous form into `last_form_id` ...
last_form_id
=
REQUEST
.
get
(
'form_id'
,
""
)
...
...
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