0d03da1773
This patch changes 'Select all frameworks' to 'Select all sample data' and exposes it to translation through function _(). To test: Apply first patch. See "Select all frameworks" on Webinstaller > Step3 Apply second patch Text changes to "Select all sample data" Check translation Check for JavaScript errors http://bugs.koha-community.org/show_bug.cgi?id=12658 Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de> Changes link text and also makes it translatable. Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
256 lines
8.8 KiB
Text
256 lines
8.8 KiB
Text
[% INCLUDE 'doc-head-open.inc' %]<title>Koha › Web installer › Step 3</title>
|
|
[% IF ( finish ) %]<meta http-equiv="refresh" content="10; url=/cgi-bin/koha/mainpage.pl">[% END %]
|
|
[% INCLUDE 'installer-doc-head-close.inc' %]
|
|
<div>
|
|
<h1 id="logo"><img alt="Koha" src="[% interface %]/[% theme %]/img/koha.org-logo.gif" /> Web installer › Step 3</h1>
|
|
|
|
[% IF ( selectframeworks ) %]
|
|
<script type="text/javascript">
|
|
//<![CDATA[
|
|
|
|
var surl = unescape(window.location.pathname);
|
|
|
|
function doLoad()
|
|
{
|
|
// the timeout value should be the same as in the "refresh" meta-tag
|
|
setTimeout( "refresh()", 2*1000 );
|
|
}
|
|
|
|
function refresh(value)
|
|
{
|
|
// The argument to the location.reload function determines
|
|
// if the browser should retrieve the document from the
|
|
// web-server. In our example all we need to do is cause
|
|
// the JavaScript block in the document body to be
|
|
// re-evaluated. If we needed to pull the document from
|
|
// the web-server again (such as where the document contents
|
|
// change dynamically) we would pass the argument as 'true'.
|
|
//
|
|
surl=surl+'?step=3&op=selectframeworks&fwklanguage='+value;
|
|
|
|
window.location.replace( surl );
|
|
}
|
|
|
|
function selectAllFrameworks()
|
|
{
|
|
// A handy short link that selects all available checkboxes
|
|
// on the page.
|
|
//
|
|
var checkboxes = document.getElementsByTagName("input");
|
|
for (var i = 0; i < checkboxes.length; i++)
|
|
{
|
|
if (checkboxes[i].type == 'checkbox')
|
|
{
|
|
checkboxes[i].checked = true;
|
|
}
|
|
}
|
|
|
|
// Prevent event propergation.
|
|
return false;
|
|
}
|
|
|
|
function Hide(link)
|
|
{
|
|
// Toggle the display of a given element on the page.
|
|
//
|
|
subfield = document.getElementById('bloc'+link);
|
|
var initstyle = subfield.style.display;
|
|
if (initstyle == 'block') subfield.style.display = 'none' ;
|
|
if (initstyle == 'none') subfield.style.display = 'block' ;
|
|
}
|
|
|
|
//]]>
|
|
</script>
|
|
[% END %]
|
|
[% IF ( finish ) %]
|
|
<h1>Congratulations, installation complete</h1>
|
|
<p>If this page does not redirect in 5 seconds, click <a href="/">here</a>.</p>
|
|
[% END %]
|
|
[% IF ( choosemarc ) %]
|
|
<h2 align="center">Select your MARC flavor</h2>
|
|
<form name="frameworkselection" method="post" action="install.pl">
|
|
<input type="hidden" name="step" value="3" />
|
|
<input type="hidden" name="op" value="selectframeworks" />
|
|
<p>
|
|
[% FOREACH flavourloo IN flavourloop %]
|
|
<div>
|
|
[% IF ( flavourloo.checked ) %]
|
|
<input type="radio" name="marcflavour" value="[% flavourloo.code %]" checked /> [% flavourloo.label %] <br/>
|
|
[% ELSE %]
|
|
<input type="radio" name="marcflavour" value="[% flavourloo.code %]" /> [% flavourloo.label %] <br/>
|
|
[% END %]
|
|
</div>
|
|
[% END %]
|
|
</p>
|
|
<p> Click 'Next' to continue <input value="Next >>" type="submit" /></p>
|
|
</form>
|
|
[% END %]
|
|
|
|
[% IF ( selectframeworks ) %]
|
|
<h2 align="center">Selecting Default Settings</h2>
|
|
<script type="text/javascript">
|
|
var linklabel = _("Select all sample data");
|
|
document.write('<p><a href="#" onclick="return selectAllFrameworks();">'+linklabel+'</a></p>');
|
|
</script>
|
|
<form name="frameworkselection" method="post" action="install.pl">
|
|
<input type="hidden" name="step" value="3" />
|
|
<input type="hidden" name="op" value="addframeworks" />
|
|
|
|
[% IF ( frameworksloop ) %]
|
|
<h2>MARC frameworks: [% marcflavour %]</h2>
|
|
[% IF ( en_marc_frameworks ) %]
|
|
<h4><span class="error">No MARC frameworks are available for your language.
|
|
Defaulting to the frameworks supplied for English (en)<span></h4>
|
|
[% END %]
|
|
[% FOREACH frameworksloo IN frameworksloop %]
|
|
<div>
|
|
<h3>[% frameworksloo.label %]</h3>
|
|
[% FOREACH framework IN frameworksloo.frameworks %]
|
|
<table style="border:1px;vertical-align:top;">
|
|
<tr>
|
|
<td style="vertical-align:top;">
|
|
[% IF ( framework.checked ) %]
|
|
<input type="checkbox" name="framework" value="[% framework.fwkfile %]" checked="checked" id="[% framework.fwkname %]" />
|
|
[% ELSE %]
|
|
<input type="checkbox" name="framework" value="[% framework.fwkfile %]" id="[% framework.fwkname %]" />
|
|
[% END %]
|
|
</td>
|
|
<td>
|
|
<label for="[% framework.fwkname %]">
|
|
[% framework.fwkdescription %]
|
|
<em>([% framework.fwkname %])</em>
|
|
</label>
|
|
</td>
|
|
</table>
|
|
[% END %]
|
|
</div>
|
|
[% END %]
|
|
<h2>Other data</h2>
|
|
[% END %]
|
|
[% IF ( en_sample_data ) %]
|
|
<h4><span class="error">No sample data and settings are available for your language.
|
|
Defaulting to the samples supplied for English (en)<span></h4>
|
|
[% END %]
|
|
[% FOREACH levelloo IN levelloop %]
|
|
<div>
|
|
<h3>[% levelloo.label %]</h3>
|
|
[% FOREACH framework IN levelloo.frameworks %]
|
|
<table style="border:1px;vertical-align:top;">
|
|
<tr>
|
|
<td style="vertical-align:top;">
|
|
[% IF ( framework.checked ) %]
|
|
<input type="checkbox" name="framework" value="[% framework.fwkfile %]" checked="checked" id="[% framework.fwkname %]" />
|
|
[% ELSE %]
|
|
<input type="checkbox" name="framework" value="[% framework.fwkfile %]" id="[% framework.fwkname %]" />
|
|
[% END %]
|
|
</td>
|
|
<td>
|
|
<label for="[% framework.fwkname %]">
|
|
[% framework.fwkdescription %]
|
|
<em>([% framework.fwkname %])</em>
|
|
</label>
|
|
</td>
|
|
</table>
|
|
[% END %]
|
|
</div>
|
|
[% END %]
|
|
<p>When you've made your selections, please click 'Import' below to begin the process. It may take a while to complete,
|
|
please be patient.</p>
|
|
<p><input type="submit" value="Import >>" />
|
|
</p>
|
|
</form>
|
|
[% END %]
|
|
|
|
|
|
[% IF ( addframeworks ) %]
|
|
[% FOREACH lis IN list %]
|
|
<h3>[% lis.level %] data added</h3>
|
|
<ul>
|
|
[% FOREACH fwklis IN lis.fwklist %]
|
|
<li>[% fwklis.fwkname %][% IF ( fwklis.error ) %]<br /><span class="error">[% fwklis.error %]</span>[% END %] </li>
|
|
[% END %]
|
|
</ul>
|
|
[% END %]
|
|
<h3>All done!</h3>
|
|
<p>Installation complete.<br />
|
|
<p>Click on 'Finish' to complete and load the Koha Staff Interface.
|
|
<form name="finish">
|
|
<input type="hidden" name="step" value="3" />
|
|
<input type="hidden" name="op" value="finish" />
|
|
<input type="submit" value="Finish" /></form>
|
|
</p>
|
|
</p>
|
|
[% END %]
|
|
|
|
|
|
[% IF ( importdatastructure ) %]
|
|
[% IF ( error ) %]
|
|
<p>The following error occurred while importing the database structure:</p>
|
|
<p class="error">[% error %] </p>
|
|
<p>Please contact your system administrator</p>
|
|
[% ELSE %]
|
|
<h2 align="center">Success</h2>
|
|
<ul>
|
|
<li>Database tables created</li>
|
|
</ul>
|
|
<form action="install.pl">
|
|
<input type="hidden" name="step" value="3" />
|
|
<p> Click 'Next' to continue <input value="Next >>" type="submit" /></p>
|
|
</form>
|
|
[% END %]
|
|
[% END %]
|
|
|
|
|
|
[% IF ( proposeimport ) %]
|
|
<p>Now we're ready to create the database tables and fill them with some default data.</p>
|
|
<form action="install.pl">
|
|
<input type="hidden" name="step" value="3" />
|
|
<input type="hidden" name="op" value="importdatastructure" />
|
|
<p> Click 'Next' to continue <input value="Next >>" type="submit" /></p>
|
|
</form>
|
|
[% END %]
|
|
|
|
|
|
[% IF ( default ) %]
|
|
[% IF ( upgrading ) %]
|
|
<p>
|
|
We are upgrading from Koha [% dbversion %] to [% kohaversion %], you must <a href="install.pl?step=3&op=updatestructure" class="button">update your database</a>
|
|
</p>
|
|
[% ELSE %]
|
|
<p>We are ready to do some basic configuration. Please
|
|
<a href="install.pl?step=3&op=choosemarc" class="button">install basic configuration settings</a>
|
|
to continue the installation.
|
|
</p>
|
|
[% END %]
|
|
[% END %]
|
|
|
|
|
|
|
|
[% IF ( updatestructure ) %]
|
|
<div><h2 align="center">Updating database structure</h2>
|
|
[% IF ( has_update_succeeds ) %]
|
|
<p>Update report :</p>
|
|
<ul>
|
|
[% FOREACH update_repor IN update_report %]
|
|
<li>[% update_repor.line |html %]</li>
|
|
[% END %]
|
|
</ul>
|
|
[% END %]
|
|
[% IF ( has_update_errors ) %]
|
|
<p>Update errors :</p>
|
|
<ul>
|
|
[% FOREACH update_error IN update_errors %]
|
|
<li class="update_error">[% update_error.line |html %]</li>
|
|
[% END %]
|
|
</ul>
|
|
[% END %]
|
|
[% UNLESS ( has_update_errors ) %]
|
|
<p>Everything went OK, update done.</p>
|
|
[% END %]
|
|
<a href="install.pl?step=3&op=finished" class="button">Continue to log in to Koha</a>
|
|
</div>
|
|
[% END %]
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|