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

(-)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 developper 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 developper 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 developper 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/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 (-3 / +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);
90
- 

Return to bug 7356