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

Side by Side Diff: appengine/config_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/config_service/app.yaml ('k') | appengine/gce-backend/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 # 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 module: backend 6 module: backend
7 version: 1 7 version: 1
8 runtime: python27 8 runtime: python27
9 api_version: 1 9 api_version: 1
10 threadsafe: true 10 threadsafe: true
11 11
12 handlers: 12 handlers:
13 - url: /internal.* 13 - url: /internal.*
14 script: apps.backend 14 script: apps.backend
15 secure: always 15 secure: always
16 login: admin 16 login: admin
17 17
18 includes: 18 includes:
19 - components/auth 19 - components/auth
20 - components/ereporter2 20 - components/ereporter2
21 21
22 libraries: 22 libraries:
23 - name: endpoints 23 - name: endpoints
24 version: "1.0" 24 version: "1.0"
25 - name: jinja2
26 version: latest
27 - name: pycrypto 25 - name: pycrypto
28 version: "2.6" 26 version: "2.6"
29 - name: webapp2 27 - name: webapp2
30 version: "2.5.2" 28 version: "2.5.2"
31 - name: webob 29 - name: webob
32 version: "1.2.3" 30 version: "1.2.3"
33 - name: yaml 31 - name: yaml
34 version: "3.10" 32 version: "3.10"
35 33
36 skip_files: 34 skip_files:
37 # Test and tools. 35 # Test and tools.
38 - support/ 36 - support/
39 - ^tests/ 37 - ^tests/
40 - ^tools/ 38 - ^tools/
41 - test_.+ 39 - test_.+
42 - .+_test\.py$ 40 - .+_test\.py$
43 # Junk files. 41 # Junk files.
44 - ^(.*/)?\..* 42 - ^(.*/)?\..*
45 - .+\.orig$ 43 - .+\.orig$
46 - .+\.rej$ 44 - .+\.rej$
47 - ^(.*/)?#.*# 45 - ^(.*/)?#.*#
48 - .+~ 46 - .+~
49 - .+\.py[co] 47 - .+\.py[co]
50 - ^[A-Z]+$ 48 - ^[A-Z]+$
51 - ^[A-Z]+\.[a-z]+$ 49 - ^[A-Z]+\.[a-z]+$
OLDNEW
« no previous file with comments | « appengine/config_service/app.yaml ('k') | appengine/gce-backend/app.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698