Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(756)

Unified Diff: chrome/browser/search_engines/template_url.cc

Issue 543077: The search terms are escaped using + or %20 for space depending on whether re... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/search_engines/template_url.cc
===================================================================
--- chrome/browser/search_engines/template_url.cc (revision 36339)
+++ chrome/browser/search_engines/template_url.cc (working copy)
@@ -246,6 +246,19 @@
if (replacements_.empty())
return parsed_url_;
+ // Determine if the search terms are in the query or before. We're escaping
+ // space as '+' in the former case and as '%20' in the latter case.
+ bool use_plus = true;
+ for (Replacements::iterator i = replacements_.begin();
+ i != replacements_.end(); ++i) {
+ if (i->type == SEARCH_TERMS) {
+ std::wstring::size_type query_start = parsed_url_.find(L'?');
+ use_plus = query_start != std::wstring::npos &&
+ (static_cast<std::wstring::size_type>(i->index) > query_start);
+ break;
+ }
+ }
+
// Encode the search terms so that we know the encoding.
const std::vector<std::string>& encodings = host.input_encodings();
string16 encoded_terms;
@@ -253,21 +266,23 @@
std::wstring input_encoding;
for (size_t i = 0; i < encodings.size(); ++i) {
if (EscapeQueryParamValue(WideToUTF16Hack(terms),
- encodings[i].c_str(), &encoded_terms)) {
+ encodings[i].c_str(), use_plus, &encoded_terms)) {
if (!original_query_for_suggestion.empty()) {
EscapeQueryParamValue(WideToUTF16Hack(original_query_for_suggestion),
- encodings[i].c_str(), &encoded_original_query);
+ encodings[i].c_str(),
+ true,
+ &encoded_original_query);
}
input_encoding = ASCIIToWide(encodings[i]);
break;
}
}
if (input_encoding.empty()) {
- encoded_terms = WideToUTF16Hack(EscapeQueryParamValueUTF8(terms));
+ encoded_terms = WideToUTF16Hack(EscapeQueryParamValueUTF8(terms, use_plus));
if (!original_query_for_suggestion.empty()) {
encoded_original_query =
WideToUTF16Hack(
- EscapeQueryParamValueUTF8(original_query_for_suggestion));
+ EscapeQueryParamValueUTF8(original_query_for_suggestion, true));
}
input_encoding = L"UTF-8";
}
« no previous file with comments | « chrome/browser/safe_browsing/safe_browsing_util.cc ('k') | chrome/browser/search_engines/template_url_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698