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
079fa2b6
Commit
079fa2b6
authored
Oct 13, 2017
by
Tristan Cavelier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
erp5_post: limit follow_up results
- fails if 0 - fails if too much - also applied for predecessor
parent
7523174b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
7 deletions
+3
-7
bt5/erp5_post/SkinTemplateItem/portal_skins/erp5_post/PostModule_createHTMLPost.py
...eItem/portal_skins/erp5_post/PostModule_createHTMLPost.py
+3
-7
No files found.
bt5/erp5_post/SkinTemplateItem/portal_skins/erp5_post/PostModule_createHTMLPost.py
View file @
079fa2b6
...
@@ -4,12 +4,8 @@ portal = context.getPortalObject()
...
@@ -4,12 +4,8 @@ portal = context.getPortalObject()
post_module
=
portal
.
post_module
post_module
=
portal
.
post_module
# 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.
follow_up_object
,
=
portal
.
portal_catalog
(
relative_url
=
follow_up
,
limit
=
2
)
follow_up_object
=
None
follow_up_object
=
follow_up_object
.
getObject
()
if
object_list
:
follow_up_object
=
object_list
[
0
].
getObject
()
else
:
raise
LookupError
(
"Target follow up object not found"
)
now
=
DateTime
()
now
=
DateTime
()
post_edit_kw
=
{
post_edit_kw
=
{
...
@@ -18,7 +14,7 @@ post_edit_kw = {
...
@@ -18,7 +14,7 @@ post_edit_kw = {
"text_content"
:
data
,
"text_content"
:
data
,
}
}
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
,
limit
=
2
)
post_edit_kw
[
"predecessor_value"
]
=
predecessor_value
.
getObject
()
post_edit_kw
[
"predecessor_value"
]
=
predecessor_value
.
getObject
()
post
=
post_module
.
newContent
(
post
=
post_module
.
newContent
(
portal_type
=
'HTML Post'
,
portal_type
=
'HTML Post'
,
...
...
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