From: Simon H. <sim...@us...> - 2010-09-30 16:56:30
|
Update of /cvsroot/stack/stack-dev/lang/en/doc In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv28438/lang/en/doc Modified Files: maxima_functions.php Log Message: Merging 2.2 branch (with some additional fixes to ensure seamless updating for version lines) Index: maxima_functions.php =================================================================== RCS file: /cvsroot/stack/stack-dev/lang/en/doc/maxima_functions.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** maxima_functions.php 2 Apr 2008 22:50:28 -0000 1.2 --- maxima_functions.php 30 Sep 2010 16:56:22 -0000 1.3 *************** *** 18,24 **** <p>This is a complete and alphabetical list of Maxima functions taken from the distributed documentation, ! together with the extent to which they are supported by STACK. This list is taken from Maxima 5.13.0 on 19 September 2007, and so may well be incomplete.</p> ! <p>The reasons why a function may have been excluded from STACK are listed below. <ul> <li>File operations</li> --- 18,24 ---- <p>This is a complete and alphabetical list of Maxima functions taken from the distributed documentation, ! together with the extent to which they are supported by STACK. This list is taken from Maxima 5.21.1 on 1 June 2010, and so may well be incomplete.</p> ! <p>The reasons why a function may have been excluded from STACK are listed below. <ul> <li>File operations</li> *************** *** 49,61 **** if (array_key_exists('use',$vals)) { - // This next if is entirely for formatting reasons. - // Long command or variable names clutter the display if unused. - if (strlen($fun) < 20 or 's' == $vals['use'] or 't' == $vals['use']) { echo "\n<tr>\n"; echo " <td>"; foreach ($vals['urls'] as $url) { ! echo " <a href='{$MaximaDocs}{$url}'>$fun</a> "; } echo "</td>\n"; --- 49,64 ---- if (array_key_exists('use',$vals)) { echo "\n<tr>\n"; echo " <td>"; + $i=0; foreach ($vals['urls'] as $url) { ! $i+=1; ! if ($i==1) { ! echo " <a href='{$MaximaDocs}{$url}'>$fun</pre></a> "; ! } else { ! echo " <a href='{$MaximaDocs}{$url}'>[$i]</pre></a> "; ! } } echo "</td>\n"; *************** *** 69,72 **** --- 72,77 ---- } else if ('never' == $vals['use']) { echo " <td> <font color='gray'>(Forbidden)</font> </td>\n "; + } else if ('NEW' == $vals['use']) { + echo " <td> <font color='red'>NEW</font> </td>\n "; } else echo " <td nowrap='nowrap'>Not supported</td>\n"; *************** *** 91,103 **** echo "</tr>"; } ! ! } } ?> - <hr> - <a href="index.html">STACK documentation home page</a> </body> --- 96,106 ---- echo "</tr>"; } ! } + echo "</table>"; ?> <hr> </body> |