Changeset 1128
- Timestamp:
- Sep 28, 2006, 2:02:17 PM (16 years ago)
- Location:
- www
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
www/cacatris.html
r1123 r1128 21 21 <?php include($_SERVER["DOCUMENT_ROOT"]."/header.inc"); ?> 22 22 23 <p> cacatris is a work-in-progress libcaca project. More later. </p> 24 23 25 <?php include($_SERVER["DOCUMENT_ROOT"]."/footer.inc"); ?> 24 26 -
www/devel.html
r1127 r1128 21 21 <?php include($_SERVER["DOCUMENT_ROOT"]."/header.inc"); ?> 22 22 23 <p> Development is very open and patches are almost always accepted. Do not 24 hesitate to have a look at the <a href="/manual/todo.html">TODO list</a> or 25 let us know about your own projects. </p> 23 <h2> Development </h2> 24 25 <p> Development is very open and we welcome bug reports, 26 suggestions and patches. Do not hesitate to have a look at the <a 27 href="/manual/todo.html">TODO list</a> or let us know about your own projects. 28 </p> 26 29 27 30 <p> Despite <i>libcaca</i>’s limited audience, we target high code … … 40 43 <li> <i>ttyvaders</i> — <code>svn://svn.zoy.org/ttyvaders/trunk</code> </li> 41 44 </ul> 45 46 <p> For instance, to retrieve the main trunk, use this 47 command: </p> 48 49 <blockquote><p> 50 <code>svn co svn://svn.zoy.org/libcaca/trunk libcaca-trunk</code> 51 </p></blockquote> 42 52 43 53 <p> The repositories can be browsed using the <a -
www/download.html
r1123 r1128 21 21 <?php include($_SERVER["DOCUMENT_ROOT"]."/header.inc"); ?> 22 22 23 <h2> Developers </h2>23 <h2> Stable versions </h2> 24 24 25 <p> The latest libcaca snapshot is <a 25 <p> <span style="color: #aa0000; font-weight: bold;">Warning</span>: stable 26 releases of libcaca are terribly outdated. If you want to test libcaca, you 27 are encouraged to check the development versions. </p> 28 29 <p> Latest stable libcaca release is <a 30 href="libcaca-0.9.tar.gz">libcaca-0.9.tar.gz</a> (216KB) / <a 31 href="libcaca-0.9.tar.bz2">libcaca-0.9.tar.bz2</a> (172KB). </p> 32 33 <p> A Windows zip archive containing the libcaca demos can be downloaded here: 34 <a href="libcaca-win32-0.9.zip">libcaca-win32-0.9.zip</a> (100KB). </p> 35 36 <h2> Development versions </h2> 37 38 <p> The latest libcaca beta version is <a 26 39 href="libcaca-0.99.beta5.tar.gz">libcaca-0.99.beta5.tar.gz</a>. Please 27 40 download and test it. If you are a developer, please comment on the current -
www/header.inc
r1120 r1128 1 1 <div class="logo"> 2 2 <h1> libcaca - Colour AsCii Art library </h1> 3 <p style="text-align: right;"> <i>it’s da shit!</i></p>3 <p class="dashit"> it’s da shit! </p> 4 4 </div> 5 5 -
www/index.html
r1127 r1128 221 221 <h2> Download libcaca </h2> 222 222 223 <p> Latest libcaca release is <a224 href="libcaca-0.9.tar.gz">libcaca-0.9.tar.gz</a> (216KB) / <a225 href="libcaca-0.9.tar.bz2">libcaca-0.9.tar.bz2</a> (172KB). See the <a226 href="NEWS">NEWS</a> and <a href="ChangeLog">ChangeLog</a> files. </p>227 228 223 <p> libcaca is already in the Debian sid distribution. Debian woody users or 229 224 sid users in a hurry may use one of the following apt sources: (sorry, sarge … … 270 265 </p> 271 266 272 <p> A Windows zip archive containing the libcaca demos can be downloaded here:273 <a href="libcaca-win32-0.9.zip">libcaca-win32-0.9.zip</a> (100KB). </p>274 275 267 <h2> Patch for libSDL </h2> 276 268 … … 302 294 should not be using MPlayer anyway, because it sucks). </p> 303 295 304 <h2> Documentation </h2>305 306 <p> See the <a href="doc/index.html">HTML documentation</a>. </p>307 308 296 <h2> Development </h2> 309 297 310 <p> The mailing-list for libcaca users and developers is <a311 href="mailto:libcaca@lists.zoy.org">libcaca@lists.zoy.org</a>.312 To subscribe, send an email to <a313 href="mailto:ecartis@lists.zoy.org">ecartis@lists.zoy.org</a>314 containing the words "<code>subscribe libcaca</code>". To unsubscribe, just315 use "<code>unsubscribe libcaca</code>". </p>316 317 <p> Please report bugs and make suggestions to <a318 href="mailto:libcaca@lists.zoy.org">libcaca@lists.zoy.org</a> and319 don’t forget to check the <a href="threads.html">mailing-list archives</a>.320 </p>321 322 <p> The libcaca development is managed using <a323 href="http://subversion.tigris.org">Subversion</a>. The324 <code>svn://svn.zoy.org/libcaca/</code> repository can be browsed using the <a325 href="/cgi-bin/viewcvs.cgi/trunk/?root=libcaca">web interface</a>, or directly326 with the Subversion client. For instance, to retrieve the main trunk, use this327 command: </p>328 329 <table class="leftmenu" cellspacing="5" cellpadding="0">330 <tr>331 <td class="nowrap" valign="top">332 <code>svn co svn://svn.zoy.org/libcaca/trunk libcaca-trunk</code>333 </td>334 </tr>335 </table>336 337 <p> To retrieve a specific tag, e.g. 0.3, use this: </p>338 339 <table class="leftmenu" cellspacing="5" cellpadding="0">340 <tr>341 <td class="nowrap" valign="top">342 <code>svn co svn://svn.zoy.org/libcaca/tags/0.3 libcaca-0.3</code>343 </td>344 </tr>345 </table>346 298 --> 347 299 -
www/main.css
r1127 r1128 70 70 } 71 71 72 p.dashit { 73 text-align: right; 74 font-size: smaller; 75 font-style: italic; 76 } 77 72 78 a.menu { 73 79 background-color: white; -
www/toilet.html
r1123 r1128 21 21 <?php include($_SERVER["DOCUMENT_ROOT"]."/header.inc"); ?> 22 22 23 <p> TOIlet is a work-in-progress libcaca project. More later. </p> 24 23 25 <?php include($_SERVER["DOCUMENT_ROOT"]."/footer.inc"); ?> 24 26 -
www/ttyvaders.html
r1123 r1128 21 21 <?php include($_SERVER["DOCUMENT_ROOT"]."/header.inc"); ?> 22 22 23 <p> ttyvaders is a work-in-progress libcaca project. More later. </p> 24 23 25 <?php include($_SERVER["DOCUMENT_ROOT"]."/footer.inc"); ?> 24 26
Note: See TracChangeset
for help on using the changeset viewer.