#9764 closed (fixed)
IDN (Internationalized Domain Names) support for EmailField and URLField
Reported by: | Ulrich Petri | Owned by: | Jannis Leidel |
---|---|---|---|
Component: | Forms | Version: | 1.0 |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Accepted | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Currently EmailField and URLField don't accept values that contain IDNs.
The submitted patch adds this capability.
Attachments (2)
Change History (14)
Changed 15 years ago by
Attachment: | idn_support.diff added |
---|
comment:1 Changed 15 years ago by
Triage Stage: | Unreviewed → Design decision needed |
---|
comment:2 Changed 15 years ago by
I just had to add verify_exists = False on a URLField because users complained that they couldn't use IDN fields. This patch seem very well architected, and solves a common annoyance (for me).
+1
comment:3 Changed 14 years ago by
milestone: | → 1.2 |
---|---|
Owner: | changed from nobody to Jannis Leidel |
Status: | new → assigned |
Triage Stage: | Design decision needed → Accepted |
comment:4 Changed 14 years ago by
Needs documentation: | set |
---|
comment:5 Changed 14 years ago by
What documentation is needed here? Just the fact that IDN is supported as of Django version 1.2?
Changed 14 years ago by
Attachment: | idn_support_02.diff added |
---|
Updated IDN patch to trunk (r12454); Added docs
comment:7 Changed 14 years ago by
Needs documentation: | unset |
---|
I've updated the patch for current trunk (r12454) and added a short note on the EmailFiled/URLField documentation.
comment:8 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
comment:10 follow-up: 11 Changed 14 years ago by
Replying to bjunix:
Are there plans to backport this patch to 1.1.X ?
No. The doc contains version changed flags indicating the new behavior in 1.2, that implies it won't be added to 1.1.X.
comment:11 Changed 14 years ago by
Replying to kmtracey:
No. The doc contains version changed flags indicating the new behavior in 1.2, that implies it won't be added to 1.1.X.
Ok, I see. Thanks for your answer. Hoped this one would fall under bugfixes.
EmailField, URLField IDN support