app/soc/models/linkable.py
changeset 2162 03ed2fa5ccc8
parent 1970 385ce0c25bd0
--- a/app/soc/models/linkable.py	Sat Apr 11 22:58:57 2009 +0000
+++ b/app/soc/models/linkable.py	Sat Apr 11 22:59:30 2009 +0000
@@ -108,14 +108,15 @@
   "leaf" entities (such as the Document in the example above) could
   be allowed. 
   """
-  #: Required field storing "ID" used in URL links. Lower ASCII characters,
+  #: Required field storing "ID" used in URL links. ASCII characters,
   #: digits and underscores only.  Valid link IDs successfully match
   #: the LINK_ID_REGEX.
   link_id = db.StringProperty(required=True,
       verbose_name=ugettext('Link ID'))
   link_id.help_text = ugettext(
       'Link ID is used as part of various URL links throughout the site.'
-      ' Lowercase ASCII characters, digits, and underscores only.'
+      ' <a href="http://en.wikipedia.org/wiki/ASCII">ASCII</a> '
+      ' characters, digits, and underscores only.'
       ' The regexp used to validate is "%s".') % LINK_ID_PATTERN_CORE
 
   #: Optional Self Reference property to another Linkable entity which defines