2012-04-30 21:18:00 +04:00
|
|
|
$(document).ready(function() {
|
|
|
|
$('#versions').bind('change', function() {
|
|
|
|
var checked = 1;
|
|
|
|
if (!this.checked) {
|
|
|
|
checked = 0;
|
|
|
|
}
|
|
|
|
$.post(OC.filePath('files_versions','ajax','togglesettings.php'), 'versions='+checked);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2012-04-25 16:56:43 +04:00
|
|
|
$(document).ready(function(){
|
2012-05-03 01:26:41 +04:00
|
|
|
if (typeof FileActions !== 'undefined') {
|
2012-09-21 14:30:13 +04:00
|
|
|
// Add history button to 'files/index.php'
|
2012-09-12 17:10:12 +04:00
|
|
|
FileActions.register(
|
|
|
|
'file'
|
2012-09-21 14:30:13 +04:00
|
|
|
, t('files_versions', 'History')
|
2012-09-12 17:10:12 +04:00
|
|
|
, OC.PERMISSION_UPDATE
|
|
|
|
, function() {
|
|
|
|
// Specify icon for hitory button
|
|
|
|
return OC.imagePath('core','actions/history');
|
|
|
|
}
|
|
|
|
,function(filename){
|
|
|
|
// Action to perform when clicked
|
2012-10-10 15:46:51 +04:00
|
|
|
if (scanFiles.scanning){return;}//workaround to prevent additional http request block scanning feedback
|
2012-09-12 17:10:12 +04:00
|
|
|
|
|
|
|
var file = $('#dir').val()+'/'+filename;
|
|
|
|
// Check if drop down is already visible for a different file
|
2012-10-10 15:46:51 +04:00
|
|
|
if (($('#dropdown').length > 0) && $('#dropdown').hasClass('drop-versions') ) {
|
2012-09-12 17:10:12 +04:00
|
|
|
if (file != $('#dropdown').data('file')) {
|
|
|
|
$('#dropdown').hide('blind', function() {
|
|
|
|
$('#dropdown').remove();
|
|
|
|
$('tr').removeClass('mouseOver');
|
|
|
|
createVersionsDropdown(filename, file);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
createVersionsDropdown(filename, file);
|
2012-05-18 18:42:49 +04:00
|
|
|
}
|
|
|
|
}
|
2012-09-12 17:10:12 +04:00
|
|
|
);
|
2012-05-03 01:26:41 +04:00
|
|
|
}
|
2012-04-25 16:56:43 +04:00
|
|
|
});
|
2012-04-24 01:54:49 +04:00
|
|
|
|
2012-04-26 16:41:22 +04:00
|
|
|
function createVersionsDropdown(filename, files) {
|
2012-06-05 01:02:05 +04:00
|
|
|
|
2012-05-18 13:59:56 +04:00
|
|
|
var historyUrl = OC.linkTo('files_versions', 'history.php') + '?path='+encodeURIComponent( $( '#dir' ).val() ).replace( /%2F/g, '/' )+'/'+encodeURIComponent( filename );
|
2012-08-29 10:42:49 +04:00
|
|
|
|
2012-10-12 16:08:06 +04:00
|
|
|
var html = '<div id="dropdown" class="drop drop-versions" data-file="'+escapeHTML(files)+'">';
|
2012-04-25 20:37:45 +04:00
|
|
|
html += '<div id="private">';
|
2012-05-18 18:39:43 +04:00
|
|
|
html += '<select data-placeholder="Saved versions" id="found_versions" class="chzen-select" style="width:16em;">';
|
2012-05-18 02:57:52 +04:00
|
|
|
html += '<option value=""></option>';
|
2012-04-25 20:37:45 +04:00
|
|
|
html += '</select>';
|
|
|
|
html += '</div>';
|
2012-05-17 04:16:33 +04:00
|
|
|
html += '<input type="button" value="All versions..." onclick="window.location=\''+historyUrl+'\'" name="makelink" id="makelink" />';
|
2012-04-25 20:37:45 +04:00
|
|
|
html += '<input id="link" style="display:none; width:90%;" />';
|
2012-08-29 10:42:49 +04:00
|
|
|
|
2012-04-25 20:37:45 +04:00
|
|
|
if (filename) {
|
|
|
|
$('tr').filterAttr('data-file',filename).addClass('mouseOver');
|
|
|
|
$(html).appendTo($('tr').filterAttr('data-file',filename).find('td.filename'));
|
|
|
|
} else {
|
|
|
|
$(html).appendTo($('thead .share'));
|
|
|
|
}
|
2012-08-29 10:42:49 +04:00
|
|
|
|
2012-05-11 16:17:37 +04:00
|
|
|
$.ajax({
|
|
|
|
type: 'GET',
|
2012-05-17 04:16:33 +04:00
|
|
|
url: OC.filePath('files_versions', 'ajax', 'getVersions.php'),
|
2012-05-11 16:17:37 +04:00
|
|
|
dataType: 'json',
|
|
|
|
data: { source: files },
|
|
|
|
async: false,
|
|
|
|
success: function( versions ) {
|
2012-10-14 23:04:08 +04:00
|
|
|
|
2012-05-11 16:17:37 +04:00
|
|
|
if (versions) {
|
|
|
|
$.each( versions, function(index, row ) {
|
2012-05-17 04:16:33 +04:00
|
|
|
addVersion( row );
|
2012-05-11 16:17:37 +04:00
|
|
|
});
|
2012-05-18 18:39:43 +04:00
|
|
|
} else {
|
|
|
|
$('#found_versions').hide();
|
|
|
|
$('#makelink').hide();
|
|
|
|
$('<div style="text-align:center;">No other versions available</div>').appendTo('#dropdown');
|
2012-05-11 16:17:37 +04:00
|
|
|
}
|
2012-05-17 04:16:33 +04:00
|
|
|
$('#found_versions').change(function(){
|
|
|
|
var revision=parseInt($(this).val());
|
|
|
|
revertFile(files,revision);
|
2012-09-06 00:17:33 +04:00
|
|
|
});
|
2012-04-26 19:48:43 +04:00
|
|
|
}
|
|
|
|
});
|
2012-08-29 10:42:49 +04:00
|
|
|
|
2012-05-17 04:16:33 +04:00
|
|
|
function revertFile(file, revision) {
|
2012-08-29 10:42:49 +04:00
|
|
|
|
2012-04-26 21:45:17 +04:00
|
|
|
$.ajax({
|
|
|
|
type: 'GET',
|
|
|
|
url: OC.linkTo('files_versions', 'ajax/rollbackVersion.php'),
|
|
|
|
dataType: 'json',
|
2012-05-17 04:16:33 +04:00
|
|
|
data: {file: file, revision: revision},
|
2012-04-26 21:45:17 +04:00
|
|
|
async: false,
|
2012-05-17 04:16:33 +04:00
|
|
|
success: function(response) {
|
|
|
|
if (response.status=='error') {
|
|
|
|
OC.dialogs.alert('Failed to revert '+file+' to revision '+formatDate(revision*1000)+'.','Failed to revert');
|
2012-05-18 01:22:48 +04:00
|
|
|
} else {
|
2012-05-18 02:57:52 +04:00
|
|
|
$('#dropdown').hide('blind', function() {
|
|
|
|
$('#dropdown').remove();
|
|
|
|
$('tr').removeClass('mouseOver');
|
|
|
|
// TODO also update the modified time in the web ui
|
|
|
|
});
|
2012-04-26 21:45:17 +04:00
|
|
|
}
|
|
|
|
}
|
2012-08-29 10:42:49 +04:00
|
|
|
});
|
|
|
|
|
2012-04-26 21:45:17 +04:00
|
|
|
}
|
2012-08-29 10:42:49 +04:00
|
|
|
|
2012-09-12 17:10:12 +04:00
|
|
|
function addVersion( revision ) {
|
2012-06-27 17:05:40 +04:00
|
|
|
name=formatDate(revision.version*1000);
|
2012-05-17 04:16:33 +04:00
|
|
|
var version=$('<option/>');
|
2012-06-27 17:05:40 +04:00
|
|
|
version.attr('value',revision.version);
|
2012-05-17 04:16:33 +04:00
|
|
|
version.text(name);
|
2012-08-29 10:42:49 +04:00
|
|
|
|
2012-04-26 19:48:43 +04:00
|
|
|
// } else {
|
|
|
|
// var checked = ((permissions > 0) ? 'checked="checked"' : 'style="display:none;"');
|
|
|
|
// var style = ((permissions == 0) ? 'style="display:none;"' : '');
|
|
|
|
// var user = '<li data-uid_shared_with="'+uid_shared_with+'">';
|
|
|
|
// user += '<a href="" class="unshare" style="display:none;"><img class="svg" alt="Unshare" src="'+OC.imagePath('core','actions/delete')+'"/></a>';
|
|
|
|
// user += uid_shared_with;
|
|
|
|
// user += '<input type="checkbox" name="permissions" id="'+uid_shared_with+'" class="permissions" '+checked+' />';
|
|
|
|
// user += '<label for="'+uid_shared_with+'" '+style+'>can edit</label>';
|
|
|
|
// user += '</li>';
|
|
|
|
// }
|
2012-08-29 10:42:49 +04:00
|
|
|
|
2012-05-17 04:16:33 +04:00
|
|
|
version.appendTo('#found_versions');
|
2012-04-26 19:48:43 +04:00
|
|
|
}
|
2012-10-14 23:04:08 +04:00
|
|
|
|
2012-09-12 17:10:12 +04:00
|
|
|
$('tr').filterAttr('data-file',filename).addClass('mouseOver');
|
2012-04-25 20:37:45 +04:00
|
|
|
$('#dropdown').show('blind');
|
2012-08-29 10:42:49 +04:00
|
|
|
|
|
|
|
|
2012-04-30 21:18:00 +04:00
|
|
|
}
|
2012-09-12 17:10:12 +04:00
|
|
|
|
|
|
|
$(this).click(
|
|
|
|
function(event) {
|
2012-10-09 14:00:04 +04:00
|
|
|
if ($('#dropdown').has(event.target).length === 0 && $('#dropdown').hasClass('drop-versions')) {
|
2012-09-12 17:10:12 +04:00
|
|
|
$('#dropdown').hide('blind', function() {
|
|
|
|
$('#dropdown').remove();
|
|
|
|
$('tr').removeClass('mouseOver');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2012-10-14 23:04:08 +04:00
|
|
|
|
2012-09-12 17:10:12 +04:00
|
|
|
}
|
2012-09-21 14:30:13 +04:00
|
|
|
);
|