aboutsummaryrefslogtreecommitdiff
path: root/Doc/Manual
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2011-09-24 14:01:20 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2011-09-24 14:01:20 +0000
commit5923117e81608694b24d36625f128ad2744d355a (patch)
tree0b153ce2a990c68424f8e5c41fe3886cc53aecc8 /Doc/Manual
parent2587e92ba92d5251d5599788298e54ca8fccf121 (diff)
downloadswig-5923117e81608694b24d36625f128ad2744d355a.tar.gz
HTML cosmetics
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12817 626c5289-ae23-0410-ae9c-e8d60b6d4f22
Diffstat (limited to 'Doc/Manual')
-rw-r--r--Doc/Manual/Contents.html5
-rw-r--r--Doc/Manual/Octave.html1
-rw-r--r--Doc/Manual/Python.html1
-rw-r--r--Doc/Manual/SWIGPlus.html11
4 files changed, 12 insertions, 6 deletions
diff --git a/Doc/Manual/Contents.html b/Doc/Manual/Contents.html
index e9c923a9e..ea6e75cba 100644
--- a/Doc/Manual/Contents.html
+++ b/Doc/Manual/Contents.html
@@ -242,6 +242,7 @@
<li><a href="SWIGPlus.html#SWIGPlus_catches">Exception handling with %catches</a>
<li><a href="SWIGPlus.html#SWIGPlus_nn33">Pointers to Members</a>
<li><a href="SWIGPlus.html#SWIGPlus_smart_pointers">Smart pointers and operator-&gt;()</a>
+<li><a href="SWIGPlus.html#SWIGPlus_ref_unref">C++ reference counted objects - ref/unref feature</a>
<li><a href="SWIGPlus.html#SWIGPlus_nn35">Using declarations and inheritance</a>
<li><a href="SWIGPlus.html#SWIGPlus_nested_classes">Nested classes</a>
<li><a href="SWIGPlus.html#SWIGPlus_const">A brief rant about const-correctness</a>
@@ -981,6 +982,7 @@
<li><a href="Lua.html#Lua_nn2">Preliminaries</a>
<li><a href="Lua.html#Lua_nn3">Running SWIG</a>
<ul>
+<li><a href="Lua.html#Lua_commandline">Additional command line options</a>
<li><a href="Lua.html#Lua_nn4">Compiling and Linking and Interpreter</a>
<li><a href="Lua.html#Lua_nn5">Compiling a dynamic module</a>
<li><a href="Lua.html#Lua_nn6">Using your module</a>
@@ -1139,6 +1141,7 @@
<li><a href="Octave.html#Octave_nn2">Preliminaries</a>
<li><a href="Octave.html#Octave_nn3">Running SWIG</a>
<ul>
+<li><a href="Octave.html#Octave_nn4">Command-line options</a>
<li><a href="Octave.html#Octave_nn5">Compiling a dynamic module</a>
<li><a href="Octave.html#Octave_nn6">Using your module</a>
</ul>
@@ -1330,7 +1333,7 @@
<li><a href="Python.html#Python_nn25">C++ namespaces</a>
<li><a href="Python.html#Python_nn26">C++ templates</a>
<li><a href="Python.html#Python_nn27">C++ Smart Pointers</a>
-<li><a href="Python.html#Python_nn27a">C++ Reference Counted Objects (ref/unref)</a>
+<li><a href="Python.html#Python_nn27a">C++ reference counted objects</a>
</ul>
<li><a href="Python.html#Python_nn28">Further details on the Python class interface</a>
<ul>
diff --git a/Doc/Manual/Octave.html b/Doc/Manual/Octave.html
index fabc7b0c4..2a4efc99f 100644
--- a/Doc/Manual/Octave.html
+++ b/Doc/Manual/Octave.html
@@ -100,6 +100,7 @@ This creates a C++ source file <tt>example_wrap.cpp</tt>. A C++ file is generate
<H3><a name="Octave_nn4"></a>29.2.1 Command-line options</H3>
+
<p>
The swig command line has a number of options you can use, like to redirect its output. Use <tt>swig -help</tt> to learn about these.
Options specific to the Octave module are:
diff --git a/Doc/Manual/Python.html b/Doc/Manual/Python.html
index 78e1fbeed..16058b7f6 100644
--- a/Doc/Manual/Python.html
+++ b/Doc/Manual/Python.html
@@ -2055,6 +2055,7 @@ simply use the <tt>__deref__()</tt> method. For example:
<H3><a name="Python_nn27a"></a>33.3.15 C++ reference counted objects</H3>
+
<p>
The <a href="SWIGPlus.html#SWIGPlus_ref_unref">C++ reference counted objects</a> section contains
Python examples of memory management using referencing counting.
diff --git a/Doc/Manual/SWIGPlus.html b/Doc/Manual/SWIGPlus.html
index 83b9f9da3..44126dc4b 100644
--- a/Doc/Manual/SWIGPlus.html
+++ b/Doc/Manual/SWIGPlus.html
@@ -57,6 +57,7 @@
<li><a href="#SWIGPlus_catches">Exception handling with %catches</a>
<li><a href="#SWIGPlus_nn33">Pointers to Members</a>
<li><a href="#SWIGPlus_smart_pointers">Smart pointers and operator-&gt;()</a>
+<li><a href="#SWIGPlus_ref_unref">C++ reference counted objects - ref/unref feature</a>
<li><a href="#SWIGPlus_nn35">Using declarations and inheritance</a>
<li><a href="#SWIGPlus_nested_classes">Nested classes</a>
<li><a href="#SWIGPlus_const">A brief rant about const-correctness</a>
@@ -4618,7 +4619,7 @@ p = f.__deref__() # Raw pointer from operator-&gt;
<b>Note:</b> Smart pointer support was first added in SWIG-1.3.14.
</p>
-<H2><a name="SWIGPlus_ref_unref"></a>C++ reference counted objects - ref/unref feature</H2>
+<H2><a name="SWIGPlus_ref_unref"></a>6.25 C++ reference counted objects - ref/unref feature</H2>
<p>
@@ -4793,7 +4794,7 @@ exit # 'a' is released, SWIG unref 'a' called in the destructor wra
-<H2><a name="SWIGPlus_nn35"></a>6.25 Using declarations and inheritance</H2>
+<H2><a name="SWIGPlus_nn35"></a>6.26 Using declarations and inheritance</H2>
<p>
@@ -4956,7 +4957,7 @@ public:
</div>
</ul>
-<H2><a name="SWIGPlus_nested_classes"></a>6.26 Nested classes</H2>
+<H2><a name="SWIGPlus_nested_classes"></a>6.27 Nested classes</H2>
<p>
@@ -5100,7 +5101,7 @@ Nested class warnings could also not be suppressed using %warnfilter.
</p>
-<H2><a name="SWIGPlus_const"></a>6.27 A brief rant about const-correctness</H2>
+<H2><a name="SWIGPlus_const"></a>6.28 A brief rant about const-correctness</H2>
<p>
@@ -5158,7 +5159,7 @@ using another tool if maintaining constness is the most important part
of your project.
</p>
-<H2><a name="SWIGPlus_nn42"></a>6.28 Where to go for more information</H2>
+<H2><a name="SWIGPlus_nn42"></a>6.29 Where to go for more information</H2>
<p>