OLD | NEW |
1 # coding: utf-8 | 1 # coding: utf-8 |
2 | 2 |
3 # This Source Code is subject to the terms of the Mozilla Public License | 3 # This Source Code is subject to the terms of the Mozilla Public License |
4 # version 2.0 (the "License"). You can obtain a copy of the License at | 4 # version 2.0 (the "License"). You can obtain a copy of the License at |
5 # http://mozilla.org/MPL/2.0/. | 5 # http://mozilla.org/MPL/2.0/. |
6 | 6 |
7 import base64 | 7 import base64 |
8 from sitescripts.utils import get_config | 8 from sitescripts.utils import get_config |
9 | 9 |
10 handlers = {} | 10 handlers = {} |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 import subscriptions.web.fallback | 49 import subscriptions.web.fallback |
50 import crashes.web.submitCrash | 50 import crashes.web.submitCrash |
51 import reports.web.submitReport | 51 import reports.web.submitReport |
52 import reports.web.updateReport | 52 import reports.web.updateReport |
53 import reports.web.showDigest | 53 import reports.web.showDigest |
54 import extensions.web.translationCheck | 54 import extensions.web.translationCheck |
55 import tasks.web.tasks | 55 import tasks.web.tasks |
56 import formmail.web.formmail | 56 import formmail.web.formmail |
57 import crawler.web.crawler | 57 import crawler.web.crawler |
58 import urlfixer.web.submitData | 58 import urlfixer.web.submitData |
| 59 import urlfixer.web.calculateScores |
OLD | NEW |