Skip to content

Commit

Permalink
Fixed Javascript syntax from [5608] that was causing a problem in Ope…
Browse files Browse the repository at this point in the history
…ra. Fixed

#4365.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@5610 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
malcolmt committed Jul 4, 2007
1 parent 953badb commit f0250b6
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions django/contrib/admin/media/js/urlify.js
Expand Up @@ -8,11 +8,10 @@ var LATIN_MAP =
'ae', 'ç': 'c', 'è': 'e', 'é': 'e', 'ê': 'e', 'ë': 'e', 'ì': 'i', 'í': 'i',
'î': 'i', 'ï': 'i', 'ð': 'o', 'ñ': 'n', 'ò': 'o', 'ó': 'o', 'ô': 'o', 'õ':
'o', 'ö': 'o', 'ø': 'o', 'ù': 'u', 'ú': 'u', 'û': 'u', 'ü': 'u', 'ý': 'y',
'þ': 'th', 'ÿ': 'y',
'þ': 'th', 'ÿ': 'y'
}
var LATIN_SYMBOLS_MAP =
{
'©':'(c)',
var LATIN_SYMBOLS_MAP = {
'©':'(c)'
}
var GREEK_MAP =
{
Expand All @@ -29,7 +28,7 @@ var GREEK_MAP =
}
var TURKISH_MAP = {
'ş':'s', 'Ş':'S', 'ı':'i', 'İ':'I', 'ç':'c', 'Ç':'C', 'ü':'u', 'Ü':'U',
'ö':'o', 'Ö':'O', 'ğ':'g', 'Ğ':'G',
'ö':'o', 'Ö':'O', 'ğ':'g', 'Ğ':'G'
}
// var RUSSIAN_MAP =
// {
Expand Down

0 comments on commit f0250b6

Please sign in to comment.