Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(174)

Side by Side Diff: app.yaml

Issue 12045029: Add CQ Top Score dashboard. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/chromium-status
Patch Set: Add "Top scores" link to all CQ pags Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | commit_queue.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 application: chromium-status-hr 1 application: chromium-status-hr
2 version: 1 2 version: 1
3 runtime: python27 3 runtime: python27
4 api_version: 1 4 api_version: 1
5 threadsafe: true 5 threadsafe: true
6 6
7 inbound_services: 7 inbound_services:
8 - warmup 8 - warmup
9 - xmpp_message 9 - xmpp_message
10 10
11 handlers: 11 handlers:
12 - url: /(.*\.(html|js)) 12 - url: /(.*\.(html|js|txt|ttf))
13 static_files: static/\1 13 static_files: static/\1
14 upload: static/(.*\.(html|js)) 14 upload: static/(.*\.(html|js|txt|ttf))
15 15
16 # main will look for a replacement in blobstore, if not, will redirect to 16 # main will look for a replacement in blobstore, if not, will redirect to
17 # static/ 17 # static/
18 - url: /([^/]+\.(gif|png|jpg|ico)) 18 - url: /([^/]+\.(gif|png|jpg|ico))
19 script: main.APPLICATION 19 script: main.APPLICATION
20 20
21 - url: /static/([^/]+\.(gif|png|jpg|ico)) 21 - url: /static/([^/]+\.(gif|png|jpg|ico))
22 static_files: static/\1 22 static_files: static/\1
23 upload: static/([^/]+\.(gif|png|jpg|ico)) 23 upload: static/([^/]+\.(gif|png|jpg|ico))
24 24
(...skipping 23 matching lines...) Expand all
48 (.*\.py[co])| 48 (.*\.py[co])|
49 (.*/RCS/.*)| 49 (.*/RCS/.*)|
50 (\..*)| 50 (\..*)|
51 (tests/.*)| 51 (tests/.*)|
52 (tools/.*)| 52 (tools/.*)|
53 ([A-Z]+(\.py)?)| 53 ([A-Z]+(\.py)?)|
54 (Makefile)| 54 (Makefile)|
55 (.*\.rej)| 55 (.*\.rej)|
56 (.*\.orig)| 56 (.*\.orig)|
57 )$ 57 )$
OLDNEW
« no previous file with comments | « no previous file | commit_queue.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698