﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
7663	"flatpages doesnt like url=""foo.html"""	Carl Karsten <carl@…>	nobody	"I needed to convert a site of static .html pages into flatpages, but couldn't because I needed the URLs to end in .html, but the dot causes isAlphaNumericURL to reject it.  I took it out, and all is well, except that I now have hacked code that I have to deal with.

http://code.djangoproject.com/browser/django/trunk/django/contrib/flatpages/models.py#L8

class FlatPage(models.Model):
 	    url = models.CharField(_('URL'), max_length=100, validator_list=[validators.isAlphaNumericURL], db_index=True,
 	        help_text=_(""Example: '/about/contact/'. Make sure to have leading and trailing slashes.""))

It might be better to tune the validation, but I am not sure it is worth the effort."		closed	Contrib apps	dev		duplicate	flatpage		Design decision needed	1	0	0	1	0	0
