Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
erp5_rtl_support
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Romain Courteaud
erp5_rtl_support
Commits
7523174b
Commit
7523174b
authored
Oct 13, 2017
by
Tristan Cavelier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
erp5_post: do not call edit in addition to newContent
parent
d1eb52cd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
bt5/erp5_post/SkinTemplateItem/portal_skins/erp5_post/PostModule_createHTMLPost.py
...eItem/portal_skins/erp5_post/PostModule_createHTMLPost.py
+4
-2
No files found.
bt5/erp5_post/SkinTemplateItem/portal_skins/erp5_post/PostModule_createHTMLPost.py
View file @
7523174b
...
@@ -2,7 +2,6 @@ portal = context.getPortalObject()
...
@@ -2,7 +2,6 @@ portal = context.getPortalObject()
# create an HTML Post
# create an HTML Post
post_module
=
portal
.
post_module
post_module
=
portal
.
post_module
post
=
post_module
.
newContent
(
portal_type
=
'HTML Post'
)
# get the related object
# get the related object
object_list
=
portal
.
portal_catalog
(
relative_url
=
follow_up
)
# with id keyword, this function will return a sequence data type which contains one element.
object_list
=
portal
.
portal_catalog
(
relative_url
=
follow_up
)
# with id keyword, this function will return a sequence data type which contains one element.
...
@@ -21,7 +20,10 @@ post_edit_kw = {
...
@@ -21,7 +20,10 @@ post_edit_kw = {
if
predecessor
is
not
None
:
if
predecessor
is
not
None
:
predecessor_value
,
=
portal
.
portal_catalog
(
relative_url
=
predecessor
)
predecessor_value
,
=
portal
.
portal_catalog
(
relative_url
=
predecessor
)
post_edit_kw
[
"predecessor_value"
]
=
predecessor_value
.
getObject
()
post_edit_kw
[
"predecessor_value"
]
=
predecessor_value
.
getObject
()
post
.
edit
(
**
post_edit_kw
)
post
=
post_module
.
newContent
(
portal_type
=
'HTML Post'
,
**
post_edit_kw
)
post
.
publish
()
post
.
publish
()
# We need to reindex the object on server. So the page will get the post which
# We need to reindex the object on server. So the page will get the post which
...
...
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