On 3/7/07, Sam <[EMAIL PROTECTED]> wrote: > > I have translated Cal Henderson's lib_filter.php to python. > > If you need to filter your users HTML input, you might like it. > > http://amisphere.com/contrib/python-html-filter/ >
Looks good, I'll have to play with it later. One quick thing though: You're using re.compile all over the place, and that's fine, it's good to precompile the regexs. Problem is, you're recompiling the regex everytime each method is called. For example, in 'escape_comments', you do a re.compile. It would be *much* better to do that compile in the __init__, and store it to a variable, so you only ever have to do it once. Jay P. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---