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

Side by Side Diff: src/platform/dev/devserver.py

Issue 1967002: Adjust image_to_live's devserver flags to work around lab network port restrictions. (Closed) Base URL: ssh://git@chromiumos-git//chromeos
Patch Set: fix killall_devserver Created 10 years, 7 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
« no previous file with comments | « no previous file | src/scripts/image_to_live.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved. 1 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import autoupdate 5 import autoupdate
6 import buildutil 6 import buildutil
7 import optparse 7 import optparse
8 import os 8 import os
9 import SimpleHTTPServer
10 import sys 9 import sys
11 import web 10 import web
12 11
13 global updater 12 global updater
14 updater = None 13 updater = None
15 14
16 global buildbot 15 global buildbot
17 buildbot = None 16 buildbot = None
18 17
19 class index: 18 class index:
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 sys.exit(0) 95 sys.exit(0)
97 urls = ('/', 'index', 96 urls = ('/', 'index',
98 '/update', 'update', 97 '/update', 'update',
99 '/update/(.+)', 'update', 98 '/update/(.+)', 'update',
100 '/webbuild', 'webbuild', 99 '/webbuild', 'webbuild',
101 '/build', 'build') 100 '/build', 'build')
102 101
103 app = web.application(urls, globals(), autoreload=True) 102 app = web.application(urls, globals(), autoreload=True)
104 render = web.template.render('templates/') 103 render = web.template.render('templates/')
105 app.run() 104 app.run()
OLDNEW
« no previous file with comments | « no previous file | src/scripts/image_to_live.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698