|
From: Tim R. <tim...@us...> - 2004-08-12 22:54:58
|
Update of /cvsroot/infobot/infobot/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24368/src Modified Files: Help.pl Setup.pl User.pl Log Message: conf/*-dist files are now in conf/dist/ Index: Help.pl =================================================================== RCS file: /cvsroot/infobot/infobot/src/Help.pl,v retrieving revision 1.6 retrieving revision 1.7 diff -w -u -r1.6 -r1.7 --- Help.pl 2 Aug 2004 20:37:22 -0000 1.6 +++ Help.pl 12 Aug 2004 22:54:46 -0000 1.7 @@ -27,7 +27,7 @@ &status("Loaded help file $param{helpfile}"); } else { $help{"main"} = "Sorry, I couldn't find the help file."; - &status("No help file $param{helpfile}. Don't forget to create it from infobot.help-dist"); + &status("No help file $param{helpfile}. Don't forget to create it from conf/dist/infobot.help"); } } Index: Setup.pl =================================================================== RCS file: /cvsroot/infobot/infobot/src/Setup.pl,v retrieving revision 1.11 retrieving revision 1.12 diff -w -u -r1.11 -r1.12 --- Setup.pl 2 Aug 2004 20:37:22 -0000 1.11 +++ Setup.pl 12 Aug 2004 22:54:46 -0000 1.12 @@ -14,7 +14,7 @@ &status($params); } - die "dbname is null\n(did you remember to create conf/infobot.config from infobot.config-dist?)\n " if (!$param{'dbname'}); + die "dbname is null\n(did you remember to create conf/infobot.config from conf/dist/infobot.config?)\n " if (!$param{'dbname'}); %dbs = ("is" => "$param{basedir}/$param{dbname}-is", "are" => "$param{basedir}/$param{dbname}-are"); Index: User.pl =================================================================== RCS file: /cvsroot/infobot/infobot/src/User.pl,v retrieving revision 1.11 retrieving revision 1.12 diff -w -u -r1.11 -r1.12 --- User.pl 2 Aug 2004 20:37:22 -0000 1.11 +++ User.pl 12 Aug 2004 22:54:46 -0000 1.12 @@ -53,7 +53,7 @@ } } else { - &status("No user file $param{userList}. Don't forget to create it from infobot.users-dist"); + &status("No user file $param{userList}. Don't forget to create it from conf/dist/infobot.users"); } } |