Adding Google Analytics to Mailman templates

I want to add Google Analytics to Mailman templates to track visits. When I try to save /General Informations Page/ template with the code from Analytics it changes the code.
I paste this in:
* <script src="http://www.google-analytics.com/urchin.js"
type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-000000-0";
urchinTracker();
</script>
It saves this:
* <script src="http://www.google-analytics.com/urchin.js"
type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-000000-0";
urchinTracker();
</script>
Why does it do this? I'm looking for an answer on the internet but I didn't find any about code savings in templates.
Thank you in advance.
Francesco

Odieresis [Gmail] wrote:
We do not allow adding <script> and other potentially evil html via the web interface in order to prevent potential cross site scripting (XSS) attacks.
If you want to put such HTML in a template, you have to create an edited template directly on the server via shell, ftp, etc. See <http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq04.048.htp>.
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan

Odieresis [Gmail] wrote:
We do not allow adding <script> and other potentially evil html via the web interface in order to prevent potential cross site scripting (XSS) attacks.
If you want to put such HTML in a template, you have to create an edited template directly on the server via shell, ftp, etc. See <http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq04.048.htp>.
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan
participants (2)
-
Mark Sapiro
-
Odieresis [Gmail]