diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-05-27 11:28:18 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-05-27 11:28:18 +0000 |
commit | bd818bec4981c69a33ab175d293aa5d1c6cdfb90 (patch) | |
tree | 8538362b714bd687c15eaab1bdec5d6ed4d1fd17 | |
parent | 8541ef7d986618c751f7f50986b4d89c2dbef8d3 (diff) |
Change for reverse output of lists, most recent first, for bug #307. Also fix(Oms) annoying(Cuddled(Ifs()))
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7160 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | include/u_listmode.h | 21 | ||||
-rw-r--r-- | src/modes/cmode_b.cpp | 2 |
2 files changed, 12 insertions, 11 deletions
diff --git a/include/u_listmode.h b/include/u_listmode.h index 7f2d9fa25..eaaef9201 100644 --- a/include/u_listmode.h +++ b/include/u_listmode.h @@ -121,7 +121,7 @@ class ListModeBase : public ModeHandler channel->GetExt(infokey, el); if (el) { - for(modelist::iterator it = el->begin(); it != el->end(); it++) + for (modelist::reverse_iterator it = el->rbegin(); it != el->rend(); ++it++) { user->WriteServ("%s %s %s %s %s %s", listnumeric.c_str(), user->nick, channel->name, it->mask.c_str(), it->nick.c_str(), it->time.c_str()); } @@ -141,7 +141,7 @@ class ListModeBase : public ModeHandler mode_junk[0] = channel->name; userrec* n = new userrec(ServerInstance); n->SetFd(FD_MAGIC_NUMBER); - for(modelist::iterator it = el->begin(); it != el->end(); it++) + for (modelist::iterator it = el->begin(); it != el->end(); it++) { modestack.Push(this->GetModeChar(), assign(it->mask)); } @@ -169,17 +169,17 @@ class ListModeBase : public ModeHandler chanlimits.clear(); - for(int i = 0; i < Conf.Enumerate(configtag); i++) + for (int i = 0; i < Conf.Enumerate(configtag); i++) { // For each <banlist> tag ListLimit limit; limit.mask = Conf.ReadValue(configtag, "chan", i); limit.limit = Conf.ReadInteger(configtag, "limit", i, true); - if(limit.mask.size() && limit.limit > 0) + if (limit.mask.size() && limit.limit > 0) chanlimits.push_back(limit); } - if(chanlimits.size() == 0) + if (chanlimits.size() == 0) { ListLimit limit; limit.mask = "*"; @@ -216,7 +216,7 @@ class ListModeBase : public ModeHandler // Check if the item already exists in the list for (modelist::iterator it = el->begin(); it != el->end(); it++) { - if(parameter == it->mask) + if (parameter == it->mask) { /* Give a subclass a chance to error about this */ TellAlreadyOnList(source, channel, parameter); @@ -246,7 +246,7 @@ class ListModeBase : public ModeHandler * 2) 'fix' parameter and then allow * 3) deny */ - if(ValidateParam(source, channel, parameter)) + if (ValidateParam(source, channel, parameter)) { // And now add the mask onto the list... ListItem e; @@ -267,7 +267,7 @@ class ListModeBase : public ModeHandler } /* List is full, give subclass a chance to send a custom message */ - if(!TellListTooLong(source, channel, parameter)) + if (!TellListTooLong(source, channel, parameter)) { source->WriteServ("478 %s %s %s :Channel ban/ignore list is full", source->nick, channel->name, parameter.c_str()); } @@ -282,10 +282,10 @@ class ListModeBase : public ModeHandler { for (modelist::iterator it = el->begin(); it != el->end(); it++) { - if(parameter == it->mask) + if (parameter == it->mask) { el->erase(it); - if(el->size() == 0) + if (el->size() == 0) { channel->Shrink(infokey); delete el; @@ -372,3 +372,4 @@ class ListModeBase : public ModeHandler }; #endif + diff --git a/src/modes/cmode_b.cpp b/src/modes/cmode_b.cpp index 9d47c62be..e306f31f6 100644 --- a/src/modes/cmode_b.cpp +++ b/src/modes/cmode_b.cpp @@ -77,7 +77,7 @@ void ModeChannelBan::RemoveMode(userrec* user) void ModeChannelBan::DisplayList(userrec* user, chanrec* channel) { /* Display the channel banlist */ - for (BanList::iterator i = channel->bans.begin(); i != channel->bans.end(); i++) + for (BanList::reverse_iterator i = channel->bans.rbegin(); i != channel->bans.rend(); ++i) { user->WriteServ("367 %s %s %s %s %d",user->nick, channel->name, i->data, i->set_by, i->set_time); } |