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

Side by Side Diff: chrome/browser/resources/about_page/about_page.html

Issue 9320056: Help: Implement the initial version of the cross-platform help/about page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: String fix. Created 8 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html i18n-values="dir:textdirection;">
3 <head>
4 <meta charset="utf-8">
5 <title i18n-content="pageTitle"></title>
6
7 <link rel="stylesheet" href="../shared/css/chrome_shared2.css">
8 <link rel="stylesheet" href="../uber/uber_shared.css">
9 <link rel="stylesheet" href="about_page.css">
10
11 <script src="chrome://resources/js/cr.js"></script>
12 <script src="chrome://resources/js/util.js"></script>
13
14 <script src="chrome://about-page-frame/about_page.js"></script>
15 </head>
16
17 <body class="uber-frame">
18
19 <div class="page">
20 <header><h1 i18n-content="product"></h1></header>
21 <div id="aboutPageLessInfo">
22 <section>
23 <div>
24 <!-- White space is significant between spans. -->
25 <div>
26 <span i18n-content="browser"></span>
27 <span i18n-content="browser_version"></span>
28 </div>
29 <div>
30 <if expr="not pp_ifdef('chromeos')">
31 <span i18n-content="os"></span> <span id="osVersion0">
32 </if>
33 <if expr="pp_ifdef('chromeos')">
34 <span i18n-content="platform"></span> <span id="osVersion0">
35 </if>
36 <span class="loading" i18n-content="loading"></span></span></div>
37 <div><span i18n-content="firmware"></span> <span id="osFirmware0">
38 <span class="loading" i18n-content="loading"></span></span></div>
39 <div>
40 <button id="moreInfoButton" class="link-button"
41 i18n-content="more_info"></button>
42 </div>
43 </div>
44 </section>
45 </div>
46 <div id="aboutPageMoreInfo" hidden>
47 <section>
48 <h3 i18n-content="channel"></h3>
49 <div>
50 <select id="channelSelect">
51 <option value="stable-channel" i18n-content="stable"></option>
52 <option value="beta-channel" i18n-content="beta"></option>
53 <option value="dev-channel" i18n-content="dev"></option>
54 </select>
55 <div id="channelWarningBlock" hidden>
56 <div id="channelWarning" i18n-content="channel_warning_header"></div>
57 <div i18n-content="channel_warning_text"></div>
58 </div>
59 </div>
60 </section>
61 <section>
62 <h3 i18n-content="browser"></h3>
63 <div i18n-content="browser_version"></div>
64 </section>
65 <section>
66 <if expr="not pp_ifdef('chromeos')">
67 <h3 i18n-content="os"></h3>
68 </if>
69 <if expr="pp_ifdef('chromeos')">
70 <h3 i18n-content="platform"></h3>
71 </if>
72 <div id="osVersion1">
73 <span class="loading" i18n-content="loading"></span>
74 </div>
75 </section>
76 <section>
77 <h3 i18n-content="firmware"></h3>
78 <div id="osFirmware1">
79 <span class="loading" i18n-content="loading"></span>
80 </section>
81 <section>
82 <h3>WebKit</h3>
83 <div i18n-content="webkit_version"></div>
84 </section>
85 <section>
86 <h3 i18n-content="js_engine"></h3>
87 <div i18n-content="js_engine_version"></div>
88 </section>
89 <section>
90 <h3 i18n-content="user_agent"></h3>
91 <div i18n-content="user_agent_info"></div>
92 </section>
93 <section>
94 <h3 i18n-content="command_line"></h3>
95 <div i18n-content="command_line_info"></div>
96 </section>
97 </div>
98 <section>
99 <div>
100 <span i18n-content="copyright"></span>
101 <div>
102 <!-- Odd formatting to avoid unwanted spaces between elements. -->
103 <span i18n-content="license_content_0">
104 </span><a target="_blank"
105 i18n-values="href:license_link_0"
106 i18n-content="license_link_content_0">
107 </a><span i18n-content="license_content_1">
108 </span><a target="_blank"
109 i18n-values="href:license_link_1"
110 i18n-content="license_link_content_1">
111 </a><span i18n-content="license_content_2">
112 </span>
113 </div>
114 <div>
115 <span i18n-content="cros_license_content_0">
116 </span><a target="_blank"
117 i18n-values="href:cros_license_link_0"
118 i18n-content="cros_license_link_content_0">
119 </a><span i18n-content="cros_license_content_1">
120 </span>
121 </div>
122 </div>
123 </section>
124 <section>
125 <div>
126 <div>
127 <div id="updateIcon" class="update-icon up-to-date"></div>
128 <span id="updateStatus" i18n-content="update_status"></span>
129 </div>
130 <div>
131 <!-- TODO seanparent: fill in last checked. -->
132 <!-- <span i18n-content="last_check"></span> -->
133 <button id="checkNow" i18n-content="check_now" disabled></button>
134 </div>
135 </div>
136 </section>
137 </div>
138
139 </body>
140
141 <script src="chrome://about-page-frame/strings.js"></script>
142 <script src="chrome://resources/js/i18n_template.js"></script>
143 <script src="chrome://resources/js/i18n_process.js"></script>
144 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698