Author: mcbrown
Date: 2007-12-11 15:22:20 +0100 (Tue, 11 Dec 2007)
New Revision: 9241
Log:
Updating the table output during the version comparison
Modified:
trunk/tools/MySQL/DynXML/BuildOpts.pm
Modified: trunk/tools/MySQL/DynXML/BuildOpts.pm
===================================================================
--- trunk/tools/MySQL/DynXML/BuildOpts.pm 2007-12-11 07:43:59 UTC (rev 9240)
+++ trunk/tools/MySQL/DynXML/BuildOpts.pm 2007-12-11 14:22:20 UTC (rev 9241)
Changed blocks: 3, Lines Added: 18, Lines Deleted: 16; 3231 bytes
@@ -181,22 +181,21 @@
<colspec colname="default" colwidth="30*"/>
<colspec colname="in" colwidth="10*"/>
<colspec colname="out" colwidth="10*"/>
-<colspec colname="yes50" colwidth="5*"/>
-<colspec colname="yes51" colwidth="5*"/>
-<colspec colname="yes60" colwidth="5*"/>
+<colspec colname="yesfiveo" colwidth="5*"/>
+<colspec colname="yesfiveone" colwidth="5*"/>
+<colspec colname="yessixo" colwidth="5*"/>
<thead>
<row>
-<entry morerows="1"><emphasis
role="bold">Formats</emphasis></entry>
-<entry namest="default" nameend="yes60"><emphasis
role="bold">Description</emphasis></entry>
+<entry morerows="1">Formats</entry>
+<entry namest="default" nameend="yessixo">Description</entry>
</row>
<row>
-<entry/>
-<entry><emphasis role="bold">Default Value</emphasis></entry>
-<entry><emphasis role="bold">Introduced</emphasis></entry>
-<entry><emphasis role="bold">Removed</emphasis></entry>
-<entry><emphasis role="bold">5.0</emphasis></entry>
-<entry><emphasis role="bold">5.1</emphasis></entry>
-<entry><emphasis role="bold">6.0</emphasis></entry>
+<entry>Default Value</entry>
+<entry>Introduced</entry>
+<entry>Removed</entry>
+<entry>5.0</entry>
+<entry>5.1</entry>
+<entry>6.0</entry>
</row>
</thead>
<tbody>
@@ -213,7 +212,7 @@
print $outfile (xml_row(xml_entry({morerows => 1},$formats[0]),
xml_entry({namest => 'default',
- nameend => 'yes60'},
+ nameend => 'yessixo'},
$td->{$buildopt}->{formats}->{$formats[0]}->{description})),
xml_row(xml_entry($td->{$buildopt}->{default} || ''),
$introversion,
@@ -226,14 +225,17 @@
foreach my $format (@formats[1..$#formats])
{
- print $outfile xml_row(xml_entry($format),
-
xml_entry($td->{$buildopt}->{formats}->{$format}->{description}),
- xml_entry($td->{$buildopt}->{default} || ''),
+ print $outfile(xml_row(xml_entry({morerows => 1},$format),
+ xml_entry({namest => 'default',
+ nameend => 'yessixo'},
+
$td->{$buildopt}->{formats}->{$format}->{description})),
+ xml_row(xml_entry($td->{$buildopt}->{default} || ''),
$introversion,
$extroversion,
(exists($td->{$buildopt}->{manualversion}->{'5.0'}) ? xml_entry('yes') :
xml_entry('')),
(exists($td->{$buildopt}->{manualversion}->{'5.1'}) ? xml_entry('yes') :
xml_entry('')),
(exists($td->{$buildopt}->{manualversion}->{'6.0'}) ? xml_entry('yes') :
xml_entry('')),
+ )
);
}
}
| Thread |
|---|
| • svn commit - mysqldoc@docsrva: r9241 - trunk/tools/MySQL/DynXML | mcbrown | 11 Dec |