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">
|
2011-08-10 17:10:32 +04:00
|
|
|
<?php echo($_['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">
|
2012-02-01 23:58:04 +04:00
|
|
|
<a><?php echo $l->t('New');?></a>
|
2011-12-16 20:39:15 +04:00
|
|
|
<ul class="popup popupTop">
|
2012-11-29 21:30:02 +04:00
|
|
|
<li style="background-image:url('<?php echo OCP\mimetype_icon('text/plain') ?>')"
|
|
|
|
data-type='file'><p><?php echo $l->t('Text file');?></p></li>
|
|
|
|
<li style="background-image:url('<?php echo OCP\mimetype_icon('dir') ?>')"
|
|
|
|
data-type='folder'><p><?php echo $l->t('Folder');?></p></li>
|
|
|
|
<li style="background-image:url('<?php echo OCP\image_path('core', 'actions/public.png') ?>')"
|
|
|
|
data-type='web'><p><?php echo $l->t('From link');?></p></li>
|
2011-12-16 20:39:15 +04:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<div class="file_upload_wrapper svg">
|
2012-11-29 21:30:02 +04:00
|
|
|
<form data-upload-id='1'
|
|
|
|
id="data-upload-form"
|
|
|
|
class="file_upload_form"
|
|
|
|
action="<?php echo OCP\Util::linkTo('files', 'ajax/upload.php'); ?>"
|
|
|
|
method="post"
|
|
|
|
enctype="multipart/form-data"
|
|
|
|
target="file_upload_target_1">
|
|
|
|
<input type="hidden" name="MAX_FILE_SIZE" id="max_upload"
|
|
|
|
value="<?php echo $_['uploadMaxFilesize'] ?>">
|
|
|
|
<!-- Send the requesttoken, this is needed for older IE versions
|
|
|
|
because they don't send the CSRF token via HTTP header in this case -->
|
2012-10-30 20:19:49 +04:00
|
|
|
<input type="hidden" name="requesttoken" value="<?php echo $_['requesttoken'] ?>" id="requesttoken">
|
2012-11-29 21:30:02 +04:00
|
|
|
<input type="hidden" class="max_human_file_size"
|
|
|
|
value="(max <?php echo $_['uploadMaxHumanFilesize']; ?>)">
|
2012-06-11 21:20:48 +04:00
|
|
|
<input type="hidden" name="dir" value="<?php echo $_['dir'] ?>" id="dir">
|
2012-11-06 15:20:57 +04:00
|
|
|
<a id="upload" class="button"></a>
|
2011-12-16 20:39:15 +04:00
|
|
|
<input class="file_upload_start" type="file" name='files[]'/>
|
2012-11-29 21:30:02 +04:00
|
|
|
<a href="#" class="file_upload_button_wrapper" onclick="return false;"
|
|
|
|
title="<?php echo $l->t('Upload'); echo ' max. '.$_['uploadMaxHumanFilesize'] ?>"></a>
|
2012-11-06 15:20:57 +04:00
|
|
|
|
2011-12-16 20:39:15 +04:00
|
|
|
<iframe name="file_upload_target_1" class='file_upload_target' src=""></iframe>
|
|
|
|
</form>
|
|
|
|
</div>
|
2012-11-06 15:20:57 +04:00
|
|
|
<div id="upload">
|
|
|
|
<div id="uploadprogressbar"></div>
|
|
|
|
<input type="button" class="stop" style="display:none"
|
|
|
|
value="<?php echo $l->t('Cancel upload');?>"
|
|
|
|
onclick="javascript:Files.cancelUploads();"
|
|
|
|
/>
|
|
|
|
</div>
|
2012-03-27 23:38:55 +04:00
|
|
|
|
2011-11-04 19:16:54 +04:00
|
|
|
</div>
|
2011-12-16 20:39:15 +04:00
|
|
|
<div id="file_action_panel"></div>
|
2012-01-10 19:47:52 +04:00
|
|
|
<?php else:?>
|
|
|
|
<input type="hidden" name="dir" value="<?php echo $_['dir'] ?>" id="dir">
|
2011-12-16 20:39:15 +04:00
|
|
|
<?php endif;?>
|
2012-09-06 05:46:59 +04:00
|
|
|
<input type="hidden" name="permissions" value="<?php echo $_['permissions']; ?>" id="permissions">
|
2011-03-03 01:06:23 +03:00
|
|
|
</div>
|
2011-08-04 02:22:44 +04:00
|
|
|
<div id='notification'></div>
|
2011-03-03 01:06:23 +03:00
|
|
|
|
2012-07-25 05:35:03 +04:00
|
|
|
<?php if (isset($_['files']) and $_['isCreatable'] and count($_['files'])==0):?>
|
2011-12-16 20:39:15 +04:00
|
|
|
<div id="emptyfolder"><?php echo $l->t('Nothing in here. Upload something!')?></div>
|
|
|
|
<?php endif; ?>
|
2011-08-20 07:07:58 +04:00
|
|
|
|
|
|
|
<table>
|
2011-03-03 01:06:23 +03:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2011-07-22 00:01:55 +04:00
|
|
|
<th id='headerName'>
|
2012-07-25 05:35:03 +04:00
|
|
|
<input type="checkbox" id="select_all" />
|
2011-07-22 00:01:55 +04:00
|
|
|
<span class='name'><?php echo $l->t( 'Name' ); ?></span>
|
2011-07-28 14:14:55 +04:00
|
|
|
<span class='selectedActions'>
|
2012-04-15 19:49:40 +04:00
|
|
|
<?php if($_['allowZipDownload']) : ?>
|
2012-11-29 21:30:02 +04:00
|
|
|
<a href="" class="download">
|
|
|
|
<img class="svg" alt="Download"
|
|
|
|
src="<?php echo OCP\image_path("core", "actions/download.svg"); ?>" />
|
|
|
|
<?php echo $l->t('Download')?>
|
|
|
|
</a>
|
2012-04-15 19:49:40 +04:00
|
|
|
<?php endif; ?>
|
2011-07-22 00:01:55 +04:00
|
|
|
</span>
|
|
|
|
</th>
|
2011-08-12 13:26:13 +04:00
|
|
|
<th id="headerSize"><?php echo $l->t( 'Size' ); ?></th>
|
2012-09-07 04:36:25 +04:00
|
|
|
<th id="headerDate">
|
|
|
|
<span id="modified"><?php echo $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'): ?>
|
2012-11-29 21:30:02 +04:00
|
|
|
<span class="selectedActions"><a href="" class="delete">
|
|
|
|
<?php echo $l->t('Unshare')?>
|
|
|
|
<img class="svg" alt="<?php echo $l->t('Unshare')?>"
|
|
|
|
src="<?php echo OCP\image_path("core", "actions/delete.svg"); ?>" />
|
|
|
|
</a></span>
|
2012-09-07 08:01:52 +04:00
|
|
|
<?php else: ?>
|
2012-11-29 21:30:02 +04:00
|
|
|
<span class="selectedActions"><a href="" class="delete">
|
|
|
|
<?php echo $l->t('Delete')?>
|
|
|
|
<img class="svg" alt="<?php echo $l->t('Delete')?>"
|
|
|
|
src="<?php echo OCP\image_path("core", "actions/delete.svg"); ?>" />
|
|
|
|
</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">
|
2011-04-17 17:59:06 +04:00
|
|
|
<?php echo($_['fileList']); ?>
|
2011-03-03 01:06:23 +03:00
|
|
|
</tbody>
|
|
|
|
</table>
|
2011-10-02 01:48:00 +04:00
|
|
|
<div id="editor"></div>
|
2011-08-09 19:54:02 +04:00
|
|
|
<div id="uploadsize-message" title="<?php echo $l->t('Upload too large')?>">
|
2011-07-22 17:48:30 +04:00
|
|
|
<p>
|
2012-11-29 21:30:02 +04:00
|
|
|
<?php echo $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>
|
2012-03-31 01:40:29 +04:00
|
|
|
<?php echo $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>
|
2012-03-31 01:40:29 +04:00
|
|
|
<?php echo $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 -->
|
2012-03-31 01:40:29 +04:00
|
|
|
<input type="hidden" name="allowZipDownload" id="allowZipDownload" value="<?php echo $_['allowZipDownload']; ?>" />
|