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

Side by Side Diff: chrome/browser/resources/file_manager/main.html

Issue 11309014: File manager: support for zipping selected files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Define zip::ZipFileList method to internalize details with handling file lists. Created 8 years, 1 month 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
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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 i18n-values="label:GDATA_BUY_MORE_SPACE" 123 i18n-values="label:GDATA_BUY_MORE_SPACE"
124 ></command> 124 ></command>
125 <command id="gdata-help" i18n-values="label:GDATA_MENU_HELP" 125 <command id="gdata-help" i18n-values="label:GDATA_MENU_HELP"
126 ></command> 126 ></command>
127 <command id="gdata-clear-local-cache" 127 <command id="gdata-clear-local-cache"
128 i18n-values="label:GDATA_CLEAR_LOCAL_CACHE"></command> 128 i18n-values="label:GDATA_CLEAR_LOCAL_CACHE"></command>
129 <command id="gdata-go-to-drive" 129 <command id="gdata-go-to-drive"
130 i18n-values="label:GDATA_VISIT_DRIVE_GOOGLE_COM"></command> 130 i18n-values="label:GDATA_VISIT_DRIVE_GOOGLE_COM"></command>
131 <command id="open-with" 131 <command id="open-with"
132 i18n-values="label:OPEN_WITH_BUTTON_LABEL"></command> 132 i18n-values="label:OPEN_WITH_BUTTON_LABEL"></command>
133 <command id="zip-selection"
134 i18n-values="label:ZIP_SELECTION_BUTTON_LABEL"></command>
133 </commands> 135 </commands>
134 136
135 <menu id="file-context-menu" class="chrome-menu" showShortcuts> 137 <menu id="file-context-menu" class="chrome-menu" showShortcuts>
136 <menuitem id="default-action" 138 <menuitem id="default-action"
137 visibleif="full-page" hidden></menuitem> 139 visibleif="full-page" hidden></menuitem>
138 <menuitem command="#open-with" 140 <menuitem command="#open-with"
139 visibleif="full-page" hidden></menuitem> 141 visibleif="full-page" hidden></menuitem>
140 <hr id="default-action-separator" visibleif="full-page" hidden> 142 <hr id="default-action-separator" visibleif="full-page" hidden>
141 <menuitem command="#cut" visibleif="full-page"></menuitem> 143 <menuitem command="#cut" visibleif="full-page"></menuitem>
142 <menuitem command="#copy" visibleif="full-page"></menuitem> 144 <menuitem command="#copy" visibleif="full-page"></menuitem>
143 <menuitem command="#paste" visibleif="full-page"></menuitem> 145 <menuitem command="#paste" visibleif="full-page"></menuitem>
144 <hr visibleif="full-page"> 146 <hr visibleif="full-page">
145 <menuitem command="#rename"></menuitem> 147 <menuitem command="#rename"></menuitem>
146 <menuitem command="#delete"></menuitem> 148 <menuitem command="#delete"></menuitem>
149 <menuitem command="#zip-selection"></menuitem>
147 <hr visibleif="saveas-file full-page"> 150 <hr visibleif="saveas-file full-page">
148 <menuitem command="#newfolder" 151 <menuitem command="#newfolder"
149 visibleif="saveas-file full-page"></menuitem> 152 visibleif="saveas-file full-page"></menuitem>
150 </menu> 153 </menu>
151 <menu id="roots-context-menu" class="chrome-menu" > 154 <menu id="roots-context-menu" class="chrome-menu" >
152 <menuitem command="#import-photos"></menuitem> 155 <menuitem command="#import-photos"></menuitem>
153 <menuitem command="#unmount"></menuitem> 156 <menuitem command="#unmount"></menuitem>
154 <menuitem command="#format"></menuitem> 157 <menuitem command="#format"></menuitem>
155 </menu> 158 </menu>
156 159
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 <div class="progress-track"></div> 283 <div class="progress-track"></div>
281 </div> 284 </div>
282 </div> 285 </div>
283 <div class="actions" hidden></div> 286 <div class="actions" hidden></div>
284 </div> 287 </div>
285 </div> 288 </div>
286 <div id="drag-image-container"></div> 289 <div id="drag-image-container"></div>
287 <iframe id="command-dispatcher" hidden></iframe> 290 <iframe id="command-dispatcher" hidden></iframe>
288 </body> 291 </body>
289 </html> 292 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698