diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/js/maintenance-check.js | 20 | ||||
-rw-r--r-- | core/templates/update.user.php | 2 |
2 files changed, 21 insertions, 1 deletions
diff --git a/core/js/maintenance-check.js b/core/js/maintenance-check.js new file mode 100644 index 00000000000..8ca00456fef --- /dev/null +++ b/core/js/maintenance-check.js @@ -0,0 +1,20 @@ +// Check every 20 seconds via status.php if maintenance is over +window.setInterval(checkStatus, 20000); + +function checkStatus() { + var request = new XMLHttpRequest(); + var ocroot = location.pathname.substr( + 0, location.pathname.indexOf('index.php') + ); + request.open("GET", ocroot+'status.php', true); + request.send(); + request.onreadystatechange = function() { + if (request.readyState === 4) { + var response = request.responseText; + var responseobj = JSON.parse(response); + if (responseobj.maintenance === 'false') { + window.location.reload(); + } + } + }; +} diff --git a/core/templates/update.user.php b/core/templates/update.user.php index bb93f0fad00..77a5892e174 100644 --- a/core/templates/update.user.php +++ b/core/templates/update.user.php @@ -1,7 +1,7 @@ <ul> <li class='update'> <?php p($l->t('This ownCloud instance is currently being updated, which may take a while.')) ?><br/><br/> - <?php p($l->t('Please reload this page after a short time to continue using ownCloud.')) ?><br/><br/> + <?php p($l->t('This page will refresh itself when the ownCloud instance is available again.')) ?><br/><br/> <?php p($l->t('Contact your system administrator if this message persists or appeared unexpectedly.')) ?><br/><br/> <?php p($l->t('Thank you for your patience.')); ?><br/><br/> </li> |