Sat, 24 Jan 2009 10:18:30 +0000 Fixed an access related bug in checkIsClubAdminForClub.
Lennard de Rijk <ljvderijk@gmail.com> [Sat, 24 Jan 2009 10:18:30 +0000] rev 943
Fixed an access related bug in checkIsClubAdminForClub. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Sat, 24 Jan 2009 00:27:36 +0000 Fixed bug in access.py concerning host checks.
Lennard de Rijk <ljvderijk@gmail.com> [Sat, 24 Jan 2009 00:27:36 +0000] rev 942
Fixed bug in access.py concerning host checks. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Sat, 24 Jan 2009 00:07:34 +0000 Add a warning about discarding unsaved changes
Sverre Rabbelier <srabbelier@gmail.com> [Sat, 24 Jan 2009 00:07:34 +0000] rev 941
Add a warning about discarding unsaved changes Also set the colspan of the label (on seperate row) to max. Patch by: Sverre Rabbelier
Fri, 23 Jan 2009 23:42:07 +0000 Changed the access checks to comply with state in request.
Lennard de Rijk <ljvderijk@gmail.com> [Fri, 23 Jan 2009 23:42:07 +0000] rev 940
Changed the access checks to comply with state in request. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Fri, 23 Jan 2009 22:57:10 +0000 Make reference picker work for create too
Sverre Rabbelier <srabbelier@gmail.com> [Fri, 23 Jan 2009 22:57:10 +0000] rev 939
Make reference picker work for create too Caveat, it only works for one reference atm. Patch by: Sverre Rabbelier
Fri, 23 Jan 2009 22:20:20 +0000 Brown paper bag fix
Sverre Rabbelier <srabbelier@gmail.com> [Fri, 23 Jan 2009 22:20:20 +0000] rev 938
Brown paper bag fix Patch by: Sverre Rabbelier
Fri, 23 Jan 2009 22:17:49 +0000 Do not crash if an invalid field name is entered
Sverre Rabbelier <srabbelier@gmail.com> [Fri, 23 Jan 2009 22:17:49 +0000] rev 937
Do not crash if an invalid field name is entered Patch by: Sverre Rabbelier
Fri, 23 Jan 2009 21:22:09 +0000 Enable pick links for all the references we have
Sverre Rabbelier <srabbelier@gmail.com> [Fri, 23 Jan 2009 21:22:09 +0000] rev 936
Enable pick links for all the references we have Patch by: Sverre Rabbelier
Fri, 23 Jan 2009 21:20:33 +0000 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com> [Fri, 23 Jan 2009 21:20:33 +0000] rev 935
Adust the as_table tag to render a pick link if appropriate The templates are adjusted to pass on a 'reference' value, which is the url_name of the view from which the entity should be picked. The as_table (and related) function(s) construct and then pass on this argument and enable takes_contex so that we have access to the context of the enclosing template. We only extract ReferenceProperties that end with '_link_id' since that is how all RP's are currently named. It is not possible to create a field with the same name as the RP, as GAE will try to interpret it's contents as the key of an entity before even calling any function we can override. Patch by: Sverre Rabbelier
Fri, 23 Jan 2009 21:18:39 +0000 Add a 'pick' view to the appropriate views
Sverre Rabbelier <srabbelier@gmail.com> [Fri, 23 Jan 2009 21:18:39 +0000] rev 934
Add a 'pick' view to the appropriate views Only views that represent entities that are pointed to by a ReferenceProperty at some point are considered 'appropriate'. Patch by: Sverre Rabbelier
Fri, 23 Jan 2009 21:17:01 +0000 Added a 'pick' view
Sverre Rabbelier <srabbelier@gmail.com> [Fri, 23 Jan 2009 21:17:01 +0000] rev 933
Added a 'pick' view This view can be used to pick a specific document and then redirect to another view. Patch by: Sverre Rabbelier
Fri, 23 Jan 2009 21:15:16 +0000 Add redirects for the new pick view
Sverre Rabbelier <srabbelier@gmail.com> [Fri, 23 Jan 2009 21:15:16 +0000] rev 932
Add redirects for the new pick view Patch by: Sverre Rabbelier
Fri, 23 Jan 2009 21:04:45 +0000 Add a simple access check for a picker
Sverre Rabbelier <srabbelier@gmail.com> [Fri, 23 Jan 2009 21:04:45 +0000] rev 931
Add a simple access check for a picker The picker page should not be accessible if the required GET args are not present. Patch by: Sverre Rabbelier
Fri, 23 Jan 2009 17:51:35 +0000 Added missing changes from r1522.
Lennard de Rijk <ljvderijk@gmail.com> [Fri, 23 Jan 2009 17:51:35 +0000] rev 930
Added missing changes from r1522. Eclipse found it funny not to save resources ^_^. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Fri, 23 Jan 2009 17:41:30 +0000 Renamed redirect methods to comply with the rest of the module.
Lennard de Rijk <ljvderijk@gmail.com> [Fri, 23 Jan 2009 17:41:30 +0000] rev 929
Renamed redirect methods to comply with the rest of the module. Added use for getInviteAcceptedRedirect in the soc/views/models/request.py process_invite view. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Fri, 23 Jan 2009 17:07:54 +0000 Replaced the boolean properties in soc/models/request.py with a state property.
Lennard de Rijk <ljvderijk@gmail.com> [Fri, 23 Jan 2009 17:07:54 +0000] rev 928
Replaced the boolean properties in soc/models/request.py with a state property. new : new Request group_accepted : The group has accepted this request completed : This request has been handled either following a creation of the role entity rejected : This request has been rejected by either the user or the group ignored : The request has been ignored by the group and will not give the user access to create the role Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Fri, 23 Jan 2009 16:54:46 +0000 Restore context in deny() page
Sverre Rabbelier <srabbelier@gmail.com> [Fri, 23 Jan 2009 16:54:46 +0000] rev 927
Restore context in deny() page Now that we know when the sidebar is doing the access checks we can safely construct a new context in deny (without having to worry that it will try to do more access checks that result in deny, which will call for a new context... etc). Patch by: Sverre Rabbelier
Fri, 23 Jan 2009 16:53:19 +0000 Bugfixes to last commit
Sverre Rabbelier <srabbelier@gmail.com> [Fri, 23 Jan 2009 16:53:19 +0000] rev 926
Bugfixes to last commit Access rights for 'home' pages and an errornous endif tag. Patch by: Sverre Rabbelier
Fri, 23 Jan 2009 16:23:01 +0000 Removed club property from club_admin model.
Lennard de Rijk <ljvderijk@gmail.com> [Fri, 23 Jan 2009 16:23:01 +0000] rev 925
Removed club property from club_admin model. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Fri, 23 Jan 2009 16:21:28 +0000 Generate proper html instead of having nested <td> tags
Sverre Rabbelier <srabbelier@gmail.com> [Fri, 23 Jan 2009 16:21:28 +0000] rev 924
Generate proper html instead of having nested <td> tags Patch by: Sverre Rabbelier
Fri, 23 Jan 2009 15:32:58 +0000 Hook up the 'home' view for site and program
Sverre Rabbelier <srabbelier@gmail.com> [Fri, 23 Jan 2009 15:32:58 +0000] rev 923
Hook up the 'home' view for site and program Also point to it in the sidebar's "home" link. Patch by: Sverre Rabbelier
Fri, 23 Jan 2009 15:31:13 +0000 Generate the 'edit settings' link dynamically
Sverre Rabbelier <srabbelier@gmail.com> [Fri, 23 Jan 2009 15:31:13 +0000] rev 922
Generate the 'edit settings' link dynamically We used to point to '/site/edit', which is rather lame for a generic presence template (especially since site has it's own template). Patch by: Sverre Rabbelier
Fri, 23 Jan 2009 15:29:42 +0000 Create a new 'home' view for Presences
Sverre Rabbelier <srabbelier@gmail.com> [Fri, 23 Jan 2009 15:29:42 +0000] rev 921
Create a new 'home' view for Presences This also restores the 'show' view for Presences as there is no need to hide it with the 'home' view anymore. Patch by: Sverre Rabbelier
Fri, 23 Jan 2009 12:00:48 +0000 Added the new way to process invites for club_admin only.
Lennard de Rijk <ljvderijk@gmail.com> [Fri, 23 Jan 2009 12:00:48 +0000] rev 920
Added the new way to process invites for club_admin only. This patch contains the separability needed to ensure that we can successfully do the access checks we need. Host invites can for the time being only be completed by developers due to the reorganization. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Fri, 23 Jan 2009 11:40:35 +0000 Added missing comment to soc/views/models/club.py.
Lennard de Rijk <ljvderijk@gmail.com> [Fri, 23 Jan 2009 11:40:35 +0000] rev 919
Added missing comment to soc/views/models/club.py. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Fri, 23 Jan 2009 11:39:14 +0000 Changed the request templates to match the changes to the model.
Lennard de Rijk <ljvderijk@gmail.com> [Fri, 23 Jan 2009 11:39:14 +0000] rev 918
Changed the request templates to match the changes to the model. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Fri, 23 Jan 2009 11:38:24 +0000 Added missing role_verbose.
Lennard de Rijk <ljvderijk@gmail.com> [Fri, 23 Jan 2009 11:38:24 +0000] rev 917
Added missing role_verbose. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Fri, 23 Jan 2009 11:36:55 +0000 Redid removeRequestForRole to completeRequestForRole.
Lennard de Rijk <ljvderijk@gmail.com> [Fri, 23 Jan 2009 11:36:55 +0000] rev 916
Redid removeRequestForRole to completeRequestForRole. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Fri, 23 Jan 2009 11:34:58 +0000 Added verbose role name to the request model.
Lennard de Rijk <ljvderijk@gmail.com> [Fri, 23 Jan 2009 11:34:58 +0000] rev 915
Added verbose role name to the request model. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Fri, 23 Jan 2009 11:32:53 +0000 Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com> [Fri, 23 Jan 2009 11:32:53 +0000] rev 914
Added various access methods in preperation for the new request system. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
(0) -300 -100 -50 -30 +30 +50 +100 +300 +1000 tip