2012-03-29 20:16:41 +04:00
|
|
|
|
<!--[if IE 8]><style>input[type="checkbox"]{padding:0;}table td{position:static !important;}</style><![endif]-->
|
2011-08-08 23:40:39 +04:00
|
|
|
|
<div id="controls">
|
2013-02-28 00:14:15 +04:00
|
|
|
|
<?php print_unescaped($_['breadcrumb']); ?>
|
2012-07-25 05:35:03 +04:00
|
|
|
|
<?php if ($_['isCreatable']):?>
|
|
|
|
|
<div class="actions <?php if (isset($_['files']) and count($_['files'])==0):?>emptyfolder<?php endif; ?>">
|
2012-11-06 15:20:57 +04:00
|
|
|
|
<div id="new" class="button">
|
2013-02-28 00:14:15 +04:00
|
|
|
|
<a><?php p($l->t('New'));?></a>
|
2012-12-13 22:04:27 +04:00
|
|
|
|
<ul>
|
2013-07-09 13:40:09 +04:00
|
|
|
|
<li style="background-image:url('<?php p(OCP\mimetype_icon('text/plain')) ?>')"
|
2013-02-28 00:14:15 +04:00
|
|
|
|
data-type='file'><p><?php p($l->t('Text file'));?></p></li>
|
2013-07-09 13:40:09 +04:00
|
|
|
|
<li style="background-image:url('<?php p(OCP\mimetype_icon('dir')) ?>')"
|
2013-02-28 00:14:15 +04:00
|
|
|
|
data-type='folder'><p><?php p($l->t('Folder'));?></p></li>
|
2013-08-14 18:19:02 +04:00
|
|
|
|
<li style="background-image:url('<?php p(OCP\image_path('core', 'filetypes/web.svg')) ?>')"
|
2013-02-28 00:14:15 +04:00
|
|
|
|
data-type='web'><p><?php p($l->t('From link'));?></p></li>
|
2011-12-16 20:39:15 +04:00
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
2013-01-07 15:23:29 +04:00
|
|
|
|
<div id="upload" class="button"
|
2013-02-28 00:14:15 +04:00
|
|
|
|
title="<?php p($l->t('Upload') . ' max. '.$_['uploadMaxHumanFilesize']) ?>">
|
2012-11-29 21:30:02 +04:00
|
|
|
|
<form data-upload-id='1'
|
|
|
|
|
id="data-upload-form"
|
|
|
|
|
class="file_upload_form"
|
2013-02-28 00:14:15 +04:00
|
|
|
|
action="<?php print_unescaped(OCP\Util::linkTo('files', 'ajax/upload.php')); ?>"
|
2012-11-29 21:30:02 +04:00
|
|
|
|
method="post"
|
|
|
|
|
enctype="multipart/form-data"
|
|
|
|
|
target="file_upload_target_1">
|
2013-03-15 19:40:36 +04:00
|
|
|
|
<?php if($_['uploadMaxFilesize'] >= 0):?>
|
2012-11-29 21:30:02 +04:00
|
|
|
|
<input type="hidden" name="MAX_FILE_SIZE" id="max_upload"
|
2013-02-28 00:14:15 +04:00
|
|
|
|
value="<?php p($_['uploadMaxFilesize']) ?>">
|
2013-03-15 19:40:36 +04:00
|
|
|
|
<?php endif;?>
|
2012-11-29 21:30:02 +04:00
|
|
|
|
<!-- Send the requesttoken, this is needed for older IE versions
|
|
|
|
|
because they don't send the CSRF token via HTTP header in this case -->
|
2013-02-28 00:14:15 +04:00
|
|
|
|
<input type="hidden" name="requesttoken" value="<?php p($_['requesttoken']) ?>" id="requesttoken">
|
2012-11-29 21:30:02 +04:00
|
|
|
|
<input type="hidden" class="max_human_file_size"
|
2013-02-28 00:14:15 +04:00
|
|
|
|
value="(max <?php p($_['uploadMaxHumanFilesize']); ?>)">
|
|
|
|
|
<input type="hidden" name="dir" value="<?php p($_['dir']) ?>" id="dir">
|
2012-12-07 15:12:40 +04:00
|
|
|
|
<input type="file" id="file_upload_start" name='files[]'/>
|
2013-04-29 01:26:07 +04:00
|
|
|
|
<a href="#" class="svg"></a>
|
2011-12-16 20:39:15 +04:00
|
|
|
|
</form>
|
|
|
|
|
</div>
|
2013-02-04 21:30:49 +04:00
|
|
|
|
<?php if ($_['trash'] ): ?>
|
2013-07-26 13:51:18 +04:00
|
|
|
|
<input id="trash" type="button" value="<?php p($l->t('Deleted files'));?>" class="button" <?php $_['trashEmpty'] ? p('disabled') : '' ?>></input>
|
2013-02-04 21:30:49 +04:00
|
|
|
|
<?php endif; ?>
|
|
|
|
|
<div id="uploadprogresswrapper">
|
|
|
|
|
<div id="uploadprogressbar"></div>
|
|
|
|
|
<input type="button" class="stop" style="display:none"
|
2013-02-28 00:14:15 +04:00
|
|
|
|
value="<?php p($l->t('Cancel upload'));?>"
|
2012-11-06 15:20:57 +04:00
|
|
|
|
/>
|
2013-02-04 21:30:49 +04:00
|
|
|
|
</div>
|
2011-11-04 19:16:54 +04:00
|
|
|
|
</div>
|
2011-12-16 20:39:15 +04:00
|
|
|
|
<div id="file_action_panel"></div>
|
2013-06-25 14:24:14 +04:00
|
|
|
|
<?php elseif( !$_['isPublic'] ):?>
|
2013-03-26 18:44:35 +04:00
|
|
|
|
<div class="actions"><input type="button" disabled value="<?php p($l->t('You don’t have write permissions here.'))?>"></div>
|
2013-02-28 00:14:15 +04:00
|
|
|
|
<input type="hidden" name="dir" value="<?php p($_['dir']) ?>" id="dir">
|
2011-12-16 20:39:15 +04:00
|
|
|
|
<?php endif;?>
|
2013-02-28 00:14:15 +04:00
|
|
|
|
<input type="hidden" name="permissions" value="<?php p($_['permissions']); ?>" id="permissions">
|
2011-03-03 01:06:23 +03:00
|
|
|
|
</div>
|
|
|
|
|
|
2012-07-25 05:35:03 +04:00
|
|
|
|
<?php if (isset($_['files']) and $_['isCreatable'] and count($_['files'])==0):?>
|
2013-08-31 19:12:07 +04:00
|
|
|
|
<div id="emptycontent"><?php p($l->t('Nothing in here. Upload something!'))?></div>
|
2011-12-16 20:39:15 +04:00
|
|
|
|
<?php endif; ?>
|
2011-08-20 07:07:58 +04:00
|
|
|
|
|
2013-08-14 13:38:52 +04:00
|
|
|
|
<table id="filestable" data-allow-public-upload="<?php p($_['publicUploadEnabled'])?>" data-preview-x="36" data-preview-y="36">
|
2011-03-03 01:06:23 +03:00
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
2011-07-22 00:01:55 +04:00
|
|
|
|
<th id='headerName'>
|
2013-08-14 22:41:20 +04:00
|
|
|
|
<div id="headerName-container">
|
|
|
|
|
<input type="checkbox" id="select_all" />
|
|
|
|
|
<label for="select_all"></label>
|
|
|
|
|
<span class="name"><?php p($l->t( 'Name' )); ?></span>
|
|
|
|
|
<span class="selectedActions">
|
|
|
|
|
<?php if($_['allowZipDownload']) : ?>
|
|
|
|
|
<a href="" class="download">
|
|
|
|
|
<img class="svg" alt="Download"
|
|
|
|
|
src="<?php print_unescaped(OCP\image_path("core", "actions/download.svg")); ?>" />
|
|
|
|
|
<?php p($l->t('Download'))?>
|
|
|
|
|
</a>
|
|
|
|
|
<?php endif; ?>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
2011-07-22 00:01:55 +04:00
|
|
|
|
</th>
|
2013-07-19 00:15:26 +04:00
|
|
|
|
<th id="headerSize"><?php p($l->t('Size')); ?></th>
|
2012-09-07 04:36:25 +04:00
|
|
|
|
<th id="headerDate">
|
2013-02-28 00:14:15 +04:00
|
|
|
|
<span id="modified"><?php p($l->t( 'Modified' )); ?></span>
|
2012-11-11 22:58:54 +04:00
|
|
|
|
<?php if ($_['permissions'] & OCP\PERMISSION_DELETE): ?>
|
2012-09-07 08:01:52 +04:00
|
|
|
|
<!-- NOTE: Temporary fix to allow unsharing of files in root of Shared folder -->
|
|
|
|
|
<?php if ($_['dir'] == '/Shared'): ?>
|
2013-03-26 19:27:56 +04:00
|
|
|
|
<span class="selectedActions"><a href="" class="delete-selected">
|
2013-02-28 00:14:15 +04:00
|
|
|
|
<?php p($l->t('Unshare'))?>
|
|
|
|
|
<img class="svg" alt="<?php p($l->t('Unshare'))?>"
|
|
|
|
|
src="<?php print_unescaped(OCP\image_path("core", "actions/delete.svg")); ?>" />
|
2012-11-29 21:30:02 +04:00
|
|
|
|
</a></span>
|
2012-09-07 08:01:52 +04:00
|
|
|
|
<?php else: ?>
|
2013-03-26 19:27:56 +04:00
|
|
|
|
<span class="selectedActions"><a href="" class="delete-selected">
|
2013-02-28 00:14:15 +04:00
|
|
|
|
<?php p($l->t('Delete'))?>
|
|
|
|
|
<img class="svg" alt="<?php p($l->t('Delete'))?>"
|
|
|
|
|
src="<?php print_unescaped(OCP\image_path("core", "actions/delete.svg")); ?>" />
|
2012-11-29 21:30:02 +04:00
|
|
|
|
</a></span>
|
2012-09-07 08:01:52 +04:00
|
|
|
|
<?php endif; ?>
|
2012-09-07 04:36:25 +04:00
|
|
|
|
<?php endif; ?>
|
|
|
|
|
</th>
|
2011-03-03 01:06:23 +03:00
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
2012-07-25 05:35:03 +04:00
|
|
|
|
<tbody id="fileList">
|
2013-02-28 00:14:15 +04:00
|
|
|
|
<?php print_unescaped($_['fileList']); ?>
|
2011-03-03 01:06:23 +03:00
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
2013-09-03 15:17:16 +04:00
|
|
|
|
<div id="editor"></div><!-- FIXME Do not use this div in your app! It is deprecated and will be removed in the future! -->
|
2013-02-28 00:14:15 +04:00
|
|
|
|
<div id="uploadsize-message" title="<?php p($l->t('Upload too large'))?>">
|
2011-07-22 17:48:30 +04:00
|
|
|
|
<p>
|
2013-02-28 00:14:15 +04:00
|
|
|
|
<?php p($l->t('The files you are trying to upload exceed the maximum size for file uploads on this server.'));?>
|
2011-07-22 17:48:30 +04:00
|
|
|
|
</p>
|
|
|
|
|
</div>
|
2011-11-10 19:40:09 +04:00
|
|
|
|
<div id="scanning-message">
|
2012-01-31 16:56:58 +04:00
|
|
|
|
<h3>
|
2013-02-28 00:14:15 +04:00
|
|
|
|
<?php p($l->t('Files are being scanned, please wait.'));?> <span id='scan-count'></span>
|
2012-01-31 16:56:58 +04:00
|
|
|
|
</h3>
|
2011-11-10 19:40:09 +04:00
|
|
|
|
<p>
|
2013-02-28 00:14:15 +04:00
|
|
|
|
<?php p($l->t('Current scanning'));?> <span id='scan-current'></span>
|
2011-11-10 19:40:09 +04:00
|
|
|
|
</p>
|
|
|
|
|
</div>
|
2012-03-19 14:56:02 +04:00
|
|
|
|
|
|
|
|
|
<!-- config hints for javascript -->
|
2013-02-28 00:14:15 +04:00
|
|
|
|
<input type="hidden" name="allowZipDownload" id="allowZipDownload" value="<?php p($_['allowZipDownload']); ?>" />
|
|
|
|
|
<input type="hidden" name="usedSpacePercent" id="usedSpacePercent" value="<?php p($_['usedSpacePercent']); ?>" />
|
2013-08-12 19:25:27 +04:00
|
|
|
|
<input type="hidden" name="encryptedFiles" id="encryptedFiles" value="<?php $_['encryptedFiles'] ? p('1') : p('0'); ?>" />
|