From cef3e0c679e9dbf10bb8e98767cd5e2dbecdf492 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Mon, 12 Nov 2007 20:55:38 +0000 Subject: [PATCH] Checking in inclusion of google analytics js file. --- view/Page.py | 1 + 1 file changed, 1 insertion(+) diff --git a/view/Page.py b/view/Page.py index 7fec7c3..8e89545 100644 --- a/view/Page.py +++ b/view/Page.py @@ -25,6 +25,7 @@ class Page( Html ): include_js and Script( type = u"text/javascript", src = u"/static/js/Invoker.js" ) or None, include_js and Script( type = u"text/javascript", src = u"/static/js/Editor.js" ) or None, include_js and Script( type = u"text/javascript", src = u"/static/js/Wiki.js" ) or None, + include_js and Script( type = u"text/javascript", src = u"https://ssl.google-analytics.com/urchin.js" ) or None, Meta( content = u"text/html; charset=UTF-8", http_equiv = u"content-type" ), [ child for child in children if type( child ) in head_types ], Title( title and u"%s: %s" % ( app_name, title ) or app_name ),