[Koha-cvs] CVS: koha/value_builder unimarc_field_100.pl,NONE,1.1

Paul POULAIN tipaul at users.sourceforge.net
Tue Nov 12 16:58:45 CET 2002


Update of /cvsroot/koha/koha/value_builder
In directory usw-pr-cvs1:/tmp/cvs-serv9086/value_builder

Added Files:
	unimarc_field_100.pl 
Log Message:
road to 1.3.2 :
* many bugfixes
* adding value_builder : you can map a subfield in the marc_subfield_structure to a sub stored in "value_builder" directory. In this directory you can create screen used to build values with any method. In this commit is a 1st draft of the builder for 100$a unimarc french subfield, which is composed of 35 digits, with 12 differents values (only the 4th first are provided for instance)

--- NEW FILE ---
#!/usr/bin/perl

# written 10/5/2002 by Paul

# Copyright 2000-2002 Katipo Communications
#
# This file is part of Koha.
#
# Koha is free software; you can redistribute it and/or modify it under the
# terms of the GNU General Public License as published by the Free Software
# Foundation; either version 2 of the License, or (at your option) any later
# version.
#
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
# Suite 330, Boston, MA  02111-1307 USA

use strict;
use CGI;
use C4::Context;
use HTML::Template;
use C4::Search;
use C4::Output;

# get all the data ....
my %env;

my $input = new CGI;
my $index= $input->param('index');
my $result= $input->param('result');


my $dbh = C4::Context->dbh;

my $template = gettemplate("value_builder/unimarc_field_100.tmpl",0);
my $f1 = substr($result,0,8);
my $f2 = substr($result,8,1);
my $f3 = substr($result,9,4);
my $f4 = substr($result,13,4);
warn "f2 : $f2";
$template->param(index => $index,
						f1 => $f1,
						f3 => $f3,
						"f2$f2" => $f2,
						f4 => $f4);
print "Content-Type: text/html\n\n", $template->output;







More information about the Koha-cvs mailing list