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

Unified Diff: chromium-build/app.py

Issue 23033018: Fix double commenting that has made "-->" appear on the console FOREVER. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/
Patch Set: Created 7 years, 1 month 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromium-build/app.py
===================================================================
--- chromium-build/app.py (revision 234965)
+++ chromium-build/app.py (working copy)
@@ -588,8 +588,8 @@
# r"/buildbot/\1/builders/\2/builds/\3", content)
# Disable the personalized for box for now.
- content = re.sub(r"<input id='namebox", r"<!-- <input id='namebox", content)
- content = re.sub(r"reload_page\(\)'/>", r"reload_page()'/> -->", content)
+ content = re.sub(r"<input id='namebox'[^>]+>", '', content)
+ content = re.sub(r"<input.*onclick='reload_page\(\)'/>", '', content)
# Replace lkgrPath with a URL to chromium-build.
content = re.sub(
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698