index.phpDenna kod är public domain. Om ni hittar fel eller vill ändra något i koden blir jag jätteglad om ni skickar dessa ändringar till jesper [at] fantasi [punkt] se.
<?php // yo, emacs! This is an -*- HTML -*- file.
$title="IRCbot";
$currentFile=__FILE__;
include("../header.php");
?>
<h1>An IRC bot project</h1>
<p class="maincontent">
This IRC bot project was initiated in early 2007 just because I felt
like writing an IRC bot. It turned out to be an interesting
excercise in object oriented design and programming so I decided to
use it in my teaching as an example, and as a
programming excercise for my students. This bot is implemented in
Java. Currently it mostly speaks Swedish, but English translation is
in the making and a lot of the functions supports both languages.
</p>
<p class="maincontent">
The code is extremely modular in its design and almost all of the
bot's functionallity has been broken out of the main machinery into
separate modules. It is easy to add new modules and anyone can
create an own module with little effort. Modules can be
dynamically added or removed on-line.
</p>
<p class="maincontent">
Index:
</p>
<ul class="maincontent">
<li> <a href="ircbot.zip">Download the source code</a></li>
<li> <a href="javadoc/index.html">Documentation - API (javadoc)</a></li>
<li> <a href="#doccli">Documentation - Command line options</a></li>
<li> <a href="#docmod">Documentation - Modules</a></li>
<li> <a href="#todo">Current ToDo list</a></li>
<li> <a href="#bugs">Know bugs</a></li>
</ul>
<?php include("modules.php"); ?>
<a name="todo"></a>
<h3>Current ToDo list</h3>
<ul class="maincontent">
<?php include("todo.html"); ?>
<li> More functionality...</li>
</ul>
<a name="bugs"></a>
<h3>Known bugs</h3>
<ul class="maincontent">
<?php include("bugs.html"); ?>
<li> Let me know if you find any more...</li>
</ul>
<?php include("../footer.php"); ?>
|