Sun, 19 Oct 2008 13:06:20 +0000 Pawel Solyga Add pylint configuration file (pylintrc) and do_pylint.sh script which runs pylint checkers on Melange code using pylintrc file as config. do_pylint.sh as default shows additional information like reports, TODOs, code similarities and unused imports, but you can run it in silent mode (--silent) which disables all of that. The only problem with unused imports in pylint right now is that it doesn't work in the situation described in last example at http://code.google.com/p/soc/wiki/PythonStyleGuide#Packages, so sometimes we get unused import soc when we actually shouldn't. However this can be fixed by writing pylint plugins (our own checkers) in future.
Sun, 19 Oct 2008 00:34:33 +0000 Sverre Rabbelier Addressed comments by Todd on r822
Sat, 18 Oct 2008 21:55:38 +0000 Pawel Solyga Fix identions in reflistprop module.
Sat, 18 Oct 2008 21:54:13 +0000 Pawel Solyga Remove not used imports in models. Fix missing spaces in models when operator not preceded by a space. Add missing ugettext_lazy import to Proposal model.
Sat, 18 Oct 2008 17:49:46 +0000 Pawel Solyga Add missing ugettext_lazy for string in soc.views.user.profile module.
Sat, 18 Oct 2008 17:27:53 +0000 Pawel Solyga Fix missing keyword argument in soc.views.user.profile.create() function when calling edit().
Sat, 18 Oct 2008 17:25:04 +0000 Pawel Solyga Change Sponsor delete url from /site/sponsor/profile/<link_name>/delete to /site/sponsor/profile/delete/<link_name> to match convention used in Document delete url.
Sat, 18 Oct 2008 05:59:04 +0000 Chen Lunpeng Fixed not working to edit a doc that selected from the docs list view. soc/templates/soc/docs/list/docs_row.html not full updated.
Sat, 18 Oct 2008 05:30:57 +0000 Todd Larsen Change the "Site home page Document is missing" default text to give
Sat, 18 Oct 2008 05:26:53 +0000 Todd Larsen Remove another now-empty templates directory.
Sat, 18 Oct 2008 05:25:47 +0000 Todd Larsen Nothing left in this templates directory, so remove it.
Sat, 18 Oct 2008 05:11:37 +0000 Todd Larsen Refactor various site views into more generic locations, in preparation for
Sat, 18 Oct 2008 04:56:39 +0000 Todd Larsen Add a style that appears in form error lists produced by Django Forms and
Sat, 18 Oct 2008 01:51:02 +0000 Todd Larsen Create package for soon-to-be-refactored group/home.py and group/settings.py
Sat, 18 Oct 2008 01:47:02 +0000 Todd Larsen Add the Page object to the context of each view. Update templates to make
Sat, 18 Oct 2008 01:35:08 +0000 Todd Larsen Add the Page object to the context of each view method. Also, add some missing
Sat, 18 Oct 2008 01:32:40 +0000 Todd Larsen Formalize the concept of a NonPage that can appear in the site-map, useful for
Sat, 18 Oct 2008 01:00:10 +0000 Todd Larsen Add a relative symlink pointing at ../rietveld/upload.py in thirdparty/chromium
Fri, 17 Oct 2008 23:10:49 +0000 Todd Larsen Replace missing:
Fri, 17 Oct 2008 13:57:54 +0000 Pawel Solyga Replace GROUP_TYPE_PLURAL and GROUP_TYPE_SHORT constants in Group models with more generic TYPE_NAME, TYPE_NAME_SHORT, TYPE_NAME_PLURAL names and apply changes in affected files. Use ugettext_lazy for TYPE_NAME and TYPE_NAME_PLURAL constants. This approach is similar to the upcoming refactor of views.
Fri, 17 Oct 2008 13:04:51 +0000 Pawel Solyga Move TODO about isDeletable Sponsor logic method to sponsor.py module and extend a little bit doc string.
Fri, 17 Oct 2008 12:52:02 +0000 Pawel Solyga Remove not needed request argument in view decorator.
Fri, 17 Oct 2008 02:43:39 +0000 Chen Lunpeng Fixed not working after click the "List Site Sponsors" in site menu bar. due to wrongly imported modules.
Thu, 16 Oct 2008 23:31:57 +0000 Pawel Solyga Create decorators module in view/helper and add view decorator that catches exceptions like DeadlineExceededError, MemoryError, AssertionError (this code is being moved from respond function). Add view decorator to all view functions. In addition remove not needed imports from all affected files and fix too long lines.
Thu, 16 Oct 2008 23:26:58 +0000 Sverre Rabbelier Last commit missed the new __init__.py file
Thu, 16 Oct 2008 23:23:16 +0000 Sverre Rabbelier Add a framework for generic views
Thu, 16 Oct 2008 18:08:35 +0000 Sverre Rabbelier entity_type is not the same as entity_type_short
Thu, 16 Oct 2008 17:34:10 +0000 Pawel Solyga Make page argument required for errorResponse and requestLogin functions in simple.py and update affected files. Some keyword argument changes to in user/profile.py. All the changes are based on comments to r817.
Thu, 16 Oct 2008 17:30:58 +0000 Sverre Rabbelier Rename 'group' to 'entity' in the Django templates
Thu, 16 Oct 2008 16:05:08 +0000 Pawel Solyga DeadlineExceededError in the recent version of AppEngine lives only in one place so there is no need to try import it from both runtime (deployed) and runtime.apiproxy_errors (dev server) modules anymore.
Thu, 16 Oct 2008 15:22:41 +0000 Pawel Solyga Add page=None parameter to all views. Information from page argument (which is soc.logic.site.page.Page object) is going to be used later in views code and for some context values. Fix some indentions in __doc__ strings. Add proper __doc__ string for all() function in sponsor/list.py module.
Thu, 16 Oct 2008 15:12:00 +0000 Pawel Solyga Some indention fixes in access.py module.
Thu, 16 Oct 2008 13:18:59 +0000 Pawel Solyga Change name of login_request variable in access.py module to login_response.
Thu, 16 Oct 2008 13:16:46 +0000 Pawel Solyga Change name of getUserFromLinkNameOrDie function to getUserFromLinkNameOr404 and apply changes to affected files.
Thu, 16 Oct 2008 13:14:13 +0000 Pawel Solyga Fix mistakes in docs and comments in logic/models/base.py.
Thu, 16 Oct 2008 09:14:26 +0000 Chen Lunpeng Log Fix not working after click the "Site Settings" in home page. templete wasn't updated when soc/app/soc/logic/site/map.py was update.
Thu, 16 Oct 2008 09:05:02 +0000 Pawel Solyga Remove #docsummary class from css file as it is not used anymore. Add #createdby class in css file. Fix typo in docs/profile.html template. Put document content in <div class='content'>.
Thu, 16 Oct 2008 04:37:13 +0000 Todd Larsen Eliminate the Work.abstract property and move the Document.content property
Thu, 16 Oct 2008 04:30:26 +0000 Todd Larsen "new" is a little bit redundant in the short_name of sidebar menu items that
Thu, 16 Oct 2008 04:27:07 +0000 Todd Larsen A quick-and-dirty way to create non-link sub-menu dividers, plus a TODO on
Wed, 15 Oct 2008 21:31:36 +0000 Todd Larsen Should have been part of recent r806.
Wed, 15 Oct 2008 21:27:47 +0000 Todd Larsen First phase of making the / (site/home) view generic enough to use it for
Wed, 15 Oct 2008 21:23:29 +0000 Todd Larsen Add the empty directory where site/home/edit.html is moving, to see if this
Wed, 15 Oct 2008 20:27:40 +0000 Pawel Solyga Update TinyMCE wiget code according to r783. I hope I did it correctly this time.
Wed, 15 Oct 2008 20:24:02 +0000 Pawel Solyga Change verbose_name of founder property in Group model from "Created by" to "Founded by". Add GROUP_TYPE_SHORT and GROUP_TYPE_PLURAL for all models that inherit from Group and use that values in templates and contexts. Assume that group_type, group_type_short and group_type_plural are defined in context and remove not needed ifs in templates. Rename "Linkname" to "Link name" in list/group_heading.html template.
Wed, 15 Oct 2008 20:10:07 +0000 Pawel Solyga Remov "founder" text from the first line of edit.py, this is fix to r799 commit.
Wed, 15 Oct 2008 19:33:50 +0000 Todd Larsen Remove the proposed WorksAuthors many:many relation and promote the "founder"
Wed, 15 Oct 2008 18:06:07 +0000 Tim Ansell Fixed the evil black logo.
Wed, 15 Oct 2008 18:03:21 +0000 Tim Ansell Make this file excutable by default.
Wed, 15 Oct 2008 17:10:27 +0000 Todd Larsen Define the Models for implementing Quizzes (collections of Questions) and their
Wed, 15 Oct 2008 14:06:33 +0000 Pawel Solyga Show "Created by" read-only field in Document Edit view. Update size of TinyMCE widget in Document Edit/Create views. Change user property name to founder in Document model and update files according to this change (now founder is used in Group and Document models). Remove not used variables and imports in views/site/docs/edit.py. Refactor EditForm and CreateForm in views/site/docs/edit.py so that EditForm inherits from CreateForm and just extends it.
Wed, 15 Oct 2008 13:59:52 +0000 Pawel Solyga Show "Created by" read-only field in Sponsor Edit view. Fix function keyword arguments in sponsor/list.py to follow our PythonStyleGuide. Sponsor founder property is not updated anymore when editing Sponsor profile, it's just saved once when creating Sponsor profile.
Wed, 15 Oct 2008 13:54:00 +0000 Pawel Solyga Fix not working docs show view. Document show view wasn't updated when the logic refactor was made.
Wed, 15 Oct 2008 13:51:31 +0000 Pawel Solyga Changes to TinyMCE widget that enable to pass mce_settings in the class constructor and that way update default settings if needed.
Wed, 15 Oct 2008 13:49:17 +0000 Pawel Solyga Add nameHomeSettings function to key_name module. Add HomeSettings logic.
Wed, 15 Oct 2008 13:47:10 +0000 Pawel Solyga Update comments in models/group.py (changed Optional to Required). Add verbose_name to founder property in Group model.
Tue, 14 Oct 2008 22:57:52 +0000 Pawel Solyga Fix bug that caused Lookup user by User Account not to work properly. Basically wrong parameter to models.user.logic.getFromFields().
Tue, 14 Oct 2008 22:35:46 +0000 Pawel Solyga Add deleted in r732 (don't know why) functionality that displays custom Error page when linkname in Developer User Profile url doesn't exist (/site/user/profile/<not_existing_linkname>).
Tue, 14 Oct 2008 22:20:55 +0000 Pawel Solyga Add underscore in two word div class names in templates (nick_name, short_name, partial_path).
Tue, 14 Oct 2008 21:39:57 +0000 Todd Larsen Add is_featured boolean property to the Work model, so that Works can be
(0) -300 -100 -60 +60 +100 +300 +1000 tip