Has anyone written an appointment-scheduling calendar template yet?

2006-09-28 Thread carlwenrich
If so, is the source available for download? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from thi

Re: escaping a wider range of characters

2006-09-28 Thread James Bennett
On 9/28/06, Filipe <[EMAIL PROTECTED]> wrote: > Wouldn't it be nice if it replaced a wider range of characters? not > sure how useful it would be, but i think some unusual characters may > not be displayed correctly if not escaped. The five characters that 'escape' transforms correspond to the fi

escaping a wider range of characters

2006-09-28 Thread Filipe
Hi, The filter docs say for the "escape" filter: Escapes a string's HTML. Specifically, it makes these replacements: * "&" to "&" * < to "<" * > to ">" * '"' (double quote) to '"' * "'" (single quote) to ''' Wouldn't it be nice if it replaced a wider ran