| OLD | NEW |
| 1 # Copyright (c) 2010, Google Inc. All rights reserved. | 1 # Copyright (c) 2010, Google Inc. All rights reserved. |
| 2 # | 2 # |
| 3 # Redistribution and use in source and binary forms, with or without | 3 # Redistribution and use in source and binary forms, with or without |
| 4 # modification, are permitted provided that the following conditions are | 4 # modification, are permitted provided that the following conditions are |
| 5 # met: | 5 # met: |
| 6 # | 6 # |
| 7 # * Redistributions of source code must retain the above copyright | 7 # * Redistributions of source code must retain the above copyright |
| 8 # notice, this list of conditions and the following disclaimer. | 8 # notice, this list of conditions and the following disclaimer. |
| 9 # * Redistributions in binary form must reproduce the above | 9 # * Redistributions in binary form must reproduce the above |
| 10 # copyright notice, this list of conditions and the following disclaimer | 10 # copyright notice, this list of conditions and the following disclaimer |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 | 34 |
| 35 | 35 |
| 36 def chromium_results_url_base(): | 36 def chromium_results_url_base(): |
| 37 return 'https://storage.googleapis.com/chromium-layout-test-archives' | 37 return 'https://storage.googleapis.com/chromium-layout-test-archives' |
| 38 | 38 |
| 39 | 39 |
| 40 def chromium_results_url_base_for_builder(builder_name): | 40 def chromium_results_url_base_for_builder(builder_name): |
| 41 return '%s/%s' % (chromium_results_url_base(), re.sub('[ .()]', '_', builder
_name)) | 41 return '%s/%s' % (chromium_results_url_base(), re.sub('[ .()]', '_', builder
_name)) |
| 42 | 42 |
| 43 | 43 |
| 44 def chromium_results_zip_url(builder_name): | |
| 45 return chromium_results_url_base_for_builder(builder_name) + '/results/layou
t-test-results.zip' | |
| 46 | |
| 47 | |
| 48 def chromium_accumulated_results_url_base_for_builder(builder_name): | 44 def chromium_accumulated_results_url_base_for_builder(builder_name): |
| 49 return chromium_results_url_base_for_builder(builder_name) + "/results/layou
t-test-results" | 45 return chromium_results_url_base_for_builder(builder_name) + "/results/layou
t-test-results" |
| 50 | |
| 51 | |
| 52 def chromium_buildbot_url(master_name): | |
| 53 return "http://build.chromium.org/p/%s" % master_name | |
| 54 | |
| 55 | |
| 56 chromium_lkgr_url = "http://chromium-status.appspot.com/lkgr" | |
| 57 contribution_guidelines = "http://webkit.org/coding/contributing.html" | |
| 58 chromium_webkit_sheriff_url = "http://build.chromium.org/p/chromium.webkit/sheri
ff_webkit.js" | |
| 59 omahaproxy_url = "http://omahaproxy.appspot.com/" | |
| OLD | NEW |