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

Side by Side Diff: dashboard/ui/changelog_webrtc.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 | « dashboard/ui/changelog_v8.html ('k') | dashboard/ui/js/changelog.js » ('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://webrtc.googlecode.com/svn/"; 61 var svnRootUrl = "//webrtc.googlecode.com/svn/";
62 62
63 // Unfortunately WebRTC doesn't have a ViewVC for the Subversion repo: 63 // Unfortunately WebRTC doesn't have a ViewVC for the Subversion repo:
64 var viewVc = ""; 64 var viewVc = "";
65 65
66 params = ParseParams(); 66 params = ParseParams();
67 var svnPath = params["url"]; 67 var svnPath = params["url"];
68 var svnRange = params["range"]; 68 var svnRange = params["range"];
69 render_log(svnRootUrl, svnPath, svnRange, viewVc) 69 render_log(svnRootUrl, svnPath, svnRange, viewVc)
70 </script> 70 </script>
71 </body> 71 </body>
72 </html> 72 </html>
73 73
OLDNEW
« no previous file with comments | « dashboard/ui/changelog_v8.html ('k') | dashboard/ui/js/changelog.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698