summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* recompiled localesEvgeny Fadeev2012-03-1412-5005/+2845
|
* bumped the ReplyAddress migration number to 112Evgeny Fadeev2012-03-121-0/+0
|
* added Vasil Vangelovski to the list of contributorsEvgeny Fadeev2012-03-122-0/+2
|
* Merge branch 'vasil'Evgeny Fadeev2012-03-1211-7/+707
|\
| * Forward rules for reply by emailVasil Vangelovski2012-01-312-4/+35
| |
| * Changed word counting methodVasil Vangelovski2012-01-301-1/+1
| |
| * Smarter message in instant notification when reply by email is enabledVasil Vangelovski2012-01-302-7/+20
| |
| * Adapted reply by email feature to work with django lamsonVasil Vangelovski2012-01-254-69/+87
| |
| * Work on documentation for reply by email featureVasil Vangelovski2012-01-251-5/+2
| |
| * Work on documentation for reply by email featureVasil Vangelovski2012-01-251-0/+43
| |
| * Fixed posting replies to comments by emailVasil Vangelovski2012-01-192-1/+4
| |
| * Separating quoted text in reply by email featureVasil Vangelovski2012-01-182-2/+34
| |
| * Reply by email basic use case working with some edge-case handling missingVasil Vangelovski2012-01-183-9/+39
| |
| * Added basic handler for processing replies by emailVasil Vangelovski2012-01-172-3/+67
| |
| * Posting reply by email - saving postVasil Vangelovski2012-01-175-4/+84
| |
| * Added model for tracking generated addresses for reply by email featureVasil Vangelovski2012-01-155-0/+352
| |
| * Defined live settings options for the reply by email featureVasil Vangelovski2012-01-151-0/+10
| |
| * Defined live settings options for the reply by email featureVasil Vangelovski2012-01-151-0/+27
| |
* | added a css fix for spanish language for the search barEvgeny Fadeev2012-03-121-0/+24
| |
* | added drop function statements to new fts setup for postgres, hopefully it ↵Evgeny Fadeev2012-03-121-0/+2
| | | | | | | | works for postgres 9
* | rebuilt four locales againEvgeny Fadeev2012-03-115-1782/+1856
| |
* | Merge branch 'github-master'Evgeny Fadeev2012-03-1119-188/+282
|\ \
| * \ minor commitEvgeny Fadeev2012-03-110-0/+0
| |\ \
| | * | replaced the unnecessary hack for dealing with deleted badges with the code ↵Evgeny Fadeev2012-03-113-25/+5
| | | | | | | | | | | | | | | | that automatically updates the badge data at startup
| * | | replaced the unnecessary hack for dealing with deleted badges with the code ↵Evgeny Fadeev2012-03-113-30/+6
| |/ / | | | | | | | | | that automatically updates the badge data at startup
| * | fixed a bug where page for a no longer used badge causes an internal server ↵Evgeny Fadeev2012-03-112-9/+41
| | | | | | | | | | | | error
| * | fixed a problem of badges that are assigned to deleted contentEvgeny Fadeev2012-03-112-5/+13
| | |
| * | added record of Daniel Micans contribution to the changelogEvgeny Fadeev2012-03-111-0/+1
| | |
| * | 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
| |\| | | | |
| * | | | | | 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
| | | | | | |
* | | | | | | update ru,es,hi and ja localesEvgeny Fadeev2012-03-1122-13666/+16694
| |/ / / / / |/| | | | |
* | | | | | 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
|/ / / / /
* | | | | Merge branch 'github-master'Evgeny Fadeev2012-03-061-1/+0
|\ \ \ \ \