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

Side by Side Diff: remoting/client/appengine/app.yaml

Issue 7033042: Update the appengine code to use OAuth2 and break the gdata dependency. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove the hardcoded localhost Created 9 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 | Annotate | Revision Log
« no previous file with comments | « remoting/client/appengine/api.py ('k') | remoting/client/appengine/auth.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: google.com:chromoting 1 application: google.com:chromoting
2 version: 1 2 version: 2
3 runtime: python 3 runtime: python
4 api_version: 1 4 api_version: 1
5 5
6 handlers: 6 handlers:
7 - url: /static_files 7 - url: /static_files
8 static_dir: static_files 8 static_dir: static_files
9 secure: always 9 secure: always
10 10
11 - url: /api/.* 11 - url: /api/.*
12 script: api.py 12 script: api.py
13 secure: always 13 secure: always
14 14
15 - url: /auth/.* 15 - url: /auth/.*
16 script: auth.py 16 script: auth.py
17 secure: always 17 secure: always
18 18
19 - url: .* 19 - url: .*
20 script: main.py 20 script: main.py
21 secure: always 21 secure: always
22 22
OLDNEW
« no previous file with comments | « remoting/client/appengine/api.py ('k') | remoting/client/appengine/auth.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698