Skip to content

Commit 2fbbe94

Browse files
author
James William Pye
committed
Use new changes management layout. (file per branch)
1 parent 8156cfe commit 2fbbe94

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+1465
-509
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Changes in v1.1
2+
===============
3+
4+
1.1.0 in development
5+
--------------------
6+
7+
* Remove two-phase commit interfaces per deprecation in v1.0.
8+
For proper two phase commit use, a lock manager must be employed that
9+
the implementation did nothing to accommodate for.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Sphinx build info version 1
2+
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3+
config: 0d0fb9abae11602c762f620db06f8ea5
4+
tags: fbb0d17656682115ca4d033fb2f83ba1

postgresql/documentation/html/.gitignore

Lines changed: 0 additions & 2 deletions
This file was deleted.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Changes in v1.1
2+
===============
3+
4+
1.1.0 in development
5+
--------------------
6+
7+
* Remove two-phase commit interfaces per deprecation in v1.0.
8+
For proper two phase commit use, a lock manager must be employed that
9+
the implementation did nothing to accommodate for.

postgresql/documentation/html/_sources/changes.txt

Lines changed: 0 additions & 67 deletions
This file was deleted.

postgresql/documentation/html/_sources/index.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ Changes
3939
.. toctree::
4040
:maxdepth: 1
4141

42+
changes-v1.1
4243
changes-v1.0
4344

4445
Sample Code
Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
Modules
2+
=======
3+
4+
Modules intended for general use.
5+
6+
:mod:`postgresql`
7+
-----------------
8+
9+
.. automodule:: postgresql
10+
.. autodata:: version
11+
.. autodata:: version_info
12+
.. autofunction:: open
13+
14+
15+
:mod:`postgresql.sys`
16+
---------------------
17+
18+
.. automodule::
19+
postgresql.sys
20+
:members:
21+
:show-inheritance:
22+
23+
24+
:mod:`postgresql.string`
25+
------------------------
26+
27+
.. automodule::
28+
postgresql.string
29+
:members:
30+
:show-inheritance:
31+
32+
33+
:mod:`postgresql.exceptions`
34+
----------------------------
35+
36+
.. automodule::
37+
postgresql.exceptions
38+
:members:
39+
:show-inheritance:
40+
41+
42+
:mod:`postgresql.temporal`
43+
--------------------------
44+
45+
.. automodule::
46+
postgresql.temporal
47+
:members:
48+
:show-inheritance:
49+
50+
51+
:mod:`postgresql.installation`
52+
------------------------------
53+
54+
.. automodule::
55+
postgresql.installation
56+
:members:
57+
:show-inheritance:
58+
59+
60+
:mod:`postgresql.cluster`
61+
-------------------------
62+
63+
.. automodule::
64+
postgresql.cluster
65+
:members:
66+
:show-inheritance:
67+
68+
69+
:mod:`postgresql.copyman`
70+
-------------------------
71+
72+
.. automodule::
73+
postgresql.copyman
74+
:members:
75+
:show-inheritance:
76+
77+
78+
:mod:`postgresql.alock`
79+
-----------------------
80+
81+
.. automodule::
82+
postgresql.alock
83+
:members:
84+
:show-inheritance:
85+
86+
87+
:mod:`postgresql.api`
88+
---------------------
89+
90+
.. automodule::
91+
postgresql.api
92+
:members:
93+
:show-inheritance:
673 Bytes
Loading

postgresql/documentation/html/_static/basic.css

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,14 @@ div.sphinxsidebar input {
7979
font-size: 1em;
8080
}
8181

82+
div.sphinxsidebar input[type="text"] {
83+
width: 170px;
84+
}
85+
86+
div.sphinxsidebar input[type="submit"] {
87+
width: 30px;
88+
}
89+
8290
img {
8391
border: 0;
8492
}
@@ -236,7 +244,6 @@ img.align-center, .figure.align-center, object.align-center {
236244
}
237245

238246
.align-center {
239-
clear: both;
240247
text-align: center;
241248
}
242249

@@ -440,6 +447,11 @@ dl.glossary dt {
440447
font-style: oblique;
441448
}
442449

450+
abbr, acronym {
451+
border-bottom: dotted 1px;
452+
cursor: help;
453+
}
454+
443455
/* -- code displays --------------------------------------------------------- */
444456

445457
pre {
3.42 KB
Loading

0 commit comments

Comments
 (0)