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

Side by Side Diff: appengine/config_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
OLDNEW
1 # Copyright 2015 The Swarming Authors. All rights reserved. 1 # Copyright 2015 The Swarming Authors. All rights reserved.
2 # Use of this source code is governed by the Apache v2.0 license that can be 2 # Use of this source code is governed by the Apache v2.0 license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 application: luci-config 5 application: luci-config
6 version: 1 6 version: 1
7 runtime: python27 7 runtime: python27
8 api_version: 1 8 api_version: 1
9 threadsafe: true 9 threadsafe: true
10 10
11 handlers: 11 handlers:
12 - url: /favicon.ico 12 - url: /favicon.ico
13 static_files: static/favicon.ico 13 static_files: static/favicon.ico
14 upload: static/favicon.ico 14 upload: static/favicon.ico
15 secure: always 15 secure: always
16 16
17 - url: /_ah/spi/.* 17 - url: /_ah/spi/.*
18 script: apps.endpoints 18 script: apps.endpoints
19 19
20 - url: /.* 20 - url: /.*
21 script: apps.html 21 script: apps.html
22 secure: always 22 secure: always
23 23
24 libraries: 24 libraries:
25 - name: endpoints 25 - name: endpoints
26 version: 1.0 26 version: 1.0
27 - name: jinja2
28 version: latest
29 - name: pycrypto 27 - name: pycrypto
30 version: "2.6" 28 version: "2.6"
31 - name: webapp2 29 - name: webapp2
32 version: "2.5.2" 30 version: "2.5.2"
33 - name: webob 31 - name: webob
34 version: "1.2.3" 32 version: "1.2.3"
35 33
36 builtins: 34 builtins:
37 - deferred: on 35 - deferred: on
38 36
(...skipping 13 matching lines...) Expand all
52 - .+_test\.py$ 50 - .+_test\.py$
53 # Junk files. 51 # Junk files.
54 - ^(.*/)?\..* 52 - ^(.*/)?\..*
55 - .+\.orig$ 53 - .+\.orig$
56 - .+\.rej$ 54 - .+\.rej$
57 - ^(.*/)?#.*# 55 - ^(.*/)?#.*#
58 - .+~ 56 - .+~
59 - .+\.py[co] 57 - .+\.py[co]
60 - ^[A-Z]+$ 58 - ^[A-Z]+$
61 - ^[A-Z]+\.[a-z]+$ 59 - ^[A-Z]+\.[a-z]+$
OLDNEW
« no previous file with comments | « appengine/components/tests/test_endpoints_app/app.yaml ('k') | appengine/config_service/module-backend.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698