summaryrefslogtreecommitdiffstats
path: root/core/templates/update.php
blob: cf3f2ab0d790083419e8a7d2dcf7c37ec3b4a586 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<ul>
	<li class='update'>
		<?php echo $l->t('Updating ownCloud from version %s to version %s, this may take a while.', array($_['installed'], $_['current'])); ?><br /><br />
	</li>
</ul>
<script>
	$(document).ready(function () {
		OC.EventSource.requesttoken = oc_requesttoken;
		var updateEventSource = new OC.EventSource(OC.webroot+'/core/ajax/update.php');
		updateEventSource.listen('success', function(message) {
			$('<span>').append(message).append('<br />').appendTo($('.update'));
		});
		updateEventSource.listen('error', function(message) {
			$('<span>').addClass('error').append(message).append('<br />').appendTo($('.update'));
		});
		updateEventSource.listen('failure', function(message) {
			$('<span>').addClass('error').append(message).append('<br />').appendTo($('.update'));
			$('<span>').addClass('error bold').append('<br />').append(t('core', 'The update was unsuccessful. Please report this issue to the <a href="https://github.com/owncloud/core/issues" target="_blank">ownCloud community</a>.')).appendTo($('.update'));
		});
		updateEventSource.listen('done', function(message) {
			$('<span>').addClass('bold').append('<br />').append(t('core', 'The update was successful. Redirecting you to ownCloud now.')).appendTo($('.update'));
			setTimeout(function () {
				window.location.href = OC.webroot;
			}, 3000);
		});
	});
</script>