|
|
@ -1049,23 +1049,38 @@ class Handler_Public extends Handler {
|
|
|
|
exit;
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
?><html>
|
|
|
|
?>
|
|
|
|
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<head>
|
|
|
|
<title>Database Updater</title>
|
|
|
|
<title>Database Updater</title>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
|
|
<?php echo stylesheet_tag("css/default.css") ?>
|
|
|
|
<?php echo stylesheet_tag("css/default.css") ?>
|
|
|
|
<link rel=\"shortcut icon\" type=\"image/png\" href=\"images/favicon.png\">
|
|
|
|
<link rel="shortcut icon" type="image/png" href="images/favicon.png">
|
|
|
|
<link rel=\"icon\" type=\"image/png\" sizes=\"72x72\" href=\"images/favicon-72px.png\">
|
|
|
|
<link rel="icon" type="image/png" sizes="72x72" href="images/favicon-72px.png">
|
|
|
|
</head>
|
|
|
|
<?php
|
|
|
|
|
|
|
|
echo stylesheet_tag("css/default.css");
|
|
|
|
|
|
|
|
echo javascript_tag("lib/prototype.js");
|
|
|
|
|
|
|
|
echo javascript_tag("lib/dojo/dojo.js");
|
|
|
|
|
|
|
|
echo javascript_tag("lib/dojo/tt-rss-layer.js");
|
|
|
|
|
|
|
|
?>
|
|
|
|
<style type="text/css">
|
|
|
|
<style type="text/css">
|
|
|
|
span.ok { color : #009000; font-weight : bold; }
|
|
|
|
span.ok { color : #009000; font-weight : bold; }
|
|
|
|
span.err { color : #ff0000; font-weight : bold; }
|
|
|
|
span.err { color : #ff0000; font-weight : bold; }
|
|
|
|
</style>
|
|
|
|
</style>
|
|
|
|
<body class="claro ttrss_utility">
|
|
|
|
</head>
|
|
|
|
<script type='text/javascript'>
|
|
|
|
<body class="flat ttrss_utility">
|
|
|
|
function confirmOP() {
|
|
|
|
|
|
|
|
return confirm("Update the database?");
|
|
|
|
<script type="text/javascript">
|
|
|
|
}
|
|
|
|
require(['dojo/parser', "dojo/ready", 'dijit/form/Button','dijit/form/CheckBox', 'dijit/form/Form',
|
|
|
|
|
|
|
|
'dijit/form/Select','dijit/form/TextBox','dijit/form/ValidationTextBox'],function(parser, ready){
|
|
|
|
|
|
|
|
ready(function() {
|
|
|
|
|
|
|
|
parser.parse();
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function confirmOP() {
|
|
|
|
|
|
|
|
return confirm("Update the database?");
|
|
|
|
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
<div class="container">
|
|
|
@ -1080,28 +1095,29 @@ class Handler_Public extends Handler {
|
|
|
|
if ($op == "performupdate") {
|
|
|
|
if ($op == "performupdate") {
|
|
|
|
if ($updater->isUpdateRequired()) {
|
|
|
|
if ($updater->isUpdateRequired()) {
|
|
|
|
|
|
|
|
|
|
|
|
print "<h2>Performing updates</h2>";
|
|
|
|
print "<h2>" . __("Performing updates") . "</h2>";
|
|
|
|
|
|
|
|
|
|
|
|
print "<h3>Updating to schema version " . SCHEMA_VERSION . "</h3>";
|
|
|
|
print "<h3>" . T_sprintf("Updating to schema version %d", SCHEMA_VERSION) . "</h3>";
|
|
|
|
|
|
|
|
|
|
|
|
print "<ul>";
|
|
|
|
print "<ul>";
|
|
|
|
|
|
|
|
|
|
|
|
for ($i = $updater->getSchemaVersion() + 1; $i <= SCHEMA_VERSION; $i++) {
|
|
|
|
for ($i = $updater->getSchemaVersion() + 1; $i <= SCHEMA_VERSION; $i++) {
|
|
|
|
print "<li>Performing update up to version $i...";
|
|
|
|
print "<li>" . T_sprintf("Performing update up to version %d...", $i);
|
|
|
|
|
|
|
|
|
|
|
|
$result = $updater->performUpdateTo($i, true);
|
|
|
|
$result = $updater->performUpdateTo($i, true);
|
|
|
|
|
|
|
|
|
|
|
|
if (!$result) {
|
|
|
|
if (!$result) {
|
|
|
|
print "<span class='err'>FAILED!</span></li></ul>";
|
|
|
|
print "<span class='err'>".__("FAILED!")."</span></li></ul>";
|
|
|
|
|
|
|
|
|
|
|
|
print_warning("One of the updates failed. Either retry the process or perform updates manually.");
|
|
|
|
print_warning("One of the updates failed. Either retry the process or perform updates manually.");
|
|
|
|
print "<p><form method=\"GET\" action=\"index.php\">
|
|
|
|
|
|
|
|
<input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
|
|
|
|
print "<form method='GET' action='index.php'>
|
|
|
|
|
|
|
|
<button dojoType='dijit.form.Button' type='submit' class='alt-primary'>".__("Return to Tiny Tiny RSS")."</button>
|
|
|
|
</form>";
|
|
|
|
</form>";
|
|
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
print "<span class='ok'>OK!</span></li>";
|
|
|
|
print "<span class='ok'>".__("OK!")."</span></li>";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -1109,25 +1125,21 @@ class Handler_Public extends Handler {
|
|
|
|
|
|
|
|
|
|
|
|
print_notice("Your Tiny Tiny RSS database is now updated to the latest version.");
|
|
|
|
print_notice("Your Tiny Tiny RSS database is now updated to the latest version.");
|
|
|
|
|
|
|
|
|
|
|
|
print "<hr/>";
|
|
|
|
print "<form method='GET' action='index.php'>
|
|
|
|
|
|
|
|
<button dojoType='dijit.form.Button' type='submit' class='alt-primary'>".__("Return to Tiny Tiny RSS")."</button>
|
|
|
|
print "<p><form method=\"GET\" action=\"index.php\">
|
|
|
|
</form>";
|
|
|
|
<input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
|
|
|
|
|
|
|
|
</form>";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
print "<h2>Your database is up to date.</h2>";
|
|
|
|
print_notice("Tiny Tiny RSS database is up to date.");
|
|
|
|
|
|
|
|
|
|
|
|
print "<hr/>";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
print "<p><form method=\"GET\" action=\"index.php\">
|
|
|
|
print "<form method='GET' action='index.php'>
|
|
|
|
<input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
|
|
|
|
<button dojoType='dijit.form.Button' type='submit' class='alt-primary'>".__("Return to Tiny Tiny RSS")."</button>
|
|
|
|
</form>";
|
|
|
|
</form>";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
if ($updater->isUpdateRequired()) {
|
|
|
|
if ($updater->isUpdateRequired()) {
|
|
|
|
|
|
|
|
|
|
|
|
print "<h2>Database update required</h2>";
|
|
|
|
print "<h2>" . __("Database update required") . "</h2>";
|
|
|
|
|
|
|
|
|
|
|
|
print_notice("<h4>".
|
|
|
|
print_notice("<h4>".
|
|
|
|
sprintf("Your Tiny Tiny RSS database needs update to the latest version: %d to %d.",
|
|
|
|
sprintf("Your Tiny Tiny RSS database needs update to the latest version: %d to %d.",
|
|
|
@ -1138,19 +1150,16 @@ class Handler_Public extends Handler {
|
|
|
|
|
|
|
|
|
|
|
|
print "<form method='POST'>
|
|
|
|
print "<form method='POST'>
|
|
|
|
<input type='hidden' name='subop' value='performupdate'>
|
|
|
|
<input type='hidden' name='subop' value='performupdate'>
|
|
|
|
<input type='submit' onclick='return confirmOP()' value='".__("Perform updates")."'>
|
|
|
|
<button type='submit' dojoType='dijit.form.Button' class='alt-danger' onclick='return confirmOP()'>".__("Perform updates")."</button>
|
|
|
|
</form>";
|
|
|
|
</form>";
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
|
|
print_notice("Tiny Tiny RSS database is up to date.");
|
|
|
|
print_notice("Tiny Tiny RSS database is up to date.");
|
|
|
|
|
|
|
|
|
|
|
|
print "<hr/>";
|
|
|
|
print "<form method='GET' action='index.php'>
|
|
|
|
|
|
|
|
<button dojoType='dijit.form.Button' class='alt-primary' type='submit'>".__("Return to Tiny Tiny RSS")."</button>
|
|
|
|
print "<p><form method=\"GET\" action=\"index.php\">
|
|
|
|
|
|
|
|
<input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
|
|
|
|
|
|
|
|
</form>";
|
|
|
|
</form>";
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
?>
|
|
|
|