2015-02-17 10:55:05 +01:00
<?xml version="1.0" encoding="UTF-8"?>
2017-02-01 09:59:37 +01:00
<!DOCTYPE overlay PUBLIC "-//EGroupware GmbH//eTemplate 2//EN" "http://www.egroupware.org/etemplate2.dtd">
2008-03-02 22:44:15 +01:00
<!-- $Id$ -->
<overlay>
2010-05-06 08:53:52 +02:00
<template id="filemanager.index.rows" template="" lang="" group="0" version="1.7.002">
2008-03-02 22:44:15 +01:00
<grid width="100%">
<columns>
2015-04-07 17:24:15 +02:00
<column width="150"/>
2021-10-27 19:55:31 +02:00
<column width="80"/>
2014-08-22 13:08:21 +02:00
<column width="50%"/>
<column width="80"/>
2008-03-02 22:44:15 +01:00
<column width="120"/>
2008-03-03 08:53:43 +01:00
<column width="120"/>
2016-04-13 10:56:14 +02:00
<column width="100"/>
<column width="100"/>
<column width="100"/>
2014-08-22 13:08:21 +02:00
<column width="30%"/>
<column width="20%"/>
2008-03-02 22:44:15 +01:00
</columns>
<rows>
<row class="th">
2011-06-30 15:07:55 +02:00
<nextmatch-sortheader align="center" label="Type" id="mime"/>
2021-10-27 19:55:31 +02:00
<nextmatch-header align="center" label="Lock" id="lock"/>
2008-03-02 22:44:15 +01:00
<nextmatch-sortheader label="Name" id="name"/>
<nextmatch-sortheader label="Size" id="size"/>
<nextmatch-sortheader label="Modified" id="mtime"/>
2008-03-03 08:53:43 +01:00
<nextmatch-sortheader label="Created" id="ctime"/>
2008-03-02 22:44:15 +01:00
<nextmatch-sortheader label="Permissions" id="mode"/>
2011-06-30 15:07:55 +02:00
<nextmatch-sortheader label="Owner" id="uid"/>
<nextmatch-sortheader label="Group" id="gid"/>
2008-03-02 22:44:15 +01:00
<nextmatch-header label="Comment" id="comment"/>
2011-06-30 15:07:55 +02:00
<nextmatch-customfields id="customfields" readonly="true"/>
2008-03-02 22:44:15 +01:00
</row>
2011-11-09 16:20:19 +01:00
<row class="row $row_cont[class]">
2012-03-28 01:09:16 +02:00
<vfs-mime align="center" id="$row"/>
2021-10-28 18:27:22 +02:00
<image src="${row}[locked]" statustext="$row_cont[locked_status]"/>
2018-07-24 22:31:17 +02:00
<vfs id="$row" no_lang="1"/>
2011-06-30 15:07:55 +02:00
<vfs-size align="right" id="${row}[size]"/>
2008-03-02 22:44:15 +01:00
<date-time id="${row}[mtime]" readonly="true"/>
2008-03-03 08:53:43 +01:00
<date-time id="${row}[ctime]" readonly="true"/>
2008-10-06 19:43:42 +02:00
<vfs-mode id="${row}[mode]"/>
<vfs-uid id="${row}[uid]" no_lang="1"/>
<vfs-gid id="${row}[gid]" no_lang="1"/>
2008-03-02 22:44:15 +01:00
<description id="${row}[comment]"/>
2010-05-06 08:53:52 +02:00
<customfields-list id="$row" class="customfields"/>
2008-03-02 22:44:15 +01:00
</row>
</rows>
</grid>
</template>
2013-04-10 19:11:32 +02:00
<template id="filemanager.index.header_left" template="" lang="" group="0" version="1.9.002">
2020-10-19 12:54:16 +02:00
<file label="Upload" statustext="Select file to upload in current directory" id="upload" progress_dropdownlist = "true" drop_target="filemanager-index" multiple="true" onFinishOne="app.filemanager.uploadOnOne"/>
2016-03-08 14:55:26 +01:00
</template>
<template id="filemanager.index.header_row" template="" lang="" group="0" version="1.9.002">
<buttononly id="home" statustext="Go to your home directory" image="gohome" background_image="true" onclick="app.filemanager.change_dir('~',widget);"/>
2016-04-13 14:17:30 +02:00
<buttononly id="up" statustext="Up" image="goup" background_image="true" onclick="app.filemanager.change_dir('..',widget);"/>
2019-01-07 23:04:50 +01:00
<vfs-path id="path" onchange="if(widget.getValue() == '') { app.filemanager.change_dir('~',widget);} return true;" size="80" class="address"/>
2016-03-08 14:55:26 +01:00
<buttononly statustext="Tile view" id="button[change_view]" onclick="app.filemanager.change_view" image="list_tile" background_image="true"/>
</template>
<template id="filemanager.index.header_right" template="" lang="" group="0" version="1.9.003">
2017-09-26 18:41:57 +02:00
<dropdown_button id="new" onchange="app.filemanager.create_new" label="New" onclick="app.filemanager.create_new"/>
2016-03-08 14:55:26 +01:00
<buttononly statustext="Rename, change permissions or ownership" id="button[edit]" onclick="app.filemanager.editprefs();" image="edit" background_image="true"/>
2020-03-16 12:45:47 +01:00
<buttononly statustext="Create directory" id="button[createdir]" onclick="app.filemanager.createdir();" image="button_createdir" background_image="true"/>
<buttononly statustext="Create a link" id="button[symlink]" onclick="app.filemanager.symlink();" image="link" background_image="true"/>
<!--buttononly statustext="Paste" id="button[paste]" onclick="app.filemanager.paste('paste');" image="editpaste" background_image="true"/>
<buttononly statustext="Paste link" id="button[linkpaste]" onclick="app.filemanager.paste('linkpaste');" image="linkpaste" background_image="true"/>
<buttononly statustext="Mail paste" id="button[mailpaste]" onclick="app.filemanager.paste('mailpaste');" image="mailpaste" background_image="true"/-->
2016-07-06 10:05:06 +02:00
<buttononly statustext="File a file" onclick="app.filemanager.fileafile" image="upload" background_image="true"/>
2013-04-10 19:11:32 +02:00
</template>
2013-04-10 12:04:18 +02:00
<template id="filemanager.index" template="" lang="" group="0" version="1.9.003">
2016-03-08 14:55:26 +01:00
<nextmatch id="nm" template="filemanager.index.rows" header_left="filemanager.index.header_left" header_row="filemanager.index.header_row" header_right="filemanager.index.header_right"/>
2008-03-02 22:44:15 +01:00
</template>
2015-02-17 10:55:05 +01:00
</overlay>