Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Sven Franck
erp5
Commits
09692af3
Commit
09692af3
authored
10 years ago
by
Mame Coumba Sall
Browse files
Options
Download
Email Patches
Plain Diff
Script modified in order to define proper portal_types for web sections predicates
parent
6af566f8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
4 deletions
+11
-4
bt5/erp5_web/SkinTemplateItem/portal_skins/erp5_web/WebSection_generateSectionFromCategory.xml
...skins/erp5_web/WebSection_generateSectionFromCategory.xml
+10
-3
bt5/erp5_web/bt/revision
bt5/erp5_web/bt/revision
+1
-1
No files found.
bt5/erp5_web/SkinTemplateItem/portal_skins/erp5_web/WebSection_generateSectionFromCategory.xml
View file @
09692af3
...
...
@@ -60,13 +60,13 @@
category -- the category to use\n
"""\n
from ZODB.POSException import ConflictError\n
\n
portal = context.getPortalObject()
\n
translateString = context.Base_translateString\n
category_tool = context.portal_categories\n
global section_count\n
section_count = 0\n
failed_list = []\n
\n
portal_type_list = portal.getPortalDocumentTypeList()
\n
valid_char = "abcdefghijklmnopqrstuvwxyz0123456789-_"\n
\n
def getNiceID(s):\n
...
...
@@ -125,7 +125,9 @@ def createWebSectionFromCategoryValue(container, category, depth, section_id=Non
, visible = True\n
, membership_criterion_base_category = (base_category_id,)\n
, membership_criterion_category = (category_url,)\n
, criterion_property_list = [\'portal_type\']\n
)\n
new_section.setCriterion(\'portal_type\', identity=portal_type_list)\n
new_section.updateLocalRolesOnSecurityGroups()\n
except ConflictError:\n
raise\n
...
...
@@ -145,7 +147,9 @@ def createWebSectionFromCategoryValue(container, category, depth, section_id=Non
, visible = True\n
, membership_criterion_base_category = (base_category_id,)\n
, membership_criterion_category = (category_url,)\n
, criterion_property_list = [\'portal_type\']\n
)\n
new_section.setCriterion(\'portal_type\', identity=portal_type_list)\n
new_section.updateLocalRolesOnSecurityGroups()\n
# Call the function recursively\n
if new_section is not None:\n
...
...
@@ -173,7 +177,10 @@ if update_existing:\n
# use the base category as a category to select all\n
category_url = \'%s/%s\' % (category, category) \n
section_value.edit(membership_criterion_base_category = (base_category_id,),\n
membership_criterion_category = (category_url,))\n
membership_criterion_category = (category_url,),\n
criterion_property_list = [\'portal_type\'])\n
section_value.setCriterion(\'portal_type\', identity=portal_type_list)\n
\n
section_value.updateLocalRolesOnSecurityGroups()\n
\n
\n
...
...
This diff is collapsed.
Click to expand it.
bt5/erp5_web/bt/revision
View file @
09692af3
1113
\ No newline at end of file
1114
\ No newline at end of file
This diff is collapsed.
Click to expand it.
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