2011-04-06 13:01:21 +02:00
|
|
|
gacode = """
|
2011-02-10 14:32:19 +01:00
|
|
|
<script type="text/javascript">
|
|
|
|
var _gaq = _gaq || [];
|
|
|
|
_gaq.push(['_setAccount', '%s']);
|
2011-04-06 13:01:21 +02:00
|
|
|
_gaq.push(['_setDomainName', '%s']);
|
2011-04-06 13:08:51 +02:00
|
|
|
_gaq.push(['_trackPageview']);
|
2011-02-10 14:32:19 +01:00
|
|
|
(function() {
|
|
|
|
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
|
|
|
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
|
|
|
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
|
|
|
})();
|
|
|
|
</script>
|
|
|
|
"""
|