Skip to content

Commit

Permalink
Merge commit '32239cb5ff18e9e29ed5d2a6ffb5d230c61d8db2'
Browse files Browse the repository at this point in the history
  • Loading branch information
ojii committed Jun 29, 2012
2 parents b9bbddb + 32239cb commit f143207
Show file tree
Hide file tree
Showing 96 changed files with 11,474 additions and 3,200 deletions.
17 changes: 16 additions & 1 deletion AUTHORS
Expand Up @@ -26,6 +26,8 @@ Contributors (in alphabetical order):
* Alberto Paro
* Alessandro Ronchi
* Aleš Kocjančič
* Alexandre Leray
* Alexey Subbotin
* Alvin Mites
* Andrew Cassidy
* Andrew Schoen
Expand All @@ -42,7 +44,9 @@ Contributors (in alphabetical order):
* beshrkayali
* Bob Karreman
* Bouke Haarsma
* Braden MacDonald
* brightwhitefox
* Calvin Cheng
* Chanita Siridechkun
* Charpentier Johan
* Cheng-Chia Tseng
Expand All @@ -51,7 +55,6 @@ Contributors (in alphabetical order):
* Chris Wesseling
* Christof Hagedorn
* Conrado Bührer
* Daniele Procida
* DaNmarner
* Darryl Woods
* David Jean Louis
Expand All @@ -63,15 +66,22 @@ Contributors (in alphabetical order):
* Egor V. Nazarkin
* Ekrem Seren
* Erik Allik
* Eugen MechanisM
* Evandro Miquelito
* F. Gabriel Gosselin
* f4nt
* fcurella
* Filip Kazimierczak
* Frank Bieniek
* Gabe Jackson
* Gabriel Hurley
* GaretJax
* Geoffrey Hing
* George Marshall
* Gerard Świderski
* guandalino
* hedberg
* Herbert Poul
* homebrew79
* hysia
* Iacopo Spalletti
Expand Down Expand Up @@ -133,6 +143,7 @@ Contributors (in alphabetical order):
* mrlundis
* MW
* neoprolog
* Nickolay V. Shmyrev
* Orne Brocaar
* padelt
* Paolo
Expand All @@ -153,7 +164,9 @@ Contributors (in alphabetical order):
* Rebecca Breu
* Remco Wendt
* Restless Being
* Robert Clark
* Robert Pogorzelski
* Robin Lewis
* Rodolfo Carvalho
* rtpm
* Samuel Lüscher
Expand All @@ -173,11 +186,13 @@ Contributors (in alphabetical order):
* ssteinerX
* Stavros Korokithakis
* Stephan Jaekel
* Stephen Muss
* Steve R. Jones
* Steve Steiner
* Tanel Külaots
* Thomas Parslow
* timesong
* Tim Davies
* Tino de Bruijn
* tiret
* Ulrich Petri
Expand Down
2 changes: 1 addition & 1 deletion cms/__init__.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
__version__ = '2.3rc2'
__version__ = '2.3'

# patch settings
try:
Expand Down
5 changes: 3 additions & 2 deletions cms/appresolver.py
Expand Up @@ -76,8 +76,9 @@ def recurse_patterns(path, pattern_list, page_id):
newpatterns = []
for pattern in pattern_list:
app_pat = pattern.regex.pattern
if app_pat.startswith('^'):
app_pat = app_pat[1:]
# make sure we don't get patterns that start with more than one '^'!
app_pat = app_pat.lstrip('^')
path = path.lstrip('^')
regex = r'^%s%s' % (path, app_pat)
if isinstance(pattern, RegexURLResolver):
# this is an 'include', recurse!
Expand Down
3 changes: 3 additions & 0 deletions cms/conf/__init__.py
Expand Up @@ -18,6 +18,9 @@ def patch_settings():
if getattr(settings, 'CMS_FLAT_URLS', False):
warnings.warn("CMS_FLAT_URLS are deprecated and will be removed in django CMS 2.4!", DeprecationWarning)

if getattr(settings, 'CMS_MODERATOR', False):
warnings.warn("CMS_MODERATOR will be removed and replaced in django CMS 2.4!", DeprecationWarning)

from cms.conf import global_settings
# patch settings

Expand Down
Binary file modified cms/locale/bg/LC_MESSAGES/django.mo
Binary file not shown.

0 comments on commit f143207

Please sign in to comment.