Bug 24545: Fix license statements
[koha.git] / installer / data / mysql / de-DE / mandatory / class_sources.sql
1 -- 
2 -- Default classification sources and filing rules
3 -- for Koha.
4 --
5 -- Copyright (C) 2007 LiblimeA
6 --
7 -- This file is part of Koha.
8 --
9 -- Koha is free software; you can redistribute it and/or modify it
10 -- under the terms of the GNU General Public License as published by
11 -- the Free Software Foundation; either version 3 of the License, or
12 -- (at your option) any later version.
13 --
14 -- Koha is distributed in the hope that it will be useful, but
15 -- WITHOUT ANY WARRANTY; without even the implied warranty of
16 -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 -- GNU General Public License for more details.
18 --
19 -- You should have received a copy of the GNU General Public License
20 -- along with Koha; if not, see <http://www.gnu.org/licenses>.
21
22 -- class sorting (filing) rules
23 INSERT INTO `class_sort_rules` (`class_sort_rule`, `description`, `sort_routine`) VALUES
24                                ('dewey', 'Standard-Sortierregeln für DDC', 'Dewey'),
25                                ('lcc', 'Standard-Sortierregeln für LCC', 'LCC'),
26                                ('generic', 'Generische Sortierregeln für Signaturen', 'Generic');
27 -- splitting rules
28 INSERT INTO `class_split_rules` (`class_split_rule`, `description`, `split_routine`) VALUES
29                                 ('dewey', 'Umbruchregeln für DDC', 'Dewey'),
30                                 ('lcc', 'Umbruchregeln für LCC', 'LCC'),
31                                 ('generic', 'Generische Umbruchregeln', 'Generic');
32
33 -- classification schemes or sources
34 INSERT INTO `class_sources` (`cn_source`, `description`, `used`, `class_sort_rule`, `class_split_rule`) VALUES
35                             ('ddc', 'Dewey-Decimalklassifikation (DDC)', 1, 'dewey', 'dewey'),
36                             ('lcc', 'Klassifikation der Library of Congress (LCC)', 1, 'lcc', 'lcc'),
37                             ('udc', 'Universelle Dezimalklassifikation (UDC)', 0, 'generic', 'generic'),
38                             ('sudocs', 'SuDoc-Klassifikation (U.S. GPO)', 0, 'generic', 'generic'),
39                             ('anscr', 'ANSCR (Tonaufnahmen)', 0, 'generic', 'generic'),
40                             ('z', 'Andere/Generische Klassifikation', 0, 'generic', 'generic');