| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <!-- | 2 <!-- |
| 3 -- Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 -- Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 4 -- Use of this source code is governed by a BSD-style license that can be | 4 -- Use of this source code is governed by a BSD-style license that can be |
| 5 -- found in the LICENSE file. | 5 -- found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 <html i18n-values="dir:textdirection;"> | 7 <html i18n-values="dir:textdirection;"> |
| 8 <head> | 8 <head> |
| 9 <!-- We have to set some default title, or chrome will use the page name. | 9 <!-- We have to set some default title, or chrome will use the page name. |
| 10 -- As soon as we init and change to a directory, we'll show the directory | 10 -- As soon as we init and change to a directory, we'll show the directory |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 <script src="js/default_action_dialog.js"></script> | 107 <script src="js/default_action_dialog.js"></script> |
| 108 <script src="js/file_manager_commands.js"></script> | 108 <script src="js/file_manager_commands.js"></script> |
| 109 | 109 |
| 110 <!-- For accurate load performance tracking main.js should be | 110 <!-- For accurate load performance tracking main.js should be |
| 111 the last script to include. --> | 111 the last script to include. --> |
| 112 <script src="js/main.js"></script> | 112 <script src="js/main.js"></script> |
| 113 </if> | 113 </if> |
| 114 | 114 |
| 115 </head> | 115 </head> |
| 116 <body i18n-values=".style.fontFamily:WEB_FONT_FAMILY; | 116 <body i18n-values=".style.fontFamily:WEB_FONT_FAMILY; |
| 117 .style.fontSize:WEB_FONT_SIZE"> | 117 .style.fontSize:WEB_FONT_SIZE" new-ui> |
| 118 <commands> | 118 <commands> |
| 119 <!-- We have to use U+XXXX notation here according to event.keyIdentifier | 119 <!-- We have to use U+XXXX notation here according to event.keyIdentifier |
| 120 property --> | 120 property --> |
| 121 <command id="cut" i18n-values="label:CUT_BUTTON_LABEL" | 121 <command id="cut" i18n-values="label:CUT_BUTTON_LABEL" |
| 122 shortcut="U+0058-Ctrl"> | 122 shortcut="U+0058-Ctrl"> |
| 123 <command id="copy" i18n-values="label:COPY_BUTTON_LABEL" | 123 <command id="copy" i18n-values="label:COPY_BUTTON_LABEL" |
| 124 shortcut="U+0043-Ctrl"> | 124 shortcut="U+0043-Ctrl"> |
| 125 <command id="paste" i18n-values="label:PASTE_BUTTON_LABEL" | 125 <command id="paste" i18n-values="label:PASTE_BUTTON_LABEL" |
| 126 shortcut="U+0056-Ctrl"> | 126 shortcut="U+0056-Ctrl"> |
| 127 <command id="rename" i18n-values="label:RENAME_BUTTON_LABEL" | 127 <command id="rename" i18n-values="label:RENAME_BUTTON_LABEL" |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 <menu id="text-context-menu" class="chrome-menu" showShortcuts> | 211 <menu id="text-context-menu" class="chrome-menu" showShortcuts> |
| 212 <menuitem command="#cut"></menuitem> | 212 <menuitem command="#cut"></menuitem> |
| 213 <menuitem command="#copy"></menuitem> | 213 <menuitem command="#copy"></menuitem> |
| 214 <menuitem command="#paste"></menuitem> | 214 <menuitem command="#paste"></menuitem> |
| 215 <menuitem command="#delete"></menuitem> | 215 <menuitem command="#delete"></menuitem> |
| 216 </menu> | 216 </menu> |
| 217 | 217 |
| 218 <div class=dialog-title invisibleif="full-page"></div> | 218 <div class=dialog-title invisibleif="full-page"></div> |
| 219 <div class=dialog-container> | 219 <div class=dialog-container> |
| 220 <div class=dialog-sidebar> | 220 <div class=dialog-sidebar> |
| 221 <tree id="directory-tree" tabindex="8"></tree> | 221 <div class=dialog-sidebar-header> |
| 222 <span id="app-name"></span> |
| 223 </div> |
| 224 <div class=dialog-sidebar-contents> |
| 225 <tree id="directory-tree" tabindex="8"></tree> |
| 226 </div> |
| 227 <div class=dialog-sidebar-footer> |
| 228 </div> |
| 222 </div> | 229 </div> |
| 223 <div class=sidebar-splitter></div> | 230 <div class=sidebar-splitter></div> |
| 224 <div class=dialog-main> | 231 <div class=dialog-main> |
| 225 <div class=dialog-header> | 232 <div class=dialog-header> |
| 226 <div class="offline-icon"></div> | |
| 227 <div class="offline-icon-space"></div> | |
| 228 <div id="dir-breadcrumbs" class="breadcrumbs"></div> | 233 <div id="dir-breadcrumbs" class="breadcrumbs"></div> |
| 229 <input id="search-box" type="search" tabindex="9" | 234 <input id="search-box" type="search" tabindex="9" |
| 230 i18n-values="aria-label:SEARCH_TEXT_LABEL"> | 235 i18n-values="aria-label:SEARCH_TEXT_LABEL"> |
| 231 <div class="right buttonbar"> | 236 <div class="right buttonbar"> |
| 232 <div> | 237 <div> |
| 233 <button class="left small" id="detail-view" tabindex="10" | 238 <button class="left small" id="detail-view" tabindex="10" |
| 234 i18n-values="aria-label:DETAIL_VIEW_TOOLTIP"> | 239 i18n-values="aria-label:DETAIL_VIEW_TOOLTIP"> |
| 235 </button> | 240 </button> |
| 236 <div class="tooltip" i18n-content=DETAIL_VIEW_TOOLTIP></div> | 241 <div class="tooltip" i18n-content=DETAIL_VIEW_TOOLTIP></div> |
| 237 </div> | 242 </div> |
| (...skipping 12 matching lines...) Expand all Loading... |
| 250 </div> | 255 </div> |
| 251 <div class="drive-welcome header"></div> | 256 <div class="drive-welcome header"></div> |
| 252 <div class="volume-warning" id="volume-space-warning" hidden></div> | 257 <div class="volume-warning" id="volume-space-warning" hidden></div> |
| 253 <div class="volume-warning" id="drive-auth-failed-warning" hidden> | 258 <div class="volume-warning" id="drive-auth-failed-warning" hidden> |
| 254 <div class="drive-icon"></div> | 259 <div class="drive-icon"></div> |
| 255 <div class="drive-text" id="drive-auth-failed-warning-text"></div> | 260 <div class="drive-text" id="drive-auth-failed-warning-text"></div> |
| 256 </div> | 261 </div> |
| 257 <div class=dialog-body> | 262 <div class=dialog-body> |
| 258 <div class=filelist-panel> | 263 <div class=filelist-panel> |
| 259 <div id="list-container"> | 264 <div id="list-container"> |
| 260 <div class=detail-table id="detail-table" tabindex=1></div> | 265 <div class=detail-table id="detail-table" tabindex=1 autofocus> |
| 266 </div> |
| 261 <grid class=thumbnail-grid tabindex=1></grid> | 267 <grid class=thumbnail-grid tabindex=1></grid> |
| 262 <div id="spinner-container"> | 268 <div id="spinner-container"> |
| 263 <div id="spinner-with-text"></div> | 269 <div id="spinner-with-text"></div> |
| 264 </div> | 270 </div> |
| 265 <div class="drive-welcome page"></div> | 271 <div class="drive-welcome page"></div> |
| 266 <div id="no-search-results"></div> | 272 <div id="no-search-results"></div> |
| 267 </div> | 273 </div> |
| 268 <div class=downloads-warning hidden></div> | 274 <div class=downloads-warning hidden></div> |
| 269 </div> | 275 </div> |
| 270 <div class="preview-panel" visibility="hidden"> | 276 <div class="preview-panel" visibility="hidden"> |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 <div class="progress-track"></div> | 324 <div class="progress-track"></div> |
| 319 </div> | 325 </div> |
| 320 </div> | 326 </div> |
| 321 <div class="actions" hidden></div> | 327 <div class="actions" hidden></div> |
| 322 </div> | 328 </div> |
| 323 </div> | 329 </div> |
| 324 <div id="drag-container"></div> | 330 <div id="drag-container"></div> |
| 325 <iframe id="command-dispatcher" hidden></iframe> | 331 <iframe id="command-dispatcher" hidden></iframe> |
| 326 </body> | 332 </body> |
| 327 </html> | 333 </html> |
| OLD | NEW |