Opened 19 years ago

Closed 19 years ago

Last modified 18 years ago

#642 closed enhancement (fixed)

[patch] Docs: EmailField clarification

Reported by: Boffbowsh Owned by: Jacob
Component: Documentation Version:
Severity: normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Index: /usr/local/django_src/docs/model-api.txt
===================================================================
--- /usr/local/django_src/docs/model-api.txt (revision 897)
+++ /usr/local/django_src/docs/model-api.txt (working copy)
@@ -238,6 +238,7 @@

EmailField

A CharField that checks that the value is a valid e-mail address.
Currently, this is a loose test.

+ Does not accept maxlength.

FileField

A file-upload field.

Change History (2)

comment:1 by Boffbowsh, 19 years ago

How about i put it in a useful format this time...

Index: /usr/local/django_src/docs/model-api.txt
===================================================================
--- /usr/local/django_src/docs/model-api.txt    (revision 897)
+++ /usr/local/django_src/docs/model-api.txt    (working copy)
@@ -238,6 +238,7 @@
 ``EmailField``
     A ``CharField`` that checks that the value is a valid e-mail address.
     Currently, this is a loose test.
+    Does not accept maxlength.
 
 ``FileField``
     A file-upload field.

comment:2 by Adrian Holovaty, 19 years ago

Resolution: fixed
Status: newclosed

(In [967]) Fixed #642 -- Added small improvement to EmailField docs. Thanks, Boffbowsh

Note: See TracTickets for help on using tickets.
Back to Top