This repository has been archived on 2025-02-12. You can view files and clone it, but cannot push or open issues or pull requests.
NeoStats-logserv/lgs_help.c

97 lines
3.3 KiB
C
Raw Permalink Normal View History

2003-12-31 05:51:36 +00:00
/* NeoStats - IRC Statistical Services
2004-01-14 11:29:33 +00:00
** Copyright (c) 1999-2004 Adam Rutter, Justin Hammond
2003-12-31 05:51:36 +00:00
** http://www.neostats.net/
**
** Portions Copyright (c) 2000-2001 ^Enigma^
**
** Portions Copyright (c) 1999 Johnathan George net@lite.net
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
** USA
**
** NeoStats CVS Identification
2004-01-14 11:29:33 +00:00
** $Id: ss_help.c 1086 2004-12-12 20:15:54Z Mark $
2003-12-31 05:51:36 +00:00
*/
#include "stats.h"
2004-01-17 03:25:36 +00:00
const char lgs_help_about_oneline[]="About LogServ";
const char lgs_help_version_oneline[]="Shows you the current LogServ Version";
const char lgs_help_chan_oneline[]="Manipulate Channel Logging List";
const char lgs_help_stats_oneline[]="Simple LogServ Stats";
2003-12-31 05:51:36 +00:00
const char *lgs_help_about[] = {
2004-01-17 03:25:36 +00:00
"\2LogServ\2 provides a Logging Service for Channels on IRC",
"That can be used to generate statistical information about the channel",
2003-12-31 05:51:36 +00:00
NULL
};
const char *lgs_help_chan[] = {
2004-01-17 03:25:36 +00:00
"Syntax: \2CHANS \37ADD <Channame> <\"public\"/\"private\"> <url>\37\2",
" \2CHANS \37DEL <Channame>\37\2",
" \2CHANS \37LIST\37\2",
" \2CHANS \37SET URL <url>\37\2",
2003-12-31 05:51:36 +00:00
"",
2004-01-17 03:25:36 +00:00
"Provides Logging Services for Channels on the network",
"\2ADD\2 Adds a channel to LogServ for Monitoring. You must specify:",
" The Channel Name",
" Public/Private to indicate if the logging for this channel should be",
" make know to users",
" a URL to display when joining the channel showing where users can view",
" Statistics about the channel",
"\2DEL\2 Deletes a channel from LogServ for Monitoring",
" Requires the channel names",
"\2LIST\2 Lists the channels that LogServ is currently monitoring",
"\2SET\2 Modifies certian features of LogServ on that channel",
" Those options include:",
" \2URL\2 - Modifies the URL for the stats on that channel",
2003-12-31 05:51:36 +00:00
NULL
};
const char *lgs_help_stats[] = {
2004-01-17 03:25:36 +00:00
"Syntax: \2STATS\2",
" \2STATS\2 displays some simple stats about LogServ",
2003-12-31 05:51:36 +00:00
NULL
};
const char *lgs_help_version[] = {
2004-01-17 03:25:36 +00:00
"Displays LogServ's Version Number",
2003-12-31 07:21:52 +00:00
NULL
};
const char *lgs_help_set_logtype[] = {
2004-01-17 03:29:04 +00:00
"\2LOGTYPE\2 <type>",
2004-01-17 03:25:36 +00:00
"Modifies the logfile format that LogServ should Use.",
"The options are:",
2004-01-17 03:30:08 +00:00
"\2 1\2 - EggDrop Format",
"\2 2\2 - Mirc Format",
"\2 3\2 - Xchat Format",
2004-01-17 03:25:36 +00:00
"",
"You should restart NeoStats, or reload the LogServ module after changing",
"the log file format so knew log files will be created",
2003-12-31 07:21:52 +00:00
NULL
2003-12-31 05:51:36 +00:00
};
const char *lgs_help_set_logsize[] = {
2004-01-17 03:29:04 +00:00
"\2LOGSIZE\2 <bytes> - Specify the size in bytes at which a logfile is automatically",
2004-01-17 03:25:36 +00:00
"rotated",
NULL
};
const char *lgs_help_set_logtime[] = {
2004-01-17 03:29:04 +00:00
"\2LOGAGE\2 <seconds> - Specify the age in seconds that we rotate the log file, irregardless of log file size",
NULL
};