zork.net
zork.net

You are in the living room. There is a door to the east, a wooden door with strange gothic lettering to the west, which appears to be nailed shut, and a large oriental rug in the center of the room.
There is a trophy case here.
Your collection of treasures consists of:

[ICO]NameLast modifiedSizeDescription

[PARENTDIR]Parent Directory  -  
[TXT]LICENSE.txt2009-07-01 20:57 34K 
[   ]MANIFEST.in2011-01-02 18:05 122  
[TXT]__init__.py2009-07-01 20:57 762  
[   ]__init__.pyc2009-12-12 23:20 916  
[TXT]admin.py2009-06-07 21:38 161  
[TXT]commands.py2009-11-16 22:03 1.9K 
[   ]commands.pyc2009-12-12 23:20 2.7K 
[DIR]doc/2011-01-02 18:05 -  
[TXT]ircviews.py2010-07-17 22:07 6.1K 
[   ]ircviews.pyc2009-12-12 23:20 9.6K 
[TXT]models.py2010-07-17 22:07 6.9K 
[   ]models.pyc2009-12-12 23:20 3.3K 
[TXT]setup.py2009-07-01 21:53 446  
[DIR]templates/2009-12-12 13:04 -  
[TXT]tests.py2011-01-02 18:05 159  
[   ]tests.pyc2009-12-12 23:20 10K 
[TXT]version.py2009-10-18 19:03 198  
[TXT]views.py2009-05-13 06:06 26  

=======
IOTower
=======

-----------------------------------------
An Infobot Replacement Inspired by Bucket
-----------------------------------------

::

	 / ,     . \    (((acbf)))
	( ( ( O ) ) )
	 \ `  |  ' /
	      |
	    /===\
	    |\ /|
	    | X |
	    |/ \|
	   /=====\
	   |\   /|
	   | \ / |
	   |  X  |
	   | / \ |
	   |/   \|

How Bucket Did It
=================

My survey of bucket turned up the following public functions:

        1. edit factoid
        2. trigger factoid
        3. literal
        4. random factoid
        5. stats
	6. shut up (shuts bucket up for one minute, but if you use it too
	   much the bot ignores you for a while.)
        7. Suggest a band name

The authentication system for bucket basically says "If you're an
operator in a particular channel, I trust you for these higher-level
commands."  These are:

	delete, un-shutup, join, part, ignore, unignore, list-ignored,
	protect factoid, unprotect factoid, alias one factoid to another,
	lookup (by data?), restart, set/get (seems to be raw db access
	somehow), plus an "undo" system for the most recent delete,
	insert, and edit commands done.

In addition, certain penalties and permissions don't apply to you if
you're in the oper list: You can shut up the bot indefinitely, you can
edit protected factoids, etc.

Sample Output
=============

So far this app has only implemented adding factoids and triggering
them.  It does not yet check for "also" when appending to an existing
one::

  	<SpaceHobo> yardbird: Clavicle is a troll
  	<yardbird> OK, SpaceHobo.
  	<SpaceHobo> yardbird: Clavicle is Brazillion
  	<yardbird> OK, SpaceHobo.
  	<SpaceHobo> yardbird: clavicle <hates> freedom
  	<yardbird> OK, SpaceHobo.
  	<SpaceHobo> what is clavicle?
  	<yardbird> SpaceHobo: clavicle =is= Brazillion
  	<SpaceHobo> what is clavicle?
  	<yardbird> SpaceHobo: clavicle =is= a troll
  	<SpaceHobo> what does clavicle hate?
  	<yardbird> SpaceHobo: clavicle =hates= freedom

Data Structures and Edit History
================================

We store factoids in a table that just has the trigger-keys and access
limits (and a few other ancillary bits of info).  In another table we
have responses, with a foreign key to the factoid row in question, the
verb, and the text of the response

In addition to these basic fields, we have four more:

        * response creator
        * date/time of factoid creation
        * response disabler (can be NULL)
        * date/time of factoid disabling (can be NULL)

This provides possibilities for detailed statistics and logs, and gives us
some bucket features for free in our database:

        :lookup: random limit 1 select from responses with disable
                fields set to NULL
        :delete: set the disabled time to now
        :undelete: NULL out the disabled time!
        :edit: Add a new response with the new text, and set the disable
                time for the old row to the creation for this new one
        :un-edit: find the two rows where creation and delete time
                match, and do a new edit with the old version's text (to
                preserve history)
        :snapshot in time: select responses where provided time is between
                creation and delete times.  Can tie into more elaborate
                rollback operations.