Bugzilla – Attachment 88320 Details for
Bug 18308
Default value of minPasswordLength should be increased
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 18308: Removed extraneous file
Bug-18308-Removed-extraneous-file.patch (text/plain), 8.96 KB, created by
Liz Rea
on 2019-04-18 15:52:25 UTC
(
hide
)
Description:
Bug 18308: Removed extraneous file
Filename:
MIME Type:
Creator:
Liz Rea
Created:
2019-04-18 15:52:25 UTC
Size:
8.96 KB
patch
obsolete
>From b4de3905d60ddce1e2c415a6e6d13db66d9755a4 Mon Sep 17 00:00:00 2001 >From: Hayley Mapley <hayleymapley@catalyst.net.nz> >Date: Thu, 18 Apr 2019 10:21:52 +1200 >Subject: [PATCH] Bug 18308: Removed extraneous file > >Sponsored-by: Catalyst IT > >Signed-off-by: Liz Rea <wizzyrea@gmail.com> >--- > .../prog/en/modules/onboarding/onboardingstep8.tt | 142 --------------------- > 1 file changed, 142 deletions(-) > delete mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep8.tt > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep8.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep8.tt >deleted file mode 100644 >index fc18ae8497..0000000000 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep8.tt >+++ /dev/null >@@ -1,142 +0,0 @@ >-[% USE raw %] >-[% USE Asset %] >-[% INCLUDE 'doc-head-open.inc' %] >-<title>Koha › Web installer › >- [% IF all_done %] >- Complete >- [% ELSE %] >- Create circulation rule >- [% END %] >-</title> >-[% INCLUDE 'installer-doc-head-close.inc' %] >-</head> >- >-<body id="installer" class="installer"> >- <div class="container-fluid"> >- <div class="row"> >- <div id="onboarding-step7" class="installer-main col-sm-8 col-sm-offset-2 col-md-8 col-md-offset-2"> >- <h1 id="logo"><a href="#">Koha</a></h1> >- >- [% IF all_done %] >- <h2>Web installer › Complete</h2> >- [% INCLUDE 'onboarding_messages.inc' %] >- <h3>Congratulations, you have finished and are ready to use Koha</h3> >- <a class="btn btn-success" href="/cgi-bin/koha/mainpage.pl">Start using Koha</a> >- [% ELSE %] >- >- <h2>Web installer › Create a new circulation rule </h2> >- >- [% INCLUDE 'onboarding_messages.inc' %] >- >- <form name="createcirculationrule" method="post" action="onboarding.pl"> >- <fieldset class="rows"> >- <input type="hidden" name="step" value="7"/> >- <input type="hidden" name="op" value="add_validate_circ_rule" /> >- <ol> >- <li> >- <label for="branchname" class="required"> Library branch</label> >- <select name="branch" id="branchname" required="required"> >- <option value=""> Choose</option> >- <option value="*" selected="selected">All</option> >- [% FOREACH library IN libraries %] >- <option value="[% library.branchcode | html %]"> [% library.branchname | html %]</option> >- [% END %] >- </select> >- <span class="required">Required</span> >- </li> >- <li> >- <label for="categorycode" class="required">Patron category: </label> >- <select name="categorycode" id="categorycode" required="required"> >- <option value=""> Choose</option> >- <option value="*" selected="selected">All</option> >- [% FOREACH category IN categories %] >- <option value = "[% category.categorycode | html %]"> [% category.description | html %]</option> >- [%END%] >- </select> >- <span class="required">Required</span> >- </li> >- >- <li> >- <label for="itemtype"> Item type: </label> >- <select id="itemtype" name="itemtype" required="required"> >- <option value=""> Choose </option> >- <option value="*" selected="selected">All</option> >- [% FOREACH item IN itemtypes %] >- <option value = "[% item.itemtype | html %]"> [% item.itemtype | html %] >- [%END%] >- </select> >- <span class="required"> Required</span> >- </li> >- <li> >- <label for="maxissueqty" class="required">Current checkouts allowed: </label> >- <input type="number" min="0" name="maxissueqty" id="maxissueqty" size="10" value="50" class="required" required="required" /> >- <span class="required">Required</span> >- </li> >- >- <li> >- <label for="issuelength" class="required">Loan period: </label> >- <input type="number" min="0" name="issuelength" id="issuelength" size="10" value="14" class="required" required="required" /> >- <span class="required">Required</span> >- </li> >- <li> >- <label for="lengthunit">Units: </label> >- <select name="lengthunit" id="lengthunit" required="required"> >- <option value=""> Choose </option> >- [% SET units = 'days' %] >- [% IF category %] >- [% SET default_privacy = category.default_privacy %] >- [% END %] >- >- [% SWITCH units %] >- [% CASE 'days' %] >- <option value="days" selected="selected">Days</option> >- <option value="hours">Hours</option> >- [% CASE 'hours' %] >- <option value="days">Days</option> >- <option value="hours" selected="selected">Hours</option> >- [% END %] >- </select> >- </li> >- <li> >- <label for="renewalsallowed" class="required">Renewals allowed: </label> >- <input type="number" min="0" name="renewalsallowed" id="renewalsallowed" size="10" max="10" value="10" class="required" required="required" /> >- <span class="required">Required</span> >- </li> >- >- <li> >- <label for="renewalperiod" class="required">Renewals period: </label> >- <input type="number" min="0" name="renewalperiod" id="renewalperiod" size="10" value="14" class="required" required="required" /> >- <span class="required">Required</span> >- </li> >- >- <li> >- <label for="onshelfholds">On shelf holds allowed: </label> >- <select name="onshelfholds" id="onshelfholds" required="required"> >- <option value="">Choose</option> >- <option value="1" selected="selected">Yes</option> >- <option value="0">If any unavailable</option> >- <option value="2">If all unavailable</option> >- </select> >- </li> >- </ol> >- <p> >- To create another circulation rule, go to: >- <span class="breadcrumbs">Administration › Circulation and fine rules </span> >- </p> >- >- </fieldset> >- >- <input type="submit" class="btn btn-primary" value="Submit" /> >- </form> >- [% END %] >- </div> <!-- / #onboarding-step7 --> >- </div> <!-- / .row --> >- </div><!-- / .container-fluid --> >- >-[% MACRO jsinclude BLOCK %] >- [% INCLUDE 'validator-strings.inc' %] >- [% INCLUDE 'installer-strings.inc' %] >- [% Asset.js("js/onboarding.js") | $raw %] >-[% END %] >- >-[% INCLUDE 'installer-intranet-bottom.inc' %] >-- >2.11.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 18308
:
68374
|
68381
|
68451
|
69318
|
69319
|
69320
|
69321
|
69323
|
69324
|
69459
|
69461
|
69462
|
87124
|
87125
|
87126
|
87128
|
87129
|
87339
|
87340
|
87564
|
87572
|
87573
|
87747
|
87959
|
87960
|
87961
|
87962
|
87963
|
87964
|
87966
|
88010
|
88011
|
88012
|
88013
|
88014
|
88242
|
88243
|
88306
|
88307
|
88308
|
88309
|
88310
|
88311
|
88312
|
88313
|
88314
|
88315
|
88316
|
88317
|
88318
|
88319
|
88320
|
88321
|
88840
|
90079
|
103617
|
104235
|
104236
|
104351