X Tutup
Skip to content

Commit 5816d70

Browse files
committed
Change order of segments of documentation.
git-svn-id: https://src.springframework.org/svn/se-springpython-py/trunk/springpython@141 ce8fead1-4192-4296-8608-a705134b927f
1 parent 11014f5 commit 5816d70

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

docs/reference/src/index.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@
3535
&overview;
3636
&components;
3737
&aop;
38-
&security;
38+
&dao;
3939
&transaction;
40-
&dao;
40+
&security;
4141
&remoting;
4242
&samples;
4343

docs/reference/src/overview.xml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,6 @@
1818

1919
<itemizedlist>
2020

21-
<listitem>
22-
<para><link linkend="dao">DatabaseTemplate</link> - Reading from the database
23-
requires a monotonous cycle of opening cursors, reading rows, and closing cursors,
24-
along with exception handlers. With this template class, all you need is the SQL
25-
query and row-handling function. Spring Python does the rest.</para>
26-
</listitem>
27-
28-
<listitem>
29-
<para><link linkend="transaction">Database Transactions</link> - Wrapping multiple
30-
database calls with transactions can make your code hard to read. This module
31-
provides multiple ways to define transactions without making things complicated.</para>
32-
</listitem>
33-
3421
<listitem>
3522
<para><link linkend="components">Inversion Of Control</link> - The idea is to
3623
decouple two classes at the interface level. This lets you build many reusable
@@ -45,10 +32,16 @@
4532
</listitem>
4633

4734
<listitem>
48-
<para><link linkend="remoting">Remoting</link> - It is easy to convert your local
49-
application into a distributed one. If you have already built your client and
50-
server pieces using the IoC container, then going from local to distributed is
51-
just a configuration change.</para>
35+
<para><link linkend="dao">DatabaseTemplate</link> - Reading from the database
36+
requires a monotonous cycle of opening cursors, reading rows, and closing cursors,
37+
along with exception handlers. With this template class, all you need is the SQL
38+
query and row-handling function. Spring Python does the rest.</para>
39+
</listitem>
40+
41+
<listitem>
42+
<para><link linkend="transaction">Database Transactions</link> - Wrapping multiple
43+
database calls with transactions can make your code hard to read. This module
44+
provides multiple ways to define transactions without making things complicated.</para>
5245
</listitem>
5346

5447
<listitem>
@@ -57,6 +50,13 @@
5750
authorization.</para>
5851
</listitem>
5952

53+
<listitem>
54+
<para><link linkend="remoting">Remoting</link> - It is easy to convert your local
55+
application into a distributed one. If you have already built your client and
56+
server pieces using the IoC container, then going from local to distributed is
57+
just a configuration change.</para>
58+
</listitem>
59+
6060
<listitem>
6161
<para><link linkend="samples">Samples</link> - to help demonstrate various features of Spring Python, some sample
6262
applications have been created:</para>

0 commit comments

Comments
 (0)
X Tutup