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

Side by Side Diff: appengine/auth_service/module-backend.yaml

Issue 1481573002: Update jinja2 to master (between 2.8 and 2.8.1); fix urlencode bug. (Closed) Base URL: git@github.com:luci/luci-py.git@1_tools
Patch Set: Add import hack Created 5 years 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 | « appengine/auth_service/app.yaml ('k') | appengine/auth_service/test_replica_app/app.yaml » ('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: auth-service 1 application: auth-service
2 module: backend 2 module: backend
3 version: 1 3 version: 1
4 runtime: python27 4 runtime: python27
5 api_version: 1 5 api_version: 1
6 threadsafe: true 6 threadsafe: true
7 7
8 handlers: 8 handlers:
9 - url: /internal.* 9 - url: /internal.*
10 script: main_backend.app 10 script: main_backend.app
11 secure: always 11 secure: always
12 login: admin 12 login: admin
13 13
14 builtins: 14 builtins:
15 - remote_api: on 15 - remote_api: on
16 16
17 includes: 17 includes:
18 - components/ereporter2 18 - components/ereporter2
19 19
20 # https://developers.google.com/appengine/docs/python/tools/libraries27 20 # https://developers.google.com/appengine/docs/python/tools/libraries27
21 # As the doc says, serious applications should specify the third party versions. 21 # As the doc says, serious applications should specify the third party versions.
22 libraries: 22 libraries:
23 - name: endpoints 23 - name: endpoints
24 version: "1.0" 24 version: "1.0"
25 - name: jinja2
26 version: "2.6"
27 - name: webapp2 25 - name: webapp2
28 version: "2.5.2" 26 version: "2.5.2"
29 - name: webob 27 - name: webob
30 version: "1.2.3" 28 version: "1.2.3"
31 - name: yaml 29 - name: yaml
32 version: "3.10" 30 version: "3.10"
33 31
34 skip_files: 32 skip_files:
35 # Test and tools. 33 # Test and tools.
36 - support/ 34 - support/
37 - ^tests/ 35 - ^tests/
38 - ^tools/ 36 - ^tools/
39 - test_.+ 37 - test_.+
40 - .+_test\.py$ 38 - .+_test\.py$
41 # Junk files. 39 # Junk files.
42 - ^(.*/)?\..* 40 - ^(.*/)?\..*
43 - .+\.orig$ 41 - .+\.orig$
44 - .+\.rej$ 42 - .+\.rej$
45 - ^(.*/)?#.*# 43 - ^(.*/)?#.*#
46 - .+~ 44 - .+~
47 - .+\.py[co] 45 - .+\.py[co]
48 - ^[A-Z]+$ 46 - ^[A-Z]+$
49 - ^[A-Z]+\.[a-z]+$ 47 - ^[A-Z]+\.[a-z]+$
OLDNEW
« no previous file with comments | « appengine/auth_service/app.yaml ('k') | appengine/auth_service/test_replica_app/app.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698