mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 02:59:01 -04:00
Update the module descriptions.
This commit is contained in:
parent
9ec004958f
commit
d9b1772272
@ -89,7 +89,7 @@ class ModuleRegexPCRE : public Module
|
||||
|
||||
Version GetVersion() CXX11_OVERRIDE
|
||||
{
|
||||
return Version("Provides a regular expression engine which uses the PCRE library.", VF_VENDOR);
|
||||
return Version("Provides the pcre regular expression engine which uses the PCRE library.", VF_VENDOR);
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -86,7 +86,7 @@ class ModuleRegexPOSIX : public Module
|
||||
|
||||
Version GetVersion() CXX11_OVERRIDE
|
||||
{
|
||||
return Version("Provides a regular expression engine which uses the POSIX.2 regular expression matching system.", VF_VENDOR);
|
||||
return Version("Provides the posix regular expression engine which uses the POSIX.2 regular expression matching system.", VF_VENDOR);
|
||||
}
|
||||
|
||||
void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
|
||||
|
@ -88,7 +88,7 @@ class ModuleRegexRE2 : public Module
|
||||
|
||||
Version GetVersion() CXX11_OVERRIDE
|
||||
{
|
||||
return Version("Provides a regular expression engine which uses the RE2 library.", VF_VENDOR);
|
||||
return Version("Provides the re2 regular expression engine which uses the RE2 library.", VF_VENDOR);
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -70,7 +70,7 @@ public:
|
||||
|
||||
Version GetVersion() CXX11_OVERRIDE
|
||||
{
|
||||
return Version("Provides a regular expression engine which uses the C++11 std::regex regular expression matching system.", VF_VENDOR);
|
||||
return Version("Provides the stdregex regular expression engine which uses the C++11 std::regex regular expression matching system.", VF_VENDOR);
|
||||
}
|
||||
|
||||
void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
|
||||
|
@ -92,7 +92,7 @@ class ModuleRegexTRE : public Module
|
||||
|
||||
Version GetVersion() CXX11_OVERRIDE
|
||||
{
|
||||
return Version("Provides a regular expression engine which uses the TRE library.", VF_VENDOR);
|
||||
return Version("Provides the tre regular expression engine which uses the TRE library.", VF_VENDOR);
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -63,7 +63,7 @@ class ModuleAllowInvite : public Module
|
||||
|
||||
Version GetVersion() CXX11_OVERRIDE
|
||||
{
|
||||
return Version("Adds channel mode A (allowinvite) which allows unprivileged users to use the /INVITE command and extended ban A which bans specific masks from using the /INVITE command.", VF_VENDOR);
|
||||
return Version("Adds channel mode A (allowinvite) which allows unprivileged users to use the /INVITE command and extended ban A: which bans specific masks from using the /INVITE command.", VF_VENDOR);
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -398,7 +398,7 @@ public:
|
||||
|
||||
Version GetVersion() CXX11_OVERRIDE
|
||||
{
|
||||
return Version("Provides user mode g (bot) which allows users to require that other users are on their whitelist before messaging them.", VF_COMMON | VF_VENDOR);
|
||||
return Version("Provides user mode g (callerid) which allows users to require that other users are on their whitelist before messaging them.", VF_COMMON | VF_VENDOR);
|
||||
}
|
||||
|
||||
void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE
|
||||
|
@ -30,7 +30,7 @@ class ModuleBadChannelExtban : public Module
|
||||
public:
|
||||
Version GetVersion() CXX11_OVERRIDE
|
||||
{
|
||||
return Version("Adds the j: extended ban which checks whether users are in a channel matching the specified glob pattern.", VF_OPTCOMMON|VF_VENDOR);
|
||||
return Version("Adds extended ban j: which checks whether users are in a channel matching the specified glob pattern.", VF_OPTCOMMON|VF_VENDOR);
|
||||
}
|
||||
|
||||
ModResult OnCheckBan(User *user, Channel *c, const std::string& mask) CXX11_OVERRIDE
|
||||
|
@ -55,7 +55,7 @@ class ModuleClassBan : public Module
|
||||
|
||||
Version GetVersion() CXX11_OVERRIDE
|
||||
{
|
||||
return Version("Adds the n: extended ban which check whether users are in a connect class matching the specified glob pattern.", VF_VENDOR | VF_OPTCOMMON);
|
||||
return Version("Adds extended ban n: which check whether users are in a connect class matching the specified glob pattern.", VF_VENDOR | VF_OPTCOMMON);
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -30,7 +30,7 @@ class ModuleGecosBan : public Module
|
||||
public:
|
||||
Version GetVersion() CXX11_OVERRIDE
|
||||
{
|
||||
return Version("Adds the r: extended ban which checks whether users have a real name (gecos) matching the specified glob pattern.", VF_OPTCOMMON|VF_VENDOR);
|
||||
return Version("Adds extended ban r: which checks whether users have a real name (gecos) matching the specified glob pattern.", VF_OPTCOMMON|VF_VENDOR);
|
||||
}
|
||||
|
||||
ModResult OnCheckBan(User *user, Channel *c, const std::string& mask) CXX11_OVERRIDE
|
||||
|
@ -44,7 +44,7 @@ class ModuleGeoBan
|
||||
|
||||
Version GetVersion() CXX11_OVERRIDE
|
||||
{
|
||||
return Version("Adds extended ban G which matches against two letter country codes.", VF_OPTCOMMON|VF_VENDOR);
|
||||
return Version("Adds extended ban G: which matches against two letter country codes.", VF_OPTCOMMON|VF_VENDOR);
|
||||
}
|
||||
|
||||
void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE
|
||||
|
@ -46,7 +46,7 @@ class ModuleQuietBan
|
||||
|
||||
Version GetVersion() CXX11_OVERRIDE
|
||||
{
|
||||
return Version("Adds extended ban m which bans specific masks from speaking in a channel.", VF_OPTCOMMON|VF_VENDOR);
|
||||
return Version("Adds extended ban m: which bans specific masks from speaking in a channel.", VF_OPTCOMMON|VF_VENDOR);
|
||||
}
|
||||
|
||||
ModResult HandleMessage(User* user, const MessageTarget& target, bool& echo_original)
|
||||
|
@ -30,7 +30,7 @@ class ModulePartMsgBan : public Module
|
||||
public:
|
||||
Version GetVersion() CXX11_OVERRIDE
|
||||
{
|
||||
return Version("Adds the p: extended ban which blocks the part message of matching users.", VF_OPTCOMMON|VF_VENDOR);
|
||||
return Version("Adds extended ban p: which blocks the part message of matching users.", VF_OPTCOMMON|VF_VENDOR);
|
||||
}
|
||||
|
||||
void OnUserPart(Membership* memb, std::string &partmessage, CUList& excepts) CXX11_OVERRIDE
|
||||
|
@ -61,7 +61,7 @@ public:
|
||||
|
||||
Version GetVersion() CXX11_OVERRIDE
|
||||
{
|
||||
return Version("Provides a regular expression engine which uses the built-in glob matching system.", VF_VENDOR);
|
||||
return Version("Provides the glob regular expression engine which uses the built-in glob matching system.", VF_VENDOR);
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -30,7 +30,7 @@ class ModuleServerBan : public Module
|
||||
public:
|
||||
Version GetVersion() CXX11_OVERRIDE
|
||||
{
|
||||
return Version("Adds the s: extended ban which check whether users are on a server matching the specified glob pattern.", VF_OPTCOMMON|VF_VENDOR);
|
||||
return Version("Adds extended ban s: which check whether users are on a server matching the specified glob pattern.", VF_OPTCOMMON|VF_VENDOR);
|
||||
}
|
||||
|
||||
ModResult OnCheckBan(User *user, Channel *c, const std::string& mask) CXX11_OVERRIDE
|
||||
|
Loading…
x
Reference in New Issue
Block a user