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
Sat, 11 Apr 2009 23:04:29 +0000 Added Joel Sherrill to the AUTHORS file
Sverre Rabbelier <srabbelier@gmail.com> [Sat, 11 Apr 2009 23:04:29 +0000] rev 2163
Added Joel Sherrill to the AUTHORS file Patch by: Sverre Rabbelier
Sat, 11 Apr 2009 22:59:30 +0000 Lower ASCII fix
Sverre Rabbelier <srabbelier@gmail.com> [Sat, 11 Apr 2009 22:59:30 +0000] rev 2162
Lower ASCII fix
Sat, 11 Apr 2009 22:58:57 +0000 Remove getKeySuffix and it's usage
Sverre Rabbelier <srabbelier@gmail.com> [Sat, 11 Apr 2009 22:58:57 +0000] rev 2161
Remove getKeySuffix and it's usage We can use .key().id_or_name() everywhere now. Patch by: Sverre Rabbelier
Sat, 11 Apr 2009 22:58:19 +0000 Use key().id_or_name() instead of key().name()
Sverre Rabbelier <srabbelier@gmail.com> [Sat, 11 Apr 2009 22:58:19 +0000] rev 2160
Use key().id_or_name() instead of key().name() This is to allow for the usage of auto-id's. Patch by: Sverre Rabbelier
Sat, 11 Apr 2009 22:57:23 +0000 Use key.id_or_name in templates rather than key.name
Sverre Rabbelier <srabbelier@gmail.com> [Sat, 11 Apr 2009 22:57:23 +0000] rev 2159
Use key.id_or_name in templates rather than key.name This is to allow for usage of auto-id's. Patch by: Sverre Rabbelier
Sat, 11 Apr 2009 17:40:41 +0000 Indentation fixes.
Lennard de Rijk <ljvderijk@gmail.com> [Sat, 11 Apr 2009 17:40:41 +0000] rev 2158
Indentation fixes. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Sat, 11 Apr 2009 16:00:03 +0000 Indentation fixes.
Lennard de Rijk <ljvderijk@gmail.com> [Sat, 11 Apr 2009 16:00:03 +0000] rev 2157
Indentation fixes. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Sat, 11 Apr 2009 13:42:12 +0000 Added two menu items to the program menu.
Lennard de Rijk <ljvderijk@gmail.com> [Sat, 11 Apr 2009 13:42:12 +0000] rev 2156
Added two menu items to the program menu. The first addition is a link to redirect to the Host's view for showing duplicates. The second addition is a link for Students to an overview of all their projects in the current program. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Sat, 11 Apr 2009 13:37:31 +0000 Removed obsolete white line in soc/models/views/models/organization.py.
Lennard de Rijk <ljvderijk@gmail.com> [Sat, 11 Apr 2009 13:37:31 +0000] rev 2155
Removed obsolete white line in soc/models/views/models/organization.py. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Sat, 11 Apr 2009 13:36:50 +0000 Added listing of Student Projects for Students themselves.
Lennard de Rijk <ljvderijk@gmail.com> [Sat, 11 Apr 2009 13:36:50 +0000] rev 2154
Added listing of Student Projects for Students themselves. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Sat, 11 Apr 2009 13:34:37 +0000 Added three new redirect methods.
Lennard de Rijk <ljvderijk@gmail.com> [Sat, 11 Apr 2009 13:34:37 +0000] rev 2153
Added three new redirect methods. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Sat, 11 Apr 2009 13:32:35 +0000 Brown paper bag fix for Student Project Manage and Edit access check.
Lennard de Rijk <ljvderijk@gmail.com> [Sat, 11 Apr 2009 13:32:35 +0000] rev 2152
Brown paper bag fix for Student Project Manage and Edit access check. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Sat, 11 Apr 2009 13:19:23 +0000 Style fix in function names in stats.py
Sverre Rabbelier <srabbelier@gmail.com> [Sat, 11 Apr 2009 13:19:23 +0000] rev 2151
Style fix in function names in stats.py Patch by: Sverre Rabbelier
Sat, 11 Apr 2009 12:27:41 +0000 When ranking, put them at or above the given rank
Sverre Rabbelier <srabbelier@gmail.com> [Sat, 11 Apr 2009 12:27:41 +0000] rev 2150
When ranking, put them at or above the given rank Patch by: Sverre Rabbelier
Sat, 11 Apr 2009 12:27:20 +0000 Remove slots_allocation from program view
Sverre Rabbelier <srabbelier@gmail.com> [Sat, 11 Apr 2009 12:27:20 +0000] rev 2149
Remove slots_allocation from program view Patch by: Sverre Rabbelier
Fri, 10 Apr 2009 15:46:05 +0000 Make it possible to save any value with saveValues
Sverre Rabbelier <srabbelier@gmail.com> [Fri, 10 Apr 2009 15:46:05 +0000] rev 2148
Make it possible to save any value with saveValues Patch by: Sverre Rabbelier
Fri, 10 Apr 2009 15:45:52 +0000 Allow loading a previously saved slot allocation
Sverre Rabbelier <srabbelier@gmail.com> [Fri, 10 Apr 2009 15:45:52 +0000] rev 2147
Allow loading a previously saved slot allocation Patch by: Sverre Rabbelier
Fri, 10 Apr 2009 15:32:11 +0000 Added Manage Student Projects item to the organization menu.
Lennard de Rijk <ljvderijk@gmail.com> [Fri, 10 Apr 2009 15:32:11 +0000] rev 2146
Added Manage Student Projects item to the organization menu. Only visible after the accepted students deadline has passed and the current user is an org admin. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Fri, 10 Apr 2009 15:24:43 +0000 Fixed typo in checkStudentProjectHasStatus docstring.
Lennard de Rijk <ljvderijk@gmail.com> [Fri, 10 Apr 2009 15:24:43 +0000] rev 2145
Fixed typo in checkStudentProjectHasStatus docstring. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Fri, 10 Apr 2009 15:22:38 +0000 Removed TODO that has been completed in r2876.
Lennard de Rijk <ljvderijk@gmail.com> [Fri, 10 Apr 2009 15:22:38 +0000] rev 2144
Removed TODO that has been completed in r2876. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Fri, 10 Apr 2009 11:27:33 +0000 Fix bug exposed in previous commit
Sverre Rabbelier <srabbelier@gmail.com> [Fri, 10 Apr 2009 11:27:33 +0000] rev 2143
Fix bug exposed in previous commit Patch by: Sverre Rabbelier
Fri, 10 Apr 2009 11:27:15 +0000 Add a test case to demonstrate a bug in the allocator
Sverre Rabbelier <srabbelier@gmail.com> [Fri, 10 Apr 2009 11:27:15 +0000] rev 2142
Add a test case to demonstrate a bug in the allocator Patch by: Sverre Rabbelier
Thu, 09 Apr 2009 22:37:29 +0000 Set new Melange version number to 0-5-20090410 in app.yaml.template.
Pawel Solyga <Pawel.Solyga@gmail.com> [Thu, 09 Apr 2009 22:37:29 +0000] rev 2141
Set new Melange version number to 0-5-20090410 in app.yaml.template. Patch by: Pawel Solyga
Thu, 09 Apr 2009 22:06:18 +0000 Add a new allocation algorithm and use it
Sverre Rabbelier <srabbelier@gmail.com> [Thu, 09 Apr 2009 22:06:18 +0000] rev 2140
Add a new allocation algorithm and use it Patch by: Sverre Rabbelier
Thu, 09 Apr 2009 22:05:44 +0000 Change iterative to algorithm in slot allocator
Sverre Rabbelier <srabbelier@gmail.com> [Thu, 09 Apr 2009 22:05:44 +0000] rev 2139
Change iterative to algorithm in slot allocator Also store the slots in program model instead of in each org. Patch by: Sverre Rabbelier
Thu, 09 Apr 2009 22:05:07 +0000 Store min and max slots in the program model
Sverre Rabbelier <srabbelier@gmail.com> [Thu, 09 Apr 2009 22:05:07 +0000] rev 2138
Store min and max slots in the program model Also add a field to store the current allocation. Patch by: Sverre Rabbelier
Thu, 09 Apr 2009 22:04:47 +0000 If nothing is assigned, return no assignments
Sverre Rabbelier <srabbelier@gmail.com> [Thu, 09 Apr 2009 22:04:47 +0000] rev 2137
If nothing is assigned, return no assignments Before the popularity was returned instead. Patch by: Sverre Rabbelier
Wed, 08 Apr 2009 23:45:41 +0000 Add a submit method and button to slots view
Sverre Rabbelier <srabbelier@gmail.com> [Wed, 08 Apr 2009 23:45:41 +0000] rev 2136
Add a submit method and button to slots view Patch by: Sverre Rabbelier
Wed, 08 Apr 2009 22:47:46 +0000 Make "Private Comment" first in the selection box on Student Proposal review page.
Pawel Solyga <Pawel.Solyga@gmail.com> [Wed, 08 Apr 2009 22:47:46 +0000] rev 2135
Make "Private Comment" first in the selection box on Student Proposal review page. Patch by: Pawel Solyga Reviewed by: to-be-reviewed
Wed, 08 Apr 2009 22:21:50 +0000 Add auto-completion for mentor field
Sverre Rabbelier <srabbelier@gmail.com> [Wed, 08 Apr 2009 22:21:50 +0000] rev 2134
Add auto-completion for mentor field Patch by: Kai Blin
(0) -1000 -300 -100 -60 +60 +100 +300 tip