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

(-)a/C4/Labels/Label.pm (-3 / +3 lines)
Lines 273-279 sub _BIB { Link Here
273
273
274
sub _BAR {
274
sub _BAR {
275
    my $self = shift;
275
    my $self = shift;
276
    my $barcode_llx = $self->{'llx'} + $self->{'left_text_margin'};     # this places the bottom left of the barcode the left text margin distance to right of the the left edge of the label ($llx)
276
    my $barcode_llx = $self->{'llx'} + $self->{'left_text_margin'};     # this places the bottom left of the barcode the left text margin distance to right of the left edge of the label ($llx)
277
    my $barcode_lly = $self->{'lly'} + $self->{'top_text_margin'};      # this places the bottom left of the barcode the top text margin distance above the bottom of the label ($lly)
277
    my $barcode_lly = $self->{'lly'} + $self->{'top_text_margin'};      # this places the bottom left of the barcode the top text margin distance above the bottom of the label ($lly)
278
    my $barcode_width = 0.8 * $self->{'width'};                         # this scales the barcode width to 80% of the label width
278
    my $barcode_width = 0.8 * $self->{'width'};                         # this scales the barcode width to 80% of the label width
279
    my $barcode_y_scale_factor = 0.01 * $self->{'height'};              # this scales the barcode height to 10% of the label height
279
    my $barcode_y_scale_factor = 0.01 * $self->{'height'};              # this scales the barcode height to 10% of the label height
Lines 282-288 sub _BAR { Link Here
282
282
283
sub _BIBBAR {
283
sub _BIBBAR {
284
    my $self = shift;
284
    my $self = shift;
285
    my $barcode_llx = $self->{'llx'} + $self->{'left_text_margin'};     # this places the bottom left of the barcode the left text margin distance to right of the the left edge of the label ($self->{'llx'})
285
    my $barcode_llx = $self->{'llx'} + $self->{'left_text_margin'};     # this places the bottom left of the barcode the left text margin distance to right of the left edge of the label ($self->{'llx'})
286
    my $barcode_lly = $self->{'lly'} + $self->{'top_text_margin'};      # this places the bottom left of the barcode the top text margin distance above the bottom of the label ($lly)
286
    my $barcode_lly = $self->{'lly'} + $self->{'top_text_margin'};      # this places the bottom left of the barcode the top text margin distance above the bottom of the label ($lly)
287
    my $barcode_width = 0.8 * $self->{'width'};                         # this scales the barcode width to 80% of the label width
287
    my $barcode_width = 0.8 * $self->{'width'};                         # this scales the barcode width to 80% of the label width
288
    my $barcode_y_scale_factor = 0.01 * $self->{'height'};              # this scales the barcode height to 10% of the label height
288
    my $barcode_y_scale_factor = 0.01 * $self->{'height'};              # this scales the barcode height to 10% of the label height
Lines 294-300 sub _BIBBAR { Link Here
294
294
295
sub _BARBIB {
295
sub _BARBIB {
296
    my $self = shift;
296
    my $self = shift;
297
    my $barcode_llx = $self->{'llx'} + $self->{'left_text_margin'};                             # this places the bottom left of the barcode the left text margin distance to right of the the left edge of the label ($self->{'llx'})
297
    my $barcode_llx = $self->{'llx'} + $self->{'left_text_margin'};                             # this places the bottom left of the barcode the left text margin distance to right of the left edge of the label ($self->{'llx'})
298
    my $barcode_lly = ($self->{'lly'} + $self->{'height'}) - $self->{'top_text_margin'};        # this places the bottom left of the barcode the top text margin distance below the top of the label ($self->{'lly'})
298
    my $barcode_lly = ($self->{'lly'} + $self->{'height'}) - $self->{'top_text_margin'};        # this places the bottom left of the barcode the top text margin distance below the top of the label ($self->{'lly'})
299
    my $barcode_width = 0.8 * $self->{'width'};                                                 # this scales the barcode width to 80% of the label width
299
    my $barcode_width = 0.8 * $self->{'width'};                                                 # this scales the barcode width to 80% of the label width
300
    my $barcode_y_scale_factor = 0.01 * $self->{'height'};                                      # this scales the barcode height to 10% of the label height
300
    my $barcode_y_scale_factor = 0.01 * $self->{'height'};                                      # this scales the barcode height to 10% of the label height
(-)a/C4/Record.pm (-1 / +1 lines)
Lines 398-404 sub marcrecord2csv { Link Here
398
    # Getting the marcfields as an array
398
    # Getting the marcfields as an array
399
    my @marcfieldsarray = split('\|', $marcfieldslist);
399
    my @marcfieldsarray = split('\|', $marcfieldslist);
400
400
401
   # Separating the marcfields from the the user-supplied headers
401
   # Separating the marcfields from the user-supplied headers
402
    my @marcfields;
402
    my @marcfields;
403
    foreach (@marcfieldsarray) {
403
    foreach (@marcfieldsarray) {
404
        my @result = split('=', $_);
404
        my @result = split('=', $_);
(-)a/INSTALL.opensuse (-1 / +1 lines)
Lines 802-808 XML::LibXML::SAX::Parser=HASH(0x8356e0c) Link Here
802
== Install the Zebra package ==
802
== Install the Zebra package ==
803
803
804
Zebra is already in the standard repository of openSUSE 11.3, so it seems better to install it.
804
Zebra is already in the standard repository of openSUSE 11.3, so it seems better to install it.
805
In the next chapter a question will be asked wether it is installed, so you better install it; no harm done.
805
In the next chapter a question will be asked whether it is installed, so you better install it; no harm done.
806
Because you may need the documentation, that will also be installed.
806
Because you may need the documentation, that will also be installed.
807
Note that the package name is idzebra.
807
Note that the package name is idzebra.
808
808
(-)a/authorities/authorities.pl (-1 / +1 lines)
Lines 204-210 sub create_input { Link Here
204
    }
204
    }
205
    elsif ( $tagslib->{$tag}->{$subfield}->{'value_builder'} ) {
205
    elsif ( $tagslib->{$tag}->{$subfield}->{'value_builder'} ) {
206
206
207
        # opening plugin. Just check wether we are on a developper computer on a production one
207
        # opening plugin. Just check whether we are on a developer computer on a production one
208
        # (the cgidir differs)
208
        # (the cgidir differs)
209
        my $cgidir = C4::Context->intranetdir . "/cgi-bin/cataloguing/value_builder";
209
        my $cgidir = C4::Context->intranetdir . "/cgi-bin/cataloguing/value_builder";
210
        unless (-r $cgidir and -d $cgidir) {
210
        unless (-r $cgidir and -d $cgidir) {
(-)a/cataloguing/addbiblio.pl (-1 / +1 lines)
Lines 414-420 sub create_input { Link Here
414
    }
414
    }
415
    elsif ( $tagslib->{$tag}->{$subfield}->{'value_builder'} ) {
415
    elsif ( $tagslib->{$tag}->{$subfield}->{'value_builder'} ) {
416
416
417
        # opening plugin. Just check wether we are on a developper computer on a production one
417
        # opening plugin. Just check whether we are on a developer computer on a production one
418
        # (the cgidir differs)
418
        # (the cgidir differs)
419
        my $cgidir = C4::Context->intranetdir . "/cgi-bin/cataloguing/value_builder";
419
        my $cgidir = C4::Context->intranetdir . "/cgi-bin/cataloguing/value_builder";
420
        unless ( opendir( DIR, "$cgidir" ) ) {
420
        unless ( opendir( DIR, "$cgidir" ) ) {
(-)a/cataloguing/plugin_launcher.pl (-1 / +1 lines)
Lines 27-33 use C4::Output; Link Here
27
my $input = new CGI;
27
my $input = new CGI;
28
my $plugin_name="cataloguing/value_builder/".$input->param("plugin_name");
28
my $plugin_name="cataloguing/value_builder/".$input->param("plugin_name");
29
29
30
# opening plugin. Just check wether we are on a developper computer on a production one
30
# opening plugin. Just check whether we are on a developer computer on a production one
31
# (the cgidir differs)
31
# (the cgidir differs)
32
my $cgidir = C4::Context->intranetdir ."/cgi-bin";
32
my $cgidir = C4::Context->intranetdir ."/cgi-bin";
33
my $vbdir = "$cgidir/cataloguing/value_builder";
33
my $vbdir = "$cgidir/cataloguing/value_builder";
(-)a/etc/zebradb/ccl.properties (-1 / +1 lines)
Lines 831-837 Title-uniform-heading 1=Title-uniform-heading Link Here
831
Title-uniform-see 1=Title-uniform-see
831
Title-uniform-see 1=Title-uniform-see
832
Title-uniform-seealso 1=Title-uniform-seealso
832
Title-uniform-seealso 1=Title-uniform-seealso
833
833
834
#Authority-number           Koha-Auth-Number  The identifier of the the authority
834
#Authority-number           Koha-Auth-Number  The identifier of the authority
835
#                           record, stored in 001 in the authority record, and $9/$0 in the
835
#                           record, stored in 001 in the authority record, and $9/$0 in the
836
#                           field that record is linked to in the bib record
836
#                           field that record is linked to in the bib record
837
Authority-Number 1=Koha-Auth-Number
837
Authority-Number 1=Koha-Auth-Number
(-)a/installer/data/mysql/kohastructure.sql (-2 / +2 lines)
Lines 1393-1399 CREATE TABLE `old_reserves` ( -- this table holds all holds/reserves that have b Link Here
1393
  `cancellationdate` date default NULL, -- the date this hold was cancelled
1393
  `cancellationdate` date default NULL, -- the date this hold was cancelled
1394
  `reservenotes` mediumtext, -- notes related to this hold
1394
  `reservenotes` mediumtext, -- notes related to this hold
1395
  `priority` smallint(6) default NULL, -- where in the queue the patron sits
1395
  `priority` smallint(6) default NULL, -- where in the queue the patron sits
1396
  `found` varchar(1) default NULL, -- a one letter code defining what the the status is of the hold is after it has been confirmed
1396
  `found` varchar(1) default NULL, -- a one letter code defining what the status is of the hold is after it has been confirmed
1397
  `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this hold was last updated
1397
  `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this hold was last updated
1398
  `itemnumber` int(11) default NULL, -- foreign key from the items table defining the specific item the patron has placed on hold or the item this hold was filled with
1398
  `itemnumber` int(11) default NULL, -- foreign key from the items table defining the specific item the patron has placed on hold or the item this hold was filled with
1399
  `waitingdate` date default NULL, -- the date the item was marked as waiting for the patron at the library
1399
  `waitingdate` date default NULL, -- the date the item was marked as waiting for the patron at the library
Lines 1568-1574 CREATE TABLE `reserves` ( -- information related to holds/reserves in Koha Link Here
1568
  `cancellationdate` date default NULL, -- the date this hold was cancelled
1568
  `cancellationdate` date default NULL, -- the date this hold was cancelled
1569
  `reservenotes` mediumtext, -- notes related to this hold
1569
  `reservenotes` mediumtext, -- notes related to this hold
1570
  `priority` smallint(6) default NULL, -- where in the queue the patron sits
1570
  `priority` smallint(6) default NULL, -- where in the queue the patron sits
1571
  `found` varchar(1) default NULL, -- a one letter code defining what the the status is of the hold is after it has been confirmed
1571
  `found` varchar(1) default NULL, -- a one letter code defining what the status is of the hold is after it has been confirmed
1572
  `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this hold was last updated
1572
  `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this hold was last updated
1573
  `itemnumber` int(11) default NULL, -- foreign key from the items table defining the specific item the patron has placed on hold or the item this hold was filled with
1573
  `itemnumber` int(11) default NULL, -- foreign key from the items table defining the specific item the patron has placed on hold or the item this hold was filled with
1574
  `waitingdate` date default NULL, -- the date the item was marked as waiting for the patron at the library
1574
  `waitingdate` date default NULL, -- the date the item was marked as waiting for the patron at the library
(-)a/installer/install.pl (-1 / +1 lines)
Lines 330-336 elsif ( $step && $step == 3 ) { Link Here
330
    }
330
    }
331
    else {
331
    else {
332
        #
332
        #
333
        # check wether it's a 1st install or an update
333
        # check whether it's a 1st install or an update
334
        #
334
        #
335
        #Check if there are enough tables.
335
        #Check if there are enough tables.
336
        # Paul has cleaned up tables so reduced the count
336
        # Paul has cleaned up tables so reduced the count
(-)a/koha-tmpl/intranet-tmpl/prog/en/js/acq.js (-2 / +2 lines)
Lines 76-89 DDApp = { Link Here
76
        if (uls[i].className == "draglist" || uls[i].className == "draglist_alt") {
76
        if (uls[i].className == "draglist" || uls[i].className == "draglist_alt") {
77
            ddtarget = YAHOO.util.DragDropMgr.getDDById(uls[i].id);
77
            ddtarget = YAHOO.util.DragDropMgr.getDDById(uls[i].id);
78
// The yahoo drag and drop is written (broken or not) in such a way, that if an element is subscribed as a target multiple times,
78
// The yahoo drag and drop is written (broken or not) in such a way, that if an element is subscribed as a target multiple times,
79
// it has to be unlinked multiple times, so we need to test wether it is allready a target, otherwise we'll have a problem when closing the group
79
// it has to be unlinked multiple times, so we need to test whether it is allready a target, otherwise we'll have a problem when closing the group
80
            if( ! ddtarget ) {
80
            if( ! ddtarget ) {
81
                new YAHOO.util.DDTarget(uls[i].id);
81
                new YAHOO.util.DDTarget(uls[i].id);
82
            }
82
            }
83
            var children = uls[i].getElementsByTagName('li');
83
            var children = uls[i].getElementsByTagName('li');
84
            for( j=0; j<children.length; j=j+1) {
84
            for( j=0; j<children.length; j=j+1) {
85
// The yahoo drag and drop is (broken or not) in such a way, that if an element is subscribed as a target multiple times,
85
// The yahoo drag and drop is (broken or not) in such a way, that if an element is subscribed as a target multiple times,
86
// it has to be unlinked multiple times, so we need to test wether it is allready a target, otherwise we'll have a problem when closing the group
86
// it has to be unlinked multiple times, so we need to test whether it is allready a target, otherwise we'll have a problem when closing the group
87
                ddtarget = YAHOO.util.DragDropMgr.getDDById(children[j].id);
87
                ddtarget = YAHOO.util.DragDropMgr.getDDById(children[j].id);
88
                if( ! ddtarget ) {
88
                if( ! ddtarget ) {
89
                    new DDList(children[j].id);
89
                    new DDList(children[j].id);
(-)a/koha-tmpl/intranet-tmpl/prog/en/js/tinymce/changelog (-14 / +14 lines)
Lines 240-252 Version 2.0.6 (2006-05-03) Link Here
240
	Added new strict_loading_mode option, this switches the loading method from document.write to DOM.
240
	Added new strict_loading_mode option, this switches the loading method from document.write to DOM.
241
	Added new hidden_tab_class, display_tab_class options for resolving the MSIE image dimension bug.
241
	Added new hidden_tab_class, display_tab_class options for resolving the MSIE image dimension bug.
242
	Added new absolute layer support, this was added to a new plugin called layer.
242
	Added new absolute layer support, this was added to a new plugin called layer.
243
	Added new CSS style properties support, this was as a plugin called style.
243
	Added new CSS style properties support, this was as a plugin called style.
244
	Fixed bug where TinyMCE was reporting a warning when inserting a image while running on HTTPS.
244
	Fixed bug where TinyMCE was reporting a warning when inserting a image while running on HTTPS.
245
	Fixed bug where pressing the browser back button after submit removed empty paragraphs in MSIE.
245
	Fixed bug where pressing the browser back button after submit removed empty paragraphs in MSIE.
246
	Fixed bug where links the the same page as the editor page was converted into a /.
246
	Fixed bug where links the same page as the editor page was converted into a /.
247
	Fixed bug where the getSelectedHTML method was returning undefined when selecting controls in MSIE.
247
	Fixed bug where the getSelectedHTML method was returning undefined when selecting controls in MSIE.
248
	Fixed bug with unterminated string literal errors where reported in some browsers.
248
	Fixed bug with unterminated string literal errors where reported in some browsers.
249
	Fixed bug where src and href where converted into xsrc and xhref in text.
249
	Fixed bug where src and href where converted into xsrc and xhref in text.
250
	Fixed bug where two characters where removed by backspace sometimes in Gecko.
250
	Fixed bug where two characters where removed by backspace sometimes in Gecko.
251
	Fixed bug where class drop list wasn't visible in some of the table dialogs.
251
	Fixed bug where class drop list wasn't visible in some of the table dialogs.
252
	Fixed bug where br elements where incorrectly removed within paragraphs on backspace.
252
	Fixed bug where br elements where incorrectly removed within paragraphs on backspace.
Lines 725-737 Version 1.45 RC1 (2005-05-27) Link Here
725
	Fixed the experimental Safari support, some features work some doesn't.
725
	Fixed the experimental Safari support, some features work some doesn't.
726
	Fixed bug where multiple a elements where created when updating links on images in FF/Mozilla.
726
	Fixed bug where multiple a elements where created when updating links on images in FF/Mozilla.
727
	Fixed bug in importCSS function, was having a meaning less if statement.
727
	Fixed bug in importCSS function, was having a meaning less if statement.
728
	Fixed so the contextmenu plugin uses images from the configurated theme instead of the advanced theme.
728
	Fixed so the contextmenu plugin uses images from the configurated theme instead of the advanced theme.
729
	Fixed so the external_link_list_url/external_image_list_url options can use relative or absolute path.
729
	Fixed so the external_link_list_url/external_image_list_url options can use relative or absolute path.
730
	Fixed so the external_link_list_url/external_image_list_url has a random query parameter to prevent it from cache.
730
	Fixed so the external_link_list_url/external_image_list_url has a random query parameter to prevent it from cache.
731
	Added new mceInsertRawHTML command, this inserts raw as it is HTML code in the the selected position.
731
	Added new mceInsertRawHTML command, this inserts raw as it is HTML code in the selected position.
732
	Added paste plain text plugin contributed by Ryan Demmer, converted it into a paste plugin.
732
	Added paste plain text plugin contributed by Ryan Demmer, converted it into a paste plugin.
733
	Added updated paste plugin contributed by speednet, includes paste directly feature for MSIE.
733
	Added updated paste plugin contributed by speednet, includes paste directly feature for MSIE.
734
	Added split/merge table cells support, to table plugin and context menus.
734
	Added split/merge table cells support, to table plugin and context menus.
735
	Added cut/copy/paste table rows functionality to context menu and table plugin.
735
	Added cut/copy/paste table rows functionality to context menu and table plugin.
736
	Added new mceSetContent command, this does the same as the setContent function.
736
	Added new mceSetContent command, this does the same as the setContent function.
737
	Added new clear all/new document icon to advanced theme.
737
	Added new clear all/new document icon to advanced theme.
(-)a/koha-tmpl/intranet-tmpl/prog/en/js/tinymce/jscripts/tiny_mce/themes/advanced/css/editor_content.css (-5 / +5 lines)
Lines 1-8 Link Here
1
/* This file contains the CSS data for the editable area(iframe) of TinyMCE */
1
/* This file contains the CSS data for the editable area(iframe) of TinyMCE */
2
/* You can extend this CSS by adding your own CSS file with the the content_css option */
2
/* You can extend this CSS by adding your own CSS file with the content_css option */
3
3
4
body, td, pre {
4
body, td, pre {
5
	font-family: Verdana, Arial, Helvetica, sans-serif;
5
	font-family: Verdana, Arial, Helvetica, sans-serif;
6
	font-size: 10px;
6
	font-size: 10px;
7
}
7
}
8
8
(-)a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/calendar/calendar-debug.js (-1 / +1 lines)
Lines 2446-2452 Calendar.prototype = { Link Here
2446
        * </p>
2446
        * </p>
2447
        * <p>
2447
        * <p>
2448
        * This property can also be set to an object literal containing configuration properties for the CalendarNavigator UI.
2448
        * This property can also be set to an object literal containing configuration properties for the CalendarNavigator UI.
2449
        * The configuration object expects the the following case-sensitive properties, with the "strings" property being a nested object.
2449
        * The configuration object expects the following case-sensitive properties, with the "strings" property being a nested object.
2450
        * Any properties which are not provided will use the default values (defined in the CalendarNavigator class).
2450
        * Any properties which are not provided will use the default values (defined in the CalendarNavigator class).
2451
        * </p>
2451
        * </p>
2452
        * <dl>
2452
        * <dl>
(-)a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/calendar/calendar.js (-1 / +1 lines)
Lines 2436-2442 Calendar.prototype = { Link Here
2436
        * </p>
2436
        * </p>
2437
        * <p>
2437
        * <p>
2438
        * This property can also be set to an object literal containing configuration properties for the CalendarNavigator UI.
2438
        * This property can also be set to an object literal containing configuration properties for the CalendarNavigator UI.
2439
        * The configuration object expects the the following case-sensitive properties, with the "strings" property being a nested object.
2439
        * The configuration object expects the following case-sensitive properties, with the "strings" property being a nested object.
2440
        * Any properties which are not provided will use the default values (defined in the CalendarNavigator class).
2440
        * Any properties which are not provided will use the default values (defined in the CalendarNavigator class).
2441
        * </p>
2441
        * </p>
2442
        * <dl>
2442
        * <dl>
(-)a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/dragdrop/dragdrop-debug.js (-1 / +1 lines)
Lines 245-251 YAHOO.util.DragDropMgr = function() { Link Here
245
        locked: false,
245
        locked: false,
246
246
247
        /**
247
        /**
248
         * Provides additional information about the the current set of
248
         * Provides additional information about the current set of
249
         * interactions.  Can be accessed from the event handlers. It
249
         * interactions.  Can be accessed from the event handlers. It
250
         * contains the following properties:
250
         * contains the following properties:
251
         *
251
         *
(-)a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/dragdrop/dragdrop.js (-1 / +1 lines)
Lines 241-247 YAHOO.util.DragDropMgr = function() { Link Here
241
        locked: false,
241
        locked: false,
242
242
243
        /**
243
        /**
244
         * Provides additional information about the the current set of
244
         * Provides additional information about the current set of
245
         * interactions.  Can be accessed from the event handlers. It
245
         * interactions.  Can be accessed from the event handlers. It
246
         * contains the following properties:
246
         * contains the following properties:
247
         *
247
         *
(-)a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/editor/editor-debug.js (-1 / +1 lines)
Lines 953-959 var Dom = YAHOO.util.Dom, Link Here
953
953
954
            /**
954
            /**
955
            * @attribute collapse
955
            * @attribute collapse
956
            * @description Boolean indicating if the the titlebar should have a collapse button.
956
            * @description Boolean indicating if the titlebar should have a collapse button.
957
            * The collapse button will not remove the toolbar, it will minimize it to the titlebar
957
            * The collapse button will not remove the toolbar, it will minimize it to the titlebar
958
            * @default false
958
            * @default false
959
            * @type Boolean
959
            * @type Boolean
(-)a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/editor/editor.js (-1 / +1 lines)
Lines 944-950 var Dom = YAHOO.util.Dom, Link Here
944
944
945
            /**
945
            /**
946
            * @attribute collapse
946
            * @attribute collapse
947
            * @description Boolean indicating if the the titlebar should have a collapse button.
947
            * @description Boolean indicating if the titlebar should have a collapse button.
948
            * The collapse button will not remove the toolbar, it will minimize it to the titlebar
948
            * The collapse button will not remove the toolbar, it will minimize it to the titlebar
949
            * @default false
949
            * @default false
950
            * @type Boolean
950
            * @type Boolean
(-)a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/editor/simpleeditor-debug.js (-1 / +1 lines)
Lines 953-959 var Dom = YAHOO.util.Dom, Link Here
953
953
954
            /**
954
            /**
955
            * @attribute collapse
955
            * @attribute collapse
956
            * @description Boolean indicating if the the titlebar should have a collapse button.
956
            * @description Boolean indicating if the titlebar should have a collapse button.
957
            * The collapse button will not remove the toolbar, it will minimize it to the titlebar
957
            * The collapse button will not remove the toolbar, it will minimize it to the titlebar
958
            * @default false
958
            * @default false
959
            * @type Boolean
959
            * @type Boolean
(-)a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/editor/simpleeditor.js (-1 / +1 lines)
Lines 944-950 var Dom = YAHOO.util.Dom, Link Here
944
944
945
            /**
945
            /**
946
            * @attribute collapse
946
            * @attribute collapse
947
            * @description Boolean indicating if the the titlebar should have a collapse button.
947
            * @description Boolean indicating if the titlebar should have a collapse button.
948
            * The collapse button will not remove the toolbar, it will minimize it to the titlebar
948
            * The collapse button will not remove the toolbar, it will minimize it to the titlebar
949
            * @default false
949
            * @default false
950
            * @type Boolean
950
            * @type Boolean
(-)a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/get/get-debug.js (-1 / +1 lines)
Lines 562-568 YAHOO.util.Get = function() { Link Here
562
        TIMEOUT: 2000,
562
        TIMEOUT: 2000,
563
        
563
        
564
        /**
564
        /**
565
         * Called by the the helper for detecting script load in Safari
565
         * Called by the helper for detecting script load in Safari
566
         * @method _finalize
566
         * @method _finalize
567
         * @param id {string} the transaction id
567
         * @param id {string} the transaction id
568
         * @private
568
         * @private
(-)a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/get/get.js (-1 / +1 lines)
Lines 549-555 YAHOO.util.Get = function() { Link Here
549
        TIMEOUT: 2000,
549
        TIMEOUT: 2000,
550
        
550
        
551
        /**
551
        /**
552
         * Called by the the helper for detecting script load in Safari
552
         * Called by the helper for detecting script load in Safari
553
         * @method _finalize
553
         * @method _finalize
554
         * @param id {string} the transaction id
554
         * @param id {string} the transaction id
555
         * @private
555
         * @private
(-)a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/menu/menu-debug.js (-2 / +2 lines)
Lines 2385-2391 _subscribeToItemEvents: function (p_oItem) { Link Here
2385
2385
2386
/**
2386
/**
2387
* @method _onVisibleChange
2387
* @method _onVisibleChange
2388
* @description Change event handler for the the menu's "visible" configuration
2388
* @description Change event handler for the menu's "visible" configuration
2389
* property.
2389
* property.
2390
* @private
2390
* @private
2391
* @param {String} p_sType String representing the name of the event that 
2391
* @param {String} p_sType String representing the name of the event that 
Lines 4852-4858 _setScrollHeight: function (p_nScrollHeight) { Link Here
4852
	
4852
	
4853
4853
4854
			/*
4854
			/*
4855
				Only clear the the "width" configuration property if it was set the 
4855
				Only clear the "width" configuration property if it was set the
4856
				"_setScrollHeight" method and wasn't changed by some other means after it was set.
4856
				"_setScrollHeight" method and wasn't changed by some other means after it was set.
4857
			*/	
4857
			*/	
4858
	
4858
	
(-)a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/menu/menu.js (-2 / +2 lines)
Lines 2350-2356 _subscribeToItemEvents: function (p_oItem) { Link Here
2350
2350
2351
/**
2351
/**
2352
* @method _onVisibleChange
2352
* @method _onVisibleChange
2353
* @description Change event handler for the the menu's "visible" configuration
2353
* @description Change event handler for the menu's "visible" configuration
2354
* property.
2354
* property.
2355
* @private
2355
* @private
2356
* @param {String} p_sType String representing the name of the event that 
2356
* @param {String} p_sType String representing the name of the event that 
Lines 4811-4817 _setScrollHeight: function (p_nScrollHeight) { Link Here
4811
	
4811
	
4812
4812
4813
			/*
4813
			/*
4814
				Only clear the the "width" configuration property if it was set the 
4814
				Only clear the "width" configuration property if it was set the
4815
				"_setScrollHeight" method and wasn't changed by some other means after it was set.
4815
				"_setScrollHeight" method and wasn't changed by some other means after it was set.
4816
			*/	
4816
			*/	
4817
	
4817
	
(-)a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/yahoo/yahoo-debug.js (-1 / +1 lines)
Lines 128-134 YAHOO.namespace = function() { Link Here
128
 * @param  {String}  cat  The log category for the message.  Default
128
 * @param  {String}  cat  The log category for the message.  Default
129
 *                        categories are "info", "warn", "error", time".
129
 *                        categories are "info", "warn", "error", time".
130
 *                        Custom categories can be used as well. (opt)
130
 *                        Custom categories can be used as well. (opt)
131
 * @param  {String}  src  The source of the the message (opt)
131
 * @param  {String}  src  The source of the message (opt)
132
 * @return {Boolean}      True if the log operation was successful.
132
 * @return {Boolean}      True if the log operation was successful.
133
 */
133
 */
134
YAHOO.log = function(msg, cat, src) {
134
YAHOO.log = function(msg, cat, src) {
(-)a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/yahoo/yahoo.js (-1 / +1 lines)
Lines 128-134 YAHOO.namespace = function() { Link Here
128
 * @param  {String}  cat  The log category for the message.  Default
128
 * @param  {String}  cat  The log category for the message.  Default
129
 *                        categories are "info", "warn", "error", time".
129
 *                        categories are "info", "warn", "error", time".
130
 *                        Custom categories can be used as well. (opt)
130
 *                        Custom categories can be used as well. (opt)
131
 * @param  {String}  src  The source of the the message (opt)
131
 * @param  {String}  src  The source of the message (opt)
132
 * @return {Boolean}      True if the log operation was successful.
132
 * @return {Boolean}      True if the log operation was successful.
133
 */
133
 */
134
YAHOO.log = function(msg, cat, src) {
134
YAHOO.log = function(msg, cat, src) {
(-)a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/yuiloader/yuiloader-debug.js (-3 / +3 lines)
Lines 128-134 YAHOO.namespace = function() { Link Here
128
 * @param  {String}  cat  The log category for the message.  Default
128
 * @param  {String}  cat  The log category for the message.  Default
129
 *                        categories are "info", "warn", "error", time".
129
 *                        categories are "info", "warn", "error", time".
130
 *                        Custom categories can be used as well. (opt)
130
 *                        Custom categories can be used as well. (opt)
131
 * @param  {String}  src  The source of the the message (opt)
131
 * @param  {String}  src  The source of the message (opt)
132
 * @return {Boolean}      True if the log operation was successful.
132
 * @return {Boolean}      True if the log operation was successful.
133
 */
133
 */
134
YAHOO.log = function(msg, cat, src) {
134
YAHOO.log = function(msg, cat, src) {
Lines 1618-1624 YAHOO.util.Get = function() { Link Here
1618
        TIMEOUT: 2000,
1618
        TIMEOUT: 2000,
1619
        
1619
        
1620
        /**
1620
        /**
1621
         * Called by the the helper for detecting script load in Safari
1621
         * Called by the helper for detecting script load in Safari
1622
         * @method _finalize
1622
         * @method _finalize
1623
         * @param id {string} the transaction id
1623
         * @param id {string} the transaction id
1624
         * @private
1624
         * @private
Lines 2462-2468 YAHOO.register("get", YAHOO.util.Get, {version: "2.8.0r4", build: "2449"}); Link Here
2462
        this.comboBase = YUI.info.comboBase;
2462
        this.comboBase = YUI.info.comboBase;
2463
2463
2464
        /**
2464
        /**
2465
         * If configured, YUI will use the the combo handler on the
2465
         * If configured, YUI will use the combo handler on the
2466
         * Yahoo! CDN to pontentially reduce the number of http requests
2466
         * Yahoo! CDN to pontentially reduce the number of http requests
2467
         * required.
2467
         * required.
2468
         * @property combine
2468
         * @property combine
(-)a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/yuiloader/yuiloader.js (-3 / +3 lines)
Lines 128-134 YAHOO.namespace = function() { Link Here
128
 * @param  {String}  cat  The log category for the message.  Default
128
 * @param  {String}  cat  The log category for the message.  Default
129
 *                        categories are "info", "warn", "error", time".
129
 *                        categories are "info", "warn", "error", time".
130
 *                        Custom categories can be used as well. (opt)
130
 *                        Custom categories can be used as well. (opt)
131
 * @param  {String}  src  The source of the the message (opt)
131
 * @param  {String}  src  The source of the message (opt)
132
 * @return {Boolean}      True if the log operation was successful.
132
 * @return {Boolean}      True if the log operation was successful.
133
 */
133
 */
134
YAHOO.log = function(msg, cat, src) {
134
YAHOO.log = function(msg, cat, src) {
Lines 1618-1624 YAHOO.util.Get = function() { Link Here
1618
        TIMEOUT: 2000,
1618
        TIMEOUT: 2000,
1619
        
1619
        
1620
        /**
1620
        /**
1621
         * Called by the the helper for detecting script load in Safari
1621
         * Called by the helper for detecting script load in Safari
1622
         * @method _finalize
1622
         * @method _finalize
1623
         * @param id {string} the transaction id
1623
         * @param id {string} the transaction id
1624
         * @private
1624
         * @private
Lines 2462-2468 YAHOO.register("get", YAHOO.util.Get, {version: "2.8.0r4", build: "2449"}); Link Here
2462
        this.comboBase = YUI.info.comboBase;
2462
        this.comboBase = YUI.info.comboBase;
2463
2463
2464
        /**
2464
        /**
2465
         * If configured, YUI will use the the combo handler on the
2465
         * If configured, YUI will use the combo handler on the
2466
         * Yahoo! CDN to pontentially reduce the number of http requests
2466
         * Yahoo! CDN to pontentially reduce the number of http requests
2467
         * required.
2467
         * required.
2468
         * @property combine
2468
         * @property combine
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/manage-marc-import.tt (-1 / +1 lines)
Lines 40-46 Link Here
40
</li>
40
</li>
41
</ul>
41
</ul>
42
42
43
<p><strong>See the full documentation for the the Managing Staged MARC Records in the <a href="http://manual.koha-community.org/3.6/en/managestaged.html">manual</a> (online).</strong></p>
43
<p><strong>See the full documentation for the Managing Staged MARC Records in the <a href="http://manual.koha-community.org/3.6/en/managestaged.html">manual</a> (online).</strong></p>
44
44
45
[% INCLUDE 'help-bottom.inc' %]
45
[% INCLUDE 'help-bottom.inc' %]
46
46
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/overduerules.tt (-1 / +1 lines)
Lines 41-47 Link Here
41
41
42
<p>Sincerely, Library Staff</p>
42
<p>Sincerely, Library Staff</p>
43
43
44
<p><strong>See the full documentation for the the Overdue Notice/Status Triggers in the <a href="http://manual.koha-community.org/3.6/en/noticetriggers.html">manual</a> (online).</strong></p>
44
<p><strong>See the full documentation for the Overdue Notice/Status Triggers in the <a href="http://manual.koha-community.org/3.6/en/noticetriggers.html">manual</a> (online).</strong></p>
45
45
46
[% INCLUDE 'help-bottom.inc' %]
46
[% INCLUDE 'help-bottom.inc' %]
47
47
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/picture-upload.tt (-2 / +2 lines)
Lines 20-25 Link Here
20
20
21
<p style="color:#990000;">Important: There is a limit of 520K on the size of the picture uploaded and it is recommended that the image be 200x300 pixels, but smaller images will work as well.</p>
21
<p style="color:#990000;">Important: There is a limit of 520K on the size of the picture uploaded and it is recommended that the image be 200x300 pixels, but smaller images will work as well.</p>
22
22
23
<p><strong>See the full documentation for the the Patron Image Uploader in the <a href="http://manual.koha-community.org/3.6/en/uploadpatronimages.html">manual</a> (online).</strong></p>
23
<p><strong>See the full documentation for the Patron Image Uploader in the <a href="http://manual.koha-community.org/3.6/en/uploadpatronimages.html">manual</a> (online).</strong></p>
24
24
25
[% INCLUDE 'help-bottom.inc' %]
25
[% INCLUDE 'help-bottom.inc' %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/scheduler.tt (-2 / +2 lines)
Lines 23-28 Link Here
23
23
24
<p>Task scheduler will not work if the user the web server runs as doesn't have the permission to use it. To find out if the right user has the permissions necessary, check /etc/at.allow to see what users are in it. If you don't have that file, check etc/at.deny. If at.deny exists but is blank, then every user can use it. Talk to your system admin about adding the user to the right place to make the task scheduler work.</p>
24
<p>Task scheduler will not work if the user the web server runs as doesn't have the permission to use it. To find out if the right user has the permissions necessary, check /etc/at.allow to see what users are in it. If you don't have that file, check etc/at.deny. If at.deny exists but is blank, then every user can use it. Talk to your system admin about adding the user to the right place to make the task scheduler work.</p>
25
25
26
<p><strong>See the full documentation for the the Task Scheduler in the <a href="http://manual.koha-community.org/3.6/en/taskscheduler.html">manual</a> (online).</strong></p>
26
<p><strong>See the full documentation for the Task Scheduler in the <a href="http://manual.koha-community.org/3.6/en/taskscheduler.html">manual</a> (online).</strong></p>
27
27
28
[% INCLUDE 'help-bottom.inc' %]
28
[% INCLUDE 'help-bottom.inc' %]
(-)a/kohaversion.pl (-1 / +1 lines)
Lines 6-12 Link Here
6
6
7
the kohaversion is divided in 4 parts :
7
the kohaversion is divided in 4 parts :
8
 - #1 : the major number. 3 atm
8
 - #1 : the major number. 3 atm
9
 - #2 : the functionnal release. 00 atm
9
 - #2 : the functional release. 00 atm
10
 - #3 : the subnumber, moves only on a public release
10
 - #3 : the subnumber, moves only on a public release
11
 - #4 : the developer version. The 4th number is the database subversion.
11
 - #4 : the developer version. The 4th number is the database subversion.
12
        used by developers when the database changes. updatedatabase take care of the changes itself
12
        used by developers when the database changes. updatedatabase take care of the changes itself
(-)a/misc/migration_tools/build6xx.pl (-1 / +1 lines)
Lines 234-240 while (my ($bibid) = $sth->fetchrow) { Link Here
234
                    }
234
                    }
235
                }
235
                }
236
                if ($#x >4) {
236
                if ($#x >4) {
237
                    # too many $x, not handled, warn the developper that tries to migrate
237
                    # too many $x, not handled, warn the developer that tries to migrate
238
                    print "warning there is ".$#x.'$x values';
238
                    print "warning there is ".$#x.'$x values';
239
                }
239
                }
240
            }
240
            }
(-)a/misc/release_notes/release_notes_200RC2.txt (-1 / +1 lines)
Lines 6-12 If you want to adopt Koha, please do, but you're warned that this release candid Link Here
6
If you test it and let us know about any we haven't seen yet, it will help us to fix them.
6
If you test it and let us know about any we haven't seen yet, it will help us to fix them.
7
7
8
The 2.0.x series version is "feature freezed". Only bugs or minor changes will be made in this branch.
8
The 2.0.x series version is "feature freezed". Only bugs or minor changes will be made in this branch.
9
The koha team is already working on the 2.2.x version. In CVS (HEAD branch), developpers can already get 1st draft of a working z3950 server.
9
The koha team is already working on the 2.2.x version. In CVS (HEAD branch), developers can already get 1st draft of a working z3950 server.
10
10
11
11
12
INSTALLATION
12
INSTALLATION
(-)a/misc/release_notes/release_notes_200RC3.txt (-1 / +1 lines)
Lines 6-12 If you want to adopt Koha, please do, but you're warned that this release candid Link Here
6
If you test it and let us know about any we haven't seen yet, it will help us to fix them.
6
If you test it and let us know about any we haven't seen yet, it will help us to fix them.
7
7
8
The 2.0.x series version is "feature freezed". Only bugs or minor changes will be made in this branch.
8
The 2.0.x series version is "feature freezed". Only bugs or minor changes will be made in this branch.
9
The koha team is already working on the 2.2.x version. In CVS (HEAD branch), developpers can already get 1st draft of a working z3950 server.
9
The koha team is already working on the 2.2.x version. In CVS (HEAD branch), developers can already get 1st draft of a working z3950 server.
10
10
11
11
12
INSTALLATION
12
INSTALLATION
(-)a/misc/release_notes/release_notes_210.txt (-4 / +4 lines)
Lines 48-54 WHAT'S NEW Link Here
48
1 Auto installer
48
1 Auto installer
49
****************
49
****************
50
If you install koha with ./install -i /path/to/auto_install_file, then Koha will be installed almost without question.
50
If you install koha with ./install -i /path/to/auto_install_file, then Koha will be installed almost without question.
51
A very usefull feature for developpers that want to install/uninstall Koha quite often.
51
A very usefull feature for developers that want to install/uninstall Koha quite often.
52
A sample of auto_install_file is provided in misc/auto_install_file.
52
A sample of auto_install_file is provided in misc/auto_install_file.
53
53
54
2 Uninstaller
54
2 Uninstaller
Lines 102-108 Circulation has been heavily rewritten... Link Here
102
You can define rules like : "up to 2 CDROM, up to 10 books, max 10 items".
102
You can define rules like : "up to 2 CDROM, up to 10 books, max 10 items".
103
* circulation works now like this (internally) :
103
* circulation works now like this (internally) :
104
- get borrower cardnumber & item number
104
- get borrower cardnumber & item number
105
- check "can book be issued". This sub (canbookbeissued) checks everything. For each problem, 2 arrays can be set up : MUSTCONFIRM and IMPOSSIBLE. MUSTCONFIRM entries needs a librarian confirmation before effective issuing. IMPOSSIBLE entries makes the issue impossible. It's now very easy to alter issuing rules for a given library (with a developper), as every test is heavily documented & in  a single sub.
105
- check "can book be issued". This sub (canbookbeissued) checks everything. For each problem, 2 arrays can be set up : MUSTCONFIRM and IMPOSSIBLE. MUSTCONFIRM entries needs a librarian confirmation before effective issuing. IMPOSSIBLE entries makes the issue impossible. It's now very easy to alter issuing rules for a given library (with a developer), as every test is heavily documented & in  a single sub.
106
- if >=1 IMPOSSIBLE entry : issuing is impossible, show why.
106
- if >=1 IMPOSSIBLE entry : issuing is impossible, show why.
107
- if >=1 MUSTCONFIRM : show problems, and ask for confirmation.
107
- if >=1 MUSTCONFIRM : show problems, and ask for confirmation.
108
- if both are empty : issue.
108
- if both are empty : issue.
Lines 139-145 Should be used for MARC21 with some work. We need volunteers here. Link Here
139
==============
139
==============
140
HELP NEEDED
140
HELP NEEDED
141
==============
141
==============
142
We alway accept new developpers wanting to code or test features of the Roadmap.
142
We alway accept new developers wanting to code or test features of the Roadmap.
143
We still can accept features not in the RoadMap if :
143
We still can accept features not in the RoadMap if :
144
- strongly supported/coded by someone.
144
- strongly supported/coded by someone.
145
- compatible with other features.
145
- compatible with other features.
Lines 167-170 Frameworks have to be defined to be choosable at installation stage. The idea be Link Here
167
Same as for MARC21 frameworks. Except we don't have authority structure for MARC21 (we have for UNIMARC in french, thanks to ENSMP)
167
Same as for MARC21 frameworks. Except we don't have authority structure for MARC21 (we have for UNIMARC in french, thanks to ENSMP)
168
168
169
* provide ISBD for MARC21 
169
* provide ISBD for MARC21 
170
(ISBD for UNIMARC is being done, thanks to doXulting)
170
(ISBD for UNIMARC is being done, thanks to doXulting)
(-)a/misc/release_notes/release_notes_211.txt (-1 / +1 lines)
Lines 61-64 The next release will probably be 2.2RC1. Link Here
61
It should contains :
61
It should contains :
62
* bugfixes.
62
* bugfixes.
63
* some new code for a better LDAP handling (automatic creation of the borrower if it does not exist, getting informations from LDAP directory)
63
* some new code for a better LDAP handling (automatic creation of the borrower if it does not exist, getting informations from LDAP directory)
64
* a barcode generator ! it's a new feature that should be commited by a new developper coming from south america (argentina). I've seen the code, it's clean & nice. Just a new dependencay, for PDF generating. Should be non mandatory for ppl that don't want to print barcodes.
64
* a barcode generator ! it's a new feature that should be commited by a new developer coming from south america (argentina). I've seen the code, it's clean & nice. Just a new dependencay, for PDF generating. Should be non mandatory for ppl that don't want to print barcodes.
(-)a/misc/release_notes/release_notes_220.txt (-2 / +2 lines)
Lines 4-10 RELEASE NOTES Link Here
4
Koha is the 1st Open-Source Integrated Library System.
4
Koha is the 1st Open-Source Integrated Library System.
5
Released at first in New zealand, in 2000 januaray, it is maintained by a team of volunteers from around the globe, the Koha system is a full catalogue, opac, circulation and acquisitions system.
5
Released at first in New zealand, in 2000 januaray, it is maintained by a team of volunteers from around the globe, the Koha system is a full catalogue, opac, circulation and acquisitions system.
6
6
7
Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developpers (excluding translators).
7
Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developers (excluding translators).
8
8
9
With the 2.2 version, Koha is now a mature product, with a lot of nice features. It's used in more than 50 libraries, from all kinds (public, schools, search, religious...), of all size (from 1 to 8 branches, from 1000 to 300 000 items).
9
With the 2.2 version, Koha is now a mature product, with a lot of nice features. It's used in more than 50 libraries, from all kinds (public, schools, search, religious...), of all size (from 1 to 8 branches, from 1000 to 300 000 items).
10
10
Lines 196-202 General : Link Here
196
* (almost) complete rewrite of librarian GUI : now Koha uses CSS, and is easier to use. However, users of Koha 2.0.0 won't be lost, as the general organisation of the product has not changed.
196
* (almost) complete rewrite of librarian GUI : now Koha uses CSS, and is easier to use. However, users of Koha 2.0.0 won't be lost, as the general organisation of the product has not changed.
197
* Online Help : an online help is available everywhere in the librarian interface. It's complete in the parameters section of Koha and for new features. It will be completed for the rest of the product.
197
* Online Help : an online help is available everywhere in the librarian interface. It's complete in the parameters section of Koha and for new features. It will be completed for the rest of the product.
198
* Better LDAP suport : Koha 2.2 can be "connected" to a LDAP server and get all borrower informations from there (including borrower category where applicable). However, to avoid problems for libraries without LDAP server, the LDAP features have been stored in modules/C4/Auth_with_ldap.pm file. The standard Auth.pm don't use it. If you want LDAP, just perldoc Auth_with_ldap.pm and manually tune your Auth package !
198
* Better LDAP suport : Koha 2.2 can be "connected" to a LDAP server and get all borrower informations from there (including borrower category where applicable). However, to avoid problems for libraries without LDAP server, the LDAP features have been stored in modules/C4/Auth_with_ldap.pm file. The standard Auth.pm don't use it. If you want LDAP, just perldoc Auth_with_ldap.pm and manually tune your Auth package !
199
* Auto installer : if you install koha with ./install -i /path/to/auto_install_file, then Koha will be installed almost without question. A very usefull feature for developpers that want to install/uninstall Koha quite often. A sample of auto_install_file is provided in misc/auto_install_file.
199
* Auto installer : if you install koha with ./install -i /path/to/auto_install_file, then Koha will be installed almost without question. A very usefull feature for developers that want to install/uninstall Koha quite often. A sample of auto_install_file is provided in misc/auto_install_file.
200
* Uninstaller : run misc/uninstall.pl, provide the mysql root password. that's all. Koha is completely deleted and can be reinstalled. With the previous feature, it's a very nice solution for test platform.
200
* Uninstaller : run misc/uninstall.pl, provide the mysql root password. that's all. Koha is completely deleted and can be reinstalled. With the previous feature, it's a very nice solution for test platform.
201
* mod_perl : Koha should now work under mod_perl, that gives a big performance boost (Release Manager don't use mod_perl. fixes comes from A. Tarallo, Argentina, that ensure Koha works fine with mod_perl with the patches applied)
201
* mod_perl : Koha should now work under mod_perl, that gives a big performance boost (Release Manager don't use mod_perl. fixes comes from A. Tarallo, Argentina, that ensure Koha works fine with mod_perl with the patches applied)
202
* Nelsonville have shared their templates. They are available as NPL theme.
202
* Nelsonville have shared their templates. They are available as NPL theme.
(-)a/misc/release_notes/release_notes_221.txt (-2 / +2 lines)
Lines 4-10 RELEASE NOTES Link Here
4
Koha is the 1st Open-Source Integrated Library System.
4
Koha is the 1st Open-Source Integrated Library System.
5
Released at first in New zealand, in 2000 januaray, it is maintained by a team of volunteers from around the globe, the Koha system is a full catalogue, opac, circulation and acquisitions system.
5
Released at first in New zealand, in 2000 januaray, it is maintained by a team of volunteers from around the globe, the Koha system is a full catalogue, opac, circulation and acquisitions system.
6
6
7
Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developpers (excluding translators).
7
Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developers (excluding translators).
8
8
9
With the 2.2 version, Koha is now a mature product, with a lot of nice features. It's used in more than 50 libraries, from all kinds (public, schools, search, religious...), of all size (from 1 to 8 branches, from 1000 to 300 000 items).
9
With the 2.2 version, Koha is now a mature product, with a lot of nice features. It's used in more than 50 libraries, from all kinds (public, schools, search, religious...), of all size (from 1 to 8 branches, from 1000 to 300 000 items).
10
10
Lines 215-221 General : Link Here
215
* (almost) complete rewrite of librarian GUI : now Koha uses CSS, and is easier to use. However, users of Koha 2.0.0 won't be lost, as the general organisation of the product has not changed.
215
* (almost) complete rewrite of librarian GUI : now Koha uses CSS, and is easier to use. However, users of Koha 2.0.0 won't be lost, as the general organisation of the product has not changed.
216
* Online Help : an online help is available everywhere in the librarian interface. It's complete in the parameters section of Koha and for new features. It will be completed for the rest of the product.
216
* Online Help : an online help is available everywhere in the librarian interface. It's complete in the parameters section of Koha and for new features. It will be completed for the rest of the product.
217
* Better LDAP suport : Koha 2.2 can be "connected" to a LDAP server and get all borrower informations from there (including borrower category where applicable). However, to avoid problems for libraries without LDAP server, the LDAP features have been stored in modules/C4/Auth_with_ldap.pm file. The standard Auth.pm don't use it. If you want LDAP, just perldoc Auth_with_ldap.pm and manually tune your Auth package !
217
* Better LDAP suport : Koha 2.2 can be "connected" to a LDAP server and get all borrower informations from there (including borrower category where applicable). However, to avoid problems for libraries without LDAP server, the LDAP features have been stored in modules/C4/Auth_with_ldap.pm file. The standard Auth.pm don't use it. If you want LDAP, just perldoc Auth_with_ldap.pm and manually tune your Auth package !
218
* Auto installer : if you install koha with ./install -i /path/to/auto_install_file, then Koha will be installed almost without question. A very usefull feature for developpers that want to install/uninstall Koha quite often. A sample of auto_install_file is provided in misc/auto_install_file.
218
* Auto installer : if you install koha with ./install -i /path/to/auto_install_file, then Koha will be installed almost without question. A very usefull feature for developers that want to install/uninstall Koha quite often. A sample of auto_install_file is provided in misc/auto_install_file.
219
* Uninstaller : run misc/uninstall.pl, provide the mysql root password. that's all. Koha is completely deleted and can be reinstalled. With the previous feature, it's a very nice solution for test platform.
219
* Uninstaller : run misc/uninstall.pl, provide the mysql root password. that's all. Koha is completely deleted and can be reinstalled. With the previous feature, it's a very nice solution for test platform.
220
* mod_perl : Koha should now work under mod_perl, that gives a big performance boost (Release Manager don't use mod_perl. fixes comes from A. Tarallo, Argentina, that ensure Koha works fine with mod_perl with the patches applied)
220
* mod_perl : Koha should now work under mod_perl, that gives a big performance boost (Release Manager don't use mod_perl. fixes comes from A. Tarallo, Argentina, that ensure Koha works fine with mod_perl with the patches applied)
221
* Nelsonville have shared their templates. They are available as NPL theme.
221
* Nelsonville have shared their templates. They are available as NPL theme.
(-)a/misc/release_notes/release_notes_222.txt (-2 / +2 lines)
Lines 4-10 RELEASE NOTES Link Here
4
Koha is the 1st Open-Source Integrated Library System.
4
Koha is the 1st Open-Source Integrated Library System.
5
Released at first in New zealand, in 2000 januaray, it is maintained by a team of volunteers from around the globe, the Koha system is a full catalogue, opac, circulation and acquisitions system.
5
Released at first in New zealand, in 2000 januaray, it is maintained by a team of volunteers from around the globe, the Koha system is a full catalogue, opac, circulation and acquisitions system.
6
6
7
Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developpers (excluding translators).
7
Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developers (excluding translators).
8
8
9
With the 2.2 version, Koha is now a mature product, with a lot of nice features. It's used in more than 50 libraries, from all kinds (public, schools, search, religious...), of all size (from 1 to 8 branches, from 1000 to 300 000 items).
9
With the 2.2 version, Koha is now a mature product, with a lot of nice features. It's used in more than 50 libraries, from all kinds (public, schools, search, religious...), of all size (from 1 to 8 branches, from 1000 to 300 000 items).
10
10
Lines 361-367 General : Link Here
361
* (almost) complete rewrite of librarian GUI : now Koha uses CSS, and is easier to use. However, users of Koha 2.0.0 won't be lost, as the general organisation of the product has not changed.
361
* (almost) complete rewrite of librarian GUI : now Koha uses CSS, and is easier to use. However, users of Koha 2.0.0 won't be lost, as the general organisation of the product has not changed.
362
* Online Help : an online help is available everywhere in the librarian interface. It's complete in the parameters section of Koha and for new features. It will be completed for the rest of the product.
362
* Online Help : an online help is available everywhere in the librarian interface. It's complete in the parameters section of Koha and for new features. It will be completed for the rest of the product.
363
* Better LDAP suport : Koha 2.2 can be "connected" to a LDAP server and get all borrower informations from there (including borrower category where applicable). However, to avoid problems for libraries without LDAP server, the LDAP features have been stored in modules/C4/Auth_with_ldap.pm file. The standard Auth.pm don't use it. If you want LDAP, just perldoc Auth_with_ldap.pm and manually tune your Auth package !
363
* Better LDAP suport : Koha 2.2 can be "connected" to a LDAP server and get all borrower informations from there (including borrower category where applicable). However, to avoid problems for libraries without LDAP server, the LDAP features have been stored in modules/C4/Auth_with_ldap.pm file. The standard Auth.pm don't use it. If you want LDAP, just perldoc Auth_with_ldap.pm and manually tune your Auth package !
364
* Auto installer : if you install koha with ./install -i /path/to/auto_install_file, then Koha will be installed almost without question. A very usefull feature for developpers that want to install/uninstall Koha quite often. A sample of auto_install_file is provided in misc/auto_install_file.
364
* Auto installer : if you install koha with ./install -i /path/to/auto_install_file, then Koha will be installed almost without question. A very usefull feature for developers that want to install/uninstall Koha quite often. A sample of auto_install_file is provided in misc/auto_install_file.
365
* Uninstaller : run misc/uninstall.pl, provide the mysql root password. that's all. Koha is completely deleted and can be reinstalled. With the previous feature, it's a very nice solution for test platform.
365
* Uninstaller : run misc/uninstall.pl, provide the mysql root password. that's all. Koha is completely deleted and can be reinstalled. With the previous feature, it's a very nice solution for test platform.
366
* mod_perl : Koha should now work under mod_perl, that gives a big performance boost (Release Manager don't use mod_perl. fixes comes from A. Tarallo, Argentina, that ensure Koha works fine with mod_perl with the patches applied)
366
* mod_perl : Koha should now work under mod_perl, that gives a big performance boost (Release Manager don't use mod_perl. fixes comes from A. Tarallo, Argentina, that ensure Koha works fine with mod_perl with the patches applied)
367
* Nelsonville have shared their templates. They are available as NPL theme.
367
* Nelsonville have shared their templates. They are available as NPL theme.
(-)a/misc/release_notes/release_notes_223.txt (-2 / +2 lines)
Lines 4-10 RELEASE NOTES Link Here
4
Koha is the 1st Open-Source Integrated Library System.
4
Koha is the 1st Open-Source Integrated Library System.
5
Released at first in New zealand, in 2000 januaray, it is maintained by a team of volunteers from around the globe, the Koha system is a full catalogue, opac, circulation and acquisitions system.
5
Released at first in New zealand, in 2000 januaray, it is maintained by a team of volunteers from around the globe, the Koha system is a full catalogue, opac, circulation and acquisitions system.
6
6
7
Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developpers (excluding translators).
7
Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developers (excluding translators).
8
8
9
With the 2.2 version, Koha is now a mature product, with a lot of nice features. It's used in more than 50 libraries, from all kinds (public, schools, search, religious...), of all size (from 1 to 8 branches, from 1000 to 300 000 items).
9
With the 2.2 version, Koha is now a mature product, with a lot of nice features. It's used in more than 50 libraries, from all kinds (public, schools, search, religious...), of all size (from 1 to 8 branches, from 1000 to 300 000 items).
10
10
Lines 408-414 General : Link Here
408
* (almost) complete rewrite of librarian GUI : now Koha uses CSS, and is easier to use. However, users of Koha 2.0.0 won't be lost, as the general organisation of the product has not changed.
408
* (almost) complete rewrite of librarian GUI : now Koha uses CSS, and is easier to use. However, users of Koha 2.0.0 won't be lost, as the general organisation of the product has not changed.
409
* Online Help : an online help is available everywhere in the librarian interface. It's complete in the parameters section of Koha and for new features. It will be completed for the rest of the product.
409
* Online Help : an online help is available everywhere in the librarian interface. It's complete in the parameters section of Koha and for new features. It will be completed for the rest of the product.
410
* Better LDAP suport : Koha 2.2 can be "connected" to a LDAP server and get all borrower informations from there (including borrower category where applicable). However, to avoid problems for libraries without LDAP server, the LDAP features have been stored in modules/C4/Auth_with_ldap.pm file. The standard Auth.pm don't use it. If you want LDAP, just perldoc Auth_with_ldap.pm and manually tune your Auth package !
410
* Better LDAP suport : Koha 2.2 can be "connected" to a LDAP server and get all borrower informations from there (including borrower category where applicable). However, to avoid problems for libraries without LDAP server, the LDAP features have been stored in modules/C4/Auth_with_ldap.pm file. The standard Auth.pm don't use it. If you want LDAP, just perldoc Auth_with_ldap.pm and manually tune your Auth package !
411
* Auto installer : if you install koha with ./install -i /path/to/auto_install_file, then Koha will be installed almost without question. A very usefull feature for developpers that want to install/uninstall Koha quite often. A sample of auto_install_file is provided in misc/auto_install_file.
411
* Auto installer : if you install koha with ./install -i /path/to/auto_install_file, then Koha will be installed almost without question. A very usefull feature for developers that want to install/uninstall Koha quite often. A sample of auto_install_file is provided in misc/auto_install_file.
412
* Uninstaller : run misc/uninstall.pl, provide the mysql root password. that's all. Koha is completely deleted and can be reinstalled. With the previous feature, it's a very nice solution for test platform.
412
* Uninstaller : run misc/uninstall.pl, provide the mysql root password. that's all. Koha is completely deleted and can be reinstalled. With the previous feature, it's a very nice solution for test platform.
413
* mod_perl : Koha should now work under mod_perl, that gives a big performance boost (Release Manager don't use mod_perl. fixes comes from A. Tarallo, Argentina, that ensure Koha works fine with mod_perl with the patches applied)
413
* mod_perl : Koha should now work under mod_perl, that gives a big performance boost (Release Manager don't use mod_perl. fixes comes from A. Tarallo, Argentina, that ensure Koha works fine with mod_perl with the patches applied)
414
* Nelsonville have shared their templates. They are available as NPL theme.
414
* Nelsonville have shared their templates. They are available as NPL theme.
(-)a/misc/release_notes/release_notes_22RC1.txt (-1 / +1 lines)
Lines 5-11 Welcome to the 1st Release Candidate of the 2.2 version of Koha. Link Here
5
Koha is the 1st Open-Source Integrated Library System.
5
Koha is the 1st Open-Source Integrated Library System.
6
Released at first in New zealand, in 2000 januaray, it is maintained by a team of volunteers from around the globe, the Koha system is a full catalogue, opac, circulation and acquisitions system.
6
Released at first in New zealand, in 2000 januaray, it is maintained by a team of volunteers from around the globe, the Koha system is a full catalogue, opac, circulation and acquisitions system.
7
7
8
Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developpers (excluding translators !).
8
Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developers (excluding translators !).
9
9
10
With the 2.2 version, Koha is now a mature product, with a lot of nice features. It's used in more than 50 libraries, from all kinds (public, schools, search, religious...), of all size (from 1 to 8 branches, from 1000 to 300 000 items).
10
With the 2.2 version, Koha is now a mature product, with a lot of nice features. It's used in more than 50 libraries, from all kinds (public, schools, search, religious...), of all size (from 1 to 8 branches, from 1000 to 300 000 items).
11
11
(-)a/misc/release_notes/release_notes_22RC2.txt (-1 / +1 lines)
Lines 4-10 RELEASE NOTES Link Here
4
Koha is the 1st Open-Source Integrated Library System.
4
Koha is the 1st Open-Source Integrated Library System.
5
Released at first in New zealand, in 2000 januaray, it is maintained by a team of volunteers from around the globe, the Koha system is a full catalogue, opac, circulation and acquisitions system.
5
Released at first in New zealand, in 2000 januaray, it is maintained by a team of volunteers from around the globe, the Koha system is a full catalogue, opac, circulation and acquisitions system.
6
6
7
Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developpers (excluding translators !).
7
Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developers (excluding translators !).
8
8
9
With the 2.2 version, Koha is now a mature product, with a lot of nice features. It's used in more than 50 libraries, from all kinds (public, schools, search, religious...), of all size (from 1 to 8 branches, from 1000 to 300 000 items).
9
With the 2.2 version, Koha is now a mature product, with a lot of nice features. It's used in more than 50 libraries, from all kinds (public, schools, search, religious...), of all size (from 1 to 8 branches, from 1000 to 300 000 items).
10
10
(-)a/misc/release_notes/release_notes_22RC3.txt (-1 / +1 lines)
Lines 4-10 RELEASE NOTES Link Here
4
Koha is the 1st Open-Source Integrated Library System.
4
Koha is the 1st Open-Source Integrated Library System.
5
Released at first in New zealand, in 2000 januaray, it is maintained by a team of volunteers from around the globe, the Koha system is a full catalogue, opac, circulation and acquisitions system.
5
Released at first in New zealand, in 2000 januaray, it is maintained by a team of volunteers from around the globe, the Koha system is a full catalogue, opac, circulation and acquisitions system.
6
6
7
Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developpers (excluding translators !).
7
Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developers (excluding translators !).
8
8
9
With the 2.2 version, Koha is now a mature product, with a lot of nice features. It's used in more than 50 libraries, from all kinds (public, schools, search, religious...), of all size (from 1 to 8 branches, from 1000 to 300 000 items).
9
With the 2.2 version, Koha is now a mature product, with a lot of nice features. It's used in more than 50 libraries, from all kinds (public, schools, search, religious...), of all size (from 1 to 8 branches, from 1000 to 300 000 items).
10
10
(-)a/misc/release_notes/release_notes_22RC4.txt (-1 / +1 lines)
Lines 4-10 RELEASE NOTES Link Here
4
Koha is the 1st Open-Source Integrated Library System.
4
Koha is the 1st Open-Source Integrated Library System.
5
Released at first in New zealand, in 2000 januaray, it is maintained by a team of volunteers from around the globe, the Koha system is a full catalogue, opac, circulation and acquisitions system.
5
Released at first in New zealand, in 2000 januaray, it is maintained by a team of volunteers from around the globe, the Koha system is a full catalogue, opac, circulation and acquisitions system.
6
6
7
Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developpers (excluding translators).
7
Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developers (excluding translators).
8
8
9
With the 2.2 version, Koha is now a mature product, with a lot of nice features. It's used in more than 50 libraries, from all kinds (public, schools, search, religious...), of all size (from 1 to 8 branches, from 1000 to 300 000 items).
9
With the 2.2 version, Koha is now a mature product, with a lot of nice features. It's used in more than 50 libraries, from all kinds (public, schools, search, religious...), of all size (from 1 to 8 branches, from 1000 to 300 000 items).
10
10
(-)a/misc/release_notes/release_notes_22RC5.txt (-2 / +1 lines)
Lines 4-10 RELEASE NOTES Link Here
4
Koha is the 1st Open-Source Integrated Library System.
4
Koha is the 1st Open-Source Integrated Library System.
5
Released at first in New zealand, in 2000 januaray, it is maintained by a team of volunteers from around the globe, the Koha system is a full catalogue, opac, circulation and acquisitions system.
5
Released at first in New zealand, in 2000 januaray, it is maintained by a team of volunteers from around the globe, the Koha system is a full catalogue, opac, circulation and acquisitions system.
6
6
7
Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developpers (excluding translators).
7
Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developers (excluding translators).
8
8
9
With the 2.2 version, Koha is now a mature product, with a lot of nice features. It's used in more than 50 libraries, from all kinds (public, schools, search, religious...), of all size (from 1 to 8 branches, from 1000 to 300 000 items).
9
With the 2.2 version, Koha is now a mature product, with a lot of nice features. It's used in more than 50 libraries, from all kinds (public, schools, search, religious...), of all size (from 1 to 8 branches, from 1000 to 300 000 items).
10
10
11
- 

Return to bug 7356