Author: mcbrown
Date: 2007-11-22 23:37:10 +0100 (Thu, 22 Nov 2007)
New Revision: 8840
Log:
Minor tweak to the TOC toggle output
Modified:
trunk/dynamic-docs/changelog/mysqld.xml
trunk/tools/add-toc-toggle.pl
trunk/workbench/table-editor.xml
Modified: trunk/dynamic-docs/changelog/mysqld.xml
===================================================================
--- trunk/dynamic-docs/changelog/mysqld.xml 2007-11-22 22:17:38 UTC (rev 8839)
+++ trunk/dynamic-docs/changelog/mysqld.xml 2007-11-22 22:37:10 UTC (rev 8840)
Changed blocks: 2, Lines Added: 11, Lines Deleted: 10; 1502 bytes
@@ -6,26 +6,27 @@
]>
<changelog>
+
<logentry entrytype="bug">
<tags>
<manual type="Falcon"/>
- <manual type="FreeBSD"/>
+ <manual type="BLOB"/>
</tags>
<bugs>
- <fixes bugid="31045"/>
+ <fixes bugid="32191"/>
</bugs>
<versions>
- <version ver="6.0.4"/>
+ <version ver="6.0.3"/>
</versions>
<message>
<para>
- Falcon would fail to compile on FreeBSD. This limitation has now
- been fixed.
+ When comparing a <literal>BLOB</literal> value that was null,
+ memory corruption could occur casuing the server to crash.
</para>
</message>
@@ -36,22 +37,22 @@
<tags>
<manual type="Falcon"/>
- <manual type="BLOB"/>
+ <manual type="FreeBSD"/>
</tags>
<bugs>
- <fixes bugid="32191"/>
+ <fixes bugid="31045"/>
</bugs>
<versions>
- <version ver="6.0.3"/>
+ <version ver="6.0.4"/>
</versions>
<message>
<para>
- When comparing a <literal>BLOB</literal> value that was null,
- memory corruption could occur casuing the server to crash.
+ Falcon would fail to compile on FreeBSD. This limitation has now
+ been fixed.
</para>
</message>
Modified: trunk/tools/add-toc-toggle.pl
===================================================================
--- trunk/tools/add-toc-toggle.pl 2007-11-22 22:17:38 UTC (rev 8839)
+++ trunk/tools/add-toc-toggle.pl 2007-11-22 22:37:10 UTC (rev 8840)
Changed blocks: 1, Lines Added: 6, Lines Deleted: 3; 969 bytes
@@ -20,12 +20,15 @@
$counter++;
- my @matches = ($filetext =~ m{(</a></span></dt>.*?<dl>)});
+ my @matches = ($filetext =~ m{(</a></span></dt>\s+<dd>)}msg);
+
+ print join("\n",@matches);
+
foreach my $match (@matches)
{
- my $repltext = sprintf(" <small>[<a href=\"#\" onclick=\"toggle('tocdetail-%d');\">Toggle</a>]</small><dl id=\"tocdetail-%d\">",$counter,$counter);
+ my $repltext = sprintf(" <small>[<a href=\"#\" onclick=\"toggle('tocdetail-%d');\">Toggle</a>]</small><dd id=\"tocdetail-%d\">",$counter,$counter);
- $filetext =~ s{$match}{$repltext}msg;
+ $filetext =~ s{$match}{$repltext}ms;
$counter++;
}
Modified: trunk/workbench/table-editor.xml
===================================================================
--- trunk/workbench/table-editor.xml 2007-11-22 22:17:38 UTC (rev 8839)
+++ trunk/workbench/table-editor.xml 2007-11-22 22:37:10 UTC (rev 8840)
Changed blocks: 1, Lines Added: 1, Lines Deleted: 1; 373 bytes
@@ -151,7 +151,7 @@
</section>
- <section>
+ <section id="wb-editor-columns-tab">
<title>The Columns Tab</title>
| Thread |
|---|
| • svn commit - mysqldoc@docsrva: r8840 - in trunk: dynamic-docs/changelog tools workbench | mcbrown | 22 Nov |