Merge branch 'master' into sabredav_1.6
This commit is contained in:
commit
e082d473bb
|
@ -17,6 +17,7 @@
|
||||||
?>
|
?>
|
||||||
</select>
|
</select>
|
||||||
</td>
|
</td>
|
||||||
|
<?php if(count($_['calendar_options']) > 1) { ?>
|
||||||
<th width="75px"> <?php echo $l->t("Calendar");?>:</th>
|
<th width="75px"> <?php echo $l->t("Calendar");?>:</th>
|
||||||
<td>
|
<td>
|
||||||
<select style="width:140px;" name="calendar">
|
<select style="width:140px;" name="calendar">
|
||||||
|
@ -26,6 +27,12 @@
|
||||||
?>
|
?>
|
||||||
</select>
|
</select>
|
||||||
</td>
|
</td>
|
||||||
|
<?php } else { ?>
|
||||||
|
<th width="75px"> </th>
|
||||||
|
<td>
|
||||||
|
<input type="hidden" name="calendar" value="<?php echo $_['calendar_options'][0]['id'] ?>">
|
||||||
|
</td>
|
||||||
|
<?php } ?>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -6,3 +6,4 @@
|
||||||
#public { border-top:1px solid #ddd; padding-top:0.5em; }
|
#public { border-top:1px solid #ddd; padding-top:0.5em; }
|
||||||
a.unshare { float:right; display:inline; margin:0 .5em; padding:.3em .3em 0 .3em !important; opacity:.5; }
|
a.unshare { float:right; display:inline; margin:0 .5em; padding:.3em .3em 0 .3em !important; opacity:.5; }
|
||||||
a.unshare:hover { opacity:1; }
|
a.unshare:hover { opacity:1; }
|
||||||
|
#share_with { width: 16em; }
|
|
@ -174,7 +174,7 @@ $(document).ready(function() {
|
||||||
function createDropdown(filename, files) {
|
function createDropdown(filename, files) {
|
||||||
var html = '<div id="dropdown" class="drop" data-file="'+files+'">';
|
var html = '<div id="dropdown" class="drop" data-file="'+files+'">';
|
||||||
html += '<div id="private">';
|
html += '<div id="private">';
|
||||||
html += '<select data-placeholder="User or Group" style="width:220px;" id="share_with" class="chzen-select">';
|
html += '<select data-placeholder="User or Group" id="share_with" class="chzen-select">';
|
||||||
html += '<option value=""></option>';
|
html += '<option value=""></option>';
|
||||||
html += '</select>';
|
html += '</select>';
|
||||||
html += '<ul id="shared_list"></ul>';
|
html += '<ul id="shared_list"></ul>';
|
||||||
|
|
|
@ -31,12 +31,12 @@
|
||||||
|
|
||||||
<field>
|
<field>
|
||||||
<name>configvalue</name>
|
<name>configvalue</name>
|
||||||
<type>text</type>
|
<type>clob</type>
|
||||||
<default></default>
|
|
||||||
<notnull>true</notnull>
|
<notnull>true</notnull>
|
||||||
<length>255</length>
|
|
||||||
</field>
|
</field>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</declaration>
|
</declaration>
|
||||||
|
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -62,7 +62,7 @@ class OC_Util {
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
public static function getVersion(){
|
public static function getVersion(){
|
||||||
return array(3,00,1);
|
return array(3,00,2);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue