mirror of
https://github.com/YunoHost-Apps/piwigo_ynh.git
synced 2024-09-03 20:06:03 +02:00
99 lines
No EOL
4.1 KiB
Smarty
99 lines
No EOL
4.1 KiB
Smarty
{footer_script}
|
|
jQuery(document).ready(function() {ldelim}
|
|
jQuery('input[name="submit"]').click(function() {ldelim}
|
|
if(!confirm('{'Are you sure?'|@translate}'))
|
|
return false;
|
|
jQuery(this).hide();
|
|
jQuery('.autoupdate_bar').show();
|
|
});
|
|
jQuery('[name="understand"]').click(function() {ldelim}
|
|
jQuery('[name="submit"]').attr('disabled', !this.checked);
|
|
});
|
|
});
|
|
{/footer_script}
|
|
|
|
{html_head}
|
|
{literal}
|
|
<style type="text/css">
|
|
form { width: 750px; }
|
|
fieldset { padding-bottom: 30px; }
|
|
p, form p { text-align: left; margin-left:20px; }
|
|
li { margin: 5px; }
|
|
</style>
|
|
{/literal}
|
|
{/html_head}
|
|
|
|
<div class="titrePage">
|
|
<h2>{'Updates'|@translate}</h2>
|
|
</div>
|
|
|
|
{if $STEP == 0}
|
|
{if $CHECK_VERSION}
|
|
<p>{'You are running the latest version of Piwigo.'|@translate}</p>
|
|
{elseif $DEV_VERSION}
|
|
<p>{'You are running on development sources, no check possible.'|@translate}</p>
|
|
{else}
|
|
<p>{'Check for update failed for unknown reasons.'|@translate}</p>
|
|
{/if}
|
|
{/if}
|
|
|
|
{if $STEP == 1}
|
|
<h4>{'Two updates are available'|@translate}:</h4>
|
|
<p>
|
|
<ul>
|
|
<li><a href="admin.php?page=updates&step=2&to={$MINOR_VERSION}"><strong>{'Update to Piwigo %s'|@translate:$MINOR_VERSION}</strong></a>: {'This is a minor update, with only bug corrections.'|@translate}</li>
|
|
<li><a href="admin.php?page=updates&step=3&to={$MAJOR_VERSION}"><strong>{'Update to Piwigo %s'|@translate:$MAJOR_VERSION}</strong></a>: {'This is a major update, with <a href="%s">new exciting features</a>.'|@translate:$RELEASE_URL} {'Some themes and plugins may be not available yet.'|@translate}</li>
|
|
</ul>
|
|
</p>
|
|
<p>{'You can update to Piwigo %s directly, without upgrading to Piwigo %s (recommended).'|@translate:$MAJOR_VERSION:$MINOR_VERSION}</p>
|
|
{/if}
|
|
|
|
{if $STEP == 2}
|
|
<p>
|
|
{'A new version of Piwigo is available.'|@translate}<br>
|
|
{'This is a minor update, with only bug corrections.'|@translate}
|
|
</p>
|
|
<form action="" method="post">
|
|
<p><input type="submit" name="submit" value="{'Update to Piwigo %s'|@translate:$UPGRADE_TO}"></p>
|
|
<p class="autoupdate_bar" style="display:none;"> {'Update in progress...'|@translate}<br><img src="admin/themes/default/images/ajax-loader-bar.gif"></p>
|
|
<p><input type="hidden" name="upgrade_to" value="{$UPGRADE_TO}"></p>
|
|
</form>
|
|
{/if}
|
|
|
|
{if $STEP == 3}
|
|
<p>
|
|
{'A new version of Piwigo is available.'|@translate}<br>
|
|
{'This is a major update, with <a href="%s">new exciting features</a>.'|@translate:$RELEASE_URL} {'Some themes and plugins may be not available yet.'|@translate}
|
|
</p>
|
|
<form action="" method="post">
|
|
|
|
{counter assign=i}
|
|
<fieldset>
|
|
<legend>{'Dump Database'|@translate}</legend>
|
|
<p><input type="checkbox" name="includeHistory"> {'Include history data (Warning: server memory limit may be exceeded)'|@translate}</p>
|
|
<p><input type="submit" name="dumpDatabase" value="{'Dump Database'|@translate}"></p>
|
|
</fieldset>
|
|
|
|
{counter assign=i}
|
|
<fieldset>
|
|
<legend>{'Update to Piwigo %s'|@translate:$UPGRADE_TO}</legend>
|
|
{if !empty($missing.plugins)}
|
|
<p><i>{'Following plugins may not be compatible with the new version of Piwigo:'|@translate}</i></p>
|
|
<p><ul>{foreach from=$missing.plugins item=plugin}<li><a href="{$plugin.uri}" class="externalLink">{$plugin.name}</a></li>{/foreach}</ul><br></p>
|
|
{/if}
|
|
{if !empty($missing.themes)}
|
|
<p><i>{'Following themes may not be compatible with the new version of Piwigo:'|@translate}</i></p>
|
|
<p><ul>{foreach from=$missing.themes item=theme}<li><a href="{$theme.uri}" class="externalLink">{$theme.name}</a></li>{/foreach}</ul><br></p>
|
|
{/if}
|
|
<p>
|
|
{if !empty($missing.plugins) or !empty($missing.themes)}
|
|
<p><label><input type="checkbox" name="understand"> {'I decide to update anyway'|@translate}</label></p>
|
|
{/if}
|
|
<p><input type="submit" name="submit" value="{'Update to Piwigo %s'|@translate:$UPGRADE_TO}" {if !empty($missing.plugins) or !empty($missing.themes)}disabled="disabled"{/if}>
|
|
</p>
|
|
<p class="autoupdate_bar" style="display:none;"> {'Update in progress...'|@translate}<br><img src="admin/themes/default/images/ajax-loader-bar.gif"></p>
|
|
</fieldset>
|
|
|
|
<p><input type="hidden" name="upgrade_to" value="{$UPGRADE_TO}"></p>
|
|
</form>
|
|
{/if} |