[REM] Remove unused files.

bzr revid: vta@openerp.com-20121108122343-7lfzcntwugdc1qxw
This commit is contained in:
vta vta@openerp.com 2012-11-08 13:23:43 +01:00
parent 9e758119b1
commit f6885da5af
2 changed files with 0 additions and 37 deletions

View File

@ -1,3 +0,0 @@
import main
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -1,34 +0,0 @@
import json
import textwrap
import simplejson
import werkzeug.wrappers
import web.common.http as openerpweb
import web.controllers.main
class web_analytics(openerpweb.Controller):
# This controllers redirects virtual urls of the form /web_analytics/MODEL/VIEW
# as provided to google by the analytics modules to a real url that openerp can
# understand of the form /#model=MODEL&view_type=VIEW
# So that the user can click openerp urls inside google analytics.
_cp_path = "/web_analytics"
@openerpweb.httprequest
def redirect(self, req):
url = req.httprequest.base_url
suburl = url.split('/')
suburl = suburl[suburl.index('redirect')+1:]
rurl = "/#"
if len(suburl) >=1 and suburl[0]:
rurl += "model="+str(suburl[0])
if len(suburl) >=2 and suburl[1]:
rurl += "&view_type="+str(suburl[1])
redirect = werkzeug.utils.redirect(rurl, 303)
return redirect