﻿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
4657	urlizetrunc filter appending elipsis to uris of exactly the truncate length	Chris Beaven	Adrian Holovaty	"{{{
>>> from django.template.defaultfilters import urlizetrunc
>>> uri = 'http://31characteruri.com/test/'
>>> len(uri)
31
>>> urlizetrunc(uri, 31)
'<a href=""http://31characteruri.com/test/"" rel=""nofollow"">http://31characteruri.com/test/...</a>'
}}}

The attached patch addresses this. Also, if the URI ''does'' need truncating, this patch changes it so that the truncation length is - 3 to adjust for the addition of the 3 elipsis characters (see the test in the patch for a better explanation)."		closed	Template system	dev		fixed	urlize html utils		Ready for checkin	1	0	0	0	0	0
