Update of /cvsroot/ganc/web In directory sc8-pr-cvs1:/tmp/cvs-serv10915 Added Files: download.php index.php news.php right_frame.php screenshots.php Removed Files: download.html index.html news.html screenshots.html Log Message: Converted web page from html into php --- NEW FILE: download.php --- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd "> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Home - ganc</title> <link rel="Stylesheet" href="ganc.css" type="text/css" media="screen" /> <script src="scripts/x.js" type="text/javascript"></script> <script src="scripts/adjust-columns.js" type="text/javascript"></script> </head> <body> <!-- include some local_variables --> <?php include 'local_variables.php'; $download_class="active"; ?> <!---------------------------- Left frame -----------------------------> <div id="leftframe"> <div id="leftframe-content"> <h2>Download</h2> <hr /> <p>To build ganc just do the usual: <br /><br /> ./configure <br /> make<br /> </p> <p>If you're building from CVS you may have to run autoconf and its buddies first. You can use a litle script already included:<br /><br /> ./reconf.sh<br /> ./configure<br /> make </p> <p> You can download ganc's source code from: </p> <ul> <li>Stable version <strong>0.7</strong>: <ul> <li>Source tarball: <a href="http://prdownloads.sourceforge.net/ganc/ganc-0.7.tar.gz?download">ganc-0.7.tar.gz</a></li> </ul> <li>Stable version <strong>0.6</strong>: <ul> <li>Source tarball: <a href="http://prdownloads.sourceforge.net/ganc/ganc-0.6.tar.gz?download">ganc-0.6.tar.gz</a></li> </ul> </li> <li>CVS at SourceForge.net: <ul> <li>Access the CVS repository anonymously at cvs.sf.net</li> To get the latest of the latest use:<br />    $ export CVS_RSH=ssh<br />    $ cvs -d:pserver:ano...@cv...:/cvsroot/ganc checkout ganc<br /> When asked for password just press Enter <li>Nightly tarball: <a href="http://cvs.sourceforge.net/cvstarballs/ganc-cvsroot.tar.bz2">ganc-cvsroot.tar.bz2</a></li> </ul> </li> </ul> <p>Check out <a href="http://sourceforge.net/project/showfiles.php?group_id=93373&release_id=193675">ganc's download page</a></p> </div> </div> <!---------------------------- Right frame -----------------------------> <?php include 'right_frame.php' ?> <!-------------------------------- Footer --------------------------------> <div id="footer"> <hr /> </div> </body> </html> --- NEW FILE: index.php --- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd "> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Home - ganc</title> <link rel="Stylesheet" href="ganc.css" type="text/css" media="screen" /> <script src="scripts/x.js" type="text/javascript"></script> <script src="scripts/adjust-columns.js" type="text/javascript"></script> </head> <body> <!-- include some local_variables --> <?php include 'local_variables.php'; $home_class="active"; ?> <!---------------------------- Left frame -----------------------------> <div id="leftframe"> <div id="leftframe-content"> <!-- this id is necessary for the javascript --> <h2>ganc</h2> <hr /> <p> ganc is a <strong>G</strong>nome-based <strong>A</strong>lgebraic <strong>N</strong>otation <strong>C</strong>alculator. <br /> Just a very very useful and simple algebraic calculator. But then again, not so simple. </p> <p> Have you ever done some simple calculation like adding a bunch of numbers. Then you made a mistake and all the numbers you'd typed so far got lost. Or maybe you finished, got your result and wondered if you made a mistake typing. Is the result correct? Well, I'm affraid the only way to know is do it again and hope you get the same result. </p> <p> Or maybe you were programing and wanted to transform that ugly hexadecimal or binary number into something more meaningful. Or viceversa. </p> <p>That's where ganc comes in. </p> <p> ganc has a very simple syntax. There's no learning curve. If you want to add two plus two you just type '2 + 2' and that's it! It can also handle more complicated stuff involving several expressions in the same line, functions, implicit product, variables, numbers in different bases, bitwise operations, logical operations, etc ... It even allows C-style in-line variable definition.<br /> Some examples of valid ganc expressions are: <table cellspacing="5"> <tr><td>2 + 2 * 3</td><td><em>precedence is handled adequately (= 8)<em></td></tr> <tr><td>sin 45</td><td><em>trigonometrical functions<em></td></tr> <tr><td>2 sin 45</td><td><em>implicit product</em></td></tr> <tr><td>a= 2 + 2 * 3</td><td><em>variable asignment</em></td></tr> <tr><td>2*a + 2a</td><td><em>variable use</em></td></tr> <tr><td>c= 2*b= a + 2a</td><td><em>in-line variable asignment (b=a + 2a and c= 2*(a + 2a))</em></td></tr> <tr><td>2 + 3; b= 1 - 2; 2b</td><td><em>several expressions at the same time</em></td></tr> <tr><td>1b5_16</td><td><em>hexadecimal number (base 16)</em></td></tr> <tr><td>3vgt_32; 1001_2</td><td><em>base 32 and binary</em></td></tr> <tr><td>23 :: _16</td><td><em>number 23 expressed in base 16</em></td></tr> <tr><td>f_16 & 1101_2</td><td><em>bitwise 'and' operation</em></td></tr> </table> <!-- <ul> <li><span>2 + 2 * 3</span><em>precedence is handled adequately (= 8)</em></li> <li><span>sin 45</span><em>trigonometrical functions</em></li> <li><span>2 sin 45</span><em>implicit product</em></li> <li><span>a= 2 + 2 * 3</span><em>variable asignment</em></li> <li><span>2*a + 2a</span><em>variable use</em></li> <li><span>c= 2*b= a + 2a</span><em>in-line variable asignment (b=a + 2a and c= 2*(a + 2a))</em></li> <li><span>2 + 3; b= 1 - 2; 2b</span><em>several expressions at the same time</em></li> <li><span>1b5_16</span><em>hexadecimal number (base 16)</em></li> <li><span>3vgt_32; 1001_2</span><em>base 32 and binary</em></li> <li><span>23 :: _16</span><em>number 23 expressed in base 16</em></li> <li><span>f_16 & 1101_2</span><em>bitwise 'and' operation</em></li> </ul> --> </p> <p> ganc also features a keypad so you don't have to type if you don't feel like it. You can achieve the same results just using your mouse. </p> <p> ganc adds the power and complexity of an algebraic calculator to the simplicity of a regular calculator. </p> </div> </div> <!---------------------------- Right frame -----------------------------> <?php include 'right_frame.php' ?> <!-------------------------------- Footer --------------------------------> <div id="footer"> <hr /> </div> </body> </html> --- NEW FILE: news.php --- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd "> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Home - ganc</title> <link rel="Stylesheet" href="ganc.css" type="text/css" media="screen" /> <script src="scripts/x.js" type="text/javascript"></script> <script src="scripts/adjust-columns.js" type="text/javascript"></script> </head> <body> <!-- include some local_variables --> <?php include 'local_variables.php'; $news_class="active"; ?> <!---------------------------- Left frame -----------------------------> <div id="leftframe"> <div id="leftframe-content"> <h2>News</h2> <hr /> <p class="date">Last stable version of ganc is <?php echo "$current_version" ?></p> <ul class="news"> <li>13th Dec 2003<span>ganc-0.7 released</span></li> A new hot right out of the oven release is out. Check it out in the download page. <li>21st Nov 2003<span>ganc's web page got updated</span></li> ganc's web page got a major makeover <li>19th Nov 2003<span>ganc goes on CVS</span></li> ganc's source code is in CVS!<br /> You can get it at SourceForge.net </ul> </div> </div> <!---------------------------- Right frame -----------------------------> <?php include 'right_frame.php' ?> <!-------------------------------- Footer --------------------------------> <div id="footer"> <hr /> </div> </body> </html> --- NEW FILE: right_frame.php --- <div id="rightframe"> <div id="rightframe-content"> <p> Download<br /> <small>[<a href="http://prdownloads.sourceforge.net/ganc/ganc-<?php echo "$current_version" ?>.tar.gz?download">v<?php echo "$current_version" ?></a>]<br /> [<a href="http://cvs.sourceforge.net/cvstarballs/ganc-cvsroot.tar.bz2">Nightly CVS tarball</a>]</small> </p> <p class="<?php echo "$home_class" ?>"><a href="index.php">Home</a></p> <p class="<?php echo "$news_class" ?>"><a href="news.php">News</a></p> <p class="<?php echo "$screenshots_class" ?>"><a href="screenshots.php">Screenshots</a></p> <p class="<?php echo "$download_class" ?>"><a href="download.php">Download</a></p> <p><a href="http://sourceforge.net/projects/ganc">Project page</a></p> <hr /> <div class="logo"> <!--<img src="images/local-sflogo.png" alt="SourceForge.net Logo" title="SourceForge.net" />--> <a href="http://sourceforge.net"> <img src="http://sourceforge.net/sflogo.php?group_id=93373&type=5" width="210" height="62" border="0" alt="SourceForge.net Logo" /></a> </div> </div> </div> --- NEW FILE: screenshots.php --- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd "> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Home - ganc</title> <link rel="Stylesheet" href="ganc.css" type="text/css" media="screen" /> <script src="scripts/x.js" type="text/javascript"></script> <script src="scripts/adjust-columns.js" type="text/javascript"></script> </head> <body> <!-- include some local_variables --> <?php include 'local_variables.php'; $screenshots_class="active"; ?> <!---------------------------- Left frame -----------------------------> <div id="leftframe"> <div id="leftframe-content"> <h2>Screenshots</h2> <hr /> <p>Some screenshots of ganc in action</p> <div class="screenshot"> <img src="images/screenshot1.png" alt="screenshot1" title="screenshot1" /><br /> ganc demonstrating simple arithmetic operations, operator precedence, several expressions at a time, variable assignment, implicit product, and in-line assignment </div> <div class="screenshot"> <img src="images/screenshot2.png" alt="screenshot2" title="screenshot2" /><br /> arbitrary base expressions (up to base 36, after that we run out of letters :P) </div> </div> </div> <!---------------------------- Right frame -----------------------------> <?php include 'right_frame.php' ?> <!-------------------------------- Footer --------------------------------> <div class="footer"> <hr /> </div> </body> </html> --- download.html DELETED --- --- index.html DELETED --- --- news.html DELETED --- --- screenshots.html DELETED --- |