Commit 9de779cd authored by Romain Courteaud's avatar Romain Courteaud

Fix typo error in ERP5Type_getSecurityParentCategoryFromAssignment.

Make ERP5Type_asSecurityGroupId more readable.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@14870 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 0e219fda
...@@ -157,7 +157,8 @@ for base_category in category_order:\n ...@@ -157,7 +157,8 @@ for base_category in category_order:\n
if user_list: return user_list\n if user_list: return user_list\n
\n \n
# Compute the cartesian product and return the codes\n # Compute the cartesian product and return the codes\n
return filter(lambda x: x, map(lambda x: \'_\'.join(x), cartesianProduct(list_of_list)))\n # return filter(lambda x: x, map(lambda x: \'_\'.join(x), cartesianProduct(list_of_list)))\n
return [\'_\'.join(x) for x in cartesianProduct(list_of_list) if x]\n
</string> </value> </string> </value>
</item> </item>
<item> <item>
...@@ -224,8 +225,9 @@ return filter(lambda x: x, map(lambda x: \'_\'.join(x), cartesianProduct(list_of ...@@ -224,8 +225,9 @@ return filter(lambda x: x, map(lambda x: \'_\'.join(x), cartesianProduct(list_of
<string>user_name</string> <string>user_name</string>
<string>category_code</string> <string>category_code</string>
<string>AttributeError</string> <string>AttributeError</string>
<string>filter</string> <string>append</string>
<string>map</string> <string>$append0</string>
<string>x</string>
</tuple> </tuple>
</value> </value>
</item> </item>
......
...@@ -122,7 +122,7 @@ for assignment in person_object.contentValues(filter={\'portal_type\': \'Assignm ...@@ -122,7 +122,7 @@ for assignment in person_object.contentValues(filter={\'portal_type\': \'Assignm
for category_value in category_value_list:\n for category_value in category_value_list:\n
if category_value.getPortalType() == \'Category\':\n if category_value.getPortalType() == \'Category\':\n
while category_value.getPortalType() == \'Category\':\n while category_value.getPortalType() == \'Category\':\n
category_dict.setdefault(base_category, []).append(\'category_value.getRelativeUrl())\n category_dict.setdefault(base_category, []).append(category_value.getRelativeUrl())\n
category_value = category_value.getParentValue()\n category_value = category_value.getParentValue()\n
else:\n else:\n
category_dict.setdefault(base_category, []).append(category_value.getRelativeUrl())\n category_dict.setdefault(base_category, []).append(category_value.getRelativeUrl())\n
...@@ -152,9 +152,7 @@ return category_list\n ...@@ -152,9 +152,7 @@ return category_list\n
<item> <item>
<key> <string>errors</string> </key> <key> <string>errors</string> </key>
<value> <value>
<tuple> <tuple/>
<string>EOL while scanning single-quoted string (Script (Python), line 53)</string>
</tuple>
</value> </value>
</item> </item>
<item> <item>
...@@ -169,12 +167,35 @@ return category_list\n ...@@ -169,12 +167,35 @@ return category_list\n
<dictionary> <dictionary>
<item> <item>
<key> <string>co_argcount</string> </key> <key> <string>co_argcount</string> </key>
<value> <int>0</int> </value> <value> <int>4</int> </value>
</item> </item>
<item> <item>
<key> <string>co_varnames</string> </key> <key> <string>co_varnames</string> </key>
<value> <value>
<tuple/> <tuple>
<string>base_category_list</string>
<string>user_name</string>
<string>object</string>
<string>portal_type</string>
<string>category_list</string>
<string>_getattr_</string>
<string>context</string>
<string>person_module</string>
<string>append</string>
<string>$append0</string>
<string>_getiter_</string>
<string>x</string>
<string>person_object_list</string>
<string>len</string>
<string>ConsistencyError</string>
<string>_getitem_</string>
<string>person_object</string>
<string>assignment</string>
<string>category_dict</string>
<string>base_category</string>
<string>category_value_list</string>
<string>category_value</string>
</tuple>
</value> </value>
</item> </item>
</dictionary> </dictionary>
...@@ -185,7 +206,7 @@ return category_list\n ...@@ -185,7 +206,7 @@ return category_list\n
<item> <item>
<key> <string>func_defaults</string> </key> <key> <string>func_defaults</string> </key>
<value> <value>
<tuple/> <none/>
</value> </value>
</item> </item>
<item> <item>
......
351 352
\ No newline at end of file \ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment