remove url validation

This commit is contained in:
Martijn Voncken 2008-07-20 19:11:02 +00:00
parent 13f67b609b
commit 8d5aa9c6e0
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ class BlockListCfgForm(forms.Form):
#input fields : #input fields :
listtype = forms.ChoiceField(FORMAT_LIST) listtype = forms.ChoiceField(FORMAT_LIST)
url = forms.URLField(label=_("Url")) url = forms.CharField(label=_("Url"))
check_after_days = forms.IntegerField(label=_("Check for every (days)"), min_value=-1, max_value=14) check_after_days = forms.IntegerField(label=_("Check for every (days)"), min_value=-1, max_value=14)
timeout = forms.IntegerField(label=_("Timeout (seconds)"), min_value=15, max_value=360) timeout = forms.IntegerField(label=_("Timeout (seconds)"), min_value=15, max_value=360)
try_times = forms.IntegerField(label=_("Times to attempt download"), min_value=1, max_value=5) try_times = forms.IntegerField(label=_("Times to attempt download"), min_value=1, max_value=5)