Skip to content

Commit b31a439

Browse files
committed
Remove trailing whitespace from docs directory.
1 parent b9d3ce2 commit b31a439

File tree

6 files changed

+32
-32
lines changed

6 files changed

+32
-32
lines changed

docs/MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include HISTORY.rst README.rst LICENSE
1+
include HISTORY.rst README.rst LICENSE

docs/_themes/LICENSE

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
Modifications:
1+
Modifications:
22

33
Copyright (c) 2011 Kenneth Reitz.
44

55

6-
Original Project:
6+
Original Project:
77

88
Copyright (c) 2010 by Armin Ronacher.
99

docs/_themes/README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
krTheme Sphinx Style
22
====================
33

4-
This repository contains sphinx styles Kenneth Reitz uses in most of
4+
This repository contains sphinx styles Kenneth Reitz uses in most of
55
his projects. It is a derivative of Mitsuhiko's themes for Flask and Flask related
66
projects. To use this style in your Sphinx documentation, follow
77
this guide:

docs/_themes/kr/theme.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ stylesheet = flasky.css
44
pygments_style = flask_theme_support.FlaskyStyle
55

66
[options]
7-
touch_icon =
7+
touch_icon =

docs/_themes/kr_small/static/flasky.css_t

+22-22
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
11-
11+
1212
@import url("basic.css");
13-
13+
1414
/* -- page layout ----------------------------------------------------------- */
15-
15+
1616
body {
1717
font-family: 'Georgia', serif;
1818
font-size: 17px;
@@ -35,7 +35,7 @@ div.bodywrapper {
3535
hr {
3636
border: 1px solid #B1B4B6;
3737
}
38-
38+
3939
div.body {
4040
background-color: #ffffff;
4141
color: #3E4349;
@@ -46,7 +46,7 @@ img.floatingflask {
4646
padding: 0 0 10px 10px;
4747
float: right;
4848
}
49-
49+
5050
div.footer {
5151
text-align: right;
5252
color: #888;
@@ -55,12 +55,12 @@ div.footer {
5555
width: 650px;
5656
margin: 0 auto 40px auto;
5757
}
58-
58+
5959
div.footer a {
6060
color: #888;
6161
text-decoration: underline;
6262
}
63-
63+
6464
div.related {
6565
line-height: 32px;
6666
color: #888;
@@ -69,18 +69,18 @@ div.related {
6969
div.related ul {
7070
padding: 0 0 0 10px;
7171
}
72-
72+
7373
div.related a {
7474
color: #444;
7575
}
76-
76+
7777
/* -- body styles ----------------------------------------------------------- */
78-
78+
7979
a {
8080
color: #004B6B;
8181
text-decoration: underline;
8282
}
83-
83+
8484
a:hover {
8585
color: #6D4100;
8686
text-decoration: underline;
@@ -89,7 +89,7 @@ a:hover {
8989
div.body {
9090
padding-bottom: 40px; /* saved for footer */
9191
}
92-
92+
9393
div.body h1,
9494
div.body h2,
9595
div.body h3,
@@ -109,24 +109,24 @@ div.indexwrapper h1 {
109109
height: {{ theme_index_logo_height }};
110110
}
111111
{% endif %}
112-
112+
113113
div.body h2 { font-size: 180%; }
114114
div.body h3 { font-size: 150%; }
115115
div.body h4 { font-size: 130%; }
116116
div.body h5 { font-size: 100%; }
117117
div.body h6 { font-size: 100%; }
118-
118+
119119
a.headerlink {
120120
color: white;
121121
padding: 0 4px;
122122
text-decoration: none;
123123
}
124-
124+
125125
a.headerlink:hover {
126126
color: #444;
127127
background: #eaeaea;
128128
}
129-
129+
130130
div.body p, div.body dd, div.body li {
131131
line-height: 1.4em;
132132
}
@@ -164,25 +164,25 @@ div.note {
164164
background-color: #eee;
165165
border: 1px solid #ccc;
166166
}
167-
167+
168168
div.seealso {
169169
background-color: #ffc;
170170
border: 1px solid #ff6;
171171
}
172-
172+
173173
div.topic {
174174
background-color: #eee;
175175
}
176-
176+
177177
div.warning {
178178
background-color: #ffe4e4;
179179
border: 1px solid #f66;
180180
}
181-
181+
182182
p.admonition-title {
183183
display: inline;
184184
}
185-
185+
186186
p.admonition-title:after {
187187
content: ":";
188188
}
@@ -254,7 +254,7 @@ dl {
254254
dl dd {
255255
margin-left: 30px;
256256
}
257-
257+
258258
pre {
259259
padding: 0;
260260
margin: 15px -30px;

docs/user/quickstart.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Make a Request
2424
Making a request with Requests is very simple.
2525

2626
Begin by importing the Requests module::
27-
27+
2828
>>> import requests
2929

3030
Now, let's try to get a webpage. For this example, let's get GitHub's public
@@ -37,12 +37,12 @@ information we need from this object.
3737

3838
Requests' simple API means that all forms of HTTP request are as obvious. For
3939
example, this is how you make an HTTP POST request::
40-
40+
4141
>>> r = requests.post("http://httpbin.org/post")
4242

4343
Nice, right? What about the other HTTP request types: PUT, DELETE, HEAD and
4444
OPTIONS? These are all just as simple::
45-
45+
4646
>>> r = requests.put("http://httpbin.org/put")
4747
>>> r = requests.delete("http://httpbin.org/delete")
4848
>>> r = requests.head("http://httpbin.org/get")
@@ -70,7 +70,7 @@ You can see that the URL has been correctly encoded by printing the URL::
7070

7171
>>> print r.url
7272
u'http://httpbin.org/get?key2=value2&key1=value1'
73-
73+
7474

7575
Response Content
7676
----------------
@@ -229,7 +229,7 @@ You can set the filename explicitly::
229229
If you want, you can send strings to be received as files::
230230

231231
>>> url = 'http://httpbin.org/post'
232-
>>> files = {'file': ('report.csv', 'some,data,to,send\nanother,row,to,send\n')}
232+
>>> files = {'file': ('report.csv', 'some,data,to,send\nanother,row,to,send\n')}
233233

234234
>>> r = requests.post(url, files=files)
235235
>>> r.text

0 commit comments

Comments
 (0)