From: timriker Date: Tue, 28 Oct 2003 03:24:56 +0000 (+0000) Subject: Initial revision X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=d80616caa46e2937cb0167f61b387f164ccfc3cf;p=infobot.git Initial revision git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk@863 c11ca15a-4712-0410-83d8-924469b57eb5 --- diff --git a/www/.htpasswd b/www/.htpasswd new file mode 100644 index 0000000..722c18e --- /dev/null +++ b/www/.htpasswd @@ -0,0 +1 @@ +blootbot:EZQ6ol8aBWE8c diff --git a/www/htdocs/cp/.htaccess b/www/htdocs/cp/.htaccess new file mode 100644 index 0000000..265a3bd --- /dev/null +++ b/www/htdocs/cp/.htaccess @@ -0,0 +1,7 @@ +AuthUserFile /home/groups/b/bl/blootbot/.htpasswd +AuthGroupFile /dev/null +AuthName CP +AuthType Basic + +require valid-user + diff --git a/www/htdocs/cp/index.php b/www/htdocs/cp/index.php new file mode 100644 index 0000000..bc591fa --- /dev/null +++ b/www/htdocs/cp/index.php @@ -0,0 +1,18 @@ + + +
C O N T R O L . P A N E L

+ +
News Functios:
+Add News
+Delete News

+ + + diff --git a/www/htdocs/cp/news-delete.php b/www/htdocs/cp/news-delete.php new file mode 100644 index 0000000..54f8d42 --- /dev/null +++ b/www/htdocs/cp/news-delete.php @@ -0,0 +1,24 @@ +

C O N T R O L . P A N E L: N E W S . D E L E T E

DO NOT REFRESH THIS PAGE!
Do not use the back button after submitting!
Please click here to return to the control panel or here to return to the news-delete control panel
ID Number:
ONCE NEWS IS DELETED, IT CAN NOT BE BROUGHT BACK. DELETE WITH CAUTION!. DO NOT ENTER AN INVALID ID, I DON'T KNOW WHAT WILL HAPPEN!
diff --git a/www/htdocs/cp/news.php b/www/htdocs/cp/news.php new file mode 100644 index 0000000..52c0c7c --- /dev/null +++ b/www/htdocs/cp/news.php @@ -0,0 +1,25 @@ +
C O N T R O L . P A N E L: N E W S

DO NOT REFRESH THIS PAGE!
Do not use the back button after submitting!
Please click here to return to the control panel or here to return to the news control panel
Title: Author:
WARNING: Once news is added, it CAN NOT BE CHANGED. Make sure that all the fields are filled out and use propper HTML.

Message:
diff --git a/www/htdocs/img/logo.gif b/www/htdocs/img/logo.gif new file mode 100755 index 0000000..6d14932 Binary files /dev/null and b/www/htdocs/img/logo.gif differ diff --git a/www/htdocs/img/news.gif b/www/htdocs/img/news.gif new file mode 100755 index 0000000..1ec4a14 Binary files /dev/null and b/www/htdocs/img/news.gif differ diff --git a/www/htdocs/inc/.htaccess b/www/htdocs/inc/.htaccess new file mode 100644 index 0000000..77700b4 --- /dev/null +++ b/www/htdocs/inc/.htaccess @@ -0,0 +1,10 @@ +AuthUserFile /dev/null +AuthGroupFile /dev/null +AuthName DenyViaWeb +AuthType Basic + + + +order allow,deny +deny from all + diff --git a/www/htdocs/inc/mysql.inc b/www/htdocs/inc/mysql.inc new file mode 100644 index 0000000..5b63ace --- /dev/null +++ b/www/htdocs/inc/mysql.inc @@ -0,0 +1,11 @@ +"; + } + +?> diff --git a/www/htdocs/inc/news-delete.inc b/www/htdocs/inc/news-delete.inc new file mode 100644 index 0000000..62509b7 --- /dev/null +++ b/www/htdocs/inc/news-delete.inc @@ -0,0 +1,33 @@ +
ID - Title - Date
- -

News ID: Has been deleted diff --git a/www/htdocs/inc/news.inc b/www/htdocs/inc/news.inc new file mode 100644 index 0000000..455abe9 --- /dev/null +++ b/www/htdocs/inc/news.inc @@ -0,0 +1,28 @@ +

Posted by ".$news["author"],"90%"); + echo $news["message"]; + box_end(); + } +} + +function add_news($author,$title,$message) { + global $db_name,$db_handle; + + $timestamp = time(); + $query = "INSERT INTO news (timestamp,title,author,message) VALUES ('$timestamp','$title','$author','$message')"; + $result = mysql_db_query($db_name,$query,$db_handle); + if (!$result) + print("MySQL Error: " . mysql_error()); +} + +?> + diff --git a/www/htdocs/inc/template.inc b/www/htdocs/inc/template.inc new file mode 100644 index 0000000..99865a6 --- /dev/null +++ b/www/htdocs/inc/template.inc @@ -0,0 +1,137 @@ +B L O O T B O T . <? echo $title; + ?>
The slowest and most bloated bot in the world

Download
Releases:

CVS tarball
[HTTP | FTP]

1.2.0 [Stable] tarball
[HTTP | FTP]

1.1.0 [Old] tarball
[HTTP | FTP]

1.0.3 [Old] tarball
[HTTP | FTP]

CVS Development:
CVS download info
* Download CVS Backup
* View CVS Tree


Support

Documentation:
Installation
FAQ
Development

E-mail:
Request Support
Other:
BUG list
Discussion Forum


Development

Report a BUG
View ToDo List
Admin

Hosted by:
alt="SourceForge Logo">

 

diff --git a/www/htdocs/index.php b/www/htdocs/index.php new file mode 100644 index 0000000..78b8ba8 --- /dev/null +++ b/www/htdocs/index.php @@ -0,0 +1,9 @@ + diff --git a/www/htdocs/not.php b/www/htdocs/not.php new file mode 100644 index 0000000..48ec63c --- /dev/null +++ b/www/htdocs/not.php @@ -0,0 +1,15 @@ + + + +The file you requested is not available, in fact it is coming soon. We will try to have + this up as soon as possible. We apologize for any inconvenience. If you feel you have + reached this page in error, please report it as a bug. Thank you. + + + diff --git a/www/htdocs/old/index.html b/www/htdocs/old/index.html new file mode 100755 index 0000000..10c9817 --- /dev/null +++ b/www/htdocs/old/index.html @@ -0,0 +1,23 @@ + + +intro + + +

+ + + + + + [SKIP INTRO]

+

 

+

 

+


+ Can't view this page? You need Macromedia flash to see our Flashey intro!
+ However, if you don't want to download the plugin just click + here to skip it.

+

 

+ + diff --git a/www/htdocs/old/intro.swf b/www/htdocs/old/intro.swf new file mode 100755 index 0000000..46961eb Binary files /dev/null and b/www/htdocs/old/intro.swf differ diff --git a/www/htdocs/old/main.html b/www/htdocs/old/main.html new file mode 100755 index 0000000..8de98f9 --- /dev/null +++ b/www/htdocs/old/main.html @@ -0,0 +1,114 @@ + + +B L O O T B O T . H O M E + + + + + + + + + + + + + + + + +
+
The fastest, most + secure and
+ sexiest MySQL bot around
+
+ + + + + + + +
Download +
+

Development .tgz
+ [HTTP | FTP]
+
+ View + CVS Tree

+
+
+ + + + + + + +
Support +
+

Documentation:
+ Installation
+ FAQ
+ Development

+ E-mail:
+ Request + Support
+ Other:
+ BUG list
+ Discussion + Forum

+
+
+ + + + + + + +
Development +
+

Report + a BUG
+ View + ToDo List
+ Admin +

+
+
+
+ + + + +

+ .
+ + + + + + + + +
7.27.00 -- Page Up! + +
+

First I'd like to thank Sourceforge for hosting our page! Please + visit them and support the open source community :) Our CVS server + is up now, and will be the center of development. Lots of the scripts + are buggy so please, if you come across a bug, take a second to + report it! With your help we can get all of the source working flawlessly.

+

Thank you,
+ --GmLB

+
+

 

+
+

Hosted by:
+ SourceForge Logo +

+
+

 

+ + diff --git a/www/htdocs/pub/TODO b/www/htdocs/pub/TODO new file mode 100644 index 0000000..5bdfc2e --- /dev/null +++ b/www/htdocs/pub/TODO @@ -0,0 +1,80 @@ +CVS COMMIT: + + + +TODO: + - make sure scheduler design is _right_ - it's broken'ish. + - debian BTS frontend "bugs" + - !country + - !dinstall + - support DCC SEND of factoid (listkeys/listvals) that matched. + - news: show total requested count, users "registered", users + "ignored" + - add notes about news redesign to accomodate individual items + read - need to add id's to each item too. + - debian bug lookup. + - bind DCC CHAT service to port. + - man perlipc, search for service. + - do forking aswell. + - debian: "find -2.4.1" does not work but 2.4.1 does? + - $debug var needed. + - check if debian downloading files are proper. + - verbose: say why config option was enabled/enabled. + - registered flags for users/channels + - end of DynaConfig.pl + - use in UserDCC.. warn if value is not in list. + - add &checkSet() or &_chanset(); + - update sample.chan and sample.config + - attempt to move userDCC to hooks. + - need to modify parseCmdHooks for user flags? + - make timers below 5 or 10 mins non-random values. +-- EFFORT 1. + - make IRC/Schedulers.pl work 100%. + - intervals must be multiple of the smallest one + - otherwise auto-fixed. + - make intervals chan-specific + - need to store info in $sched{$what}{$chan} = + time(); when last run or next run? +---------------------------------------------------- +------------ FUTURE, NON-IMPORTANT + - ~country ua + - xk: add it :) and my imdb feature :) + - xk: and ~bugs :) + - stats to keep common words. + - "heh", "?", "lol", ":)", "hi" + - "HACKING" text file, documentation of where things start, + what "core" or reuseable functions are used and what for. + - web interface... learn php + tables. + - on join message - customizeable, option. + - addon to UserInfo but for channels? + - ^B's are removed (HOW?) from factoids. + - asking questions.... make more guesses + - throttling of "help topic": push-pull system of &msg(). + - one key for berk db to show format... + - use autoloader properly. + - Module:::: + - make a global autoloader. + - support notification of author of deleted factoids, + - flag to hide owner of factoid. + - table data for DCC CHAT or misc table. + - DYNAMIC USER//CONFIGURATION FILE UPGRADE: + - finer granuality(sp) of userlist/ignore file + - apt, find netconfig -- merge similar files. + - and same files(1 per package) for multiple packages. + - merge partial similar paths together. + - do some test cases to confirm code actually works as + proposed. + +------------------- useless statistics +- 20010420: +[router] [~blootbot/src] # grep DEBUG `find -type f`| wc -l + 373 +[router] [~blootbot/src] # grep WARN `find -type f` | wc -l + 129 +[router] [~blootbot/src] # grep FIXME `find -type f` | wc -l + 35 +[router] [~blootbot/src] # grep status `find -type f` | wc -l + 386 +[router] [~blootbot/src] # grep ERROR `find -type f` | wc -l + 145 + diff --git a/www/htdocs/pub/blootbot-1.0.0.tgz b/www/htdocs/pub/blootbot-1.0.0.tgz new file mode 100755 index 0000000..d746f36 Binary files /dev/null and b/www/htdocs/pub/blootbot-1.0.0.tgz differ diff --git a/www/htdocs/pub/blootbot-1.0.1.tar.gz b/www/htdocs/pub/blootbot-1.0.1.tar.gz new file mode 100644 index 0000000..18d2d60 Binary files /dev/null and b/www/htdocs/pub/blootbot-1.0.1.tar.gz differ diff --git a/www/htdocs/pub/blootbot-1.0.2.tar.gz b/www/htdocs/pub/blootbot-1.0.2.tar.gz new file mode 100644 index 0000000..e5930c4 Binary files /dev/null and b/www/htdocs/pub/blootbot-1.0.2.tar.gz differ diff --git a/www/htdocs/pub/blootbot-1.0.2a.tar.gz b/www/htdocs/pub/blootbot-1.0.2a.tar.gz new file mode 100644 index 0000000..f4ff0d2 Binary files /dev/null and b/www/htdocs/pub/blootbot-1.0.2a.tar.gz differ diff --git a/www/htdocs/pub/blootbot-1.0.3.tar.gz b/www/htdocs/pub/blootbot-1.0.3.tar.gz new file mode 100644 index 0000000..ffb754b Binary files /dev/null and b/www/htdocs/pub/blootbot-1.0.3.tar.gz differ diff --git a/www/htdocs/pub/blootbot-1.0.9.tar.gz b/www/htdocs/pub/blootbot-1.0.9.tar.gz new file mode 100644 index 0000000..3e24257 Binary files /dev/null and b/www/htdocs/pub/blootbot-1.0.9.tar.gz differ diff --git a/www/htdocs/pub/blootbot-1.1.0.tar.gz b/www/htdocs/pub/blootbot-1.1.0.tar.gz new file mode 100644 index 0000000..8425a32 Binary files /dev/null and b/www/htdocs/pub/blootbot-1.1.0.tar.gz differ diff --git a/www/htdocs/pub/blootbot-1.2.0.tar.gz b/www/htdocs/pub/blootbot-1.2.0.tar.gz new file mode 100644 index 0000000..73be4ec Binary files /dev/null and b/www/htdocs/pub/blootbot-1.2.0.tar.gz differ diff --git a/www/htdocs/pub/blootbot-cvs.tar.gz b/www/htdocs/pub/blootbot-cvs.tar.gz new file mode 100644 index 0000000..52256d6 Binary files /dev/null and b/www/htdocs/pub/blootbot-cvs.tar.gz differ