M src/bridge/bridge.cpp => src/bridge/bridge.cpp +0 -1
@@ 28,7 28,6 @@ std::string Bridge::sanitize_for_xmpp(const std::string& str)
res = str;
else
res = utils::convert_to_utf8(str, "ISO-8859-1");
- remove_irc_colors(res);
return res;
}
M src/bridge/colors.cpp => src/bridge/colors.cpp +0 -17
@@ 3,22 3,5 @@
#include <iostream>
-void remove_irc_colors(std::string& str)
{
- auto it = std::remove_if(str.begin(), str.end(),
- [](const char c)
- {
- if (c == IRC_COLOR_BOLD_CHAR || c == IRC_COLOR_COLOR_CHAR ||
- c == IRC_COLOR_FIXED_CHAR || c == IRC_COLOR_RESET_CHAR ||
- c == IRC_COLOR_REVERSE_CHAR || c == IRC_COLOR_REVERSE2_CHAR ||
- c == IRC_COLOR_UNDERLINE_CHAR || c == IRC_COLOR_ITALIC_CHAR ||
- // HACK: until we properly handle things
- // like ^AVERSION^A, remove the ^A chars
- // here.
- c == '\u0001')
- return true;
- return false;
- }
- );
- str.erase(it, str.end());
}
M src/bridge/colors.hpp => src/bridge/colors.hpp +0 -1
@@ 16,6 16,5 @@
#define IRC_COLOR_ITALIC_CHAR '\x1D'
#define IRC_COLOR_UNDERLINE_CHAR '\x1F'
-void remove_irc_colors(std::string& str);
#endif // COLORS_INCLUDED
M src/test.cpp => src/test.cpp +0 -4
@@ 44,10 44,6 @@ int main()
std::string from_ascii = utils::convert_to_utf8(original_latin1, "US-ASCII");
assert(from_ascii == "couc�ou");
- std::string coucou("\u0002\u0002COUCOU\u0003");
- remove_irc_colors(coucou);
- assert(coucou == "COUCOU");
-
/**
* Utils
*/