[Python-checkins] r53437 - tracker/instances/python-dev/html/page.html

paul.dubois python-checkins at python.org
Sun Jan 14 19:24:00 CET 2007


Author: paul.dubois
Date: Sun Jan 14 19:23:59 2007
New Revision: 53437

Modified:
   tracker/instances/python-dev/html/page.html
Log:
Have to hardwire the role list. In theory an api query can be constructed: get the list of user node ids, fetch each user's roles, split it on commas, add each to a set. At the end, the set contains the roles. 


Modified: tracker/instances/python-dev/html/page.html
==============================================================================
--- tracker/instances/python-dev/html/page.html	(original)
+++ tracker/instances/python-dev/html/page.html	Sun Jan 14 19:23:59 2007
@@ -288,8 +288,8 @@
     <option value="" i18n:translate="">don't care</option>
     <option value="" i18n:translate="" disabled="disabled">------------</option>
     <option value="User">User</option>
-    <option value="Admin">Admin</option>
-    <option value="Anonymous">Anonymous</option>
+    <option value="Developer">Developer</option>
+    <option value="Coordinator">Coordinator</option>
   </select>
 </td>
 


More information about the Python-checkins mailing list