Fri, 17 Apr 2009 19:52:57 +0000 Comment out unused variables in soc.views.models.base module.
Pawel Solyga <Pawel.Solyga@gmail.com> [Fri, 17 Apr 2009 19:52:57 +0000] rev 2193
Comment out unused variables in soc.views.models.base module. Patch by: Pawel Solyga Reviewed by: to-be-reviewed
Fri, 17 Apr 2009 19:01:26 +0000 Fix too long line in soc.views.helper.templatetags.forms_helpers module.
Pawel Solyga <Pawel.Solyga@gmail.com> [Fri, 17 Apr 2009 19:01:26 +0000] rev 2192
Fix too long line in soc.views.helper.templatetags.forms_helpers module. Patch by: Pawel Solyga Reviewed by: to-be-reviewed
Fri, 17 Apr 2009 16:23:01 +0000 Proposal CSV export for students.
Pawel Solyga <Pawel.Solyga@gmail.com> [Fri, 17 Apr 2009 16:23:01 +0000] rev 2191
Proposal CSV export for students. Patch by: Matthew Wilkes Reviewed by: Pawel Solyga
Wed, 15 Apr 2009 23:22:11 +0000 Readability fix in base logic
Sverre Rabbelier <srabbelier@gmail.com> [Wed, 15 Apr 2009 23:22:11 +0000] rev 2190
Readability fix in base logic Patch by: Sverre Rabbelier
Wed, 15 Apr 2009 23:21:40 +0000 Remove redundant if check
Sverre Rabbelier <srabbelier@gmail.com> [Wed, 15 Apr 2009 23:21:40 +0000] rev 2189
Remove redundant if check site_logic.getSingleton() is guaranteed to return an entity. Patch by: Sverre Rabbelier
Wed, 15 Apr 2009 19:13:52 +0000 Comment out unused variables in soc.logic.allocations module.
Pawel Solyga <Pawel.Solyga@gmail.com> [Wed, 15 Apr 2009 19:13:52 +0000] rev 2188
Comment out unused variables in soc.logic.allocations module. Patch by: Pawel Solyga Reviewed by: to-be-reviewed
Wed, 15 Apr 2009 19:13:16 +0000 Fix too long line in soc.cache.logic module.
Pawel Solyga <Pawel.Solyga@gmail.com> [Wed, 15 Apr 2009 19:13:16 +0000] rev 2187
Fix too long line in soc.cache.logic module. Patch by: Pawel Solyga Reviewed by: to-be-reviewed
Wed, 15 Apr 2009 16:05:29 +0000 Add missing responses import and replace usage of helper.responses with just responses in soc.views.models.student module.
Pawel Solyga <Pawel.Solyga@gmail.com> [Wed, 15 Apr 2009 16:05:29 +0000] rev 2186
Add missing responses import and replace usage of helper.responses with just responses in soc.views.models.student module. Patch by: Pawel Solyga Reviewed by: to-be-reviewed
Wed, 15 Apr 2009 15:56:17 +0000 Fix too long line and redefining variable 'review' from outer scope in soc.views.models.student_proposal module.
Pawel Solyga <Pawel.Solyga@gmail.com> [Wed, 15 Apr 2009 15:56:17 +0000] rev 2185
Fix too long line and redefining variable 'review' from outer scope in soc.views.models.student_proposal module. Patch by: Pawel Solyga Reviewed by: to-be-reviewed
Wed, 15 Apr 2009 08:01:17 +0000 Step 2 of moving to new seeding model.
Daniel Bentley <dbentley@google.com> [Wed, 15 Apr 2009 08:01:17 +0000] rev 2184
Step 2 of moving to new seeding model. Create Seeder class, which abstracts some seeding. Move user to Seeder class, and make new OrganizationSeeder class. If people like this, I'll finish the rest soon. Patch by: Dan Bentley
Tue, 14 Apr 2009 18:44:06 +0000 Added additional_mentors property to StudentProject.
Lennard de Rijk <ljvderijk@gmail.com> [Tue, 14 Apr 2009 18:44:06 +0000] rev 2183
Added additional_mentors property to StudentProject. As per request by Issue 588. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Tue, 14 Apr 2009 18:42:27 +0000 Whitespace fix in sponsor model.
Lennard de Rijk <ljvderijk@gmail.com> [Tue, 14 Apr 2009 18:42:27 +0000] rev 2182
Whitespace fix in sponsor model. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Mon, 13 Apr 2009 21:46:33 +0000 Place the getSingleton call in view decorator in the try
Sverre Rabbelier <srabbelier@gmail.com> [Mon, 13 Apr 2009 21:46:33 +0000] rev 2181
Place the getSingleton call in view decorator in the try This way timeouts on the getSingleton() call are also catched. Patch by: Sverre Rabbelier
Mon, 13 Apr 2009 21:32:29 +0000 Fix a bug in duplicate detection
Sverre Rabbelier <srabbelier@gmail.com> [Mon, 13 Apr 2009 21:32:29 +0000] rev 2180
Fix a bug in duplicate detection This is caused by AppEngine's inability to sort a query when the inequality or IN operator is used. See also [0]. [0] http://code.google.com/p/googleappengine/issues/detail?id=1100 Patch by: Sverre Rabbelier and Lennard de Rijk
Mon, 13 Apr 2009 21:32:12 +0000 Undid superfluas replacement of .name() with .name_or_id()
Sverre Rabbelier <srabbelier@gmail.com> [Mon, 13 Apr 2009 21:32:12 +0000] rev 2179
Undid superfluas replacement of .name() with .name_or_id() Patch by: Sverre Rabbelier
Mon, 13 Apr 2009 16:31:36 +0000 Fixes access check for manage view.
Lennard de Rijk <ljvderijk@gmail.com> [Mon, 13 Apr 2009 16:31:36 +0000] rev 2178
Fixes access check for manage view. Added forgotten IsMyEntity check and fixed a bug introduced by a rename in r2816. Addresses Issue 584. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Mon, 13 Apr 2009 15:31:39 +0000 Do not rely on dicts.merge to change target
Sverre Rabbelier <srabbelier@gmail.com> [Mon, 13 Apr 2009 15:31:39 +0000] rev 2177
Do not rely on dicts.merge to change target Also make dicts.merge actually not touch target. This is much cleaner than modifying in place, especially since we assign the result of the dicts.merge call to target most of the time anyway. Patch by: Sverre Rabbelier
Mon, 13 Apr 2009 15:30:48 +0000 Use key().id_or_name() instead of key().name()
Sverre Rabbelier <srabbelier@gmail.com> [Mon, 13 Apr 2009 15:30:48 +0000] rev 2176
Use key().id_or_name() instead of key().name() These two cases were introduced after the previous refactoring was done and did not follow the new behavior. Patch by: Sverre Rabbelier
Mon, 13 Apr 2009 14:34:42 +0000 Fix a bug in seed_db
Sverre Rabbelier <srabbelier@gmail.com> [Mon, 13 Apr 2009 14:34:42 +0000] rev 2175
Fix a bug in seed_db Using %(num)d with an int as argument doesn't work. Patch by: Sverre Rabbelier
Sun, 12 Apr 2009 16:43:30 +0000 Added a warning message to alert the user that reviews are not editable.
Lennard de Rijk <ljvderijk@gmail.com> [Sun, 12 Apr 2009 16:43:30 +0000] rev 2174
Added a warning message to alert the user that reviews are not editable. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Sun, 12 Apr 2009 16:09:00 +0000 Added overview of private reviews to the Student Proposal review page.
Lennard de Rijk <ljvderijk@gmail.com> [Sun, 12 Apr 2009 16:09:00 +0000] rev 2173
Added overview of private reviews to the Student Proposal review page. Addresses Issue 496. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Sun, 12 Apr 2009 13:22:43 +0000 Load /Users/solydzajs/Downloads/google_appengine into
Pawel Solyga <Pawel.Solyga@gmail.com> [Sun, 12 Apr 2009 13:22:43 +0000] rev 2172
Load /Users/solydzajs/Downloads/google_appengine into trunk/thirdparty/google_appengine.
Sun, 12 Apr 2009 13:14:03 +0000 Do not rely on a backup_admin being set
Sverre Rabbelier <srabbelier@gmail.com> [Sun, 12 Apr 2009 13:14:03 +0000] rev 2171
Do not rely on a backup_admin being set Patch by: Sverre Rabbelier
Sun, 12 Apr 2009 12:31:55 +0000 Send out notifications and emails to admin and backup admin
Sverre Rabbelier <srabbelier@gmail.com> [Sun, 12 Apr 2009 12:31:55 +0000] rev 2170
Send out notifications and emails to admin and backup admin Patch by: Sverre Rabbelier
Sun, 12 Apr 2009 12:31:23 +0000 Allow the backup_admin to fill in the org application
Sverre Rabbelier <srabbelier@gmail.com> [Sun, 12 Apr 2009 12:31:23 +0000] rev 2169
Allow the backup_admin to fill in the org application Patch by: Sverre Rabbelier
Sun, 12 Apr 2009 09:06:45 +0000 Use offset_linkid instead of offset to scan >1000 entities.
Daniel Bentley <dbentley@google.com> [Sun, 12 Apr 2009 09:06:45 +0000] rev 2168
Use offset_linkid instead of offset to scan >1000 entities. this is a first-cut. It works in all the ways I could make earlier versions fail. It passes link_id as URL parameters. It also has a new class LinkCreator which makes the main body of getListContents even easier to write. I wasn't sure if link_id's could have non alphanumeric characters; if so, they need to be URL encoded/decoded. I also need to go and remove any mention of raw offsets now, because we don't use them. I believe I've talked about this approach with a few of you and it sounded reasonable. Feel free to roll-back/fix/amend/comment-for-me-to-fix. This is my first big-logic-change to Melange. Patch by: Dan Bentley
Sun, 12 Apr 2009 06:24:14 +0000 Respond to comments on r2769.
Daniel Bentley <dbentley@google.com> [Sun, 12 Apr 2009 06:24:14 +0000] rev 2167
Respond to comments on r2769. Patch by: Dan Bentley
Sun, 12 Apr 2009 06:21:15 +0000 Last step of refactoring before adding support for > 1000 entities.
Daniel Bentley <dbentley@google.com> [Sun, 12 Apr 2009 06:21:15 +0000] rev 2166
Last step of refactoring before adding support for > 1000 entities. Make helper functions. One extracts list parameters. One creates links more simply. This is cleaning up the large function body so I can move stuff around more radically. Patch by: Dan Bentley
Sun, 12 Apr 2009 00:18:38 +0000 Add (better) help_text to publish_location and school_name
Sverre Rabbelier <srabbelier@gmail.com> [Sun, 12 Apr 2009 00:18:38 +0000] rev 2165
Add (better) help_text to publish_location and school_name Patch by: Sverre Rabbelier
Sun, 12 Apr 2009 00:18:19 +0000 Brown paper bag fix
Sverre Rabbelier <srabbelier@gmail.com> [Sun, 12 Apr 2009 00:18:19 +0000] rev 2164
Brown paper bag fix Can't call .key() if there is no entity. Patch by: Sverre Rabbelier
(0) -1000 -300 -100 -50 -30 +30 +50 +100 +300 tip