Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
8813ebc8
Commit
8813ebc8
authored
Jun 05, 2006
by
Andreas Jung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Collector #2116: sequence.sort() did not work properly
locale related comparison methods
parent
3a1222ab
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
9 deletions
+26
-9
doc/CHANGES.txt
doc/CHANGES.txt
+3
-0
lib/python/DocumentTemplate/sequence/SortEx.py
lib/python/DocumentTemplate/sequence/SortEx.py
+23
-9
No files found.
doc/CHANGES.txt
View file @
8813ebc8
...
...
@@ -20,6 +20,9 @@ Zope Changes
- Updated Five to bugfix release 1.3.6.
- Collector #2116: sequence.sort() did not work properly
locale related comparison methods
Zope 2.9.3 (2006/05/13)
Bugs fixed
...
...
lib/python/DocumentTemplate/sequence/SortEx.py
View file @
8813ebc8
...
...
@@ -17,7 +17,8 @@ eg Sort(sequence, (("akey", "nocase"), ("anotherkey", "cmp", "desc")))
$Id$
"""
from
types
import
TupleType
from
App.config
import
getConfiguration
def
sort
(
sequence
,
sort
=
(),
_
=
None
,
mapping
=
0
):
"""
...
...
@@ -82,7 +83,7 @@ def sort(sequence, sort=(), _=None, mapping=0):
s
=
[]
for
client
in
sequence
:
k
=
None
if
type
(
client
)
==
TupleType
and
len
(
client
)
==
2
:
if
isinstance
(
client
,
tuple
)
and
len
(
client
)
==
2
:
if
isort
:
k
=
client
[
0
]
v
=
client
[
1
]
else
:
...
...
@@ -133,12 +134,25 @@ basic_type={type(''): 1, type(0): 1, type(0.0): 1, type(()): 1, type([]): 1,
def
nocase
(
str1
,
str2
):
return
cmp
(
str1
.
lower
(),
str2
.
lower
())
import
sys
if
sys
.
modules
.
has_key
(
"locale"
):
# only if locale is already imported
from
locale
import
strcoll
def
getStrcoll
():
if
getConfiguration
().
locale
:
from
locale
import
strcoll
return
strcoll
else
:
raise
RuntimeError
(
"strcoll() is only available for a proper 'locale' configuration in zope.conf"
)
def
getStrcoll_nocase
():
if
getConfiguration
().
locale
:
from
locale
import
strcoll
return
strcoll
def
strcoll_nocase
(
str1
,
str2
):
return
strcoll
(
str1
.
lower
(),
str2
.
lower
())
return
strcoll_nocase
def
strcoll_nocase
(
str1
,
str2
)
:
r
eturn
strcoll
(
str1
.
lower
(),
str2
.
lower
()
)
else
:
r
aise
RuntimeError
(
"strcoll() is only available for a proper 'locale' configuration in zope.conf"
)
def
make_sortfunctions
(
sortfields
,
_
):
...
...
@@ -168,9 +182,9 @@ def make_sortfunctions(sortfields, _):
elif
f_name
==
"nocase"
:
func
=
nocase
elif
f_name
in
(
"locale"
,
"strcoll"
):
func
=
strcoll
func
=
getStrcoll
()
elif
f_name
in
(
"locale_nocase"
,
"strcoll_nocase"
):
func
=
strcoll_nocase
func
=
getStrcoll_nocase
()
else
:
# no - look it up in the namespace
func
=
_
.
getitem
(
f_name
,
0
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment