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

(-)a/C4/Breeding.pm (-1 / +1 lines)
Lines 363-369 sub _create_connection { Link Here
363
            #first remove surrounding spaces at comma and equals-sign
363
            #first remove surrounding spaces at comma and equals-sign
364
            s/^\s+|\s+$//g;
364
            s/^\s+|\s+$//g;
365
            my @temp= split '=', $_, 2;
365
            my @temp= split '=', $_, 2;
366
            @temp= map { s/^\s+|\s+$//g; $_; } @temp;
366
            @temp= map { my $c=$_; $c=~s/^\s+|\s+$//g; $c; } @temp;
367
            $option1->option( $temp[0] => $temp[1] ) if @temp;
367
            $option1->option( $temp[0] => $temp[1] ) if @temp;
368
        }
368
        }
369
    } elsif( $server->{servertype} eq 'zed' ) {
369
    } elsif( $server->{servertype} eq 'zed' ) {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/z3950servers.tt (-2 / +2 lines)
Lines 51-57 Link Here
51
        $("#host_docline").hide();
51
        $("#host_docline").hide();
52
        $("#database_docline").hide();
52
        $("#database_docline").hide();
53
        [% IF (server.servertype||type) == 'sru' %]
53
        [% IF (server.servertype||type) == 'sru' %]
54
            $("#host_label").hover( 
54
            $("#host_label").hover(
55
                function( event ) {
55
                function( event ) {
56
                    $("#host_docline").show();
56
                    $("#host_docline").show();
57
                },
57
                },
Lines 59-65 Link Here
59
                    $("#host_docline").hide();
59
                    $("#host_docline").hide();
60
                }
60
                }
61
            );
61
            );
62
            $("#database_label").hover( 
62
            $("#database_label").hover(
63
                function( event ) {
63
                function( event ) {
64
                    $("#database_docline").show();
64
                    $("#database_docline").show();
65
                },
65
                },
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/z3950servers.tt (-4 / +3 lines)
Lines 12-24 Link Here
12
12
13
<p>From the main Z39.50/SRU page, click 'New Z39.50 Server' or 'New SRU server'.</p>
13
<p>From the main Z39.50/SRU page, click 'New Z39.50 Server' or 'New SRU server'.</p>
14
<ul>
14
<ul>
15
	<li>'Server name' should be populated with a name that will help you identify the source (such as the library name).</li>
15
    <li>'Server name' should be populated with a name that will help you identify the source (such as the library name).</li>
16
	<li>'Hostname' will be the address to the Z39.50 target. For a SRU target, only enter the domain name here. (See example below.)</li>
16
    <li>'Hostname' will be the address to the Z39.50 target. For a SRU target, only enter the domain name here. (See example below.)</li>
17
	<li>'Port' tells Koha what port to listen on to get results from this target.</li>
17
	<li>'Port' tells Koha what port to listen on to get results from this target.</li>
18
    <li>'Database' is the name of the database for Z39.50 targets. For SRU targets enter the path name part of the URL (the local part following domain and port). See also example below.</li>
18
    <li>'Database' is the name of the database for Z39.50 targets. For SRU targets enter the path name part of the URL (the local part following domain and port). See also example below.</li>
19
	<li>'Userid' and 'Password' are only required for servers that are password protected.</li>
19
	<li>'Userid' and 'Password' are only required for servers that are password protected.</li>
20
	<li>Check the 'Checked' box if you want this target to always be selected by default.</li>
20
	<li>Check the 'Checked' box if you want this target to always be selected by default.</li>
21
	<li>'Rank' lets you enter where in the list you'd like this target to appear. If this is left blank the targets will be in alphabetical order.</li>
21
    <li>'Rank' lets you enter where in the list you'd like this target to appear. If this is left blank the targets will be in alphabetical order.</li>
22
	<li>'Syntax' is the MARC flavor you use.</li>
22
	<li>'Syntax' is the MARC flavor you use.</li>
23
	<li>'Encoding' tells the system how to read special characters.</li>
23
	<li>'Encoding' tells the system how to read special characters.</li>
24
	<li>'Timeout' is helpful for targets that take a long while. You can set the timeout so that it doesn't keep trying the target if results aren't found in a reasonable amount of time.</li>
24
	<li>'Timeout' is helpful for targets that take a long while. You can set the timeout so that it doesn't keep trying the target if results aren't found in a reasonable amount of time.</li>
25
- 

Return to bug 6536