OLD | NEW |
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 Loading... |
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 |
OLD | NEW |