aws-sdk 2.0.1 → 2.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc +20 -0
- package/.gitignore +10 -0
- package/.travis.yml +20 -0
- package/.yardopts +20 -0
- package/.yardopts_guide +21 -0
- package/Gemfile +16 -0
- package/Gemfile.lock +34 -0
- package/README.md +5 -6
- package/Rakefile +14 -0
- package/UPGRADING.md +9 -4
- package/configuration.sample +5 -0
- package/dist/BUNDLE_LICENSE.txt +96 -0
- package/dist/aws-sdk.js +9594 -0
- package/dist/aws-sdk.min.js +21 -0
- package/dist-tools/.eslintrc +10 -0
- package/dist-tools/browser-builder.js +142 -0
- package/dist-tools/strategies/cache.js +68 -0
- package/dist-tools/strategies/default.js +165 -0
- package/dist-tools/test/browser-builder.mocha.spec.coffee +182 -0
- package/dist-tools/test/helpers.coffee +16 -0
- package/doc-src/guide/browser-building.md +93 -0
- package/doc-src/guide/browser-configuring-wif.md +287 -0
- package/doc-src/guide/browser-configuring.md +218 -0
- package/doc-src/guide/browser-examples.md +220 -0
- package/doc-src/guide/browser-intro.md +46 -0
- package/doc-src/guide/browser-making-requests.md +279 -0
- package/doc-src/guide/browser-services.md +75 -0
- package/doc-src/guide/index.md +41 -0
- package/doc-src/guide/node-configuring.md +272 -0
- package/doc-src/guide/node-examples.md +341 -0
- package/doc-src/guide/node-intro.md +32 -0
- package/doc-src/guide/node-making-requests.md +309 -0
- package/doc-src/guide/node-services.md +159 -0
- package/doc-src/templates/api-versions/model_documentor.rb +366 -0
- package/doc-src/templates/api-versions/plugin.rb +230 -0
- package/doc-src/templates/api-versions/templates/default/class/html/setup.rb +9 -0
- package/doc-src/templates/api-versions/templates/default/class/html/waiter_details_list.erb +7 -0
- package/doc-src/templates/api-versions/templates/default/class/html/waiter_summary.erb +7 -0
- package/doc-src/templates/api-versions/templates/default/docstring/html/experimental.erb +4 -0
- package/doc-src/templates/api-versions/templates/default/docstring/setup.rb +9 -0
- package/doc-src/templates/api-versions/templates/default/fulldoc/html/css/common.css +6 -0
- package/doc-src/templates/api-versions/templates/default/fulldoc/html/setup.rb +62 -0
- package/doc-src/templates/api-versions/templates/default/layout/html/services.erb +10 -0
- package/doc-src/templates/api-versions/templates/default/layout/html/setup.rb +28 -0
- package/doc-src/templates/api-versions/templates/default/module/html/box_info.erb +45 -0
- package/doc-src/templates/api-versions/templates/default/module/html/children.erb +8 -0
- package/doc-src/templates/api-versions/templates/default/tags/setup.rb +3 -0
- package/doc-src/templates/api-versions/templates/default/waiter_details/html/method_signature.erb +3 -0
- package/doc-src/templates/api-versions/templates/default/waiter_details/html/setup.rb +5 -0
- package/doc-src/templates/default/layout/html/footer.erb +31 -0
- package/doc-src/templates/default/layout/html/layout.erb +23 -0
- package/doc-src/templates/flasky_sphinx_guide/fulldoc/html/css/highlight.github.css +127 -0
- package/doc-src/templates/flasky_sphinx_guide/fulldoc/html/css/style.css +1192 -0
- package/doc-src/templates/flasky_sphinx_guide/fulldoc/html/img/logo.png +0 -0
- package/doc-src/templates/flasky_sphinx_guide/fulldoc/html/js/app.js +33 -0
- package/doc-src/templates/flasky_sphinx_guide/fulldoc/html/js/highlight.pack.js +27 -0
- package/doc-src/templates/flasky_sphinx_guide/fulldoc/html/js/sphinx/AUTHORS +55 -0
- package/doc-src/templates/flasky_sphinx_guide/fulldoc/html/js/sphinx/LICENSE +25 -0
- package/doc-src/templates/flasky_sphinx_guide/fulldoc/html/js/sphinx/doctools.js +247 -0
- package/doc-src/templates/flasky_sphinx_guide/fulldoc/html/js/sphinx/file.png +0 -0
- package/doc-src/templates/flasky_sphinx_guide/fulldoc/html/js/sphinx/searchtools.js +568 -0
- package/doc-src/templates/flasky_sphinx_guide/fulldoc/html/js/underscore.js +23 -0
- package/doc-src/templates/flasky_sphinx_guide/fulldoc/html/search.erb +29 -0
- package/doc-src/templates/flasky_sphinx_guide/fulldoc/html/search_index.erb +1 -0
- package/doc-src/templates/flasky_sphinx_guide/fulldoc/html/setup.rb +75 -0
- package/doc-src/templates/flasky_sphinx_guide/layout/html/layout.erb +93 -0
- package/doc-src/templates/flasky_sphinx_guide/layout/html/setup.rb +9 -0
- package/doc-src/templates/flasky_sphinx_guide/layout/html/sidebar.erb +45 -0
- package/doc-src/templates/flasky_sphinx_guide/onefile/html/layout.erb +51 -0
- package/doc-src/templates/flasky_sphinx_guide/onefile/html/setup.rb +1 -0
- package/eslint-rules/no-require-in-service.js +10 -0
- package/features/autoscaling/autoscaling.feature +21 -0
- package/features/autoscaling/step_definitions/autoscaling.js +49 -0
- package/features/cloudformation/cloudformation.feature +22 -0
- package/features/cloudformation/step_definitions/cloudformation.js +26 -0
- package/features/cloudfront/cloudfront.feature +28 -0
- package/features/cloudfront/step_definitions/cloudfront-latest.js +54 -0
- package/features/cloudfront/step_definitions/cloudfront.js +21 -0
- package/features/cloudsearch/cloudsearch.feature +34 -0
- package/features/cloudsearch/step_definitions/cloudsearch.js +42 -0
- package/features/cloudtrail/cloudtrail.feature +17 -0
- package/features/cloudtrail/step_definitions/cloudtrail.js +14 -0
- package/features/cloudwatch/cloudwatch.feature +15 -0
- package/features/cloudwatch/step_definitions/cloudwatch.js +48 -0
- package/features/datapipeline/datapipeline.feature +23 -0
- package/features/datapipeline/step_definitions/datapipeline.js +79 -0
- package/features/directconnect/directconnect.feature +20 -0
- package/features/directconnect/step_definitions/directconnect.js +44 -0
- package/features/dynamodb/crc32.feature +18 -0
- package/features/dynamodb/step_definitions/dynamodb.js +154 -0
- package/features/dynamodb/tables.feature +50 -0
- package/features/ec2/ec2.feature +28 -0
- package/features/ec2/step_definitions/ec2.js +65 -0
- package/features/elasticache/elasticache.feature +20 -0
- package/features/elasticache/step_definitions/elasticache.js +34 -0
- package/features/elasticbeanstalk/elasticbeanstalk.feature +22 -0
- package/features/elasticbeanstalk/step_definitions/elasticbeanstalk.js +38 -0
- package/features/elastictranscoder/elastictranscoder.feature +24 -0
- package/features/elastictranscoder/step_definitions/elastictranscoder.js +56 -0
- package/features/elb/elb.feature +19 -0
- package/features/elb/step_definitions/elb.js +37 -0
- package/features/emr/emr.feature +16 -0
- package/features/emr/step_definitions/emr.js +45 -0
- package/features/extra/assertions.js +29 -0
- package/features/extra/dummy.feature +0 -0
- package/features/extra/fixtures/testfile.txt +1 -0
- package/features/extra/helpers.js +113 -0
- package/features/extra/hooks.js +107 -0
- package/features/extra/world.js +12 -0
- package/features/glacier/glacier.feature +47 -0
- package/features/glacier/step_definitions/glacier.js +112 -0
- package/features/iam/iam.feature +24 -0
- package/features/iam/step_definitions/iam.js +66 -0
- package/features/importexport/importexport.feature +53 -0
- package/features/importexport/step_definitions/importexport.js +42 -0
- package/features/kinesis/kinesis.feature +9 -0
- package/features/kinesis/step_definitions/kinesis.js +10 -0
- package/features/opsworks/opsworks.feature +26 -0
- package/features/opsworks/step_definitions/opsworks.js +42 -0
- package/features/rds/rds.feature +32 -0
- package/features/rds/step_definitions/rds.js +72 -0
- package/features/redshift/redshift.feature +20 -0
- package/features/redshift/step_definitions/redshift.js +33 -0
- package/features/route53/route53.feature +41 -0
- package/features/route53/step_definitions/route53.js +97 -0
- package/features/s3/buckets.feature +40 -0
- package/features/s3/objects.feature +122 -0
- package/features/s3/step_definitions/buckets.js +136 -0
- package/features/s3/step_definitions/hooks.js +39 -0
- package/features/s3/step_definitions/objects.js +204 -0
- package/features/s3/step_definitions/proxy.js +44 -0
- package/features/ses/ses.feature +20 -0
- package/features/ses/step_definitions/ses.js +22 -0
- package/features/simpledb/simpledb.feature +29 -0
- package/features/simpledb/step_definitions/simpledb.js +46 -0
- package/features/sns/sns.feature +15 -0
- package/features/sns/step_definitions/sns.js +33 -0
- package/features/sqs/messages.feature +21 -0
- package/features/sqs/queues.feature +18 -0
- package/features/sqs/step_definitions/messages.js +46 -0
- package/features/sqs/step_definitions/queues.js +33 -0
- package/features/sqs/step_definitions/sqs.js +7 -0
- package/features/storagegateway/step_definitions/storagegateway.js +16 -0
- package/features/storagegateway/storagegateway.feature +13 -0
- package/features/sts/step_definitions/sts.js +35 -0
- package/features/sts/sts.feature +29 -0
- package/features/support/step_definitions/support.js +35 -0
- package/features/support/support.feature +18 -0
- package/features/swf/step_definitions/swf.js +38 -0
- package/features/swf/swf.feature +15 -0
- package/index.js +2 -0
- package/lib/core.js +2 -2
- package/lib/credentials/shared_ini_file_credentials.js +0 -1
- package/lib/event_listeners.js +13 -1
- package/lib/http/node.js +19 -30
- package/lib/model/resource_waiter.js +0 -4
- package/lib/model/shape.js +2 -1
- package/lib/protocol/rest_xml.js +1 -1
- package/lib/region_config.js +31 -0
- package/lib/region_config.json +56 -0
- package/lib/request.js +37 -45
- package/lib/sequential_executor.js +17 -34
- package/lib/service.js +17 -44
- package/lib/services/cloudsearchdomain.js +69 -0
- package/lib/services/route53.js +0 -12
- package/lib/services/s3.js +3 -19
- package/lib/signers/v4.js +2 -1
- package/lib/util.js +28 -3
- package/package.json +3 -3
- package/scripts/console +11 -3
- package/scripts/coverage +126 -0
- package/tasks/apis.rake +122 -0
- package/tasks/browser.rake +89 -0
- package/tasks/docs.rake +36 -0
- package/tasks/lib/cucumber_generator.rb +40 -0
- package/tasks/util.rake +33 -0
- package/test/browser/js/jasmine-1.3.1.js +2600 -0
- package/test/browser/js/jasmine-html.js +681 -0
- package/test/browser/runner.html +109 -0
- package/test/browser/runner.js +92 -0
- package/test/browser/sample/appinfo.sample.js +15 -0
- package/test/browser/sample/console.html +429 -0
- package/test/browser/sample/css/smoothness/images/animated-overlay.gif +0 -0
- package/test/browser/sample/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- package/test/browser/sample/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- package/test/browser/sample/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- package/test/browser/sample/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- package/test/browser/sample/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- package/test/browser/sample/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- package/test/browser/sample/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- package/test/browser/sample/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- package/test/browser/sample/css/smoothness/images/ui-icons_222222_256x240.png +0 -0
- package/test/browser/sample/css/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
- package/test/browser/sample/css/smoothness/images/ui-icons_454545_256x240.png +0 -0
- package/test/browser/sample/css/smoothness/images/ui-icons_888888_256x240.png +0 -0
- package/test/browser/sample/css/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
- package/test/browser/sample/css/smoothness/jquery-ui-1.10.1.custom.css +1175 -0
- package/test/browser/sample/css/smoothness/jquery-ui-1.10.1.custom.min.css +5 -0
- package/test/browser/sample/img/loading.gif +0 -0
- package/test/browser/sample/js/jquery-1.9.1.js +9597 -0
- package/test/browser/sample/js/jquery-ui-1.10.1.custom.js +14903 -0
- package/test/browser/sample/js/jquery-ui-1.10.1.custom.min.js +6 -0
- package/test/browser/sample/s3upload.html +111 -0
- package/test/browser.spec.coffee +207 -0
- package/test/config.spec.coffee +202 -0
- package/test/credential_provider_chain.spec.coffee +90 -0
- package/test/credentials.spec.coffee +452 -0
- package/test/endpoint.spec.coffee +80 -0
- package/test/event_listeners.spec.coffee +493 -0
- package/test/helpers.coffee +150 -0
- package/test/http_request.spec.coffee +55 -0
- package/test/json/builder.spec.coffee +129 -0
- package/test/json/parser.spec.coffee +108 -0
- package/test/metadata_service.spec.coffee +54 -0
- package/test/model/api.spec.coffee +67 -0
- package/test/model/shape.spec.coffee +23 -0
- package/test/node_http_client.spec.coffee +40 -0
- package/test/param_validator.spec.coffee +456 -0
- package/test/protocol/json.spec.coffee +167 -0
- package/test/protocol/query.spec.coffee +191 -0
- package/test/protocol/rest.spec.coffee +237 -0
- package/test/protocol/rest_json.spec.coffee +255 -0
- package/test/protocol/rest_xml.spec.coffee +329 -0
- package/test/query/query_param_serializer.spec.coffee +327 -0
- package/test/region_config.spec.coffee +50 -0
- package/test/request.spec.coffee +316 -0
- package/test/resource_waiter.spec.coffee +89 -0
- package/test/response.spec.coffee +81 -0
- package/test/sequential_executor.spec.coffee +118 -0
- package/test/service.spec.coffee +230 -0
- package/test/services/cloudfront.spec.coffee +44 -0
- package/test/services/cloudsearchdomain.spec.coffee +23 -0
- package/test/services/dynamodb.spec.coffee +32 -0
- package/test/services/ec2.spec.coffee +78 -0
- package/test/services/elastictranscoder.spec.coffee +43 -0
- package/test/services/glacier.spec.coffee +61 -0
- package/test/services/rds.spec.coffee +38 -0
- package/test/services/route53.spec.coffee +77 -0
- package/test/services/s3.spec.coffee +538 -0
- package/test/services/simpledb.spec.coffee +12 -0
- package/test/services/sqs.spec.coffee +130 -0
- package/test/services/sts.spec.coffee +72 -0
- package/test/services/swf.spec.coffee +6 -0
- package/test/signers/presign.spec.coffee +36 -0
- package/test/signers/s3.spec.coffee +297 -0
- package/test/signers/v2.spec.coffee +68 -0
- package/test/signers/v4.spec.coffee +135 -0
- package/test/util.spec.coffee +510 -0
- package/test/xml/builder.spec.coffee +529 -0
- package/test/xml/parser.spec.coffee +587 -0
- package/lib/services/simpledb.js +0 -15
|
@@ -0,0 +1,1192 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* basic.css
|
|
3
|
+
* ~~~~~~~~~
|
|
4
|
+
*
|
|
5
|
+
* Sphinx stylesheet -- basic theme.
|
|
6
|
+
*
|
|
7
|
+
* :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS.
|
|
8
|
+
* :license: BSD, see LICENSE for details.
|
|
9
|
+
*
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
/* -- main layout ----------------------------------------------------------- */
|
|
13
|
+
|
|
14
|
+
div.clearer {
|
|
15
|
+
clear: both;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
/* -- relbar ---------------------------------------------------------------- */
|
|
19
|
+
|
|
20
|
+
div.related {
|
|
21
|
+
width: 100%;
|
|
22
|
+
font-size: 90%;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
div.related h3 {
|
|
26
|
+
display: none;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
div.related ul {
|
|
30
|
+
margin: 0;
|
|
31
|
+
padding: 0 0 0 10px;
|
|
32
|
+
list-style: none;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
div.related li {
|
|
36
|
+
display: inline;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
div.related li.right {
|
|
40
|
+
float: right;
|
|
41
|
+
margin-right: 5px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/* -- sidebar --------------------------------------------------------------- */
|
|
45
|
+
|
|
46
|
+
div.sphinxsidebarwrapper {
|
|
47
|
+
padding: 10px 5px 0 10px;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
div.sphinxsidebar {
|
|
51
|
+
float: left;
|
|
52
|
+
width: 230px;
|
|
53
|
+
margin-left: -100%;
|
|
54
|
+
font-size: 90%;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
div.sphinxsidebar ul {
|
|
58
|
+
list-style: none;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
div.sphinxsidebar ul ul,
|
|
62
|
+
div.sphinxsidebar ul.want-points {
|
|
63
|
+
margin-left: 20px;
|
|
64
|
+
list-style: square;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
div.sphinxsidebar ul ul {
|
|
68
|
+
margin-top: 0;
|
|
69
|
+
margin-bottom: 0;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
div.sphinxsidebar form {
|
|
73
|
+
margin-top: 10px;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
div.sphinxsidebar input {
|
|
77
|
+
border: 1px solid #98dbcc;
|
|
78
|
+
font-family: sans-serif;
|
|
79
|
+
font-size: 1em;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
div.sphinxsidebar #searchbox input[type="text"] {
|
|
83
|
+
width: 170px;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
div.sphinxsidebar #searchbox input[type="submit"] {
|
|
87
|
+
width: 30px;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
img {
|
|
91
|
+
border: 0;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
/* -- search page ----------------------------------------------------------- */
|
|
95
|
+
|
|
96
|
+
ul.search {
|
|
97
|
+
margin: 10px 0 0 20px;
|
|
98
|
+
padding: 0;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
ul.search li {
|
|
102
|
+
padding: 5px 0 5px 20px;
|
|
103
|
+
background-image: url(file.png);
|
|
104
|
+
background-repeat: no-repeat;
|
|
105
|
+
background-position: 0 7px;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
ul.search li a {
|
|
109
|
+
font-weight: bold;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
ul.search li div.context {
|
|
113
|
+
color: #888;
|
|
114
|
+
margin: 2px 0 0 30px;
|
|
115
|
+
text-align: left;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
ul.keywordmatches li.goodmatch a {
|
|
119
|
+
font-weight: bold;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
/* -- index page ------------------------------------------------------------ */
|
|
123
|
+
|
|
124
|
+
table.contentstable {
|
|
125
|
+
width: 90%;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
table.contentstable p.biglink {
|
|
129
|
+
line-height: 150%;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
a.biglink {
|
|
133
|
+
font-size: 1.3em;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
span.linkdescr {
|
|
137
|
+
font-style: italic;
|
|
138
|
+
padding-top: 5px;
|
|
139
|
+
font-size: 90%;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
/* -- general index --------------------------------------------------------- */
|
|
143
|
+
|
|
144
|
+
table.indextable {
|
|
145
|
+
width: 100%;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
table.indextable td {
|
|
149
|
+
text-align: left;
|
|
150
|
+
vertical-align: top;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
table.indextable dl, table.indextable dd {
|
|
154
|
+
margin-top: 0;
|
|
155
|
+
margin-bottom: 0;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
table.indextable tr.pcap {
|
|
159
|
+
height: 10px;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
table.indextable tr.cap {
|
|
163
|
+
margin-top: 10px;
|
|
164
|
+
background-color: #f2f2f2;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
img.toggler {
|
|
168
|
+
margin-right: 3px;
|
|
169
|
+
margin-top: 3px;
|
|
170
|
+
cursor: pointer;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
div.modindex-jumpbox {
|
|
174
|
+
border-top: 1px solid #ddd;
|
|
175
|
+
border-bottom: 1px solid #ddd;
|
|
176
|
+
margin: 1em 0 1em 0;
|
|
177
|
+
padding: 0.4em;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
div.genindex-jumpbox {
|
|
181
|
+
border-top: 1px solid #ddd;
|
|
182
|
+
border-bottom: 1px solid #ddd;
|
|
183
|
+
margin: 1em 0 1em 0;
|
|
184
|
+
padding: 0.4em;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
/* -- general body styles --------------------------------------------------- */
|
|
188
|
+
|
|
189
|
+
a.headerlink {
|
|
190
|
+
visibility: hidden;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
h1:hover > a.headerlink,
|
|
194
|
+
h2:hover > a.headerlink,
|
|
195
|
+
h3:hover > a.headerlink,
|
|
196
|
+
h4:hover > a.headerlink,
|
|
197
|
+
h5:hover > a.headerlink,
|
|
198
|
+
h6:hover > a.headerlink,
|
|
199
|
+
dt:hover > a.headerlink {
|
|
200
|
+
visibility: visible;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
div.body p.caption {
|
|
204
|
+
text-align: inherit;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
div.body td {
|
|
208
|
+
text-align: left;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.field-list ul {
|
|
212
|
+
padding-left: 1em;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.first {
|
|
216
|
+
margin-top: 0 !important;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
p.rubric {
|
|
220
|
+
margin-top: 30px;
|
|
221
|
+
font-weight: bold;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
img.align-left, .figure.align-left, object.align-left {
|
|
225
|
+
clear: left;
|
|
226
|
+
float: left;
|
|
227
|
+
margin-right: 1em;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
img.align-right, .figure.align-right, object.align-right {
|
|
231
|
+
clear: right;
|
|
232
|
+
float: right;
|
|
233
|
+
margin-left: 1em;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
img.align-center, .figure.align-center, object.align-center {
|
|
237
|
+
display: block;
|
|
238
|
+
margin-left: auto;
|
|
239
|
+
margin-right: auto;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.align-left {
|
|
243
|
+
text-align: left;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.align-center {
|
|
247
|
+
text-align: center;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.align-right {
|
|
251
|
+
text-align: right;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
/* -- sidebars -------------------------------------------------------------- */
|
|
255
|
+
|
|
256
|
+
div.sidebar {
|
|
257
|
+
margin: 0 0 0.5em 1em;
|
|
258
|
+
border: 1px solid #ddb;
|
|
259
|
+
padding: 7px 7px 0 7px;
|
|
260
|
+
background-color: #ffe;
|
|
261
|
+
width: 40%;
|
|
262
|
+
float: right;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
p.sidebar-title {
|
|
266
|
+
font-weight: bold;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
/* -- topics ---------------------------------------------------------------- */
|
|
270
|
+
|
|
271
|
+
div.topic {
|
|
272
|
+
border: 1px solid #ccc;
|
|
273
|
+
padding: 7px 7px 0 7px;
|
|
274
|
+
margin: 10px 0 10px 0;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
p.topic-title {
|
|
278
|
+
font-size: 1.1em;
|
|
279
|
+
font-weight: bold;
|
|
280
|
+
margin-top: 10px;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
/* -- admonitions ----------------------------------------------------------- */
|
|
284
|
+
|
|
285
|
+
div.admonition {
|
|
286
|
+
margin-top: 10px;
|
|
287
|
+
margin-bottom: 10px;
|
|
288
|
+
padding: 7px;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
div.admonition dt {
|
|
292
|
+
font-weight: bold;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
div.admonition dl {
|
|
296
|
+
margin-bottom: 0;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
p.admonition-title {
|
|
300
|
+
margin: 0px 10px 5px 0px;
|
|
301
|
+
font-weight: bold;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
div.body p.centered {
|
|
305
|
+
text-align: center;
|
|
306
|
+
margin-top: 25px;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
/* -- tables ---------------------------------------------------------------- */
|
|
310
|
+
|
|
311
|
+
table.docutils {
|
|
312
|
+
border: 0;
|
|
313
|
+
border-collapse: collapse;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
table.docutils td, table.docutils th {
|
|
317
|
+
padding: 1px 8px 1px 5px;
|
|
318
|
+
border-top: 0;
|
|
319
|
+
border-left: 0;
|
|
320
|
+
border-right: 0;
|
|
321
|
+
border-bottom: 1px solid #aaa;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
table.field-list td, table.field-list th {
|
|
325
|
+
border: 0 !important;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
table.footnote td, table.footnote th {
|
|
329
|
+
border: 0 !important;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
th {
|
|
333
|
+
text-align: left;
|
|
334
|
+
padding-right: 5px;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
table.citation {
|
|
338
|
+
border-left: solid 1px gray;
|
|
339
|
+
margin-left: 1px;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
table.citation td {
|
|
343
|
+
border-bottom: none;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
/* -- other body styles ----------------------------------------------------- */
|
|
347
|
+
|
|
348
|
+
ol.arabic {
|
|
349
|
+
list-style: decimal;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
ol.loweralpha {
|
|
353
|
+
list-style: lower-alpha;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
ol.upperalpha {
|
|
357
|
+
list-style: upper-alpha;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
ol.lowerroman {
|
|
361
|
+
list-style: lower-roman;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
ol.upperroman {
|
|
365
|
+
list-style: upper-roman;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
dl {
|
|
369
|
+
margin-bottom: 15px;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
dd p {
|
|
373
|
+
margin-top: 0px;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
dd ul, dd table {
|
|
377
|
+
margin-bottom: 10px;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
dd {
|
|
381
|
+
margin-top: 3px;
|
|
382
|
+
margin-bottom: 10px;
|
|
383
|
+
margin-left: 30px;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
dt:target, .highlighted {
|
|
387
|
+
background-color: #fbe54e;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
dl.glossary dt {
|
|
391
|
+
font-weight: bold;
|
|
392
|
+
font-size: 1.1em;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.field-list ul {
|
|
396
|
+
margin: 0;
|
|
397
|
+
padding-left: 1em;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.field-list p {
|
|
401
|
+
margin: 0;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.refcount {
|
|
405
|
+
color: #060;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.optional {
|
|
409
|
+
font-size: 1.3em;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.versionmodified {
|
|
413
|
+
font-style: italic;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.system-message {
|
|
417
|
+
background-color: #fda;
|
|
418
|
+
padding: 5px;
|
|
419
|
+
border: 3px solid red;
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
.footnote:target {
|
|
423
|
+
background-color: #ffa;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
.line-block {
|
|
427
|
+
display: block;
|
|
428
|
+
margin-top: 1em;
|
|
429
|
+
margin-bottom: 1em;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.line-block .line-block {
|
|
433
|
+
margin-top: 0;
|
|
434
|
+
margin-bottom: 0;
|
|
435
|
+
margin-left: 1.5em;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
.guilabel, .menuselection {
|
|
439
|
+
font-family: sans-serif;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
.accelerator {
|
|
443
|
+
text-decoration: underline;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
.classifier {
|
|
447
|
+
font-style: oblique;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
abbr, acronym {
|
|
451
|
+
border-bottom: dotted 1px;
|
|
452
|
+
cursor: help;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
/* -- code displays --------------------------------------------------------- */
|
|
456
|
+
|
|
457
|
+
pre {
|
|
458
|
+
overflow: auto;
|
|
459
|
+
overflow-y: hidden; /* fixes display issues on Chrome browsers */
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
td.linenos pre {
|
|
463
|
+
padding: 5px 0px;
|
|
464
|
+
border: 0;
|
|
465
|
+
background-color: transparent;
|
|
466
|
+
color: #aaa;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
table.highlighttable {
|
|
470
|
+
margin-left: 0.5em;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
table.highlighttable td {
|
|
474
|
+
padding: 0 0.5em 0 0.5em;
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
tt.descname {
|
|
478
|
+
background-color: transparent;
|
|
479
|
+
font-weight: bold;
|
|
480
|
+
font-size: 1.2em;
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
tt.descclassname {
|
|
484
|
+
background-color: transparent;
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
tt.xref, a tt {
|
|
488
|
+
background-color: transparent;
|
|
489
|
+
font-weight: bold;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
h1 tt, h2 tt, h3 tt, h4 tt, h5 tt, h6 tt {
|
|
493
|
+
background-color: transparent;
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
.viewcode-link {
|
|
497
|
+
float: right;
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
.viewcode-back {
|
|
501
|
+
float: right;
|
|
502
|
+
font-family: sans-serif;
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
div.viewcode-block:target {
|
|
506
|
+
margin: -1px -10px;
|
|
507
|
+
padding: 0 10px;
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
/* -- math display ---------------------------------------------------------- */
|
|
511
|
+
|
|
512
|
+
img.math {
|
|
513
|
+
vertical-align: middle;
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
div.body div.math p {
|
|
517
|
+
text-align: center;
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
span.eqno {
|
|
521
|
+
float: right;
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
/* -- printout stylesheet --------------------------------------------------- */
|
|
525
|
+
|
|
526
|
+
@media print {
|
|
527
|
+
div.document,
|
|
528
|
+
div.documentwrapper,
|
|
529
|
+
div.bodywrapper {
|
|
530
|
+
margin: 0 !important;
|
|
531
|
+
width: 100%;
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
div.sphinxsidebar,
|
|
535
|
+
div.related,
|
|
536
|
+
div.footer,
|
|
537
|
+
#top-link {
|
|
538
|
+
display: none;
|
|
539
|
+
}
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
/*
|
|
543
|
+
* flasky.css_t
|
|
544
|
+
* ~~~~~~~~~~~~
|
|
545
|
+
*
|
|
546
|
+
* :copyright: Copyright 2010 by Armin Ronacher.
|
|
547
|
+
* :license: Flask Design License, see LICENSE for details.
|
|
548
|
+
*/
|
|
549
|
+
|
|
550
|
+
/* -- page layout ----------------------------------------------------------- */
|
|
551
|
+
|
|
552
|
+
body {
|
|
553
|
+
font-family: Helvetica, arial, freesans, clean, sans-serif;
|
|
554
|
+
font-size: 15px;
|
|
555
|
+
background-color: white;
|
|
556
|
+
color: #000;
|
|
557
|
+
margin: 0;
|
|
558
|
+
padding: 0;
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
div.document {
|
|
562
|
+
width: 960px;
|
|
563
|
+
margin: 30px auto 0 auto;
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
div.documentwrapper {
|
|
567
|
+
float: left;
|
|
568
|
+
width: 100%;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
div.bodywrapper {
|
|
572
|
+
margin: 0 0 0 220px;
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
div.sphinxsidebar {
|
|
576
|
+
width: 220px;
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
hr {
|
|
580
|
+
border: 1px solid #B1B4B6;
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
div.body {
|
|
584
|
+
background-color: #ffffff;
|
|
585
|
+
color: #3E4349;
|
|
586
|
+
padding: 0 30px 0 30px;
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
img.floatingflask {
|
|
590
|
+
padding: 0 0 10px 10px;
|
|
591
|
+
float: right;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
div.footer {
|
|
595
|
+
width: 960px;
|
|
596
|
+
margin: 20px auto 30px auto;
|
|
597
|
+
font-size: 14px;
|
|
598
|
+
color: #888;
|
|
599
|
+
text-align: right;
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
div.footer a {
|
|
603
|
+
color: #888;
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
div.related {
|
|
607
|
+
display: none;
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
div.sphinxsidebar a {
|
|
611
|
+
color: #444;
|
|
612
|
+
text-decoration: none;
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
div.sphinxsidebar a:hover {
|
|
616
|
+
border-bottom: 1px solid #999;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
div.sphinxsidebar {
|
|
620
|
+
font-size: 14px;
|
|
621
|
+
line-height: 1.5;
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
div.sphinxsidebarwrapper {
|
|
625
|
+
padding: 0 10px 18px;
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
div.sphinxsidebarwrapper p.logo {
|
|
629
|
+
padding: 0 0 8px 0;
|
|
630
|
+
margin: 0;
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
div.sphinxsidebar h3,
|
|
634
|
+
div.sphinxsidebar h4 {
|
|
635
|
+
font-family: Helvetica, arial, freesans, clean, sans-serif;
|
|
636
|
+
color: #444;
|
|
637
|
+
font-size: 24px;
|
|
638
|
+
font-weight: normal;
|
|
639
|
+
margin: 0 0 5px 0;
|
|
640
|
+
padding: 0;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
div.sphinxsidebar h4 {
|
|
644
|
+
font-size: 20px;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
div.sphinxsidebar h3 a {
|
|
648
|
+
color: #444;
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
div.sphinxsidebar p.logo a,
|
|
652
|
+
div.sphinxsidebar h3 a,
|
|
653
|
+
div.sphinxsidebar p.logo a:hover,
|
|
654
|
+
div.sphinxsidebar h3 a:hover {
|
|
655
|
+
border: none;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
div.sphinxsidebarwrapper h3.logo {
|
|
659
|
+
margin: 0;
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
div.sphinxsidebar p {
|
|
663
|
+
color: #555;
|
|
664
|
+
margin: 10px 0;
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
div.sphinxsidebar ul {
|
|
668
|
+
margin: 10px 0;
|
|
669
|
+
padding: 0;
|
|
670
|
+
color: #000;
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
div.sphinxsidebar input {
|
|
674
|
+
border: 1px solid #ccc;
|
|
675
|
+
font-family: Helvetica, arial, freesans, clean, sans-serif;
|
|
676
|
+
font-size: 1em;
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
p.feedback a {
|
|
680
|
+
color: rgb(0, 89, 160);
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
/* -- body styles ----------------------------------------------------------- */
|
|
684
|
+
|
|
685
|
+
a {
|
|
686
|
+
color: rgb(0, 89, 160);
|
|
687
|
+
text-decoration: none;
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
a:hover {
|
|
691
|
+
color: #6D4100;
|
|
692
|
+
text-decoration: underline;
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
div.body h1,
|
|
696
|
+
div.body h2,
|
|
697
|
+
div.body h3,
|
|
698
|
+
div.body h4,
|
|
699
|
+
div.body h5,
|
|
700
|
+
div.body h6 {
|
|
701
|
+
font-family: Helvetica, arial, freesans, clean, sans-serif;
|
|
702
|
+
font-weight: normal;
|
|
703
|
+
margin: 30px 0px 10px 0px;
|
|
704
|
+
padding: 0;
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
|
|
708
|
+
|
|
709
|
+
div.body h1 { margin-top: 0; padding-top: 0; font-size: 240%; font-weight: bold; }
|
|
710
|
+
div.body h2 { font-size: 180%; border-bottom: 1px solid #ccc; padding-bottom: 6px; font-weight: bold; }
|
|
711
|
+
div.body h3 { font-size: 150%; font-weight: bold; }
|
|
712
|
+
div.body h4 { font-size: 130%; }
|
|
713
|
+
div.body h5 { font-size: 130%; }
|
|
714
|
+
div.body h6 { font-size: 130%; }
|
|
715
|
+
|
|
716
|
+
a.headerlink {
|
|
717
|
+
color: #ddd;
|
|
718
|
+
padding: 0 4px;
|
|
719
|
+
text-decoration: none;
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
a.headerlink:hover {
|
|
723
|
+
color: #444;
|
|
724
|
+
background: #eaeaea;
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
div.body p, div.body dd, div.body li {
|
|
728
|
+
line-height: 1.5em;
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
div.admonition {
|
|
732
|
+
background: #fafafa;
|
|
733
|
+
margin: 20px 0;
|
|
734
|
+
padding: 10px 30px;
|
|
735
|
+
border-top: 1px solid #ccc;
|
|
736
|
+
border-bottom: 1px solid #ccc;
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
div.admonition tt.xref, div.admonition a tt {
|
|
740
|
+
border-bottom: 1px solid #fafafa;
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
dd div.admonition {
|
|
744
|
+
margin-left: -60px;
|
|
745
|
+
padding-left: 60px;
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
div.admonition p.admonition-title {
|
|
749
|
+
font-family: Helvetica, arial, freesans, clean, sans-serif;
|
|
750
|
+
font-weight: normal;
|
|
751
|
+
font-size: 22px;
|
|
752
|
+
margin: 0 0 10px 0;
|
|
753
|
+
padding: 0;
|
|
754
|
+
line-height: 1;
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
div.admonition p.last {
|
|
758
|
+
margin-bottom: 0;
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
div.highlight {
|
|
762
|
+
background-color: white;
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
dt:target, .highlight {
|
|
766
|
+
background: #FAF3E8;
|
|
767
|
+
}
|
|
768
|
+
|
|
769
|
+
div.note {
|
|
770
|
+
background-color: #f8f8f8;
|
|
771
|
+
border: 1px solid #ccc;
|
|
772
|
+
border-radius: 3px;
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
div.seealso {
|
|
776
|
+
background-color: #ffc;
|
|
777
|
+
border: 1px solid #ff6;
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
div.topic {
|
|
781
|
+
background-color: #f8f8f8;
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
p.admonition-title {
|
|
785
|
+
display: inline;
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
p.admonition-title:after {
|
|
789
|
+
content: ":";
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
pre, tt {
|
|
793
|
+
font-family: 'Consolas', 'Menlo', 'Deja Vu Sans Mono', 'Bitstream Vera Sans Mono', monospace;
|
|
794
|
+
font-size: 0.9em;
|
|
795
|
+
}
|
|
796
|
+
|
|
797
|
+
img.screenshot {
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
tt.descname, tt.descclassname {
|
|
801
|
+
font-size: 0.95em;
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
tt.descname {
|
|
805
|
+
padding-right: 0.08em;
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
img.screenshot {
|
|
809
|
+
-moz-box-shadow: 2px 2px 4px #eee;
|
|
810
|
+
-webkit-box-shadow: 2px 2px 4px #eee;
|
|
811
|
+
box-shadow: 2px 2px 4px #eee;
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
table.docutils {
|
|
815
|
+
border: 1px solid #888;
|
|
816
|
+
-moz-box-shadow: 2px 2px 4px #eee;
|
|
817
|
+
-webkit-box-shadow: 2px 2px 4px #eee;
|
|
818
|
+
box-shadow: 2px 2px 4px #eee;
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
table.docutils td, table.docutils th {
|
|
822
|
+
border: 1px solid #888;
|
|
823
|
+
padding: 0.25em 0.7em;
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
table.field-list, table.footnote {
|
|
827
|
+
border: none;
|
|
828
|
+
-moz-box-shadow: none;
|
|
829
|
+
-webkit-box-shadow: none;
|
|
830
|
+
box-shadow: none;
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
table.footnote {
|
|
834
|
+
margin: 15px 0;
|
|
835
|
+
width: 100%;
|
|
836
|
+
border: 1px solid #eee;
|
|
837
|
+
background: #fdfdfd;
|
|
838
|
+
font-size: 0.9em;
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
table.footnote + table.footnote {
|
|
842
|
+
margin-top: -15px;
|
|
843
|
+
border-top: none;
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
table.field-list th {
|
|
847
|
+
padding: 0 0.8em 0 0;
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
table.field-list td {
|
|
851
|
+
padding: 0;
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
table.footnote td.label {
|
|
855
|
+
width: 0px;
|
|
856
|
+
padding: 0.3em 0 0.3em 0.5em;
|
|
857
|
+
}
|
|
858
|
+
|
|
859
|
+
table.footnote td {
|
|
860
|
+
padding: 0.3em 0.5em;
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
dl {
|
|
864
|
+
margin: 0;
|
|
865
|
+
padding: 0;
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
dl dd {
|
|
869
|
+
margin-left: 30px;
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
blockquote {
|
|
873
|
+
margin: 0 0 0 30px;
|
|
874
|
+
padding: 0;
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
ul, ol {
|
|
878
|
+
margin: 10px 0 10px 30px;
|
|
879
|
+
padding: 0;
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
pre {
|
|
883
|
+
background-color: #f8f8f8;
|
|
884
|
+
border: 1px solid #ccc;
|
|
885
|
+
font-size: 13px;
|
|
886
|
+
line-height: 19px;
|
|
887
|
+
overflow: auto;
|
|
888
|
+
padding: 6px 10px;
|
|
889
|
+
border-radius: 3px;
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
dl pre, blockquote pre, li pre {
|
|
893
|
+
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
dl dl pre {
|
|
897
|
+
margin-left: -90px;
|
|
898
|
+
padding-left: 90px;
|
|
899
|
+
}
|
|
900
|
+
|
|
901
|
+
tt {
|
|
902
|
+
background-color: #ecf0f3;
|
|
903
|
+
color: #222;
|
|
904
|
+
/* padding: 1px 2px; */
|
|
905
|
+
}
|
|
906
|
+
|
|
907
|
+
tt.xref, a tt {
|
|
908
|
+
background-color: #FBFBFB;
|
|
909
|
+
border-bottom: 1px solid white;
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
a.reference {
|
|
913
|
+
text-decoration: none;
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
a.reference:hover {
|
|
917
|
+
border-bottom: 1px solid #6D4100;
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
a.footnote-reference {
|
|
921
|
+
text-decoration: none;
|
|
922
|
+
font-size: 0.7em;
|
|
923
|
+
vertical-align: top;
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
a.footnote-reference:hover {
|
|
927
|
+
border-bottom: 1px solid #6D4100;
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
a:hover tt {
|
|
931
|
+
background: #EEE;
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
.logo img {
|
|
935
|
+
margin: 0 0 24px 0;
|
|
936
|
+
padding: 0;
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
#menu {
|
|
940
|
+
padding: 12px;
|
|
941
|
+
margin: 0 0 24 px;
|
|
942
|
+
height: 19px;
|
|
943
|
+
background: rgb(244, 248, 250);
|
|
944
|
+
border-bottom: 1px solid rgb(206, 221, 230);
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
.width-wrapper {
|
|
948
|
+
width: 960px;
|
|
949
|
+
margin: 0 auto;
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
#menu #left-logo {
|
|
953
|
+
float: left;
|
|
954
|
+
margin-right: 58px;
|
|
955
|
+
font-weight: bold;
|
|
956
|
+
margin-left: 20px;
|
|
957
|
+
}
|
|
958
|
+
#menu #main-menu {
|
|
959
|
+
float: left;
|
|
960
|
+
margin: 0;
|
|
961
|
+
padding: 0;
|
|
962
|
+
}
|
|
963
|
+
#menu #main-menu li {
|
|
964
|
+
display: block;
|
|
965
|
+
margin: 0 30px 0 0;
|
|
966
|
+
padding: 0;
|
|
967
|
+
float: left;
|
|
968
|
+
font-weight: bold;
|
|
969
|
+
}
|
|
970
|
+
#menu a {
|
|
971
|
+
text-decoration: none;
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
#footer-links {
|
|
975
|
+
border-top: 1px solid #ccc;
|
|
976
|
+
padding-top: 12px;
|
|
977
|
+
margin-top: 30px;
|
|
978
|
+
height: 30px;
|
|
979
|
+
}
|
|
980
|
+
|
|
981
|
+
#footer-links a {
|
|
982
|
+
padding: 0 24px 0 0;
|
|
983
|
+
display: block;
|
|
984
|
+
padding: 0 0 0 20px;
|
|
985
|
+
float: right;
|
|
986
|
+
}
|
|
987
|
+
|
|
988
|
+
.inline-toc {
|
|
989
|
+
background-color: #fff !important;
|
|
990
|
+
border: none !important;
|
|
991
|
+
padding: 0 0 0 14px !important;
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
div .warning {
|
|
995
|
+
background: rgb(255, 242, 242);
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
table.api-operations {
|
|
999
|
+
width: 100%;
|
|
1000
|
+
border: none;
|
|
1001
|
+
border-width: 0;
|
|
1002
|
+
-webkit-box-shadow: none;
|
|
1003
|
+
box-shadow: none;
|
|
1004
|
+
-moz-box-shadow: none;
|
|
1005
|
+
}
|
|
1006
|
+
|
|
1007
|
+
table.api-operations tbody td {
|
|
1008
|
+
border-top: 0;
|
|
1009
|
+
border-left: 0;
|
|
1010
|
+
border-right: 0;
|
|
1011
|
+
border-bottom: 1px solid #eee;
|
|
1012
|
+
}
|
|
1013
|
+
|
|
1014
|
+
#github-stars {
|
|
1015
|
+
float: right;
|
|
1016
|
+
margin: 0;
|
|
1017
|
+
padding: 0;
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
#github-stars iframe {
|
|
1021
|
+
margin: 0;
|
|
1022
|
+
padding: 0;
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
.internal em {
|
|
1026
|
+
text-decoration: none !important;
|
|
1027
|
+
font-style: none !important;
|
|
1028
|
+
}
|
|
1029
|
+
|
|
1030
|
+
/*
|
|
1031
|
+
* small_flask.css_t
|
|
1032
|
+
* ~~~~~~~~~~~~~~~~~
|
|
1033
|
+
*
|
|
1034
|
+
* :copyright: Copyright 2010 by Armin Ronacher.
|
|
1035
|
+
* :license: Flask Design License, see LICENSE for details.
|
|
1036
|
+
*/
|
|
1037
|
+
|
|
1038
|
+
@media only screen and (max-device-width: 480px)
|
|
1039
|
+
{
|
|
1040
|
+
|
|
1041
|
+
body {
|
|
1042
|
+
margin: 0;
|
|
1043
|
+
padding: 20px 30px;
|
|
1044
|
+
}
|
|
1045
|
+
|
|
1046
|
+
div.documentwrapper {
|
|
1047
|
+
float: none;
|
|
1048
|
+
background: white;
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
div.sphinxsidebar {
|
|
1052
|
+
display: block;
|
|
1053
|
+
float: none;
|
|
1054
|
+
width: 102.5%;
|
|
1055
|
+
margin: 50px -30px -20px -30px;
|
|
1056
|
+
padding: 10px 20px;
|
|
1057
|
+
background: #333;
|
|
1058
|
+
color: white;
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
div.sphinxsidebar h3, div.sphinxsidebar h4, div.sphinxsidebar p,
|
|
1062
|
+
div.sphinxsidebar h3 a {
|
|
1063
|
+
color: white;
|
|
1064
|
+
}
|
|
1065
|
+
|
|
1066
|
+
div.sphinxsidebar a {
|
|
1067
|
+
color: #aaa;
|
|
1068
|
+
}
|
|
1069
|
+
|
|
1070
|
+
div.sphinxsidebar p.logo {
|
|
1071
|
+
display: none;
|
|
1072
|
+
}
|
|
1073
|
+
|
|
1074
|
+
div.document {
|
|
1075
|
+
width: 100%;
|
|
1076
|
+
margin: 0;
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
div.related {
|
|
1080
|
+
display: block;
|
|
1081
|
+
margin: 0;
|
|
1082
|
+
padding: 10px 0 20px 0;
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
div.related ul,
|
|
1086
|
+
div.related ul li {
|
|
1087
|
+
margin: 0;
|
|
1088
|
+
padding: 0;
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1091
|
+
div.footer {
|
|
1092
|
+
display: none;
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
div.bodywrapper {
|
|
1096
|
+
margin: 0;
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
div.body {
|
|
1100
|
+
min-height: 0;
|
|
1101
|
+
padding: 0;
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
} /* end @media */
|
|
1105
|
+
|
|
1106
|
+
/*
|
|
1107
|
+
* yard customizations
|
|
1108
|
+
*/
|
|
1109
|
+
|
|
1110
|
+
table { border-collapse: collapse; }
|
|
1111
|
+
table th, table td { border: 1px solid #ccc; padding: 8px; padding-right: 17px; }
|
|
1112
|
+
table tr:nth-child(odd) { background: #eee; }
|
|
1113
|
+
table tr:nth-child(even) { background: #fff; }
|
|
1114
|
+
table th { background: #fff; }
|
|
1115
|
+
|
|
1116
|
+
#search-results .search li { display: block; }
|
|
1117
|
+
|
|
1118
|
+
div.body ul {
|
|
1119
|
+
list-style: none; padding: 0; margin: 0; font-size: 1.1em; clear: both;
|
|
1120
|
+
margin-bottom: 12px;
|
|
1121
|
+
}
|
|
1122
|
+
div.body ul li {
|
|
1123
|
+
border-bottom: 1px solid #ccc; padding-bottom: 5px;
|
|
1124
|
+
margin-bottom: 7px; width: 47%; float: left; margin-right: 7px;
|
|
1125
|
+
}
|
|
1126
|
+
div.body ul li em { font-size: 0.9em; }
|
|
1127
|
+
|
|
1128
|
+
div.body .clear { clear: both; }
|
|
1129
|
+
|
|
1130
|
+
div.body p.note { background: #f5f5f5; padding: 14px; }
|
|
1131
|
+
div.body p.note:before { content: "Note: "; font-weight: bold; }
|
|
1132
|
+
|
|
1133
|
+
#toc.one-file { margin-bottom: 2em; border-bottom: 1px #ccc solid; }
|
|
1134
|
+
div.body #toc.one-file ul,
|
|
1135
|
+
div.body ul.search {
|
|
1136
|
+
padding-left: 12px;
|
|
1137
|
+
margin-left: 12px;
|
|
1138
|
+
margin-top: 0; list-style: disc; font-size: 1em;
|
|
1139
|
+
}
|
|
1140
|
+
div.body #toc.one-file ul li,
|
|
1141
|
+
div.body ul.search li {
|
|
1142
|
+
padding-bottom: 0; border: 0; float: none; width: inherit;
|
|
1143
|
+
margin-bottom: 4px;
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1146
|
+
@media print {
|
|
1147
|
+
#menu,
|
|
1148
|
+
#footer-links {
|
|
1149
|
+
display: none;
|
|
1150
|
+
}
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
/* ---- customizations ---- */
|
|
1154
|
+
|
|
1155
|
+
.subtitle { font-size: 1.1em; padding: 0; margin: 0; position: relative; top: -6px; color: #666; font-weight: 100; }
|
|
1156
|
+
|
|
1157
|
+
.buttons a {
|
|
1158
|
+
display: block; float: left;
|
|
1159
|
+
padding: 9px 14px 9px;
|
|
1160
|
+
margin-right: 12px;
|
|
1161
|
+
-webkit-border-radius: 6px;
|
|
1162
|
+
border-radius: 6px;
|
|
1163
|
+
font-size: 16px;
|
|
1164
|
+
border: 1px solid #ccc;
|
|
1165
|
+
background-color: hsl(201, 100%, 30%) !important;
|
|
1166
|
+
background-repeat: repeat-x;
|
|
1167
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00a5ff", endColorstr="#006399");
|
|
1168
|
+
background-image: -khtml-gradient(linear, left top, left bottom, from(#00a5ff), to(#006399));
|
|
1169
|
+
background-image: -moz-linear-gradient(top, #00a5ff, #006399);
|
|
1170
|
+
background-image: -ms-linear-gradient(top, #00a5ff, #006399);
|
|
1171
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #00a5ff), color-stop(100%, #006399));
|
|
1172
|
+
background-image: -webkit-linear-gradient(top, #00a5ff, #006399);
|
|
1173
|
+
background-image: -o-linear-gradient(top, #00a5ff, #006399);
|
|
1174
|
+
background-image: linear-gradient(#00a5ff, #006399);
|
|
1175
|
+
border-color: #006399 #006399 hsl(201, 100%, 25%);
|
|
1176
|
+
color: #fff !important;
|
|
1177
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.33);
|
|
1178
|
+
-webkit-font-smoothing: antialiased;
|
|
1179
|
+
}
|
|
1180
|
+
.buttons a:hover {
|
|
1181
|
+
text-decoration: none;
|
|
1182
|
+
background-image: -khtml-gradient(linear, left top, left bottom, from(#0085cf), to(#004379));
|
|
1183
|
+
background-image: -moz-linear-gradient(top, #0085cf, #004379);
|
|
1184
|
+
background-image: -ms-linear-gradient(top, #0085cf, #004379);
|
|
1185
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0085cf), color-stop(100%, #004379));
|
|
1186
|
+
background-image: -webkit-linear-gradient(top, #0085cf, #004379);
|
|
1187
|
+
background-image: -o-linear-gradient(top, #0085cf, #004379);
|
|
1188
|
+
background-image: linear-gradient(#0085cf, #004379);
|
|
1189
|
+
}
|
|
1190
|
+
.buttons a:last-child { margin-right: 0; }
|
|
1191
|
+
|
|
1192
|
+
#capabilities-banner { margin-bottom: 12px; font-weight: bold; padding: 12px; }
|