﻿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
8557	intpoint filter for contrib.humanize	Nicola	nobody	"for european users would be really useful an intpoint filter in contrib.humanize,

here is the necessary code (similar to intcomma)

def intpoint(value):
    """"""
    Converts an integer to a string containing point every three digits.
    For example, 3000 becomes '3.000' and 45000 becomes '45.000'.
    """"""
    orig = force_unicode(value)
    new = re.sub(""^(-?\d+)(\d{3})"", '\g<1>.\g<2>', orig)
    if orig == new:
        return new
    else:
        return intpoint(new)
intpoint.is_safe = True
register.filter(intpoint)

hope this would be in 1.0,

thanks
drakkan
"		closed	Template system	dev		duplicate			Design decision needed	1	0	0	0	0	0
