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

Unified Diff: sky/tools/sky_server

Issue 692163002: Fix urls under /sky to work again (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | sky/tools/skydb » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/tools/sky_server
diff --git a/sky/tools/sky_server b/sky/tools/sky_server
index bd40138855effbc00a1b9b2a17965075cc6803fb..d00cecff58011eb7771778a83dc6c38a72fc1f29 100755
--- a/sky/tools/sky_server
+++ b/sky/tools/sky_server
@@ -65,18 +65,17 @@ def main():
'tools.staticdir.dir': os.path.abspath(args.app_path),
'tools.staticdir.indexlister': skydir,
},
- '/mojo': {
+ '/mojo/public': {
'tools.staticdir.on': True,
- 'tools.staticdir.dir': os.path.join(GEN_ROOT, 'mojo'),
+ 'tools.staticdir.dir': os.path.join(GEN_ROOT, 'mojo', 'public'),
},
- '/sky': {
+ '/mojo/public': {
abarth-chromium 2014/10/31 18:43:39 /mojo/services
'tools.staticdir.on': True,
- 'tools.staticdir.dir': os.path.join(GEN_ROOT, 'sky'),
+ 'tools.staticdir.dir': os.path.join(GEN_ROOT, 'mojo', 'services'),
},
- '/sky/framework': {
+ '/sky/services': {
'tools.staticdir.on': True,
- 'tools.staticdir.dir':
- os.path.join(SKY_ROOT, 'framework'),
+ 'tools.staticdir.dir': os.path.join(GEN_ROOT, 'sky', 'services'),
},
}
cherrypy.quickstart(config=config)
« no previous file with comments | « no previous file | sky/tools/skydb » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698