From: <ai...@us...> - 2008-09-23 16:37:36
|
Revision: 8798 http://plplot.svn.sourceforge.net/plplot/?rev=8798&view=rev Author: airwin Date: 2008-09-23 16:37:26 +0000 (Tue, 23 Sep 2008) Log Message: ----------- Put in required alt attribute for thumbnails to substantially reduce validation errors. Modified Paths: -------------- trunk/www/examples.php Modified: trunk/www/examples.php =================================================================== --- trunk/www/examples.php 2008-09-23 01:07:40 UTC (rev 8797) +++ trunk/www/examples.php 2008-09-23 16:37:26 UTC (rev 8798) @@ -155,7 +155,7 @@ $npages = $drec[1]; if($npages!=0) { - echo "<a href=\"examples.php?demo=$demo_str\"><img border=\"0\" src=\"examples-data/$dir/prev-x$demo_str.$thumbnail.png\" /></a>\n"; + echo "<a href=\"examples.php?demo=$demo_str\"><img border=\"0\" src=\"examples-data/$dir/prev-x$demo_str.$thumbnail.png\" alt=\"x$demo_str.thumbnail\"/></a>\n"; $count++; if(($count%3) == 0) echo "<br />\n"; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ai...@us...> - 2008-09-23 16:50:01
|
Revision: 8799 http://plplot.svn.sourceforge.net/plplot/?rev=8799&view=rev Author: airwin Date: 2008-09-23 16:49:50 +0000 (Tue, 23 Sep 2008) Log Message: ----------- Put in closing </p> tag. We now have clean validation for this page! Modified Paths: -------------- trunk/www/examples.php Modified: trunk/www/examples.php =================================================================== --- trunk/www/examples.php 2008-09-23 16:37:26 UTC (rev 8798) +++ trunk/www/examples.php 2008-09-23 16:49:50 UTC (rev 8799) @@ -160,6 +160,7 @@ if(($count%3) == 0) echo "<br />\n"; } } + echo "</p>"; } ?> </div> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: Alan W. I. <ai...@us...> - 2008-09-23 17:36:14
|
Revision: 8779 http://plplot.svn.sourceforge.net/plplot/?rev=8779&view=rev Author: airwin Date: 2008-09-19 18:45:28 +0000 (Fri, 19 Sep 2008) Log Message: ----------- Alphabetize language list. Modified Paths: -------------- trunk/www/examples.php Modified: trunk/www/examples.php =================================================================== --- trunk/www/examples.php 2008-09-19 18:31:42 UTC (rev 8778) +++ trunk/www/examples.php 2008-09-19 18:45:28 UTC (rev 8779) @@ -73,32 +73,32 @@ <p>Select language to see the source code</p> <form class="codeform" action="examples.php" method="get"> <input type="hidden" name="demo" value="$demo_str" /> + <input type="submit" name="lbind" value="Ada" /> <input type="submit" name="lbind" value="C" /> <input type="submit" name="lbind" value="C++" /> <input type="submit" name="lbind" value="F77" /> <input type="submit" name="lbind" value="F95" /> - <input type="submit" name="lbind" value="Ada" /> - <input type="submit" name="lbind" value="Tcl" /> <input type="submit" name="lbind" value="Java" /> - <input type="submit" name="lbind" value="Python" /> + <input type="submit" name="lbind" value="Ocaml" /> <input type="submit" name="lbind" value="Octave" /> <input type="submit" name="lbind" value="PerlDL" /> - <input type="submit" name="lbind" value="Ocaml" /> + <input type="submit" name="lbind" value="Python" /> + <input type="submit" name="lbind" value="Tcl" /> </form> END; switch($lbind) { + case ("Ada"): $fname = "x" . $demo_str . "a.adb-"; break; case ("C"): $fname = "x" . $demo_str . "c.c-"; break; case ("C++"):$fname = "x" . $demo_str . ".cc-"; break; case ("F77"): $fname = "x" . $demo_str . "f.f-"; break; case ("F95"): $fname = "x" . $demo_str . "f.f90-"; break; - case ("Ada"): $fname = "x" . $demo_str . "a.adb-"; break; - case ("Tcl"): $fname = "x" . $demo_str . ".tcl-"; break; case ("Java"): $fname = "x" . $demo_str . ".java-"; break; - case ("Python"): $fname = "xw" . $demo_str . ".py-"; break; + case ("Ocaml"): $fname = "x" . $demo_str . ".ml-"; break; case ("Octave"): $fname = "x" . $demo_str . "c.m-"; break; case ("PerlDL"): $fname = "x" . $demo_str . ".pl-"; break; - case ("Ocaml"): $fname = "x" . $demo_str . ".ml-"; break; + case ("Python"): $fname = "xw" . $demo_str . ".py-"; break; + case ("Tcl"): $fname = "x" . $demo_str . ".tcl-"; break; default: $fname = "x" . $demo_str . "c.c-"; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ai...@us...> - 2008-10-21 23:49:15
|
Revision: 8948 http://plplot.svn.sourceforge.net/plplot/?rev=8948&view=rev Author: airwin Date: 2008-10-21 23:49:12 +0000 (Tue, 21 Oct 2008) Log Message: ----------- Let all thumbnails, images, and lists of images wrap naturally rather than putting in artificial wrapping with extra <br /> commands. Modified Paths: -------------- trunk/www/examples.php Modified: trunk/www/examples.php =================================================================== --- trunk/www/examples.php 2008-10-21 20:20:40 UTC (rev 8947) +++ trunk/www/examples.php 2008-10-21 23:49:12 UTC (rev 8948) @@ -113,8 +113,6 @@ $ndx_str = sprintf ("%02d", $ndx); echo "<a href=\"$demo_dir/x$demo_str.$ndx_str.png\" rel=\"lightbox[plplot]\" title=\"x$demo_str.$ndx_str\"> <img src=\"$demo_dir/prev-x$demo_str.$ndx_str.png\" border=\"1\" alt=\"x$demo_str.$ndx_str\"/></a>\n"; - if(($ndx%3 == 0)) - echo "<br/>\n"; } echo "</p>\n"; @@ -123,7 +121,6 @@ echo "<p>" . $credits . "</p>\n"; echo "<h4>Choose other examples</h4><p>\n"; - $counter=1; foreach($demoArray as $drec) { $dstr = sprintf ("%02d", $drec[0]); if($drec[1]!=0) { @@ -132,9 +129,6 @@ } else { echo "x$dstr\n"; } - if($counter%20==0) - echo "<br />\n"; - $counter++; } } echo "</p>\n"; @@ -147,7 +141,6 @@ <p>Select a thumbnail to view full-size image and source code.</p> <p> END; - $count = 0; foreach($demoArray as $drec) { $demo_str = sprintf ("%02d", $drec[0]); $dir = "demo$demo_str"; @@ -156,8 +149,6 @@ if($npages!=0) { echo "<a href=\"examples.php?demo=$demo_str\"><img border=\"0\" src=\"examples-data/$dir/prev-x$demo_str.$thumbnail.png\" alt=\"x$demo_str.thumbnail\"/></a>\n"; - $count++; - if(($count%3) == 0) echo "<br />\n"; } } echo "</p>"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ai...@us...> - 2010-06-04 20:08:20
|
Revision: 11055 http://plplot.svn.sourceforge.net/plplot/?rev=11055&view=rev Author: airwin Date: 2010-06-04 20:08:11 +0000 (Fri, 04 Jun 2010) Log Message: ----------- Update to the correct number of pages for examples 25 and 29 on our website. Modified Paths: -------------- trunk/www/examples.php Modified: trunk/www/examples.php =================================================================== --- trunk/www/examples.php 2010-06-04 18:08:32 UTC (rev 11054) +++ trunk/www/examples.php 2010-06-04 20:08:11 UTC (rev 11055) @@ -82,7 +82,7 @@ <li><a href=\"http://www.columbia.edu/~fdc/pace/flag.html\">Pace flag</a></li> </ul> \n"), - array(25, 4, 1, " + array(25, 8, 1, " <p>Diagnostic demo of filling and clipping polygons.</p> \n"), array(26, 2, 1, " @@ -94,7 +94,7 @@ array(28, 5, 1, " <p>Demo of 3-d writing of text (plmtex3 and plptex3).</p> \n"), - array(29, 3, 1, " + array(29, 10, 1, " <p>Demo of date / time formatting for axes.</p> \n"), array(30, 2, 1, " This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <hba...@us...> - 2010-10-03 14:05:49
|
Revision: 11245 http://plplot.svn.sourceforge.net/plplot/?rev=11245&view=rev Author: hbabcock Date: 2010-10-03 14:05:42 +0000 (Sun, 03 Oct 2010) Log Message: ----------- Update version number for the 5.9.7 release web page. Modified Paths: -------------- trunk/www/examples.php Modified: trunk/www/examples.php =================================================================== --- trunk/www/examples.php 2010-10-03 14:03:11 UTC (rev 11244) +++ trunk/www/examples.php 2010-10-03 14:05:42 UTC (rev 11245) @@ -204,7 +204,7 @@ echo <<<END <h3>Examples</h3> <p>These examples were generated with the pngcairo device and - reflect the status of PLplot-5.9.6.</p> + reflect the status of PLplot-5.9.7.</p> <p>Select a thumbnail to view full-size image and source code.</p> <p> END; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ai...@us...> - 2014-02-12 22:43:43
|
Revision: 13009 http://sourceforge.net/p/plplot/code/13009 Author: airwin Date: 2014-02-12 22:43:39 +0000 (Wed, 12 Feb 2014) Log Message: ----------- One additional website tweak Modified Paths: -------------- trunk/www/examples.php Modified: trunk/www/examples.php =================================================================== --- trunk/www/examples.php 2014-02-12 22:19:33 UTC (rev 13008) +++ trunk/www/examples.php 2014-02-12 22:43:39 UTC (rev 13009) @@ -180,7 +180,7 @@ END; switch($lbind) { - case ("Ada(thick)"): $fname = "xthick" . $demo_str . "a.adb.txt-"; break; + case ("Ada(thick)"): $fname = "xthick" . $demo_str . "a.adb.txt"; break; case ("Ada(thin)"): $fname = "x" . $demo_str . "a.adb.txt"; break; case ("C"): $fname = "x" . $demo_str . "c.c.txt"; break; case ("C++"):$fname = "x" . $demo_str . ".cc.txt"; break; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <hba...@us...> - 2008-12-15 01:14:04
|
Revision: 9107 http://plplot.svn.sourceforge.net/plplot/?rev=9107&view=rev Author: hbabcock Date: 2008-12-15 01:13:55 +0000 (Mon, 15 Dec 2008) Log Message: ----------- Update the web page for the 5.9.1 release. Modified Paths: -------------- trunk/www/examples.php Modified: trunk/www/examples.php =================================================================== --- trunk/www/examples.php 2008-12-15 00:22:58 UTC (rev 9106) +++ trunk/www/examples.php 2008-12-15 01:13:55 UTC (rev 9107) @@ -137,7 +137,7 @@ echo <<<END <h3>Examples</h3> <p>These examples were generated with the pngcairo device and - reflect the status of PLplot-5.9.0.</p> + reflect the status of PLplot-5.9.1.</p> <p>Select a thumbnail to view full-size image and source code.</p> <p> END; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
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. |
From: <ai...@us...> - 2009-01-06 02:22:09
|
Revision: 9255 http://plplot.svn.sourceforge.net/plplot/?rev=9255&view=rev Author: airwin Date: 2009-01-06 01:55:20 +0000 (Tue, 06 Jan 2009) Log Message: ----------- Allow user to display both Ada(thick) and Ada(thin) source code. Modified Paths: -------------- trunk/www/examples.php Modified: trunk/www/examples.php =================================================================== --- trunk/www/examples.php 2009-01-06 01:49:40 UTC (rev 9254) +++ trunk/www/examples.php 2009-01-06 01:55:20 UTC (rev 9255) @@ -73,7 +73,8 @@ <p>Select language to see the source code</p> <form class="codeform" action="examples.php" method="get"> <input type="hidden" name="demo" value="$demo_str" /> - <input type="submit" name="lbind" value="Ada" /> + <input type="submit" name="lbind" value="Ada(thick)" /> + <input type="submit" name="lbind" value="Ada(thin)" /> <input type="submit" name="lbind" value="C" /> <input type="submit" name="lbind" value="C++" /> <input type="submit" name="lbind" value="F77" /> @@ -88,7 +89,8 @@ END; switch($lbind) { - case ("Ada"): $fname = "x" . $demo_str . "a.adb-"; break; + case ("Ada(thick)"): $fname = "xthick" . $demo_str . "a.adb-"; break; + case ("Ada(thin)"): $fname = "x" . $demo_str . "a.adb-"; break; case ("C"): $fname = "x" . $demo_str . "c.c-"; break; case ("C++"):$fname = "x" . $demo_str . ".cc-"; break; case ("F77"): $fname = "x" . $demo_str . "f.f-"; break; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <hba...@us...> - 2009-01-18 21:18:08
|
Revision: 9337 http://plplot.svn.sourceforge.net/plplot/?rev=9337&view=rev Author: hbabcock Date: 2009-01-18 21:18:07 +0000 (Sun, 18 Jan 2009) Log Message: ----------- Updated the version number and added example 31 to the examples web page. Modified Paths: -------------- trunk/www/examples.php Modified: trunk/www/examples.php =================================================================== --- trunk/www/examples.php 2009-01-18 20:21:21 UTC (rev 9336) +++ trunk/www/examples.php 2009-01-18 21:18:07 UTC (rev 9337) @@ -40,7 +40,8 @@ array(27, 10, 1, ""), array(28, 5, 1, ""), array(29, 3, 1, ""), - array(30, 2, 1, "")); + array(30, 2, 1, ""); + array(31, 1, 1, "")); ?> <!-- include the html header --> @@ -139,7 +140,7 @@ echo <<<END <h3>Examples</h3> <p>These examples were generated with the pngcairo device and - reflect the status of PLplot-5.9.1.</p> + reflect the status of PLplot-5.9.2.</p> <p>Select a thumbnail to view full-size image and source code.</p> <p> END; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <hba...@us...> - 2009-01-18 21:23:41
|
Revision: 9338 http://plplot.svn.sourceforge.net/plplot/?rev=9338&view=rev Author: hbabcock Date: 2009-01-18 21:23:39 +0000 (Sun, 18 Jan 2009) Log Message: ----------- fixed a typo. Modified Paths: -------------- trunk/www/examples.php Modified: trunk/www/examples.php =================================================================== --- trunk/www/examples.php 2009-01-18 21:18:07 UTC (rev 9337) +++ trunk/www/examples.php 2009-01-18 21:23:39 UTC (rev 9338) @@ -40,7 +40,7 @@ array(27, 10, 1, ""), array(28, 5, 1, ""), array(29, 3, 1, ""), - array(30, 2, 1, ""); + array(30, 2, 1, ""), array(31, 1, 1, "")); ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <hba...@us...> - 2009-01-18 21:28:47
|
Revision: 9339 http://plplot.svn.sourceforge.net/plplot/?rev=9339&view=rev Author: hbabcock Date: 2009-01-18 21:28:45 +0000 (Sun, 18 Jan 2009) Log Message: ----------- Remove example 31 from the list of examples as it does not appear to display anything. Modified Paths: -------------- trunk/www/examples.php Modified: trunk/www/examples.php =================================================================== --- trunk/www/examples.php 2009-01-18 21:23:39 UTC (rev 9338) +++ trunk/www/examples.php 2009-01-18 21:28:45 UTC (rev 9339) @@ -40,8 +40,7 @@ array(27, 10, 1, ""), array(28, 5, 1, ""), array(29, 3, 1, ""), - array(30, 2, 1, ""), - array(31, 1, 1, "")); + array(30, 2, 1, "")); ?> <!-- include the html header --> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ai...@us...> - 2009-01-20 22:26:58
|
Revision: 9362 http://plplot.svn.sourceforge.net/plplot/?rev=9362&view=rev Author: airwin Date: 2009-01-20 22:20:46 +0000 (Tue, 20 Jan 2009) Log Message: ----------- Add examples 17 and 31 to the list of examples that is displayed. Annotations of those examples still to be done. Modified Paths: -------------- trunk/www/examples.php Modified: trunk/www/examples.php =================================================================== --- trunk/www/examples.php 2009-01-20 22:19:54 UTC (rev 9361) +++ trunk/www/examples.php 2009-01-20 22:20:46 UTC (rev 9362) @@ -3,7 +3,8 @@ # Each element of the structure below contains: # [ demo#, number of pages, particular thumbnail for top-level page, credits] - # if number of pages==0 the entry is ignored (e.g. example 14 and 17) + # if number of pages==0 the entry is ignored (e.g. example 14 which requires + # some stdin to specify name of second file) $demoArray = array( array( 1, 1, 1, ""), array( 2, 2, 1, ""), @@ -21,7 +22,7 @@ array(14, 0, 0, ""), array(15, 3, 1, ""), array(16, 5, 1, ""), - array(17, 0, 0, ""), + array(17, 1, 1, ""), array(18, 8, 1, ""), array(19, 3, 1, ""), array(20, 6, 3, ""), @@ -40,7 +41,8 @@ array(27, 10, 1, ""), array(28, 5, 1, ""), array(29, 3, 1, ""), - array(30, 2, 1, "")); + array(30, 2, 1, ""), + array(31, 1, 1, "")); ?> <!-- include the html header --> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ai...@us...> - 2009-01-26 22:55:38
|
Revision: 9399 http://plplot.svn.sourceforge.net/plplot/?rev=9399&view=rev Author: airwin Date: 2009-01-26 22:55:34 +0000 (Mon, 26 Jan 2009) Log Message: ----------- Add example 14 to list of those examples to be displayed. This completes the list of all standard examples (1 through 31) that exist at this time. Modified Paths: -------------- trunk/www/examples.php Modified: trunk/www/examples.php =================================================================== --- trunk/www/examples.php 2009-01-26 21:43:58 UTC (rev 9398) +++ trunk/www/examples.php 2009-01-26 22:55:34 UTC (rev 9399) @@ -3,8 +3,7 @@ # Each element of the structure below contains: # [ demo#, number of pages, particular thumbnail for top-level page, credits] - # if number of pages==0 the entry is ignored (e.g. example 14 which requires - # some stdin to specify name of second file) + # if number of pages==0 the entry is ignored (currently none are ignored). $demoArray = array( array( 1, 1, 1, ""), array( 2, 2, 1, ""), @@ -19,7 +18,7 @@ array(11, 8, 1, ""), array(12, 1, 1, ""), array(13, 1, 1, ""), - array(14, 0, 0, ""), + array(14, 4, 1, ""), array(15, 3, 1, ""), array(16, 5, 1, ""), array(17, 1, 1, ""), This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ai...@us...> - 2009-01-26 23:38:34
|
Revision: 9402 http://plplot.svn.sourceforge.net/plplot/?rev=9402&view=rev Author: airwin Date: 2009-01-26 23:38:26 +0000 (Mon, 26 Jan 2009) Log Message: ----------- Annotate each example. Modified Paths: -------------- trunk/www/examples.php Modified: trunk/www/examples.php =================================================================== --- trunk/www/examples.php 2009-01-26 22:58:21 UTC (rev 9401) +++ trunk/www/examples.php 2009-01-26 23:38:26 UTC (rev 9402) @@ -5,43 +5,104 @@ # [ demo#, number of pages, particular thumbnail for top-level page, credits] # if number of pages==0 the entry is ignored (currently none are ignored). $demoArray = array( - array( 1, 1, 1, ""), - array( 2, 2, 1, ""), - array( 3, 1, 1, ""), - array( 4, 2, 1, ""), - array( 5, 1, 1, ""), - array( 6, 1, 1, ""), - array( 7, 17, 1, ""), - array( 8, 8, 1, ""), - array( 9, 5, 1, ""), - array(10, 1, 1, ""), - array(11, 8, 1, ""), - array(12, 1, 1, ""), - array(13, 1, 1, ""), - array(14, 4, 1, ""), - array(15, 3, 1, ""), - array(16, 5, 1, ""), - array(17, 1, 1, ""), - array(18, 8, 1, ""), - array(19, 3, 1, ""), - array(20, 6, 3, ""), - array(21, 3, 3, ""), - array(22, 4, 3, ""), - array(23, 16, 1, ""), + array( 1, 1, 1, " + <p>Simple line plot and multiple windows demo.</p> + \n"), + array( 2, 2, 1, " + <p>Multiple window and color map 0 demo.</p> + \n"), + array( 3, 1, 1, " + <p>Polar plot demo.</p> + \n"), + array( 4, 2, 1, " + <p>Log plot demo.</p> + \n"), + array( 5, 1, 1, " + <p>Histogram demo.</p> + \n"), + array( 6, 1, 1, " + <p>Symbol demo.</p> + \n"), + array( 7, 17, 1, " + <p>Font demo for Hershey encodings.</p> + \n"), + array( 8, 8, 1, " + <p>3-d plot demo.</p> + \n"), + array( 9, 5, 1, " + <p>Contour plot demo.</p> + \n"), + array(10, 1, 1, " + <p>Window positioning demo.</p> + \n"), + array(11, 8, 1, " + <p>Mesh plot demo.</p> + \n"), + array(12, 1, 1, " + <p>Bar chart demo.</p> + \n"), + array(13, 1, 1, " + <p>Pie chart demo.</p> + \n"), + array(14, 4, 1, " + <p>Demo of multiple stream/window capability. The two pages of the master stream appear as the first two pages here. The two pages of the slave stream appear as pages 3 and 4 here.</p> + \n"), + array(15, 3, 1, " + <p>Shade plot demo using color map 0 (discrete colors) (plshade).</p> + \n"), + array(16, 5, 1, " + <p>Shade plot demo using color map 1 (continuous colours) (plshades).</p> + \n"), + array(17, 1, 1, " + <p>4-pen strip chart demo.</p> + \n"), + array(18, 8, 1, " + <p>3-d line and point plot demo.</p> + \n"), + array(19, 3, 1, " + <p>Demo of backdrop plotting of world, US maps.</p> + \n"), + array(20, 6, 3, " + <p>Demo of gray-scale image manipulation (plimage).</p> + \n"), + array(21, 3, 3, " + <p>Grid data demo.</p> + \n"), + array(22, 4, 3, " + <p>Demo of simple vector plotting.</p> + \n"), + array(23, 16, 1, " + <p>Font demo for unicode encodings which shows Greek letters and math symbols.</p> + \n"), array(24, 1, 1, " + <p>Demo of unicode Pace Flag.</p> <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, ""), - array(28, 5, 1, ""), - array(29, 3, 1, ""), - array(30, 2, 1, ""), - array(31, 1, 1, "")); + array(25, 4, 1, " + <p>Diagnostic demo of filling and clipping polygons.</p> + \n"), + array(26, 2, 1, " + <p>Demo of multi-lingual unicode versions of the first page of example 4.</p> + \n"), + array(27, 10, 1, " + <p>Demo of drawing 'spirograph' curves - epitrochoids, cycolids, roulettes.</p> + \n"), + array(28, 5, 1, " + <p>Demo of 3-d writing of text (plmtex3 and plptex3).</p> + \n"), + array(29, 3, 1, " + <p>Demo of date / time formatting for axes.</p> + \n"), + array(30, 2, 1, " + <p>Demo of opacity/ transparency (or alpha channel).</p> + \n"), + array(31, 1, 1, " + <p>Diagnostic demo to exercise all our set/get functions. The result should be a properly-formatted empty plot with black background.</p> + \n")); ?> <!-- include the html header --> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <hba...@us...> - 2009-02-22 17:24:48
|
Revision: 9581 http://plplot.svn.sourceforge.net/plplot/?rev=9581&view=rev Author: hbabcock Date: 2009-02-22 17:24:44 +0000 (Sun, 22 Feb 2009) Log Message: ----------- Fixed a typo that was leading to invalid php. Modified Paths: -------------- trunk/www/examples.php Modified: trunk/www/examples.php =================================================================== --- trunk/www/examples.php 2009-02-21 23:59:08 UTC (rev 9580) +++ trunk/www/examples.php 2009-02-22 17:24:44 UTC (rev 9581) @@ -102,6 +102,7 @@ \n"), array(31, 1, 1, " <p>Diagnostic demo to exercise all our set/get functions. The result should be a properly-formatted empty plot with black background.</p> + \n"), array(32, 1, 1, " <p>Demo of how to draw box-whisker / candlestick plots using plplot. These are commonly used for financial data.</p> \n")); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <hba...@us...> - 2009-05-03 21:37:05
|
Revision: 9895 http://plplot.svn.sourceforge.net/plplot/?rev=9895&view=rev Author: hbabcock Date: 2009-05-03 21:36:57 +0000 (Sun, 03 May 2009) Log Message: ----------- Update web page for 5.9.3 Modified Paths: -------------- trunk/www/examples.php Modified: trunk/www/examples.php =================================================================== --- trunk/www/examples.php 2009-05-03 21:03:15 UTC (rev 9894) +++ trunk/www/examples.php 2009-05-03 21:36:57 UTC (rev 9895) @@ -204,7 +204,7 @@ echo <<<END <h3>Examples</h3> <p>These examples were generated with the pngcairo device and - reflect the status of PLplot-5.9.2.</p> + reflect the status of PLplot-5.9.3.</p> <p>Select a thumbnail to view full-size image and source code.</p> <p> END; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ai...@us...> - 2009-05-05 00:35:14
|
Revision: 9900 http://plplot.svn.sourceforge.net/plplot/?rev=9900&view=rev Author: airwin Date: 2009-05-05 00:35:06 +0000 (Tue, 05 May 2009) Log Message: ----------- Spell PLplot correctly. Modified Paths: -------------- trunk/www/examples.php Modified: trunk/www/examples.php =================================================================== --- trunk/www/examples.php 2009-05-05 00:22:50 UTC (rev 9899) +++ trunk/www/examples.php 2009-05-05 00:35:06 UTC (rev 9900) @@ -104,7 +104,7 @@ <p>Diagnostic demo to exercise all our set/get functions. The result should be a properly-formatted empty plot with black background.</p> \n"), array(32, 1, 1, " - <p>Demo of how to draw box-whisker / candlestick plots using plplot. These are commonly used for financial data.</p> + <p>Demo of how to draw box-whisker / candlestick plots using PLplot. These are commonly used for financial data.</p> \n")); ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <hba...@us...> - 2009-05-10 20:30:50
|
Revision: 9955 http://plplot.svn.sourceforge.net/plplot/?rev=9955&view=rev Author: hbabcock Date: 2009-05-10 20:30:41 +0000 (Sun, 10 May 2009) Log Message: ----------- Updated the version number for the 5.9.4 release. Modified Paths: -------------- trunk/www/examples.php Modified: trunk/www/examples.php =================================================================== --- trunk/www/examples.php 2009-05-10 20:28:48 UTC (rev 9954) +++ trunk/www/examples.php 2009-05-10 20:30:41 UTC (rev 9955) @@ -204,7 +204,7 @@ echo <<<END <h3>Examples</h3> <p>These examples were generated with the pngcairo device and - reflect the status of PLplot-5.9.3.</p> + reflect the status of PLplot-5.9.4.</p> <p>Select a thumbnail to view full-size image and source code.</p> <p> END; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <hba...@us...> - 2009-09-06 20:40:28
|
Revision: 10376 http://plplot.svn.sourceforge.net/plplot/?rev=10376&view=rev Author: hbabcock Date: 2009-09-06 20:40:17 +0000 (Sun, 06 Sep 2009) Log Message: ----------- Updated for 5.9.5 Modified Paths: -------------- trunk/www/examples.php Modified: trunk/www/examples.php =================================================================== --- trunk/www/examples.php 2009-09-06 20:25:54 UTC (rev 10375) +++ trunk/www/examples.php 2009-09-06 20:40:17 UTC (rev 10376) @@ -204,7 +204,7 @@ echo <<<END <h3>Examples</h3> <p>These examples were generated with the pngcairo device and - reflect the status of PLplot-5.9.4.</p> + reflect the status of PLplot-5.9.5.</p> <p>Select a thumbnail to view full-size image and source code.</p> <p> END; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ai...@us...> - 2010-04-12 22:21:21
|
Revision: 10910 http://plplot.svn.sourceforge.net/plplot/?rev=10910&view=rev Author: airwin Date: 2010-04-12 22:21:14 +0000 (Mon, 12 Apr 2010) Log Message: ----------- Pages have recently been added for examples 6, 7 and 19. Adjust generated website to display those pages. Modified Paths: -------------- trunk/www/examples.php Modified: trunk/www/examples.php =================================================================== --- trunk/www/examples.php 2010-04-12 22:10:19 UTC (rev 10909) +++ trunk/www/examples.php 2010-04-12 22:21:14 UTC (rev 10910) @@ -20,10 +20,10 @@ array( 5, 1, 1, " <p>Histogram demo.</p> \n"), - array( 6, 1, 1, " + array( 6, 5, 1, " <p>Symbol demo.</p> \n"), - array( 7, 17, 1, " + array( 7, 19, 1, " <p>Font demo for Hershey encodings.</p> \n"), array( 8, 8, 1, " @@ -59,7 +59,7 @@ array(18, 8, 1, " <p>3-d line and point plot demo.</p> \n"), - array(19, 3, 1, " + array(19, 4, 1, " <p>Demo of backdrop plotting of world, US maps.</p> \n"), array(20, 6, 3, " This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <hba...@us...> - 2010-06-05 17:30:19
|
Revision: 11060 http://plplot.svn.sourceforge.net/plplot/?rev=11060&view=rev Author: hbabcock Date: 2010-06-05 17:30:13 +0000 (Sat, 05 Jun 2010) Log Message: ----------- Update for 5.9.6 release. Modified Paths: -------------- trunk/www/examples.php Modified: trunk/www/examples.php =================================================================== --- trunk/www/examples.php 2010-06-05 17:23:12 UTC (rev 11059) +++ trunk/www/examples.php 2010-06-05 17:30:13 UTC (rev 11060) @@ -204,7 +204,7 @@ echo <<<END <h3>Examples</h3> <p>These examples were generated with the pngcairo device and - reflect the status of PLplot-5.9.5.</p> + reflect the status of PLplot-5.9.6.</p> <p>Select a thumbnail to view full-size image and source code.</p> <p> END; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ai...@us...> - 2011-04-14 19:42:13
|
Revision: 11704 http://plplot.svn.sourceforge.net/plplot/?rev=11704&view=rev Author: airwin Date: 2011-04-14 19:42:07 +0000 (Thu, 14 Apr 2011) Log Message: ----------- Add the 9 "fill" pages to be displayed on our website for example 27 plus give notice of our use of the -eofill option for these website results. Modified Paths: -------------- trunk/www/examples.php Modified: trunk/www/examples.php =================================================================== --- trunk/www/examples.php 2011-04-14 19:30:17 UTC (rev 11703) +++ trunk/www/examples.php 2011-04-14 19:42:07 UTC (rev 11704) @@ -88,8 +88,17 @@ array(26, 2, 1, " <p>Demo of multi-lingual unicode versions of the first page of example 4.</p> \n"), - array(27, 10, 1, " - <p>Demo of drawing 'spirograph' curves - epitrochoids, cycolids, roulettes.</p> + array(27, 19, 1, " + <p>Demo of drawing and filling 'spirograph' curves - +epitrochoids, cycolids, roulettes. We have specified the general +PLplot option '-eofill' when generating these figures. That means the +spirographic curves will be filled using the even-odd fill rule rather +than the (default) non-zero winding number fill rule. The motivation +for this choice is the even-odd rule produces more 'interesting' +looking results than would be produced by the non-zero rule (where a +much larger fraction of the complex spirographic curve would be +filled). + </p> \n"), array(28, 5, 1, " <p>Demo of 3-d writing of text (plmtex3 and plptex3).</p> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <hba...@us...> - 2011-10-13 01:11:11
|
Revision: 11956 http://plplot.svn.sourceforge.net/plplot/?rev=11956&view=rev Author: hbabcock Date: 2011-10-13 01:11:04 +0000 (Thu, 13 Oct 2011) Log Message: ----------- Updated for the 5.9.9 release. Modified Paths: -------------- trunk/www/examples.php Modified: trunk/www/examples.php =================================================================== --- trunk/www/examples.php 2011-10-13 00:41:30 UTC (rev 11955) +++ trunk/www/examples.php 2011-10-13 01:11:04 UTC (rev 11956) @@ -216,7 +216,7 @@ echo <<<END <h3>Examples</h3> <p>These examples were generated with the pngcairo device and - reflect the status of PLplot-5.9.8.</p> + reflect the status of PLplot-5.9.9.</p> <p>Select a thumbnail to view full-size image and source code.</p> <p> END; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |