Warning: session_start(): open(/var/lib/php/sessions/sess_l8i0qvdnb3fnketu6erqa6se8l, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
!7
sbool newDesign = true; // use new chat bot design
sbool ariaLiveTrick = false;
sbool ariaLiveTrick2 = true;
sS dbBotID;
sS templateID = #1029809;
sS cssID = #1029808;
sS thoughtBotID = null; // thought bot is this program
sS botName = "AVOR Demonstrator";
sS heading = "AVOR Demonstrator";
sS adminName = "AVOR Demonstrator Admin";
sS botImageID = #1102935;
sS userImageID = #1102803;
sS chatHeaderImageID = #1102802;
sS timeZone = ukTimeZone_string();
sS baseLink = "";
sbool botOnRight = true;
concept UserKeyword {
S pattern;
LS examples, counterexamples;
BotStep action;
bool enabled = true;
}
cmodule AvorDemonstrator > DynNewBot {
start {
baseLink = "";
}
O html(virtual WebRequest request) {
S uri = getString uri(request);
//set(request, uri := dropUriPrefix("/bot/", uri));
ret super.html(request);
}
L crudClasses(bool masterAuthed) {
L l = super.crudClasses(masterAuthed);
ret masterAuthed ? listPlus(l, UserKeyword) : l;
}
}