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

Side by Side Diff: appengine/auth_service/app.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 | « no previous file | appengine/auth_service/module-backend.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: default 2 module: default
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: /_ah/spi/.* 9 - url: /_ah/spi/.*
10 script: main_frontend.endpoints_app 10 script: main_frontend.endpoints_app
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 44
45 inbound_services: 45 inbound_services:
46 - mail 46 - mail
47 - warmup 47 - warmup
48 48
49 # https://developers.google.com/appengine/docs/python/tools/libraries27 49 # https://developers.google.com/appengine/docs/python/tools/libraries27
50 # As the doc says, serious applications should specify the third party versions. 50 # As the doc says, serious applications should specify the third party versions.
51 libraries: 51 libraries:
52 - name: endpoints 52 - name: endpoints
53 version: "1.0" 53 version: "1.0"
54 - name: jinja2
55 version: "2.6"
56 - name: pycrypto 54 - name: pycrypto
57 version: "2.6" 55 version: "2.6"
58 - name: webapp2 56 - name: webapp2
59 version: "2.5.2" 57 version: "2.5.2"
60 - name: webob 58 - name: webob
61 version: "1.2.3" 59 version: "1.2.3"
62 - name: yaml 60 - name: yaml
63 version: "3.10" 61 version: "3.10"
64 62
65 skip_files: 63 skip_files:
66 # Test and tools. 64 # Test and tools.
67 - support/ 65 - support/
68 - ^tests/ 66 - ^tests/
69 - ^tools/ 67 - ^tools/
70 - test_.+ 68 - test_.+
71 - .+_test\.py$ 69 - .+_test\.py$
72 # Junk files. 70 # Junk files.
73 - ^(.*/)?\..* 71 - ^(.*/)?\..*
74 - .+\.orig$ 72 - .+\.orig$
75 - .+\.rej$ 73 - .+\.rej$
76 - ^(.*/)?#.*# 74 - ^(.*/)?#.*#
77 - .+~ 75 - .+~
78 - .+\.py[co] 76 - .+\.py[co]
79 - ^[A-Z]+$ 77 - ^[A-Z]+$
80 - ^[A-Z]+\.[a-z]+$ 78 - ^[A-Z]+\.[a-z]+$
OLDNEW
« no previous file with comments | « no previous file | appengine/auth_service/module-backend.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698