#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)
by , 16 years ago
Attachment: | idn_support.diff added |
---|
comment:1 by , 16 years ago
Triage Stage: | Unreviewed → Design decision needed |
---|
comment:2 by , 16 years ago
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 by , 15 years ago
milestone: | → 1.2 |
---|---|
Owner: | changed from | to
Status: | new → assigned |
Triage Stage: | Design decision needed → Accepted |
comment:4 by , 15 years ago
Needs documentation: | set |
---|
comment:5 by , 15 years ago
What documentation is needed here? Just the fact that IDN is supported as of Django version 1.2?
by , 15 years ago
Attachment: | idn_support_02.diff added |
---|
Updated IDN patch to trunk (r12454); Added docs
comment:7 by , 15 years ago
Needs documentation: | unset |
---|
I've updated the patch for current trunk (r12454) and added a short note on the EmailFiled/URLField documentation.
comment:8 by , 15 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
follow-up: 11 comment:10 by , 15 years ago
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 by , 15 years ago
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