Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: sitescripts/web.py

Issue 8793015: Reports - user profile (Closed)
Patch Set: Reports - user profile Created Nov. 7, 2012, 11:39 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sitescripts/utils.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # coding: utf-8 1 # coding: utf-8
2 2
3 # This file is part of the Adblock Plus web scripts, 3 # This file is part of the Adblock Plus web scripts,
4 # Copyright (C) 2006-2012 Eyeo GmbH 4 # Copyright (C) 2006-2012 Eyeo GmbH
5 # 5 #
6 # Adblock Plus is free software: you can redistribute it and/or modify 6 # Adblock Plus is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License version 3 as 7 # it under the terms of the GNU General Public License version 3 as
8 # published by the Free Software Foundation. 8 # published by the Free Software Foundation.
9 # 9 #
10 # Adblock Plus is distributed in the hope that it will be useful, 10 # Adblock Plus is distributed in the hope that it will be useful,
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 start_response("401 UNAUTHORIZED", 55 start_response("401 UNAUTHORIZED",
56 [("WWW-Authenticate", 'Basic realm="%s"' % realm)]) 56 [("WWW-Authenticate", 'Basic realm="%s"' % realm)])
57 return "" 57 return ""
58 58
59 import openid.web.server 59 import openid.web.server
60 import subscriptions.web.fallback 60 import subscriptions.web.fallback
61 import crashes.web.submitCrash 61 import crashes.web.submitCrash
62 import reports.web.submitReport 62 import reports.web.submitReport
63 import reports.web.updateReport 63 import reports.web.updateReport
64 import reports.web.showDigest 64 import reports.web.showDigest
65 import reports.web.showUser
65 import extensions.web.translationCheck 66 import extensions.web.translationCheck
66 import tasks.web.tasks 67 import tasks.web.tasks
67 import formmail.web.formmail 68 import formmail.web.formmail
68 import crawler.web.crawler 69 import crawler.web.crawler
69 import urlfixer.web.submitData 70 import urlfixer.web.submitData
OLDNEW
« no previous file with comments | « sitescripts/utils.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld