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
020c91d3
Commit
020c91d3
authored
Aug 20, 2003
by
Godefroid Chapelle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reformatted for Fred
parent
54192638
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
18 deletions
+20
-18
lib/python/TAL/TALGenerator.py
lib/python/TAL/TALGenerator.py
+20
-18
No files found.
lib/python/TAL/TALGenerator.py
View file @
020c91d3
...
...
@@ -669,8 +669,9 @@ class TALGenerator:
else:
repldict = {}
if i18nattrs:
i18nattrs = _parseI18nAttributes(i18nattrs, attrlist, repldict, self.position,
self.xml, self.source_file)
i18nattrs = _parseI18nAttributes(i18nattrs, attrlist, repldict,
self.position, self.xml,
self.source_file)
else:
i18nattrs = {}
# Convert repldict's name-->expr mapping to a
...
...
@@ -825,19 +826,20 @@ def _parseI18nAttributes(i18nattrs, attrlist, repldict, position,
attr = attr.lower()
if attr in dic:
raise TALError(
"
attribute
may
only
be
specified
once
in
i18n
:
attributes
:
%
r
"
%
attr,
"
attribute
may
only
be
specified
once
in
i18n
:
attributes
:
"
+
attr,
position)
dic[attr] = msgid
d = {}
if ';' in i18nattrs:
i18nattrlist = i18nattrs.split(';')
i18nattrlist = [attr.strip().split() for attr in i18nattrlist if attr.strip()]
i18nattrlist = [attr.strip().split()
for attr in i18nattrlist if attr.strip()]
for parts in i18nattrlist:
if len(parts) > 2:
raise TALError("
illegal
i18n
:
attributes
specification
:
%
r"
% parts,
position)
raise TALError("
illegal
i18n
:
attributes
specification
:
%
r"
% parts,
position)
if len(parts) == 2:
attr, msgid = parts
else:
...
...
@@ -849,16 +851,13 @@ def _parseI18nAttributes(i18nattrs, attrlist, repldict, position,
i18nattrlist = i18nattrs.split()
if len(i18nattrlist) == 2:
staticattrs = [attr[0] for attr in attrlist if len(attr) == 2]
if (not i18nattrlist[1] in staticattrs) and (not i18nattrlist[1] in repldict):
if (not i18nattrlist[1] in staticattrs) and (
not i18nattrlist[1] in repldict):
attr, msgid = i18nattrlist
addAttribute(d, attr, msgid, position, xml)
else:
import warnings
warnings.warn('Space separated attributes in i18n:attributes'
+ ' are deprecated (i18n:attributes="
value
title
"). Please use'
+ ' semicolon to separate attributes'
+ ' (i18n:attributes="
value
;
title
").'
+ '
\
n
File %s at row, column %s
\
n
Attributes %s'
warnings.warn(I18N_ATTRIBUTES_WARNING
% (source_file, str(position), i18nattrs)
, DeprecationWarning)
msgid = None
...
...
@@ -866,11 +865,7 @@ def _parseI18nAttributes(i18nattrs, attrlist, repldict, position,
addAttribute(d, attr, msgid, position, xml)
else:
import warnings
warnings.warn('Space separated attributes in i18n:attributes'
+ ' are deprecated (i18n:attributes="
value
title
"). Please use'
+ ' semicolon to separate attributes'
+ ' (i18n:attributes="
value
;
title
").'
+ '
\
n
File %s at row, column %s
\
n
Attributes %s'
warnings.warn(I18N_ATTRIBUTES_WARNING
% (source_file, str(position), i18nattrs)
, DeprecationWarning)
msgid = None
...
...
@@ -878,6 +873,13 @@ def _parseI18nAttributes(i18nattrs, attrlist, repldict, position,
addAttribute(d, attr, msgid, position, xml)
return d
I18N_ATTRIBUTES_WARNING = (
'Space separated attributes in i18n:attributes'
' are deprecated (i18n:attributes="
value
title
"). Please use'
' semicolon to separate attributes'
' (i18n:attributes="
value
;
title
").'
'
\
n
File %s at row, column %s
\
n
Attributes %s')
def test():
t = TALGenerator()
t.pushProgram()
...
...
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