Left: | ||
Right: |
OLD | NEW |
---|---|
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-2015 Eyeo GmbH | 3 * Copyright (C) 2006-2015 Eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
51 bool IsWindowsVistaOrLater(); | 51 bool IsWindowsVistaOrLater(); |
52 bool IsWindows8OrLater(); | 52 bool IsWindows8OrLater(); |
53 | 53 |
54 std::string ToUtf8String(const std::wstring& str); | 54 std::string ToUtf8String(const std::wstring& str); |
55 std::wstring ToUtf16String(const std::string& str); | 55 std::wstring ToUtf16String(const std::string& str); |
56 std::vector<std::wstring> ToUtf16Strings(const std::vector<std::string>& value); | 56 std::vector<std::wstring> ToUtf16Strings(const std::vector<std::string>& value); |
57 std::wstring GetDllDir(); | 57 std::wstring GetDllDir(); |
58 std::wstring GetAppDataPath(); | 58 std::wstring GetAppDataPath(); |
59 void ReplaceString(std::wstring& input, const std::wstring placeholder, const st d::wstring replacement); | 59 void ReplaceString(std::wstring& input, const std::wstring placeholder, const st d::wstring replacement); |
60 | 60 |
61 /** | |
62 * Returns the begging of the URL which includes the scheme and hierarchical | |
Oleksandr
2015/03/03 18:43:17
beginning
sergei
2015/03/04 13:24:36
fixed.
| |
63 * part according to http://en.wikipedia.org/wiki/URI_scheme . | |
Oleksandr
2015/03/03 18:43:17
No space before '.'
sergei
2015/03/04 13:24:36
fixed.
| |
64 */ | |
65 std::wstring GetSchemeAndHierarchicalPart(const std::wstring& url); | |
66 | |
67 std::wstring GetQueryString(const std::wstring& url); | |
68 | |
61 template<class T> | 69 template<class T> |
62 T TrimString(T text) | 70 T TrimString(T text) |
63 { | 71 { |
64 // Via http://stackoverflow.com/questions/216823/whats-the-best-way-to-trim-st dstring | 72 // Via http://stackoverflow.com/questions/216823/whats-the-best-way-to-trim-st dstring |
65 T trimmed(text); | 73 T trimmed(text); |
66 std::function<bool(T::value_type)> isspace = std::bind(&std::isspace<T::value_ type>, std::placeholders::_1, std::locale::classic()); | 74 std::function<bool(T::value_type)> isspace = std::bind(&std::isspace<T::value_ type>, std::placeholders::_1, std::locale::classic()); |
67 trimmed.erase(trimmed.begin(), std::find_if(trimmed.begin(), trimmed.end(), st d::not1(isspace))); | 75 trimmed.erase(trimmed.begin(), std::find_if(trimmed.begin(), trimmed.end(), st d::not1(isspace))); |
68 trimmed.erase(std::find_if(trimmed.rbegin(), trimmed.rend(), std::not1(isspace )).base(), trimmed.end()); | 76 trimmed.erase(std::find_if(trimmed.rbegin(), trimmed.rend(), std::not1(isspace )).base(), trimmed.end()); |
69 return trimmed; | 77 return trimmed; |
70 } | 78 } |
71 | 79 |
72 #endif // UTILS_H | 80 #endif // UTILS_H |
OLD | NEW |