2008-09-21 |
Pawel Solyga |
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
|
changeset |
files
|
2008-09-21 |
Augie Fackler |
Two changes to ease CI:
|
changeset |
files
|
2008-09-20 |
Pawel Solyga |
Add custom 404 error message with link to "Create a New User" which is displayed when linkname in User Profile Developer view URL (/site/user/profile/<linkname>) doesn't exist. Add default value (None) to new_suffix parameter of template_helpers replaceSuffix and redirectToChangedSuffix functions.
|
changeset |
files
|
2008-09-20 |
Augie Fackler |
Testing buildbot. Sorry about the noise. (Last one for now, I've got most of the kinks figured out I think)
|
changeset |
files
|
2008-09-20 |
Augie Fackler |
Testing buildbot. Sorry about the noise.
|
changeset |
files
|
2008-09-20 |
Augie Fackler |
Testing buildbot. Sorry about the noise.
|
changeset |
files
|
2008-09-19 |
Todd Larsen |
Make django.zip in release/, instead of in app/ with a symlink in release/.
|
changeset |
files
|
2008-09-19 |
Todd Larsen |
A rough draft of the Group Model, to be merged with Pawel's current effort in
|
changeset |
files
|
2008-09-19 |
Todd Larsen |
First pass (from some old code notes) of a School Model (a form of Group).
|
changeset |
files
|
2008-09-19 |
Todd Larsen |
First pass (from some old code notes) of a Club Model (a form of Group).
|
changeset |
files
|
2008-09-19 |
Pawel Solyga |
Bug fixes to revision r596. User Account field in Developer User Profile view needs to be an email not a login name. Header title of User Profile Developer view, when form validation failes is now showing correct value ("Modify existing ..." instead of "Create new user ...").
|
changeset |
files
|
2008-09-19 |
Todd Larsen |
Add /site/user/profile Developer view for editing arbitrary User entities.
|
changeset |
files
|
2008-09-19 |
Todd Larsen |
Fix off-by-one corner case discovered during testing of /user/profile.
|
changeset |
files
|
2008-09-19 |
Todd Larsen |
Added getSingleIndexedParamValue() that retrieves an index into a list of
|
changeset |
files
|
2008-09-19 |
Todd Larsen |
Added replaceSuffix(), isReferrerSelf(), and redirectToChangedSuffix() to
|
changeset |
files
|
2008-09-18 |
Pawel Solyga |
Fixed too long lines and deleted unused imports in id_user.py.
|
changeset |
files
|
2008-09-18 |
Pawel Solyga |
New default values for page title, header title and body of site home page.
|
changeset |
files
|
2008-09-18 |
Pawel Solyga |
Documentation updates and one typo fix.
|
changeset |
files
|
2008-09-18 |
Todd Larsen |
Add a td.formfielderrorlabel style, to highlight field labels that have errors.
|
changeset |
files
|
2008-09-18 |
Todd Larsen |
Swap field value and "required" columns to make more columns for field errors.
|
changeset |
files
|
2008-09-18 |
Todd Larsen |
Add a verbose_name and help_text to the User.id Property.
|
changeset |
files
|
2008-09-16 |
Todd Larsen |
Explain why pushd and popd are needed when making tiny_mce.zip.
|
changeset |
files
|
2008-09-16 |
Todd Larsen |
Use zip to compress tiny_mce, and use zipserve to serve it in Google App
|
changeset |
files
|
2008-09-16 |
Pawel Solyga |
Updated make_release.sh docs and added way for person invoking the script to override script variables such as RELEASE using something like "RELEASE=../testing_release ./make_release.sh".
|
changeset |
files
|
2008-09-16 |
Todd Larsen |
Add recently-moved feedparser and tiny_mce to APP_DIRS.
|
changeset |
files
|
2008-09-16 |
Todd Larsen |
Oops, this should have been part of the r580 commit.
|
changeset |
files
|
2008-09-16 |
Todd Larsen |
Oops, this should have been part of the r577 commit.
|
changeset |
files
|
2008-09-16 |
Todd Larsen |
Move third-party TinyMCE out of soc/content/js and into the application image
|
changeset |
files
|
2008-09-16 |
Todd Larsen |
Add README files to explain how third-party code is maintained in these
|
changeset |
files
|
2008-09-16 |
Todd Larsen |
Discourage third-party code from being embedded in the soc framework.
|
changeset |
files
|
2008-09-16 |
Todd Larsen |
Move third-party feedparser.py out of the soc framework package into its own
|
changeset |
files
|
2008-09-16 |
Pawel Solyga |
Changed ZIPFILE variable to DJANGO_ZIPFILE in make_release.sh script and added 'cd $APP_FOLDER' before we zip django.
|
changeset |
files
|
2008-09-16 |
Todd Larsen |
Load ../google_appengine into trunk/thirdparty/google_appengine.
|
changeset |
files
|
2008-09-16 |
Todd Larsen |
upload.py customized to work with codereviews.googleopensourceprograms.com.
|
changeset |
files
|
2008-09-16 |
Todd Larsen |
Pristine initial commit of upload.py script from
|
changeset |
files
|
2008-09-16 |
Todd Larsen |
gcl.py customized to work with codereviews.googleopensourceprograms.com and the
|
changeset |
files
|
2008-09-16 |
Todd Larsen |
Pristine initial commit of gcl.py script from chromium.org.
|
changeset |
files
|
2008-09-14 |
Pawel Solyga |
Release shell script and associated changes. Set svn:ignore property on /app/django.zip file and /release folder.
|
changeset |
files
|
2008-09-14 |
Pawel Solyga |
FIxed documentation in soc/logic/document.py for getDocumentFromPath function
|
changeset |
files
|
2008-09-13 |
Pawel Solyga |
Forgot to change widgets to custom_widgets import in home.py after changing the name of soc/views/helpers/widgets.py file.
|
changeset |
files
|
2008-09-13 |
Pawel Solyga |
Added Melange front page edit view where you can change title, content, feed url. Created SiteSettings and Document models and some logic for them. Added isFeedURLValid function in soc/logic/feed.py. Created some functions for handling datastore updates of different kinds of Models (soc/logic/model.py). Fixed some typos and too long lines of code.
|
changeset |
files
|
2008-09-13 |
Pawel Solyga |
Added feedparser to soc/utils and modified svn:externals for vendor to include feedparser svn
|
changeset |
files
|
2008-09-12 |
Todd Larsen |
Add getAltResponseIfNotLoggedIn() and getAltResponseIfNotDeveloper() simple
|
changeset |
files
|
2008-09-12 |
Todd Larsen |
Improve the __doc__ string of isIdDeveloper() to explain better how it now
|
changeset |
files
|
2008-09-12 |
Todd Larsen |
Make isIdDeveloper() also able to check an is_developer Boolean property in
|
changeset |
files
|
2008-09-12 |
Todd Larsen |
Replace checkLinkNameForId() with isLinkNameAvailableForId(), and implement
|
changeset |
files
|
2008-09-12 |
Pawel Solyga |
Fixed one typo in response_helpers which caused is_admin context variable not to work correctly.
|
changeset |
files
|
2008-09-12 |
Pawel Solyga |
Fixed wrong user variable in lookup.html template for edit link (was user should be found_user).
|
changeset |
files
|
2008-09-12 |
Todd Larsen |
gcl.py committed this file, when it should not have even existed.
|
changeset |
files
|
2008-09-12 |
Todd Larsen |
Add a /site/user/lookup view that provides Developers with a form to look up
|
changeset |
files
|
2008-09-12 |
Todd Larsen |
...
|
changeset |
files
|
2008-09-11 |
Sverre Rabbelier |
Updated the script to:
|
changeset |
files
|
2008-09-11 |
Sverre Rabbelier |
Bugfix, invalid syntax noticed by epydoc.
|
changeset |
files
|
2008-09-11 |
Pawel Solyga |
Updated docs in response_helpers.
|
changeset |
files
|
2008-09-11 |
Pawel Solyga |
Created custom_widgets.py and added TinyMCE django widget that can be later used for particular form fields.
|
changeset |
files
|
2008-09-11 |
Pawel Solyga |
Added TinyMCE to Melange in soc/content/js
|
changeset |
files
|
2008-08-30 |
Todd Larsen |
An emerging pattern with makeSiblingTemplatesList() is that views calling that
|
changeset |
files
|
2008-08-29 |
Todd Larsen |
Refactor soc/views/user/profile.py to make use of several of the new views
|
changeset |
files
|
2008-08-29 |
Todd Larsen |
Fix an overlooked cut-and-paste error.
|
changeset |
files
|
2008-08-29 |
Todd Larsen |
Add a public() convenience wrapper around templateWithLinkName() for the common
|
changeset |
files
|