Commit a191eab6 authored by Fabien Morin's avatar Fabien Morin

Change the script to return a contributor list

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@39689 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 2ae8f3f4
...@@ -51,11 +51,11 @@ ...@@ -51,11 +51,11 @@
<item> <item>
<key> <string>_body</string> </key> <key> <string>_body</string> </key>
<value> <string>"""\n <value> <string>"""\n
This simple script returns the contributor title of the current context.\n This simple script returns the contributor title list of the current context.\n
It has a proxy_role of manager to allowed anonymous to get the contributor title\n It has a proxy_role of manager to allowed anonymous to get the contributor title\n
"""\n """\n
\n \n
return context.getContributorTitle() or context.Base_translateString("Unknown User")\n return len(context.getContributorTitleList()) and context.getContributorTitleList() or [context.Base_translateString("Unknown User")]\n
</string> </value> </string> </value>
</item> </item>
<item> <item>
...@@ -100,6 +100,7 @@ return context.getContributorTitle() or context.Base_translateString("Unknown Us ...@@ -100,6 +100,7 @@ return context.getContributorTitle() or context.Base_translateString("Unknown Us
<key> <string>co_varnames</string> </key> <key> <string>co_varnames</string> </key>
<value> <value>
<tuple> <tuple>
<string>len</string>
<string>_getattr_</string> <string>_getattr_</string>
<string>context</string> <string>context</string>
</tuple> </tuple>
...@@ -118,11 +119,11 @@ return context.getContributorTitle() or context.Base_translateString("Unknown Us ...@@ -118,11 +119,11 @@ return context.getContributorTitle() or context.Base_translateString("Unknown Us
</item> </item>
<item> <item>
<key> <string>id</string> </key> <key> <string>id</string> </key>
<value> <string>Document_getContributorTitle</string> </value> <value> <string>Document_getContributorTitleList</string> </value>
</item> </item>
<item> <item>
<key> <string>title</string> </key> <key> <string>title</string> </key>
<value> <string>Get the contributor title from a document</string> </value> <value> <string>Get the contributor title list from a document</string> </value>
</item> </item>
<item> <item>
<key> <string>warnings</string> </key> <key> <string>warnings</string> </key>
......
63 65
\ 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