- Timestamp:
- Nov 16, 2006, 1:48:51 AM (14 years ago)
- Location:
- www
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
www/download.html
r1372 r1411 21 21 <?php include($_SERVER["DOCUMENT_ROOT"]."/header.inc"); ?> 22 22 23 <h2> Stable versions </h2> 23 <p> You can <a href="files/">browse old releases</a> of all the libcaca 24 software. </p> 25 26 <h2> libcaca development versions </h2> 27 28 <p> The latest libcaca beta version is <a 29 href="files/libcaca-0.99.beta10.tar.gz">libcaca-0.99.beta10.tar.gz</a>. Please 30 download and test it. If you are a developer, please comment on the current 31 API and let us know what is missing. </p> 32 33 <p> Even more recent code can be downloaded using Subversion. See the <a 34 href="/devel.html">development page</a> for more information. </p> 35 36 <h2> TOIlet </h2> 37 38 <p> The latest TOIlet version is <a 39 href="files/toilet-0.1.tar.gz">toilet-0.1.tar.gz</a>. Please download and test 40 it. </p> 41 42 <p> Even more recent code can be downloaded using Subversion. See the <a 43 href="/devel.html">development page</a> for more information. </p> 44 45 <h2> Documentation </h2> 46 47 <p> You can download a <a href="libcaca.pdf">PDF version</a> of the 48 libcaca manual. </p> 49 50 <h2> old libcaca stable versions </h2> 24 51 25 52 <p> <span style="color: #aa0000; font-weight: bold;">Warning</span>: stable … … 34 61 <a href="files/libcaca-win32-0.9.zip">libcaca-win32-0.9.zip</a> (100KB). </p> 35 62 36 <p> You can <a href="files/">browse old releases</a>. </p> 37 38 <h2> Development versions </h2> 39 40 <p> The latest libcaca beta version is <a 41 href="files/libcaca-0.99.beta10.tar.gz">libcaca-0.99.beta10.tar.gz</a>. Please 42 download and test it. If you are a developer, please comment on the current 43 API and let us know what is missing. </p> 44 45 <p> Even more recent code can be downloaded using Subversion. See the <a 46 href="/devel.html">development page</a> for more information. </p> 47 48 <h2> Documentation </h2> 49 50 <p> You can download a <a href="libcaca.pdf">PDF version</a> of the 51 manual. </p> 63 <p> Older versions (up to 0.9) were under the LGPL license but all 64 copyright holders agreed to relicence the codebase under the WTFPL (such a 65 permission is not retroactive and you should consider old versions as still 66 covered by the LGPL). The logo on this page is copyrighted by Akira Toriyama 67 so if anyone fancies drawing a new logo it would be much appreciated. </p> 52 68 53 69 <?php $rev = '$Id$'; -
www/index.html
r1375 r1411 42 42 works natively on DOS and Windows. </p> 43 43 44 <p> Libcaca is <a href="http://www.gnu.org/philosophy/free-sw.html">free45 software</a>, and can be used, modified and distributed under the terms of46 the <a href="http://sam.zoy.org/wtfpl/">Do What The Fuck You Want To Public47 License</a>. Older versions (up to 0.9) were under the LGPL license but all48 copyright holders agreed to relicence the codebase under the WTFPL (such a49 permission is not retroactive and you should consider old versions as still50 covered by the LGPL). The logo on this page is copyrighted by Akira Toriyama51 so if anyone fancies drawing a new logo it would be much appreciated. </p>52 53 44 <p> Libcaca was written by Sam Hocevar <<a 54 href="mailto:sam@zoy.org">sam@zoy.org</a>> and Jean-Yves Lamoureux <<a 55 href="mailto:jylam@lnxscene.org">jylam@lnxscene.org</a>>. </p> 45 href="mailto:sam@zoy.org">sam@zoy.org</a>> and Jean-Yves Lamoureux 46 <<a href="mailto:jylam@lnxscene.org">jylam@lnxscene.org</a>>. It is 47 <a href="http://www.gnu.org/philosophy/free-sw.html">free software</a>, 48 and can be used, modified and distributed under the terms of the <a 49 href="http://sam.zoy.org/wtfpl/">Do What The Fuck You Want To Public 50 License</a>. </p> 51 52 <h2> New </h2> 53 54 <p> <b>November 16th, 2006</b>: <a href="/toilet.html">TOIlet</a> 0.1 </p> 55 56 <p> <b>November 12th, 2006</b>: libcaca 0.99.beta10 </p> 56 57 57 58 <h2> Screenshots </h2> -
www/toilet.html
r1185 r1411 39 39 </ul> 40 40 41 <p> TOIlet also aims for full FIGlet compatibility. It is currently only able 42 to load FIGlet fonts and render text on a single line, without vertical or 43 horizontal smushing. </p> 41 <p> TOIlet also aims for full FIGlet compatibility. It is currently able 42 to load FIGlet fonts and perform horizontal smushing. </p> 44 43 45 44 <h2> Live test </h2> 46 45 47 46 <? $submit = $_POST['submit']; 48 $text = substr(stripslashes($_POST['text']), 0, 40);47 $text = substr(stripslashes($_POST['text']), 0, 1024); 49 48 $font = $_POST['font']; 50 49 $fontlist = array('emboss' => 'Emboss', … … 72 71 <div class="toilet"> 73 72 <p class="toilet"><pre><? 74 $p = "/tmp/trunk-toilet"; 75 exec($p.'/src/toilet -d '.$p.'/fonts -f '.$font.' '.escapeshellarg($text).' | sed "s/\x1b[^m]*m//g"', &$result); 73 exec('toilet -f '.$font.' '.escapeshellarg($text), &$result); 76 74 foreach($result as $line) 77 75 echo htmlspecialchars($line)."\n";
Note: See TracChangeset
for help on using the changeset viewer.