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

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

Issue 7585036: First CL for the about:policy page. This only implements the policy section of the page. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 4 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>
Mattias Nissler (ping if slow) 2011/08/09 13:20:40 Duplicate?
2 <html id="t" i18n-values="dir:textdirection">
3 <head>
4 <meta charset="utf-8">
5 <!-- X-WebKit-CSP is our development name for Content-Security-Policy.
6 TODO(tsepez) rename when Content-security-policy is done.
7 TODO(tsepez) remove unsafe-eval when bidichecker_packaged.js fixed.
8 -->
9 <meta http-equiv="X-WebKit-CSP" content="object-src 'none'; script-src chrome:// resources 'self' 'unsafe-eval'">
10 <!-- Set the title to that of the default page so that the title doesn't flash
11 on load (for the most common case). -->
12 <title i18n-content="browserPageTabTitle"></title>
13 <link rel="stylesheet" href="chrome://resources/css/button.css">
14 <link rel="stylesheet" href="../shared/css/button.css">
15 <link rel="stylesheet" href="chrome://resources/css/list.css">
16 <link rel="stylesheet" href="../shared/css/list.css">
17 <link rel="stylesheet" href="chrome://resources/css/select.css">
18 <link rel="stylesheet" href="../shared/resources/select.css">
19 <link rel="stylesheet" href="../webui.css">
20 <link rel="stylesheet" href="../button.css">
21 <link rel="stylesheet" href="font_settings.css">
22 <link rel="stylesheet" href="policy.css">
23
24 <script src="chrome://resources/js/cr.js"></script>
25 <script src="chrome://resources/js/cr/command_line.js"></script>
26 <script src="chrome://resources/js/cr/event_target.js"></script>
27 <script src="chrome://resources/js/cr/ui.js"></script>
28 <script src="chrome://resources/js/cr/ui/list_selection_model.js"></script>
29 <script src="chrome://resources/js/cr/ui/list_selection_controller.js"></script>
30 <script src="chrome://resources/js/cr/ui/list_single_selection_model.js"></scrip t>
31 <script src="chrome://resources/js/cr/ui/list_item.js"></script>
32 <script src="chrome://resources/js/cr/ui/list.js"></script>
33 <script src="chrome://resources/js/cr/ui/position_util.js"></script>
34 <script src="chrome://resources/js/cr/ui/table.js"></script>
35 <script src="chrome://resources/js/local_strings.js"></script>
36 <script src="chrome://resources/js/util.js"></script>
37 <script src="chrome://resources/policy/policy.js"></script>
38 </head>
39 <body i18n-values=".style.fontFamily:fontfamily;">
40 <div class="header">
41 <h1 id="about-policy-title" i18n-content="title">Policies</h1>
42 </div>
43 <div id="main-content">
44 <section id="descriptionSection">
45 <p>blablablablablablablablabla</p>
46 </section>
47 <section id="statusSection">
48 <div id="status-separator">
49 <table class="separator-table">
50 <tbody>
51 <tr>
52 <td id="status-title">Status</td>
53 <td id="fetch-policies-button">
54 <button>Fetch Policies Now</button>
55 </td>
56 </tr>
57 </tbody>
58 </table>
59 </div>
60 <div id="status-pane">
61 <fieldset class="status-box">
62 <legend>Device Policies</legend>
63 <ul>
64 <li>Enrollment domain:</li>
65 <li>Last fetched:</li>
66 <li>Fetch interval:</li>
67 <li>Server status:</li>
68 </ul>
69 </fieldset>
70 <fieldset class="status-box">
71 <legend>User Policies</legend>
72 <ul>
73 <li>Enrollment domain:</li>
74 <li>Last fetched:</li>
75 <li>Fetch interval:</li>
76 <li>Server status:</li>
77 </ul>
78 </fielset>
79 </div>
80 </section>
81 <section id="policiesSection">
82 <div id="policies-separator">
83 <table class="separator-table">
84 <tbody>
85 <tr>
86 <td id="policies-title">Policies</td>
87 <td id="unsent-policies-checkbox">
88 <input type="checkbox">
89 <span id="show-unsent-policies">Also show policies not sent by the server</span>
90 </td>
91 <td id="search-field">
92 <input type="search" incremental placeholder="Filter by policy nam e">
93 </td>
94 </tr>
95 </tbody>
96 </table>
97 </div>
98 <!-- <div id="no-policies" jsdisplay="policies.length === 0">-->
99 <!-- </div>-->
100 </section>
101 </div>
102 </body>
103 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698