From: <ai...@us...> - 2008-12-24 18:26:03
|
Revision: 9226 http://plplot.svn.sourceforge.net/plplot/?rev=9226&view=rev Author: airwin Date: 2008-12-24 18:25:58 +0000 (Wed, 24 Dec 2008) Log Message: ----------- Correct validation error for Credits part of example 24. Check number of pages for all examples. The number of pages for examples 15 and 23 had to be increased to match the actual number of pages that are generated for those examples, now. Modified Paths: -------------- trunk/www/examples.php Modified: trunk/www/examples.php =================================================================== --- trunk/www/examples.php 2008-12-24 01:56:20 UTC (rev 9225) +++ trunk/www/examples.php 2008-12-24 18:25:58 UTC (rev 9226) @@ -19,7 +19,7 @@ array(12, 1, 1, ""), array(13, 1, 1, ""), array(14, 0, 0, ""), - array(15, 2, 1, ""), + array(15, 3, 1, ""), array(16, 5, 1, ""), array(17, 0, 0, ""), array(18, 8, 1, ""), @@ -27,14 +27,14 @@ array(20, 6, 3, ""), array(21, 3, 3, ""), array(22, 4, 3, ""), - array(23, 11, 1, ""), + array(23, 16, 1, ""), array(24, 1, 1, " - Credits: + <p>Credits:</p> <ul class=\"arrowlist\"> <li><a href=\"http://www.columbia.edu/~fdc/pace/\">Say Peace in all languages!</a></li> <li><a href=\"http://www.columbia.edu/~fdc/pace/flag.html\">Pace flag</a></li> </ul> - "), + \n"), array(25, 4, 1, ""), array(26, 2, 1, ""), array(27, 10, 1, ""), @@ -118,7 +118,7 @@ // show credits if any if($credits!="") - echo "<p>" . $credits . "</p>\n"; + echo "$credits"; echo "<h4>Choose other examples</h4><p>\n"; foreach($demoArray as $drec) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |