Edward Ned Harvey wrote: >Hey, I'm not sure exactly what and how the escape sequences are getting >processed when generating an archived article out of article.html. > > > >I want to have something like this as the end result: > > Reply To: <B>%(author_html)s</B><A >HREF="mailto:%(email_url)s?Subject=RE: %(subject_url)s... > >The key is the Colon-Space after "RE" . > >Normally I would escape that %58%20 but the system is trying to process my >%58% or something like that. What would be the proper way to escape the >Colon-Space in there?
The '%' character is the leadin for interpolation in templates. Thus if you want a literal % in a template, you have to double it - %%58%%20. -- Mark Sapiro <[EMAIL PROTECTED]> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan ------------------------------------------------------ Mailman-Users mailing list [email protected] http://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://wiki.list.org/x/AgA3 Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/ Unsubscribe: http://mail.python.org/mailman/options/mailman-users/archive%40jab.org Security Policy: http://wiki.list.org/x/QIA9
