27 files changed

+1136
-754
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
Changes
22
=======
33

4-
1.0.2 in development
5-
--------------------
4+
1.0.2 released on 2010-09-18
5+
----------------------------
66

7+
* Add support for DOMAINs in registered composites. (Elvis Pranskevichus)
8+
* Properly raise StopIteration in Cursor.__next__. (Elvis Pranskevichus)
79
* Add Cluster Management documentation.
10+
* Release savepoints after rolling them back.
11+
* Fix Startup() usage for Python 3.2.
12+
* Emit deprecation warning when 'gid' is given to xact().
13+
* Compensate for Python3.2's ElementTree API changes.
814

915
1.0.1 released on 2010-04-24
1016
----------------------------
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-2010 by the Sphinx team, see AUTHORS.
8+
* :license: BSD, see LICENSE for details.
9+
*
410
*/
511

612
/* -- main layout ----------------------------------------------------------- */
@@ -127,6 +133,10 @@ span.linkdescr {
127133

128134
/* -- general index --------------------------------------------------------- */
129135

136+
table.indextable {
137+
width: 100%;
138+
}
139+
130140
table.indextable td {
131141
text-align: left;
132142
vertical-align: top;
@@ -152,6 +162,20 @@ img.toggler {
152162
cursor: pointer;
153163
}
154164

165+
div.modindex-jumpbox {
166+
border-top: 1px solid #ddd;
167+
border-bottom: 1px solid #ddd;
168+
margin: 1em 0 1em 0;
169+
padding: 0.4em;
170+
}
171+
172+
div.genindex-jumpbox {
173+
border-top: 1px solid #ddd;
174+
border-bottom: 1px solid #ddd;
175+
margin: 1em 0 1em 0;
176+
padding: 0.4em;
177+
}
178+
155179
/* -- general body styles --------------------------------------------------- */
156180

157181
a.headerlink {
@@ -189,6 +213,19 @@ p.rubric {
189213
font-weight: bold;
190214
}
191215

216+
.align-left {
217+
text-align: left;
218+
}
219+
220+
.align-center {
221+
clear: both;
222+
text-align: center;
223+
}
224+
225+
.align-right {
226+
text-align: right;
227+
}
228+
192229
/* -- sidebars -------------------------------------------------------------- */
193230

194231
div.sidebar {
@@ -252,7 +289,7 @@ table.docutils {
252289
}
253290

254291
table.docutils td, table.docutils th {
255-
padding: 1px 8px 1px 0;
292+
padding: 1px 8px 1px 5px;
256293
border-top: 0;
257294
border-left: 0;
258295
border-right: 0;
@@ -272,8 +309,37 @@ th {
272309
padding-right: 5px;
273310
}
274311

312+
table.citation {
313+
border-left: solid 1px gray;
314+
margin-left: 1px;
315+
}
316+
317+
table.citation td {
318+
border-bottom: none;
319+
}
320+
275321
/* -- other body styles ----------------------------------------------------- */
276322

323+
ol.arabic {
324+
list-style: decimal;
325+
}
326+
327+
ol.loweralpha {
328+
list-style: lower-alpha;
329+
}
330+
331+
ol.upperalpha {
332+
list-style: upper-alpha;
333+
}
334+
335+
ol.lowerroman {
336+
list-style: lower-roman;
337+
}
338+
339+
ol.upperroman {
340+
list-style: upper-roman;
341+
}
342+
277343
dl {
278344
margin-bottom: 15px;
279345
}
@@ -292,7 +358,7 @@ dd {
292358
margin-left: 30px;
293359
}
294360

295-
dt:target, .highlight {
361+
dt:target, .highlighted {
296362
background-color: #fbe54e;
297363
}
298364

@@ -332,6 +398,30 @@ dl.glossary dt {
332398
background-color: #ffa
333399
}
334400

401+
.line-block {
402+
display: block;
403+
margin-top: 1em;
404+
margin-bottom: 1em;
405+
}
406+
407+
.line-block .line-block {
408+
margin-top: 0;
409+
margin-bottom: 0;
410+
margin-left: 1.5em;
411+
}
412+
413+
.guilabel, .menuselection {
414+
font-family: sans-serif;
415+
}
416+
417+
.accelerator {
418+
text-decoration: underline;
419+
}
420+
421+
.classifier {
422+
font-style: oblique;
423+
}
424+
335425
/* -- code displays --------------------------------------------------------- */
336426

337427
pre {
@@ -372,6 +462,20 @@ h1 tt, h2 tt, h3 tt, h4 tt, h5 tt, h6 tt {
372462
background-color: transparent;
373463
}
374464

465+
.viewcode-link {
466+
float: right;
467+
}
468+
469+
.viewcode-back {
470+
float: right;
471+
font-family: sans-serif;
472+
}
473+
474+
div.viewcode-block:target {
475+
margin: -1px -10px;
476+
padding: 0 10px;
477+
}
478+
375479
/* -- math display ---------------------------------------------------------- */
376480

377481
img.math {
@@ -392,7 +496,7 @@ span.eqno {
392496
div.document,
393497
div.documentwrapper,
394498
div.bodywrapper {
395-
margin: 0;
499+
margin: 0 !important;
396500
width: 100%;
397501
}
398502

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-2010 by the Sphinx team, see AUTHORS.
8+
* :license: BSD, see LICENSE for details.
9+
*
410
*/
511

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

110-
/* -- body styles ----------------------------------------------------------- */
116+
117+
/* -- hyperlink styles ------------------------------------------------------ */
111118

112119
a {
113120
color: #355f7c;
114121
text-decoration: none;
115122
}
116123

124+
a:visited {
125+
color: #355f7c;
126+
text-decoration: none;
127+
}
128+
117129
a:hover {
118130
text-decoration: underline;
119131
}
120132

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

126137
div.body h1,
127138
div.body h2,
@@ -166,6 +177,18 @@ div.admonition p.admonition-title + p {
166177
display: inline;
167178
}
168179

180+
div.admonition p {
181+
margin-bottom: 5px;
182+
}
183+
184+
div.admonition pre {
185+
margin-bottom: 5px;
186+
}
187+
188+
div.admonition ul, div.admonition ol {
189+
margin-bottom: 5px;
190+
}
191+
169192
div.note {
170193
background-color: #eee;
171194
border: 1px solid #ccc;
@@ -207,4 +230,26 @@ tt {
207230
background-color: #ecf0f3;
208231
padding: 0 1px 0 1px;
209232
font-size: 0.95em;
233+
}
234+
235+
th {
236+
background-color: #ede;
237+
}
238+
239+
.warning tt {
240+
background: #efc2c2;
241+
}
242+
243+
.note tt {
244+
background: #d6d6d6;
245+
}
246+
247+
.viewcode-back {
248+
font-family: sans-serif;
249+
}
250+
251+
div.viewcode-block:target {
252+
background-color: #f4debf;
253+
border-top: 1px solid #ac9;
254+
border-bottom: 1px solid #ac9;
210255
}

0 commit comments

Comments
 (0)