diff options
author | Stephane V <stephane@vergeylen.eu> | 2014-07-15 22:33:30 +0200 |
---|---|---|
committer | Stephane V <stephane@vergeylen.eu> | 2014-07-15 22:33:30 +0200 |
commit | 934229d1fb839190f64f56f27e4849a46725a7a6 (patch) | |
tree | 2dda9078edc7cdff737204bcaa795f98f41b0614 /apps/files_external/templates | |
parent | 10b59f101f324dc1379d48b6a7d3daeb48de7e08 (diff) | |
download | nextcloud-server-934229d1fb839190f64f56f27e4849a46725a7a6.tar.gz nextcloud-server-934229d1fb839190f64f56f27e4849a46725a7a6.zip |
Fix #9590. Fix #9612.
For external storage with lots of parameter settings (>4), wrap the content of the cell to let a full view of the parameters.
The rows of the table are now always visible until the end (the trash icon is accessible).
(Note : A strange 3px margin forces me to add a class on the row added by javascript, to be able to align them with the rows rendered by the server.)
Diffstat (limited to 'apps/files_external/templates')
-rw-r--r-- | apps/files_external/templates/settings.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index dcf3938b894..14f8ebc8000 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -8,12 +8,11 @@ <th><?php p($l->t('Folder name')); ?></th> <th><?php p($l->t('External storage')); ?></th> <th><?php p($l->t('Configuration')); ?></th> - <!--<th><?php p($l->t('Options')); ?></th> --> <?php if ($_['isAdminPage']) print_unescaped('<th>'.$l->t('Available for').'</th>'); ?> <th> </th> </tr> </thead> - <tbody width="100%"> + <tbody> <?php $_['mounts'] = array_merge($_['mounts'], array('' => array())); ?> <?php foreach ($_['mounts'] as $mount): ?> <tr <?php print_unescaped(isset($mount['mountpoint']) ? 'class="'.OC_Util::sanitizeHTML($mount['class']).'"' : 'id="addMountPoint"'); ?>> @@ -25,7 +24,8 @@ <td class="mountPoint"><input type="text" name="mountPoint" value="<?php p(isset($mount['mountpoint']) ? $mount['mountpoint'] : ''); ?>" data-mountpoint="<?php p(isset($mount['mountpoint']) ? $mount['mountpoint'] : ''); ?>" - placeholder="<?php p($l->t('Folder name')); ?>" /></td> + placeholder="<?php p($l->t('Folder name')); ?>" /> + </td> <?php if (!isset($mount['mountpoint'])): ?> <td class="backend"> <select id="selectBackend" data-configurations='<?php p(json_encode($_['backends'])); ?>'> @@ -37,10 +37,10 @@ </select> </td> <?php else: ?> - <td class="backend" - data-class="<?php p($mount['class']); ?>"><?php p($mount['backend']); ?></td> + <td class="backend" data-class="<?php p($mount['class']); ?>"><?php p($mount['backend']); ?> + </td> <?php endif; ?> - <td class ="configuration" width="100%"> + <td class ="configuration"> <?php if (isset($mount['options'])): ?> <?php foreach ($mount['options'] as $parameter => $value): ?> <?php if (isset($_['backends'][$mount['class']]['configuration'][$parameter])): ?> @@ -150,7 +150,7 @@ action="<?php p(OCP\Util::linkTo('files_external', 'ajax/addRootCertificate.php')); ?>"> <h2><?php p($l->t('SSL root certificates'));?></h2> <table id="sslCertificate" data-admin='<?php print_unescaped(json_encode($_['isAdminPage'])); ?>'> - <tbody width="100%"> + <tbody> <?php foreach ($_['certs'] as $rootCert): ?> <tr id="<?php p($rootCert) ?>"> <td class="rootCert"><?php p($rootCert) ?></td> |