Show
Ignore:
Timestamp:
04/21/08 12:54:46 (6 months ago)
Author:
erickson
Message:

Merged revisions 9395-9396 via svnmerge from
svn://svn.open-ils.org/ILS/trunk

........

r9395 | erickson | 2008-04-21 11:42:10 -0400 (Mon, 21 Apr 2008) | 1 line


added support for for truncation attribute to z39 queries. Thanks, James!

........

r9396 | erickson | 2008-04-21 12:51:44 -0400 (Mon, 21 Apr 2008) | 1 line


added widget directory and new org unit filtering select widget

........

Location:
branches/acq-experiment
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/acq-experiment

    • Property svnmerge-integrated changed from /trunk:1-9392 to /trunk:1-9396
  • branches/acq-experiment/Open-ILS/src/perlmods/OpenILS/Application/Search/Z3950.pm

    r9385 r9397  
    330330                next unless ( exists $services{$service}->{attrs}->{$_} ); 
    331331                $str .= '@attr 1=' . $services{$service}->{attrs}->{$_}->{code} . # add the use attribute 
    332                         ' @attr 4=' . $services{$service}->{attrs}->{$_}->{format} . # add the structure attribute 
    333                         " \"" . $$hash{$_} . "\" "; # add the search term 
     332                        ' @attr 4=' . $services{$service}->{attrs}->{$_}->{format}; # add the structure attribute 
     333                if (exists $services{$service}->{attrs}->{$_}->{truncation}){ 
     334                        $str .= ' @attr 5=' . $services{$service}->{attrs}->{$_}->{truncation}; 
     335                } 
     336                $str .= " \"" . $$hash{$_} . "\" "; # add the search term 
    334337        } 
    335338        return $str;