summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'dan'Evgeny Fadeev2012-03-111-21/+31
|\
| * Add test of middleware order on startup. Feature #143.dmican2012-01-251-21/+31
| |
* | merged the LDAP login contribution by user monkutEvgeny Fadeev2012-03-118-136/+201
|\ \
| * \ Merge remote-tracking branch 'askbot/master'unknown2012-01-3141-1071/+4742
| |\ \
| * | | Removed the "humanization" of "0". No good way to translate across ↵unknown2012-01-261-3/+1
| | | | | | | | | | | | | | | | languages. Only perfoming "humanization" on numbers > 1000.
| * | | Commented out PROXYDN_* configuration values since they are not be used at ↵unknown2012-01-251-17/+19
| | | | | | | | | | | | | | | | the moment.
| * | | removing, this command does not appear to be necessary. When using LDAP, ↵unknown2012-01-251-68/+0
| | | | | | | | | | | | | | | | it's assumed that askbot is being run in a private network. No need for other auth methods. Ldap login configuration is set by turning off other login methods and turning on ldap in settings/EXTERNAL_KEYS.
| * | | added ldap_authentication() function into backends.py. Reads in newly added ↵unknown2012-01-252-35/+103
| | | | | | | | | | | | | | | | Ldap configuration EXTERNAL_KEYS.
| * | | Added LDAP related configuration items to EXTERNAL_KEYS for proper ldap ↵unknown2012-01-251-7/+59
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | configuration: settings.register( livesettings.StringValue( EXTERNAL_KEYS, 'LDAP_BASEDN', description=_('LDAP BASE DN') ) ) settings.register( livesettings.StringValue( EXTERNAL_KEYS, 'LDAP_SEARCH_SCOPE', description=_('LDAP Search Scope'), default="subs" ) ) settings.register( livesettings.StringValue( EXTERNAL_KEYS, 'LDAP_USERID_FIELD', description=_('LDAP Server USERID field name'), default="uid" ) ) settings.register( livesettings.StringValue( EXTERNAL_KEYS, 'LDAP_COMMONNAME_FIELD', description=_('LDAP Server "Common Name" field name'), default="cn" ) ) settings.register( livesettings.StringValue( EXTERNAL_KEYS, 'LDAP_EMAIL_FIELD', description=_('LDAP Server EMAIL field name'), default="mail" ) ) settings.register( livesettings.StringValue( EXTERNAL_KEYS, 'LDAP_PROXYDN', description=_('LDAP PROXY DN'), default="" ) ) settings.register( livesettings.StringValue( EXTERNAL_KEYS, 'LDAP_PROXYDN_PASSWORD', description=_('LDAP PROXY DN Password'), defalut="", ) )
* | | Merge branch 'piskvorky'Evgeny Fadeev2012-03-101-2/+2
|\ \ \
| * | | fixed compatibility issue with new html5lib releaseRadim Řehůřek2012-03-071-2/+2
| | | |
* | | | Merge pull request #56 from MITx/masterEvgeny Fadeev2012-03-101-2/+6
|\ \ \ \ | | | | | | | | | | Keep startup from breaking on tuples in django_settings.STATICFILES_DIRS
| * | | | Adjust startup check to handle tuples in STATICFILES_DIRS.David Ormsbee2012-02-151-2/+6
| | | | |
* | | | | Merge pull request #58 from piskvorky/patch-4Evgeny Fadeev2012-03-101-10/+9
|\ \ \ \ \ | | | | | | | | | | | | fix span errors in user_edit template
| * | | | | fix span errors in user_edit templateRadim Řehůřek2012-03-071-10/+9
| | |/ / / | |/| | |
* | | | | Merge branch 'github-master'Evgeny Fadeev2012-03-103-2/+10
|\| | | |
| * | | | added cache invalidation on answer post, question retag and close/reopenEvgeny Fadeev2012-03-072-0/+3
| | | | |
| * | | | delete activity with the stale content_type of the related content objectEvgeny Fadeev2012-03-061-2/+7
| | | | |
* | | | | removed the statement making the default site url being askbot.org - makes ↵Evgeny Fadeev2012-03-102-2/+1
| | | | | | | | | | | | | | | | | | | | no sense, still need to add either an auto-test or auto-fix of the url in the settings
* | | | | added author_name as key to cache for the question sort buttonsEvgeny Fadeev2012-03-101-1/+1
|/ / / /
* | | | Merge branch 'github-master'Evgeny Fadeev2012-03-061-1/+0
|\ \ \ \
| * | | | removed the return statement in the postgres full text search setupEvgeny Fadeev2012-03-061-1/+0
| | | | |
* | | | | added management command delete_contextless_activitiesEvgeny Fadeev2012-03-063-0/+23
|/ / / /
* | | | fixed the disappearing form field values when tags are invalid, also removed ↵Evgeny Fadeev2012-03-052-6/+19
| | | | | | | | | | | | | | | | the silly use-these-chars-in-tags phrase
* | | | fixed the answer count in the question pageEvgeny Fadeev2012-03-052-1/+2
| | | |
* | | | fixed some issues in the user registration formEvgeny Fadeev2012-03-051-46/+4
| | | |
* | | | merged the caching the answer page branchEvgeny Fadeev2012-03-0530-248/+570
|\ \ \ \
| * | | | cache invalidation on the question page seems to workEvgeny Fadeev2012-03-0513-81/+95
| | | | |
| * | | | added a section about moderation to the manualEvgeny Fadeev2012-03-042-0/+31
| | | | |
| * | | | 9 queries left on the question page logged in with warm cache vs 1 for ↵Evgeny Fadeev2012-03-049-45/+142
| | | | | | | | | | | | | | | | | | | | logged out
| * | | | about halfed the queries on the question page on warm cache, cut CPU time ↵Evgeny Fadeev2012-02-2912-89/+209
| | | | | | | | | | | | | | | | | | | | somewhat too
| * | | | refactored the templates for the question page to make them more easily ↵Evgeny Fadeev2012-02-2711-66/+126
| | | | | | | | | | | | | | | | | | | | cacheable, but no gain on the queries yet
* | | | | disabled the answer list caching because there is no invalidation yetEvgeny Fadeev2012-03-032-4/+5
| | | | |
* | | | | fixed sorting of questions by dateEvgeny Fadeev2012-03-023-2/+557
| | | | |
* | | | | fixed sorting by votes on the main pageEvgeny Fadeev2012-03-024-2/+563
|/ / / /
* | | | cached answer list query which saves about 15% on the question page generationEvgeny Fadeev2012-02-273-30/+32
| | | |
* | | | Merge branch 'github-master'Evgeny Fadeev2012-02-265-519/+515
|\ \ \ \
| * | | | english django.po file compilesEvgeny Fadeev2012-02-265-519/+515
| | | | |
* | | | | shaved a couple of queries from the question viewEvgeny Fadeev2012-02-264-22/+31
|/ / / /
* | | | made "bare" english django.po fileEvgeny Fadeev2012-02-2540-537/+537
| | | |
* | | | fixed formal correctness of the Turkish django.po fileEvgeny Fadeev2012-02-221-24/+12
| | | |
* | | | merged translations from the repository with those in the document ↵Evgeny Fadeev2012-02-2274-3621/+30165
| | | | | | | | | | | | | | | | foundation pootle system
* | | | Merge branch 'github-master'Evgeny Fadeev2012-02-2211-3620/+2907
|\ \ \ \
| * | | | rebuilt russian localeEvgeny Fadeev2012-02-222-2841/+2185
| | | | |
| * | | | Merge branch 'github-master'Evgeny Fadeev2012-02-2121-119/+298
| |\ \ \ \
| * | | | | rebuilt english locale and fixed fuzzy translationsEvgeny Fadeev2012-02-219-779/+722
| | | | | |
* | | | | | Merge branch 'jbofill'Evgeny Fadeev2012-02-222-33/+33
|\ \ \ \ \ \ | |_|/ / / / |/| | | | |
| * | | | | avoid line jump in menu headingJordi Bofill2012-02-071-1/+1
| | | | | |
| * | | | | more ca trans...Jordi Bofill2012-02-071-32/+32
| | | | | |
* | | | | | added hints about alternative less compilers to the documentation and ↵Evgeny Fadeev2012-02-213-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | html5lib version to the pip requirements files