Skip to content

Commit 8edb873

Browse files
committed
es_AR, da_DK to settings docs.
1 parent 25adcb8 commit 8edb873

23 files changed

+1067
-4937
lines changed

docs/html/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 593c378875e01dd54041df9dbab5d032
3+
config: 6e34205e09cd8cae94c46e753ee80c4a
44
tags: fbb0d17656682115ca4d033fb2f83ba1

docs/html/_sources/settings.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ things you may need or wish to modify:
6868
LocalWiki is fully localized and is currently translated into a
6969
number of languages. To change your instance's language, set this
7070
to one of: ``en-us`` (for English), ``pt_PT`` (Portuguese),
71-
``ru_RU`` (Russian), ``de_CH`` (German, CH).
71+
``ru_RU`` (Russian), ``de_CH`` (German, CH), ``es_AR`` (Spanish, AR),
72+
``da_DK`` (Danish).
7273

7374
After changing settings you'll need to restart Apache. On most systems
7475
you can do this by running ``sudo /etc/init.d/apache2 restart``.

docs/html/_static/basic.css

Lines changed: 130 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1-
/**
2-
* Sphinx stylesheet -- basic theme
3-
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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+
*
410
*/
511

612
/* -- main layout ----------------------------------------------------------- */
@@ -73,6 +79,14 @@ div.sphinxsidebar input {
7379
font-size: 1em;
7480
}
7581

82+
div.sphinxsidebar #searchbox input[type="text"] {
83+
width: 170px;
84+
}
85+
86+
div.sphinxsidebar #searchbox input[type="submit"] {
87+
width: 30px;
88+
}
89+
7690
img {
7791
border: 0;
7892
}
@@ -127,6 +141,10 @@ span.linkdescr {
127141

128142
/* -- general index --------------------------------------------------------- */
129143

144+
table.indextable {
145+
width: 100%;
146+
}
147+
130148
table.indextable td {
131149
text-align: left;
132150
vertical-align: top;
@@ -152,6 +170,20 @@ img.toggler {
152170
cursor: pointer;
153171
}
154172

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+
155187
/* -- general body styles --------------------------------------------------- */
156188

157189
a.headerlink {
@@ -189,6 +221,36 @@ p.rubric {
189221
font-weight: bold;
190222
}
191223

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+
192254
/* -- sidebars -------------------------------------------------------------- */
193255

194256
div.sidebar {
@@ -252,7 +314,7 @@ table.docutils {
252314
}
253315

254316
table.docutils td, table.docutils th {
255-
padding: 1px 8px 1px 0;
317+
padding: 1px 8px 1px 5px;
256318
border-top: 0;
257319
border-left: 0;
258320
border-right: 0;
@@ -272,8 +334,37 @@ th {
272334
padding-right: 5px;
273335
}
274336

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+
275346
/* -- other body styles ----------------------------------------------------- */
276347

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+
277368
dl {
278369
margin-bottom: 15px;
279370
}
@@ -292,7 +383,7 @@ dd {
292383
margin-left: 30px;
293384
}
294385

295-
dt:target, .highlight {
386+
dt:target, .highlighted {
296387
background-color: #fbe54e;
297388
}
298389

@@ -329,7 +420,7 @@ dl.glossary dt {
329420
}
330421

331422
.footnote:target {
332-
background-color: #ffa
423+
background-color: #ffa;
333424
}
334425

335426
.line-block {
@@ -344,10 +435,28 @@ dl.glossary dt {
344435
margin-left: 1.5em;
345436
}
346437

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+
347455
/* -- code displays --------------------------------------------------------- */
348456

349457
pre {
350458
overflow: auto;
459+
overflow-y: hidden; /* fixes display issues on Chrome browsers */
351460
}
352461

353462
td.linenos pre {
@@ -384,6 +493,20 @@ h1 tt, h2 tt, h3 tt, h4 tt, h5 tt, h6 tt {
384493
background-color: transparent;
385494
}
386495

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+
387510
/* -- math display ---------------------------------------------------------- */
388511

389512
img.math {
@@ -414,4 +537,4 @@ span.eqno {
414537
#top-link {
415538
display: none;
416539
}
417-
}
540+
}

docs/html/_static/default.css

Lines changed: 46 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1-
/**
2-
* Sphinx stylesheet -- default theme
3-
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1+
/*
2+
* default.css_t
3+
* ~~~~~~~~~~~~~
4+
*
5+
* Sphinx stylesheet -- default theme.
6+
*
7+
* :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS.
8+
* :license: BSD, see LICENSE for details.
9+
*
410
*/
511

612
@import url("basic.css");
@@ -107,21 +113,27 @@ div.sphinxsidebar input {
107113
font-size: 1em;
108114
}
109115

110-
/* -- body styles ----------------------------------------------------------- */
116+
117+
118+
/* -- hyperlink styles ------------------------------------------------------ */
111119

112120
a {
113121
color: #355f7c;
114122
text-decoration: none;
115123
}
116124

125+
a:visited {
126+
color: #355f7c;
127+
text-decoration: none;
128+
}
129+
117130
a:hover {
118131
text-decoration: underline;
119132
}
120133

121-
div.body p, div.body dd, div.body li {
122-
text-align: justify;
123-
line-height: 130%;
124-
}
134+
135+
136+
/* -- body styles ----------------------------------------------------------- */
125137

126138
div.body h1,
127139
div.body h2,
@@ -166,6 +178,18 @@ div.admonition p.admonition-title + p {
166178
display: inline;
167179
}
168180

181+
div.admonition p {
182+
margin-bottom: 5px;
183+
}
184+
185+
div.admonition pre {
186+
margin-bottom: 5px;
187+
}
188+
189+
div.admonition ul, div.admonition ol {
190+
margin-bottom: 5px;
191+
}
192+
169193
div.note {
170194
background-color: #eee;
171195
border: 1px solid #ccc;
@@ -209,10 +233,24 @@ tt {
209233
font-size: 0.95em;
210234
}
211235

236+
th {
237+
background-color: #ede;
238+
}
239+
212240
.warning tt {
213241
background: #efc2c2;
214242
}
215243

216244
.note tt {
217245
background: #d6d6d6;
246+
}
247+
248+
.viewcode-back {
249+
font-family: sans-serif;
250+
}
251+
252+
div.viewcode-block:target {
253+
background-color: #f4debf;
254+
border-top: 1px solid #ac9;
255+
border-bottom: 1px solid #ac9;
218256
}

0 commit comments

Comments
 (0)