Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit f0210f3

Browse files
committed
Update docs for release 2.1.0
1 parent 3496d37 commit f0210f3

File tree

138 files changed

+8281
-8888
lines changed

Some content is hidden

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

138 files changed

+8281
-8888
lines changed

‎Authors.html‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ <h1 class="pudge-member-page-heading">Authors</h1>
5858
<li>Ken Lalonde</li>
5959
<li>Andrew Ziem &lt;ahz001 at gmail.com></li>
6060
<li>Andrew Trusty &lt;atrusty at gatech.edu></li>
61+
<li>Ian Cordasco &lt;graffatcolmingov at gmail.com></li>
6162
<li>Oleg Broytman &lt;<a href="mailto:phd@phdru.name" class="reference external">phd@phdru.name</a>></li>
6263
</ul>
6364
<a href="http://sourceforge.net/projects/sqlobject" class="reference external image-reference"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=74338&amp;type=10" alt="Get SQLObject at SourceForge.net. Fast, secure and Free Open Source software downloads" style="width: 80px; height: 15px;" class="noborder align-center"></a>

‎DeveloperGuide.html‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ <h1>Testing</h1>
195195
tests. So please, write tests; everything at least needs to be
196196
exercised, even if the tests are absolutely complete.</p>
197197
<p>We now use Travis CI to run tests. See the status:</p>
198-
<a href="https://travis-ci.org/sqlobject/sqlobject" class="reference external image-reference"><img src="https://travis-ci.org/sqlobject/sqlobject.svg?branch=2.0" alt="https://travis-ci.org/sqlobject/sqlobject.svg?branch=2.0"></a>
198+
<a href="https://travis-ci.org/sqlobject/sqlobject" class="reference external image-reference"><img src="https://travis-ci.org/sqlobject/sqlobject.svg?branch=2.1" alt="https://travis-ci.org/sqlobject/sqlobject.svg?branch=2.1"></a>
199199
</div>
200200
<div class="section" id="documentation">
201201
<h1>Documentation</h1>

‎News.html‎

Lines changed: 100 additions & 77 deletions
Large diffs are not rendered by default.

‎TODO.html‎

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -48,19 +48,6 @@ <h1 class="pudge-member-page-heading">TODO</h1>
4848
</li>
4949
<li><p class="first">SQLObject.fastInsert().</p>
5050
</li>
51-
<li><p class="first">List databases in the connection.</p>
52-
</li>
53-
<li><p class="first">List tables/indices in the DB. The query in MySQL is <tt class="docutils literal">SHOW TABLES</tt>;
54-
in SQLite it is</p>
55-
<blockquote>
56-
<p>SELECT name FROM sqlite_master WHERE type='table' ORDER BY name;</p>
57-
</blockquote>
58-
<p>and in Postgres it is something like</p>
59-
<blockquote>
60-
<p>SELECT c.relname FROM pg_class c, pg_type t
61-
WHERE c.reltype = t.oid AND t.typname = 'table'.</p>
62-
</blockquote>
63-
</li>
6451
<li><p class="first">IntervalCol</p>
6552
</li>
6653
<li><p class="first">TimedeltaCol</p>
@@ -114,9 +101,6 @@ <h1 class="pudge-member-page-heading">TODO</h1>
114101
</li>
115102
<li><p class="first">Deprecate, then remove connectionForOldURI.</p>
116103
</li>
117-
<li><p class="first">Python 3.0+. For an attempt to port FormEncode to py3k see
118-
<a href="https://bitbucket.org/fetchinson/formencode-py3k" class="reference external">https://bitbucket.org/fetchinson/formencode-py3k</a></p>
119-
</li>
120104
<li><p class="first">Switch from setuptools to distribute.</p>
121105
</li>
122106
<li><p class="first">oursql MySQL bindings: <a href="https://launchpad.net/oursql" class="reference external">https://launchpad.net/oursql</a></p>

‎class-sqlobject.dbconnection.ConnectionHub.html‎

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ <h4 class="pudge-member-page-subheading">
2929
</a>
3030
</li>
3131
<li>
32-
<a href="sqlobject/dbconnection.py.html?f=874&amp;l=973#874" class="pudge-section-link">
32+
<a href="sqlobject/dbconnection.py.html?f=875&amp;l=974#875" class="pudge-section-link">
3333
Source
3434
</a>
3535
</li>
@@ -103,39 +103,39 @@ <h4 class="pudge-member-name"><span class="prefix">f</span>
103103
<a name="__init__"></a>
104104
<h4 class="pudge-member-name"><span class="prefix">f</span>
105105
<tt><a href="class-sqlobject.dbconnection.ConnectionHub.html#__init__" class="pudge-obj-link">__init__</a>(self)</tt>
106-
<a href="sqlobject/dbconnection.py.html?f=895&amp;l=897#895" title="View Source">...</a>
106+
<a href="sqlobject/dbconnection.py.html?f=896&amp;l=898#896" title="View Source">...</a>
107107
</h4>
108108
<div class="pudge-section rst">
109109
</div>
110110
</div><div class="pudge-member routine ">
111111
<a name="__get__"></a>
112112
<h4 class="pudge-member-name"><span class="prefix">f</span>
113113
<tt><a href="class-sqlobject.dbconnection.ConnectionHub.html#__get__" class="pudge-obj-link">__get__</a>(self, obj, type=None)</tt>
114-
<a href="sqlobject/dbconnection.py.html?f=898&amp;l=905#898" title="View Source">...</a>
114+
<a href="sqlobject/dbconnection.py.html?f=899&amp;l=906#899" title="View Source">...</a>
115115
</h4>
116116
<div class="pudge-section rst">
117117
</div>
118118
</div><div class="pudge-member routine ">
119119
<a name="__set__"></a>
120120
<h4 class="pudge-member-name"><span class="prefix">f</span>
121121
<tt><a href="class-sqlobject.dbconnection.ConnectionHub.html#__set__" class="pudge-obj-link">__set__</a>(self, obj, value)</tt>
122-
<a href="sqlobject/dbconnection.py.html?f=906&amp;l=908#906" title="View Source">...</a>
122+
<a href="sqlobject/dbconnection.py.html?f=907&amp;l=909#907" title="View Source">...</a>
123123
</h4>
124124
<div class="pudge-section rst">
125125
</div>
126126
</div><div class="pudge-member routine ">
127127
<a name="getConnection"></a>
128128
<h4 class="pudge-member-name"><span class="prefix">f</span>
129129
<tt><a href="class-sqlobject.dbconnection.ConnectionHub.html#getConnection" class="pudge-obj-link">getConnection</a>(self)</tt>
130-
<a href="sqlobject/dbconnection.py.html?f=909&amp;l=919#909" title="View Source">...</a>
130+
<a href="sqlobject/dbconnection.py.html?f=910&amp;l=920#910" title="View Source">...</a>
131131
</h4>
132132
<div class="pudge-section rst">
133133
</div>
134134
</div><div class="pudge-member routine ">
135135
<a name="doInTransaction"></a>
136136
<h4 class="pudge-member-name"><span class="prefix">f</span>
137137
<tt><a href="class-sqlobject.dbconnection.ConnectionHub.html#doInTransaction" class="pudge-obj-link">doInTransaction</a>(self, func, *args, **kw)</tt>
138-
<a href="sqlobject/dbconnection.py.html?f=920&amp;l=960#920" title="View Source">...</a>
138+
<a href="sqlobject/dbconnection.py.html?f=921&amp;l=961#921" title="View Source">...</a>
139139
</h4>
140140
<div class="pudge-section rst">
141141
<p class="pudge-member-blurb">
@@ -154,7 +154,7 @@ <h4 class="pudge-member-name"><span class="prefix">f</span>
154154
<p>
155155
<small>
156156
See
157-
<a href="sqlobject/dbconnection.py.html?f=874&amp;l=973#874" title="sqlobject/dbconnection.py:874">the source</a>
157+
<a href="sqlobject/dbconnection.py.html?f=875&amp;l=974#875" title="sqlobject/dbconnection.py:875">the source</a>
158158
for more information.
159159
</small>
160160
</p>

‎class-sqlobject.dbconnection.ConnectionURIOpener.html‎

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ <h1 class="pudge-member-page-heading">
2323
</a>
2424
</li>
2525
<li>
26-
<a href="sqlobject/dbconnection.py.html?f=974&amp;l=1025#974" class="pudge-section-link">
26+
<a href="sqlobject/dbconnection.py.html?f=975&amp;l=1026#975" class="pudge-section-link">
2727
Source
2828
</a>
2929
</li>
@@ -75,47 +75,47 @@ <h4 class="pudge-member-name"><span class="prefix">f</span>
7575
<a name="__init__"></a>
7676
<h4 class="pudge-member-name"><span class="prefix">f</span>
7777
<tt><a href="class-sqlobject.dbconnection.ConnectionURIOpener.html#__init__" class="pudge-obj-link">__init__</a>(self)</tt>
78-
<a href="sqlobject/dbconnection.py.html?f=976&amp;l=980#976" title="View Source">...</a>
78+
<a href="sqlobject/dbconnection.py.html?f=977&amp;l=981#977" title="View Source">...</a>
7979
</h4>
8080
<div class="pudge-section rst">
8181
</div>
8282
</div><div class="pudge-member routine ">
8383
<a name="registerConnection"></a>
8484
<h4 class="pudge-member-name"><span class="prefix">f</span>
8585
<tt><a href="class-sqlobject.dbconnection.ConnectionURIOpener.html#registerConnection" class="pudge-obj-link">registerConnection</a>(self, schemes, builder)</tt>
86-
<a href="sqlobject/dbconnection.py.html?f=981&amp;l=987#981" title="View Source">...</a>
86+
<a href="sqlobject/dbconnection.py.html?f=982&amp;l=988#982" title="View Source">...</a>
8787
</h4>
8888
<div class="pudge-section rst">
8989
</div>
9090
</div><div class="pudge-member routine ">
9191
<a name="registerConnectionInstance"></a>
9292
<h4 class="pudge-member-name"><span class="prefix">f</span>
9393
<tt><a href="class-sqlobject.dbconnection.ConnectionURIOpener.html#registerConnectionInstance" class="pudge-obj-link">registerConnectionInstance</a>(self, inst)</tt>
94-
<a href="sqlobject/dbconnection.py.html?f=988&amp;l=995#988" title="View Source">...</a>
94+
<a href="sqlobject/dbconnection.py.html?f=989&amp;l=996#989" title="View Source">...</a>
9595
</h4>
9696
<div class="pudge-section rst">
9797
</div>
9898
</div><div class="pudge-member routine ">
9999
<a name="connectionForURI"></a>
100100
<h4 class="pudge-member-name"><span class="prefix">f</span>
101101
<tt><a href="class-sqlobject.dbconnection.ConnectionURIOpener.html#connectionForURI" class="pudge-obj-link">connectionForURI</a>(self, uri, oldUri=False, **args)</tt>
102-
<a href="sqlobject/dbconnection.py.html?f=996&amp;l=1019#996" title="View Source">...</a>
102+
<a href="sqlobject/dbconnection.py.html?f=997&amp;l=1020#997" title="View Source">...</a>
103103
</h4>
104104
<div class="pudge-section rst">
105105
</div>
106106
</div><div class="pudge-member routine ">
107107
<a name="dbConnectionForScheme"></a>
108108
<h4 class="pudge-member-name"><span class="prefix">f</span>
109109
<tt><a href="class-sqlobject.dbconnection.ConnectionURIOpener.html#dbConnectionForScheme" class="pudge-obj-link">dbConnectionForScheme</a>(self, scheme)</tt>
110-
<a href="sqlobject/dbconnection.py.html?f=1020&amp;l=1025#1020" title="View Source">...</a>
110+
<a href="sqlobject/dbconnection.py.html?f=1021&amp;l=1026#1021" title="View Source">...</a>
111111
</h4>
112112
<div class="pudge-section rst">
113113
</div>
114114
</div>
115115
<p>
116116
<small>
117117
See
118-
<a href="sqlobject/dbconnection.py.html?f=974&amp;l=1025#974" title="sqlobject/dbconnection.py:974">the source</a>
118+
<a href="sqlobject/dbconnection.py.html?f=975&amp;l=1026#975" title="sqlobject/dbconnection.py:975">the source</a>
119119
for more information.
120120
</small>
121121
</p>

‎class-sqlobject.dbconnection.DBAPI.html‎

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ <h4 class="pudge-member-page-subheading">
2929
</a>
3030
</li>
3131
<li>
32-
<a href="sqlobject/dbconnection.py.html?f=307&amp;l=704#307" class="pudge-section-link">
32+
<a href="sqlobject/dbconnection.py.html?f=307&amp;l=705#307" class="pudge-section-link">
3333
Source
3434
</a>
3535
</li>
@@ -311,31 +311,31 @@ <h4 class="pudge-member-name"><span class="prefix">f</span>
311311
<a name="sqlrepr"></a>
312312
<h4 class="pudge-member-name"><span class="prefix">f</span>
313313
<tt><a href="class-sqlobject.dbconnection.DBAPI.html#sqlrepr" class="pudge-obj-link">sqlrepr</a>(self, v)</tt>
314-
<a href="sqlobject/dbconnection.py.html?f=670&amp;l=672#670" title="View Source">...</a>
314+
<a href="sqlobject/dbconnection.py.html?f=671&amp;l=673#671" title="View Source">...</a>
315315
</h4>
316316
<div class="pudge-section rst">
317317
</div>
318318
</div><div class="pudge-member routine ">
319319
<a name="__del__"></a>
320320
<h4 class="pudge-member-name"><span class="prefix">f</span>
321321
<tt><a href="class-sqlobject.dbconnection.DBAPI.html#__del__" class="pudge-obj-link">__del__</a>(self)</tt>
322-
<a href="sqlobject/dbconnection.py.html?f=673&amp;l=675#673" title="View Source">...</a>
322+
<a href="sqlobject/dbconnection.py.html?f=674&amp;l=676#674" title="View Source">...</a>
323323
</h4>
324324
<div class="pudge-section rst">
325325
</div>
326326
</div><div class="pudge-member routine ">
327327
<a name="close"></a>
328328
<h4 class="pudge-member-name"><span class="prefix">f</span>
329329
<tt><a href="class-sqlobject.dbconnection.DBAPI.html#close" class="pudge-obj-link">close</a>(self)</tt>
330-
<a href="sqlobject/dbconnection.py.html?f=676&amp;l=698#676" title="View Source">...</a>
330+
<a href="sqlobject/dbconnection.py.html?f=677&amp;l=699#677" title="View Source">...</a>
331331
</h4>
332332
<div class="pudge-section rst">
333333
</div>
334334
</div><div class="pudge-member routine ">
335335
<a name="createEmptyDatabase"></a>
336336
<h4 class="pudge-member-name"><span class="prefix">f</span>
337337
<tt><a href="class-sqlobject.dbconnection.DBAPI.html#createEmptyDatabase" class="pudge-obj-link">createEmptyDatabase</a>(self)</tt>
338-
<a href="sqlobject/dbconnection.py.html?f=699&amp;l=704#699" title="View Source">...</a>
338+
<a href="sqlobject/dbconnection.py.html?f=700&amp;l=705#700" title="View Source">...</a>
339339
</h4>
340340
<div class="pudge-section rst">
341341
<p class="pudge-member-blurb">
@@ -346,7 +346,7 @@ <h4 class="pudge-member-name"><span class="prefix">f</span>
346346
<p>
347347
<small>
348348
See
349-
<a href="sqlobject/dbconnection.py.html?f=307&amp;l=704#307" title="sqlobject/dbconnection.py:307">the source</a>
349+
<a href="sqlobject/dbconnection.py.html?f=307&amp;l=705#307" title="sqlobject/dbconnection.py:307">the source</a>
350350
for more information.
351351
</small>
352352
</p>

‎class-sqlobject.dbconnection.Iteration.html‎

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ <h1 class="pudge-member-page-heading">
2323
</a>
2424
</li>
2525
<li>
26-
<a href="sqlobject/dbconnection.py.html?f=705&amp;l=746#705" class="pudge-section-link">
26+
<a href="sqlobject/dbconnection.py.html?f=706&amp;l=747#706" class="pudge-section-link">
2727
Source
2828
</a>
2929
</li>
@@ -75,39 +75,39 @@ <h4 class="pudge-member-name"><span class="prefix">f</span>
7575
<a name="__init__"></a>
7676
<h4 class="pudge-member-name"><span class="prefix">f</span>
7777
<tt><a href="class-sqlobject.dbconnection.Iteration.html#__init__" class="pudge-obj-link">__init__</a>(self, dbconn, rawconn, select, keepConnection=False)</tt>
78-
<a href="sqlobject/dbconnection.py.html?f=707&amp;l=717#707" title="View Source">...</a>
78+
<a href="sqlobject/dbconnection.py.html?f=708&amp;l=718#708" title="View Source">...</a>
7979
</h4>
8080
<div class="pudge-section rst">
8181
</div>
8282
</div><div class="pudge-member routine ">
8383
<a name="__iter__"></a>
8484
<h4 class="pudge-member-name"><span class="prefix">f</span>
8585
<tt><a href="class-sqlobject.dbconnection.Iteration.html#__iter__" class="pudge-obj-link">__iter__</a>(self)</tt>
86-
<a href="sqlobject/dbconnection.py.html?f=718&amp;l=720#718" title="View Source">...</a>
86+
<a href="sqlobject/dbconnection.py.html?f=719&amp;l=721#719" title="View Source">...</a>
8787
</h4>
8888
<div class="pudge-section rst">
8989
</div>
9090
</div><div class="pudge-member routine ">
9191
<a name="next"></a>
9292
<h4 class="pudge-member-name"><span class="prefix">f</span>
9393
<tt><a href="class-sqlobject.dbconnection.Iteration.html#next" class="pudge-obj-link">next</a>(self)</tt>
94-
<a href="sqlobject/dbconnection.py.html?f=721&amp;l=734#721" title="View Source">...</a>
94+
<a href="sqlobject/dbconnection.py.html?f=722&amp;l=735#722" title="View Source">...</a>
9595
</h4>
9696
<div class="pudge-section rst">
9797
</div>
9898
</div><div class="pudge-member routine ">
9999
<a name="__del__"></a>
100100
<h4 class="pudge-member-name"><span class="prefix">f</span>
101101
<tt><a href="class-sqlobject.dbconnection.Iteration.html#__del__" class="pudge-obj-link">__del__</a>(self)</tt>
102-
<a href="sqlobject/dbconnection.py.html?f=744&amp;l=746#744" title="View Source">...</a>
102+
<a href="sqlobject/dbconnection.py.html?f=745&amp;l=747#745" title="View Source">...</a>
103103
</h4>
104104
<div class="pudge-section rst">
105105
</div>
106106
</div>
107107
<p>
108108
<small>
109109
See
110-
<a href="sqlobject/dbconnection.py.html?f=705&amp;l=746#705" title="sqlobject/dbconnection.py:705">the source</a>
110+
<a href="sqlobject/dbconnection.py.html?f=706&amp;l=747#706" title="sqlobject/dbconnection.py:706">the source</a>
111111
for more information.
112112
</small>
113113
</p>

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /