Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Richard
erp5
Commits
f8436527
Commit
f8436527
authored
Dec 14, 2011
by
Yusei Tahara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Convert fullwidth number to halfwidth ascii number.
parent
3b81f190
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
product/Formulator/Validator.py
product/Formulator/Validator.py
+12
-0
No files found.
product/Formulator/Validator.py
View file @
f8436527
...
@@ -8,6 +8,7 @@ from urllib import urlopen
...
@@ -8,6 +8,7 @@ from urllib import urlopen
from
urlparse
import
urljoin
from
urlparse
import
urljoin
from
Errors
import
ValidationError
from
Errors
import
ValidationError
from
DateTime.DateTime
import
DateError
,
TimeError
from
DateTime.DateTime
import
DateError
,
TimeError
import
unicodedata
class
ValidatorBase
:
class
ValidatorBase
:
"""Even more minimalistic base class for validators.
"""Even more minimalistic base class for validators.
...
@@ -268,6 +269,12 @@ class IntegerValidator(StringBaseValidator):
...
@@ -268,6 +269,12 @@ class IntegerValidator(StringBaseValidator):
# we need to add this check again
# we need to add this check again
if
value
==
""
and
not
field
.
get_value
(
'required'
):
if
value
==
""
and
not
field
.
get_value
(
'required'
):
return
value
return
value
try
:
value
=
unicodedata
.
normalize
(
'NFKD'
,
value
.
decode
(
'UTF8'
)).
encode
(
'ASCII'
,
'ignore'
)
except
UnicodeDecodeError
:
pass
try
:
try
:
if
value
.
find
(
' '
)
>
0
:
if
value
.
find
(
' '
)
>
0
:
value
=
value
.
replace
(
' '
,
''
)
value
=
value
.
replace
(
' '
,
''
)
...
@@ -295,6 +302,11 @@ class FloatValidator(StringBaseValidator):
...
@@ -295,6 +302,11 @@ class FloatValidator(StringBaseValidator):
if
value
==
""
and
not
field
.
get_value
(
'required'
):
if
value
==
""
and
not
field
.
get_value
(
'required'
):
return
value
return
value
try
:
value
=
unicodedata
.
normalize
(
'NFKD'
,
value
.
decode
(
'UTF8'
)).
encode
(
'ASCII'
,
'ignore'
)
except
UnicodeDecodeError
:
pass
input_style
=
field
.
get_value
(
'input_style'
)
input_style
=
field
.
get_value
(
'input_style'
)
decimal_separator
=
''
decimal_separator
=
''
decimal_point
=
'.'
decimal_point
=
'.'
...
...
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