mirror of
https://github.com/anope/anope.git
synced 2026-07-05 20:23:11 +02:00
BUILD : 1.7.20 (1335) BUGS : NOTES : Updated documentations as by Jobes patch and did some readability work on cs_enforce
git-svn-id: svn://svn.anope.org/anope/trunk@1335 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1051 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
3daf76ca8c
commit
f4da46570b
@@ -4,6 +4,7 @@ Anope Version S V N
|
||||
01/01 F Databases not being saved on quit caused by connection error. [#811]
|
||||
01/05 F Re-idenficiation after netsplit on InspIRCd. [#817]
|
||||
01/05 F Founder channelmode (+q) not correctly parsed in FJOIN. [ #00]
|
||||
01/06 F Updated documentation where needed. [ #00]
|
||||
|
||||
Provided by Trystan <trystan@nomadirc.net> - 2008
|
||||
01/04 F Detection of Windows Vista and Windows Server 2008. [#815]
|
||||
|
||||
@@ -111,7 +111,7 @@ Table of Contents
|
||||
1.3) Does Anope run under Windows?
|
||||
|
||||
Yes. For more information on how to obtain the windows version of Anope
|
||||
visit http://windows.anope.org/
|
||||
visit http://wiki.anope.org/Windows
|
||||
|
||||
1.4) Can I send you questions without reading the FAQ, INSTALL or README files?
|
||||
|
||||
@@ -299,19 +299,16 @@ Table of Contents
|
||||
|
||||
3.7) I can't get /OS UMODES and /OS SVSNICK to work!
|
||||
|
||||
Make sure you the USE_OSSVS is defined on config.h. Since these are very
|
||||
controversial commands, they are turned off by default. Then, make clean ;
|
||||
make ; make install . Also, you need to be a SuperAdmin to be able to use
|
||||
these commands.
|
||||
You need to be a SuperAdmin to be able to use these commands.
|
||||
|
||||
3.8) What is a Super-Admin? How does it work? Why might it not work?
|
||||
|
||||
Super-Admin's have extra privileges, including being founder on all
|
||||
channels. It must be activated on a per user basis and is only available to
|
||||
Services Admins and Services Roots. It is set using OperServ and is not
|
||||
persistent. It only works if SuperAdmin is not commented in the services
|
||||
configuration file. This is commented by default. Read /msg OperServ HELP
|
||||
SET SUPERADMIN for further help.
|
||||
Services Roots. It is set using OperServ and is not persistent. It only
|
||||
works if SuperAdmin is not commented in the services configuration file.
|
||||
This is commented by default. Read /msg OperServ HELP SET SUPERADMIN for
|
||||
further help.
|
||||
|
||||
3.9) How can i enable the OperServ RAW command?
|
||||
|
||||
|
||||
+3
-3
@@ -118,7 +118,7 @@ Anope Modules
|
||||
|
||||
8) Modules Repository
|
||||
|
||||
You can find modules at http://modules.anope.org
|
||||
You can find modules at http://modules.anope.org
|
||||
|
||||
These modules are 3rd party and as such are not supported by the Anope Team.
|
||||
Contact the Module Author directly with problems, not the Anope Team.
|
||||
These modules are 3rd party and as such are not supported by the Anope Team.
|
||||
Contact the Module Author directly with problems, not the Anope Team.
|
||||
|
||||
+4
-4
@@ -248,10 +248,10 @@ Table of Contents
|
||||
-noexpire Expiration routines won't be run at all
|
||||
-logchan Startup with logchan enabled
|
||||
-version Display the version of Anope
|
||||
-nothird Do not load the modules specified in ModulesAutoload
|
||||
or ModulesDelayedAutoload in the config file
|
||||
-protocoldebug Debug each incoming message after protocol parsing
|
||||
-support Used for support, same as -debug -nofork -nothird
|
||||
-nothird Do not load the modules specified in ModulesAutoload
|
||||
or ModulesDelayedAutoload in the config file
|
||||
-protocoldebug Debug each incoming message after protocol parsing
|
||||
-support Used for support, same as -debug -nofork -nothird
|
||||
|
||||
Upon starting, Anope will parse its command-line parameters, open its
|
||||
logfile, then (assuming the -nofork option is not given) detach itself
|
||||
|
||||
+16
-10
@@ -221,19 +221,19 @@ int my_cs_enforce(User * u)
|
||||
what = myStrGetToken(cur_buffer, ' ', 1);
|
||||
if (!what || (stricmp(what, "SET") == 0)) {
|
||||
do_enforce_set(c);
|
||||
moduleNoticeLang(s_ChanServ,u,LNG_CHAN_RESPONSE,what);
|
||||
moduleNoticeLang(s_ChanServ,u,LNG_CHAN_RESPONSE,what);
|
||||
} else if (stricmp(what, "MODES") == 0) {
|
||||
do_enforce_modes(c);
|
||||
moduleNoticeLang(s_ChanServ,u,LNG_CHAN_RESPONSE,what);
|
||||
moduleNoticeLang(s_ChanServ,u,LNG_CHAN_RESPONSE,what);
|
||||
} else if (stricmp(what, "SECUREOPS") == 0) {
|
||||
do_enforce_secureops(c);
|
||||
moduleNoticeLang(s_ChanServ,u,LNG_CHAN_RESPONSE,what);
|
||||
moduleNoticeLang(s_ChanServ,u,LNG_CHAN_RESPONSE,what);
|
||||
} else if (stricmp(what, "RESTRICTED") == 0) {
|
||||
do_enforce_restricted(c);
|
||||
moduleNoticeLang(s_ChanServ,u,LNG_CHAN_RESPONSE,what);
|
||||
moduleNoticeLang(s_ChanServ,u,LNG_CHAN_RESPONSE,what);
|
||||
} else if (stricmp(what, "+R") == 0) {
|
||||
do_enforce_cmode_R(c);
|
||||
moduleNoticeLang(s_ChanServ,u,LNG_CHAN_RESPONSE,what);
|
||||
moduleNoticeLang(s_ChanServ,u,LNG_CHAN_RESPONSE,what);
|
||||
} else {
|
||||
moduleNoticeLang(s_ChanServ, u, LNG_ENFORCE_SYNTAX);
|
||||
}
|
||||
@@ -297,7 +297,8 @@ void my_add_languages(void)
|
||||
"other ircds will be enforced. All users that are in the channel\n"
|
||||
"but have not identified for their nickname will be kicked and\n"
|
||||
"banned from the channel.",
|
||||
"Enforced %s"
|
||||
/* LNG_CHAN_RESPONSE */
|
||||
"Enforced %s"
|
||||
};
|
||||
|
||||
/* Dutch (NL) */
|
||||
@@ -332,7 +333,8 @@ void my_add_languages(void)
|
||||
"zullen alle gebruikers die in het kanaal zitten maar zich niet\n"
|
||||
"hebben geidentificeerd voor hun nick uit het kanaal gekicked en\n"
|
||||
"verbannen worden.",
|
||||
"Enforced %s"
|
||||
/* LNG_CHAN_RESPONSE */
|
||||
"Enforced %s"
|
||||
};
|
||||
|
||||
/* German (DE) */
|
||||
@@ -364,6 +366,7 @@ void my_add_languages(void)
|
||||
"oder ein Modes was auf ein anderen IRCD gleich +R ist, wird es\n"
|
||||
"erzwungen. Alle User die nicht für deren Nicknamen identifiziert\n"
|
||||
"sind werden aus den Channel gekickt und gebannt.",
|
||||
/* LNG_CHAN_RESPONSE */
|
||||
"Erzwungen %s"
|
||||
};
|
||||
|
||||
@@ -396,7 +399,8 @@ void my_add_languages(void)
|
||||
"para \037opção\037, um equivalente ao modo de canal +R em outros IRCds\n"
|
||||
"será verificado. Todos os usuários que estão no canal, mas não estejam\n"
|
||||
"identificados para seus nicks serão kickados e banidos do canal.",
|
||||
"Verificado %s"
|
||||
/* LNG_CHAN_RESPONSE */
|
||||
"Verificado %s"
|
||||
};
|
||||
|
||||
/* Russian (RU) */
|
||||
@@ -427,7 +431,8 @@ void my_add_languages(void)
|
||||
"Îòäåëüíî óêàçàííûé ïàðàìåòð \037+R\037 ïðèìåíèò êàíàëüíûé ðåæèì, ýêâèâàëåíòíûé\n"
|
||||
"ðåæèìó +R è çàáàíèò âñåõ ïîëüçîâàòåëåé, êîòîðûå íå èäåíòèôèöèðîâàëèñü ê ñâîåìó\n"
|
||||
"íèêó èëè íå èìåþò çàðåãèñòðèðîâàííîãî íèêà.",
|
||||
"Ïåðåïðîâåðåíî: %s"
|
||||
/* LNG_CHAN_RESPONSE */
|
||||
"Ïåðåïðîâåðåíî: %s"
|
||||
};
|
||||
|
||||
/* Italian (IT) */
|
||||
@@ -459,7 +464,8 @@ void my_add_languages(void)
|
||||
"per \037cosa\037, un modo equivalente a +R sui altri ircd verrà\n"
|
||||
"forzato. Tutti gli utenti presenti nel canale ma non identificati\n"
|
||||
"per il loro nickname verranno bannati ed espulsi dal canale.\n",
|
||||
"Forzato %s"
|
||||
/* LNG_CHAN_RESPONSE */
|
||||
"Forzato %s"
|
||||
};
|
||||
|
||||
moduleInsertLanguage(LANG_EN_US, LNG_NUM_STRINGS, langtable_en_us);
|
||||
|
||||
+5
-1
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="20"
|
||||
VERSION_EXTRA="-svn"
|
||||
VERSION_BUILD="1334"
|
||||
VERSION_BUILD="1335"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.20 (1335)
|
||||
# BUGS :
|
||||
# NOTES : Updated documentations as by Jobes patch and did some readability work on cs_enforce
|
||||
#
|
||||
# BUILD : 1.7.20 (1334)
|
||||
# BUGS :
|
||||
# NOTES : Fixed insp11 not parsing +q correctly in FJOIN
|
||||
|
||||
Reference in New Issue
Block a user