Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: src/shared/Utils.h

Issue 5921969115496448: Issue 1115 - Some yahoo page not correctly shown on IE8 when ABP enabled (Closed)
Left Patch Set: rebase Created Feb. 19, 2015, 2:09 p.m.
Right Patch Set: fix and rebase Created March 4, 2015, 1:21 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « src/plugin/PluginWbPassThrough.cpp ('k') | src/shared/Utils.cpp » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 /** 61 /**
62 * Returns the begging of the URL which includes the scheme and hierarchical 62 * Returns the beginning 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 . 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 */ 64 */
65 std::wstring GetSchemeAndHierarchicalPart(const std::wstring& url); 65 std::wstring GetSchemeAndHierarchicalPart(const std::wstring& url);
66 66
67 std::wstring GetQueryString(const std::wstring& url); 67 std::wstring GetQueryString(const std::wstring& url);
68 68
69 template<class T> 69 template<class T>
70 T TrimString(T text) 70 T TrimString(T text)
71 { 71 {
72 // 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
73 T trimmed(text); 73 T trimmed(text);
74 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());
75 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)));
76 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());
77 return trimmed; 77 return trimmed;
78 } 78 }
79 79
80 #endif // UTILS_H 80 #endif // UTILS_H
LEFTRIGHT

Powered by Google App Engine
This is Rietveld