View | Details | Raw Unified | Return to bug 11559
Collapse All | Expand All

(-)a/cataloguing/editor.pl (-10 / +10 lines)
Lines 4-21 Link Here
4
#
4
#
5
# This file is part of Koha.
5
# This file is part of Koha.
6
#
6
#
7
# Koha is free software; you can redistribute it and/or modify it under the
7
# Koha is free software; you can redistribute it and/or modify it
8
# terms of the GNU General Public License as published by the Free Software
8
# under the terms of the GNU General Public License as published by
9
# Foundation; either version 2 of the License, or (at your option) any later
9
# the Free Software Foundation; either version 3 of the License, or
10
# version.
10
# (at your option) any later version.
11
#
11
#
12
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
12
# Koha is distributed in the hope that it will be useful, but
13
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13
# WITHOUT ANY WARRANTY; without even the implied warranty of
14
# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
14
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
# GNU General Public License for more details.
15
#
16
#
16
# You should have received a copy of the GNU General Public License along
17
# You should have received a copy of the GNU General Public License
17
# with Koha; if not, write to the Free Software Foundation, Inc.,
18
# along with Koha; if not, see <http://www.gnu.org/licenses>.
18
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
#
19
#
20
20
21
use Modern::Perl '2009';
21
use Modern::Perl '2009';
(-)a/koha-tmpl/intranet-tmpl/prog/en/css/humanmsg.css (-2 / +2 lines)
Lines 25-35 html, body { Link Here
25
}
25
}
26
26
27
.humanError {
27
.humanError {
28
	background-color: #400;
28
    background-color: #400;
29
}
29
}
30
30
31
.humanSuccess {
31
.humanSuccess {
32
	background-color: #040;
32
    background-color: #040;
33
}
33
}
34
34
35
.humanMsg h3 {
35
.humanMsg h3 {
(-)a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css (-1 / +1 lines)
Lines 427-433 dd { Link Here
427
427
428
.btn-toolbar .yui-menu-button button,
428
.btn-toolbar .yui-menu-button button,
429
.btn-toolbar .yui-button-button button {
429
.btn-toolbar .yui-button-button button {
430
	line-height : 1.7em;
430
    line-height : 1.7em;
431
}
431
}
432
432
433
ul.toolbar {
433
ul.toolbar {
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc (-15 / +15 lines)
Lines 1-10 Link Here
1
<script src="/intranet-tmpl/lib/codemirror/codemirror-compressed.js"></script>
1
<script src="[% interface %]/lib/codemirror/codemirror-compressed.js"></script>
2
<script src="/intranet-tmpl/lib/filesaver.js"></script>
2
<script src="[% interface %]/lib/filesaver.js"></script>
3
<script src="/intranet-tmpl/lib/koha/cateditor/marc-mode.js"></script>
3
<script src="[% interface %]/lib/koha/cateditor/marc-mode.js"></script>
4
<script src="/intranet-tmpl/lib/require.js"></script>
4
<script src="[% interface %]/lib/require.js"></script>
5
<script>
5
<script>
6
require.config( {
6
require.config( {
7
    baseUrl: '/intranet-tmpl/lib/koha/cateditor/',
7
    baseUrl: '[% interface %]/lib/koha/cateditor/',
8
    config: {
8
    config: {
9
        resources: {
9
        resources: {
10
            marcflavour: '[% marcflavour %]',
10
            marcflavour: '[% marcflavour %]',
Lines 40-55 require( [ 'koha-backend', 'search', 'macros', 'marc-editor', 'marc-record', 'pr Link Here
40
40
41
    // The columns that should show up in a search, in order, and keyed by the corresponding <metadata> tag in the XSL and Pazpar2 config
41
    // The columns that should show up in a search, in order, and keyed by the corresponding <metadata> tag in the XSL and Pazpar2 config
42
    var z3950Labels = [
42
    var z3950Labels = [
43
		[ "local_number", _("Local number") ],
43
        [ "local_number", _("Local number") ],
44
		[ "title", _("Title") ],
44
        [ "title", _("Title") ],
45
		[ "series", _("Series title") ],
45
        [ "series", _("Series title") ],
46
		[ "author", _("Author") ],
46
        [ "author", _("Author") ],
47
		[ "lccn", _("LCCN") ],
47
        [ "lccn", _("LCCN") ],
48
		[ "isbn", _("ISBN") ],
48
        [ "isbn", _("ISBN") ],
49
		[ "issn", _("ISSN") ],
49
        [ "issn", _("ISSN") ],
50
		[ "medium", _("Medium") ],
50
        [ "medium", _("Medium") ],
51
		[ "edition", _("Edition") ],
51
        [ "edition", _("Edition") ],
52
		[ "notes", _("Notes") ],
52
        [ "notes", _("Notes") ],
53
    ];
53
    ];
54
54
55
    var state = {
55
    var state = {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt (+9 lines)
Lines 735-740 Link Here
735
735
736
            <h2>TinyMCE WYSIWYG editor</h2>
736
            <h2>TinyMCE WYSIWYG editor</h2>
737
            <p>The <a href="http://www.tinymce.com/">TinyMCE WYSIWYG editor v3.5.8 </a> by Moxiecode (Ephox) is licensed under the <a href="http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt">LGPL v2.1</a>.</p>
737
            <p>The <a href="http://www.tinymce.com/">TinyMCE WYSIWYG editor v3.5.8 </a> by Moxiecode (Ephox) is licensed under the <a href="http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt">LGPL v2.1</a>.</p>
738
739
            <h2>CodeMirror editing library</h2>
740
            <p>The <a href="http://codemirror.net/">CodeMirror editing library</a> by Marijn Haverbeke is licensed under an <a href="http://codemirror.net/LICENSE">MIT license</a>.</p>
741
742
            <h2>FileSaver library</h2>
743
            <p>The <a href="https://github.com/eligrey/FileSaver.js/">FileSaver library</a> by Eli Grey is licensed under an <a href="https://github.com/eligrey/FileSaver.js/blob/master/LICENSE.md">MIT license</a>.</p>
744
745
            <h2>Require.js JS module system</h2>
746
            <p>The <a href="http://requirejs.org/">Require.js JS module system</a> by The Dojo Foundation is licensed under an <a href="https://github.com/jrburke/requirejs/blob/master/LICENSE">MIT license</a>.</p>
738
        </div>
747
        </div>
739
748
740
        <div id="translations">
749
        <div id="translations">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt (-1 / +1 lines)
Lines 124-130 Link Here
124
            return false;
124
            return false;
125
        } );
125
        } );
126
126
127
	});
127
    });
128
128
129
function redirect(dest){
129
function redirect(dest){
130
    $("#redirect").attr("value",dest);
130
    $("#redirect").attr("value",dest);
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/editor.tt (-22 / +21 lines)
Lines 3-9 Link Here
3
[% INCLUDE 'doc-head-close.inc' %]
3
[% INCLUDE 'doc-head-close.inc' %]
4
<link rel="stylesheet" href="[% themelang %]/css/cateditor.css" />
4
<link rel="stylesheet" href="[% themelang %]/css/cateditor.css" />
5
<link rel="stylesheet" href="[% themelang %]/css/datatables.css" />
5
<link rel="stylesheet" href="[% themelang %]/css/datatables.css" />
6
<link rel="stylesheet" href="/intranet-tmpl/lib/codemirror/codemirror.css" />
6
<link rel="stylesheet" href="[% interface %]/lib/codemirror/codemirror.css" />
7
<link rel="stylesheet" href="[% themelang %]/css/humanmsg.css" />
7
<link rel="stylesheet" href="[% themelang %]/css/humanmsg.css" />
8
<script src="[% interface %]/lib/jquery/plugins/humanmsg.js" type="text/javascript"></script>
8
<script src="[% interface %]/lib/jquery/plugins/humanmsg.js" type="text/javascript"></script>
9
[% IF ( bidi ) %]
9
[% IF ( bidi ) %]
Lines 116-168 Link Here
116
        </div>
116
        </div>
117
        <ul id="advanced-search-fields">
117
        <ul id="advanced-search-fields">
118
            <li>
118
            <li>
119
                <label for="advanced-search-by-author">Author:</label>
119
                <label for="advanced-search-by-isbn">ISBN:</label>
120
                <input class="search-box" data-qualifier="author" id="advanced-search-by-author" />
120
                <input class="search-box" data-qualifier="isbn" id="advanced-search-by-isbn" />
121
            </li>
121
            </li>
122
            <li>
122
            <li>
123
                <label for="advanced-search-by-control-number">Control number:</label>
123
                <label for="advanced-search-by-issn">ISSN:</label>
124
                <input class="search-box" data-qualifier="local_number" id="advanced-search-by-control-number" />
124
                <input class="search-box" data-qualifier="issn" id="advanced-search-by-issn" />
125
            </li>
125
            </li>
126
            <li>
126
            <li>
127
                <label for="advanced-search-by-dewey">Dewey number:</label>
127
                <label for="advanced-search-by-title">Title:</label>
128
                <input class="search-box" data-qualifier="cn_dewey" id="advanced-search-by-dewey" />
128
                <input class="search-box" data-qualifier="title" id="advanced-search-by-title" />
129
            </li>
129
            </li>
130
            <li>
130
            <li>
131
                <label for="advanced-search-by-isbn">ISBN:</label>
131
                <label for="advanced-search-by-author">Author:</label>
132
                <input class="search-box" data-qualifier="isbn" id="advanced-search-by-isbn" />
132
                <input class="search-box" data-qualifier="author" id="advanced-search-by-author" />
133
            </li>
133
            </li>
134
            <li>
134
            <li>
135
                <label for="advanced-search-by-issn">ISSN:</label>
135
                <label for="advanced-search-by-subject">Subject:</label>
136
                <input class="search-box" data-qualifier="issn" id="advanced-search-by-issn" />
136
                <input class="search-box" data-qualifier="subject" id="advanced-search-by-subject" />
137
            </li>
138
            <li>
139
                <label for="advanced-search-by-lc-number">LC call number:</label>
140
                <input class="search-box" data-qualifier="cn_lc" id="advanced-search-by-lc-number" />
137
            </li>
141
            </li>
138
            <li>
142
            <li>
139
                <label for="advanced-search-by-lccn">LCCN:</label>
143
                <label for="advanced-search-by-lccn">LCCN:</label>
140
                <input class="search-box" data-qualifier="lccn" id="advanced-search-by-lccn" />
144
                <input class="search-box" data-qualifier="lccn" id="advanced-search-by-lccn" />
141
            </li>
145
            </li>
142
            <li>
146
            <li>
143
                <label for="advanced-search-by-lc-number">LC call number:</label>
147
                <label for="advanced-search-by-control-number">Control number:</label>
144
                <input class="search-box" data-qualifier="cn_lc" id="advanced-search-by-lc-number" />
148
                <input class="search-box" data-qualifier="local_number" id="advanced-search-by-control-number" />
145
            </li>
149
            </li>
146
            <li>
150
            <li>
147
                <label for="advanced-search-by-publisher-number">Publisher number:</label>
151
                <label for="advanced-search-by-dewey">Dewey number:</label>
148
                <input class="search-box" data-qualifier="music_identifier" id="advanced-search-by-publisher-number" />
152
                <input class="search-box" data-qualifier="cn_dewey" id="advanced-search-by-dewey" />
149
            </li>
153
            </li>
150
            <li>
154
            <li>
151
                <label for="advanced-search-by-standard-number">Standard number:</label>
155
                <label for="advanced-search-by-standard-number">Standard number:</label>
152
                <input class="search-box" data-qualifier="standard_identifier" id="advanced-search-by-standard-number" />
156
                <input class="search-box" data-qualifier="standard_identifier" id="advanced-search-by-standard-number" />
153
            </li>
157
            </li>
154
            <li>
158
            <li>
155
                <label for="advanced-search-by-subject">Subject:</label>
159
                <label for="advanced-search-by-publisher-number">Publisher number:</label>
156
                <input class="search-box" data-qualifier="subject" id="advanced-search-by-subject" />
160
                <input class="search-box" data-qualifier="music_identifier" id="advanced-search-by-publisher-number" />
157
            </li>
161
            </li>
158
            <li>
162
            <li>
159
                <label for="advanced-search-by-publication-date">Publication date:</label>
163
                <label for="advanced-search-by-publication-date">Publication date:</label>
160
                <input class="search-box" data-qualifier="date" id="advanced-search-by-publication-date" />
164
                <input class="search-box" data-qualifier="date" id="advanced-search-by-publication-date" />
161
            </li>
165
            </li>
162
            <li>
163
                <label for="advanced-search-by-title">Title:</label>
164
                <input class="search-box" data-qualifier="title" id="advanced-search-by-title" />
165
            </li>
166
        </ul>
166
        </ul>
167
    </div>
167
    </div>
168
</form>
168
</form>
169
- 

Return to bug 11559