diff options
Diffstat (limited to 'development.log')
-rw-r--r-- | development.log | 56 |
1 files changed, 49 insertions, 7 deletions
diff --git a/development.log b/development.log index 7ad467e0..5310f70b 100644 --- a/development.log +++ b/development.log @@ -1,27 +1,69 @@ -# development +==Aug 5, 2009 Evgeny== +===Interface changes=== +Merged in my code that: +* allows anonymous posting of Q&A and then login +* per-question email notifications via 'send_email_alerts' command +* allows space character in username +* improves openid login +* makes notification messages sticky - have to click "x" to dismiss +* unanswered questions are now those with no accepted answer +* added following setting parameters: + +settings.MIN_USERNAME_LENGTH = 1 +settings.EMAIL_UNIQUE = True|False +settings.EMAIL_VALIDATION = 'on'|'off' #thought of maybe adding other options so type is string +settings.GOOGLE_SITEMAP_CODE = <string> +settings.GOOGLE_ANALYTICS_KEY = <string> + +===Fixes=== +* fixed incorrect answer count issue in question.html +* translated Twittwer stuff in user_preferences.html +* translated question_retag.html, except one phrase +* added Adolfo's python2.4 fix +* fixed template debugging comments so that they don't break page layout +* reorganized header template so that it takes less vertical space + +===Code changes=== +* wrapped template context settings into a single settings dictionary +* on login anonymous session is recorded so that anonymously posted questions (if any) could be found later +* added models: AnonymousQuestion, AnonymousAnswer, EmailFeed (for notifications) +* User model has two new fields email_key - 32 byte hex hash and email_isvalid - boolean + file sql_scripts/update_2009_07_05_EF.sql will make upgrade to the live database +* added auth_processor to context.py which loads notification messages without deleting them + NOTE: default django auth processor must be removed! +* added ajax actions questionSubscribeUpdates/questionUnsubscribeUpdates + +==Aug 4 2009, Evgeny== +===Changes=== +* commented out LocaleMiddleware - language can be now switched with settings.LANGUAGE_CODE +* added DATABASE_ENGINE line to settings_local +===Merges=== +* Adolfo's slugification of urls +* Added Chaitanyas changes for traditional login/signup and INSTALL file ==July 26 2009, Evgeny== django_authopenid: considerably changed user interface +[comment] - sorry - this is not done yet log/forum/forms.py: -- added tag input validation using regex -- fixed bug with date type mismatch near self.fields['birthday'] = +* added tag input validation using regex +* fixed bug with date type mismatch near self.fields['birthday'] = in EditUserForm.__init__() /forum/templatetags/extra_tags.py: -- fixed date type mismatch in get_age() +* fixed date type mismatch in get_age() /templates/content/js/com.cnprog.post.js: -- fixed bug with post deletion/recovery +* fixed bug with post deletion/recovery javascript: -- changed to use of non-minified code - better for editing +* changed to use of non-minified code - better for editing and debugging /templates/question.html: -- fixed display of delete/undelete links +* fixed display of delete/undelete links templates: added comments in the beginning/end of each template |