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

Side by Side Diff: dashboard/ui/changelog.html

Issue 148963013: Omit protocol part in URLs in changelog pages. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/perf.git@master
Patch Set: Omit protocol in js/changelog.js as well. Created 6 years, 10 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 unified diff | Download patch
« no previous file with comments | « no previous file | dashboard/ui/changelog_blink.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="js/changelog.js"></script> 3 <script src="js/changelog.js"></script>
4 <script src="js/common.js"></script> 4 <script src="js/common.js"></script>
5 <style type="text/css"> 5 <style type="text/css">
6 table { 6 table {
7 border-collapse: collapse; 7 border-collapse: collapse;
8 } 8 }
9 thead { 9 thead {
10 border-top: solid 1px gray; 10 border-top: solid 1px gray;
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 <body> 51 <body>
52 <form name="ui"> 52 <form name="ui">
53 SVN path: <input id="url" type="text" name="url" value=""> 53 SVN path: <input id="url" type="text" name="url" value="">
54 SVN revision range: <input id="range" type="text" name="range" value=""> 54 SVN revision range: <input id="range" type="text" name="range" value="">
55 <input id="mode_text" type="radio" name="mode" value="text">text 55 <input id="mode_text" type="radio" name="mode" value="text">text
56 <input id="mode_html" type="radio" name="mode" value="html">html 56 <input id="mode_html" type="radio" name="mode" value="html">html
57 <input type="submit" value="Show Changelog"> 57 <input type="submit" value="Show Changelog">
58 </form> 58 </form>
59 59
60 <script> 60 <script>
61 var svnRootUrl = "http://src.chromium.org/svn/"; 61 var svnRootUrl = "//src.chromium.org/svn/";
62 var viewVc = "http://src.chromium.org/viewvc/chrome"; 62 var viewVc = "//src.chromium.org/viewvc/chrome";
63 63
64 params = ParseParams(); 64 params = ParseParams();
65 var svnPath = params["url"]; 65 var svnPath = params["url"];
66 var svnRange = params["range"]; 66 var svnRange = params["range"];
67 render_log(svnRootUrl, svnPath, svnRange, viewVc) 67 render_log(svnRootUrl, svnPath, svnRange, viewVc)
68 </script> 68 </script>
69 </body> 69 </body>
70 </html> 70 </html>
71 71
OLDNEW
« no previous file with comments | « no previous file | dashboard/ui/changelog_blink.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698