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

Side by Side Diff: chrome/common/extensions/docs/server2/test_data/canned_data.py

Issue 26418002: Docserver: Pull knowledge of host file systems into a single (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: correct similarity Created 7 years, 2 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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import json 5 import json
6 from third_party.json_schema_compiler.json_parse import OrderedDict 6 from third_party.json_schema_compiler.json_parse import OrderedDict
7 7
8 8
9 CANNED_CHANNELS = OrderedDict([ 9 CANNED_CHANNELS = OrderedDict([
10 ('trunk', 'trunk'), 10 ('trunk', 'trunk'),
11 ('dev', 28), 11 ('dev', 28),
12 ('beta', 27), 12 ('beta', 27),
13 ('stable', 26) 13 ('stable', 26)
14 ]) 14 ])
15 15
16 16
17 CANNED_BRANCHES = OrderedDict([ 17 CANNED_BRANCHES = OrderedDict([
18 ('trunk', 'trunk'), 18 ('trunk', 'trunk'),
19 (28, 1500), 19 (28, '1500'),
20 (27, 1453), 20 (27, '1453'),
21 (26, 1410), 21 (26, '1410'),
22 (25, 1364), 22 (25, '1364'),
23 (24, 1312), 23 (24, '1312'),
24 (23, 1271), 24 (23, '1271'),
25 (22, 1229), 25 (22, '1229'),
26 (21, 1180), 26 (21, '1180'),
27 (20, 1132), 27 (20, '1132'),
28 (19, 1084), 28 (19, '1084'),
29 (18, 1025), 29 (18, '1025'),
30 (17, 963), 30 (17, '963'),
31 (16, 912), 31 (16, '912'),
32 (15, 874), 32 (15, '874'),
33 (14, 835), 33 (14, '835'),
34 (13, 782), 34 (13, '782'),
35 (12, 742), 35 (12, '742'),
36 (11, 696), 36 (11, '696'),
37 (10, 648), 37 (10, '648'),
38 ( 9, 597), 38 ( 9, '597'),
39 ( 8, 552), 39 ( 8, '552'),
40 ( 7, 544), 40 ( 7, '544'),
41 ( 6, 495), 41 ( 6, '495'),
42 ( 5, 396) 42 ( 5, '396'),
43 ]) 43 ])
44 44
45 45
46 CANNED_TEST_FILE_SYSTEM_DATA = { 46 CANNED_TEST_FILE_SYSTEM_DATA = {
47 'api': { 47 'api': {
48 '_api_features.json': json.dumps({ 48 '_api_features.json': json.dumps({
49 'ref_test': { 'dependencies': ['permission:ref_test'] }, 49 'ref_test': { 'dependencies': ['permission:ref_test'] },
50 'tester': { 'dependencies': ['permission:tester', 'manifest:tester'] } 50 'tester': { 'dependencies': ['permission:tester', 'manifest:tester'] }
51 }), 51 }),
52 '_manifest_features.json': json.dumps({ 52 '_manifest_features.json': json.dumps({
(...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after
785 { 785 {
786 'namespace': 'idle' 786 'namespace': 'idle'
787 }, 787 },
788 { 788 {
789 'namespace': 'experimental.menus' 789 'namespace': 'experimental.menus'
790 } 790 }
791 ]) 791 ])
792 } 792 }
793 } 793 }
794 } 794 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/server2/server_instance.py ('k') | chrome/common/extensions/docs/server2/test_servlet.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698