Author: jtauber
Date: Fri Sep 19 18:38:41 2008
New Revision: 901
Modified:
trunk/local_apps/profiles/models.py
Log:
don't verify profile URLs -- the timeout is too long so if the URL is
broken, form submission fails
Modified: trunk/local_apps/profiles/models.py
==============================================================================
--- trunk/local_apps/profiles/models.py (original)
+++ trunk/local_apps/profiles/models.py Fri Sep 19 18:38:41 2008
@@ -12,8 +12,8 @@
name = models.CharField(_('name'), max_length=50, null=True,
blank=True)
about = models.TextField(_('about'), null=True, blank=True)
location = models.CharField(_('location'), max_length=40, null=True,
blank=True)
- website = models.URLField(_('website'), null=True, blank=True)
- blogrss = models.URLField(_('blog rss/atom'), null=True, blank=True)
+ website = models.URLField(_('website'), null=True, blank=True,
verify_exists=False)
+ blogrss = models.URLField(_('blog rss/atom'), null=True, blank=True,
verify_exists=False)
timezone = TimeZoneField(_('timezone'))
twitter_user = models.CharField(_('Twitter Username'), max_length=50,
blank=True)
twitter_password = models.CharField(_('Twitter Password'),
max_length=50, blank=True)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"pinax-updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/pinax-updates?hl=en
-~----------~----~----~----~------~----~------~--~---