From antoine at koha-fr.org Fri Sep 1 09:35:11 2006 From: antoine at koha-fr.org (Antoine Farnault) Date: Fri, 01 Sep 2006 07:35:11 +0000 Subject: [Koha-cvs] koha reservereport.xls [rel_3_0] Message-ID: CVSROOT: /sources/koha Module name: koha Branch: rel_3_0 Changes by: Antoine Farnault 06/09/01 07:35:11 Removed files: . : reservereport.xls Log message: this file is unused in rel_3_0. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/koha/reservereport.xls?cvsroot=koha&only_with_tag=rel_3_0&r1=1.1.1.1&r2=0 Patches: Index: reservereport.xls =================================================================== RCS file: reservereport.xls diff -N reservereport.xls --- reservereport.xls 19 Dec 2000 23:45:53 -0000 1.1.1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,27 +0,0 @@ -#!/usr/bin/perl - -#written 26/4/2000 -#script to display reports - -use C4::Stats; -use strict; -use CGI; -use C4::Output; - -my $input=new CGI; - -#print $input->header; - -#print startpage; -#print startmenu('report'); -#print center; -#print mktablehdr(); -my ($count,$data)=unfilledreserves(); -#print $count; -for (my $i=0;$i<$count;$i++){ -# print mktablerow(4,'white',"$data->[$i]->{'surname'}\, $data->[$i]->{'firstname'}",$data->[$i]->{'reservedate'},$data->[$i]->{'title'},"$data->[$i]->{'classification'}$data->[$i]->{'dewey'}"); - print "$data->[$i]->{'surname'}\'$data->[$i]->{'firstname'}\t$data->[$i]->{'reservedate'}\t$data->[$i]->{'title'}\t$data->[$i]->{'classification'}$data->[$i]->{'dewey'}$data->[$i]->{'subclass'}\n"; -} -#print mktableft(); -#print endmenu('report'); -#print endpage; From antoine at koha-fr.org Fri Sep 1 09:47:14 2006 From: antoine at koha-fr.org (Antoine Farnault) Date: Fri, 01 Sep 2006 07:47:14 +0000 Subject: [Koha-cvs] koha koha.conf.in koha.t search-test.pl sec/wri... [rel_3_0] Message-ID: CVSROOT: /sources/koha Module name: koha Branch: rel_3_0 Changes by: Antoine Farnault 06/09/01 07:47:14 Removed files: . : koha.conf.in koha.t search-test.pl sec : writeoff.pl Log message: these file aren't used in rel_3_0 CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/koha/koha.conf.in?cvsroot=koha&only_with_tag=rel_3_0&r1=1.1&r2=0 http://cvs.savannah.gnu.org/viewcvs/koha/koha.t?cvsroot=koha&only_with_tag=rel_3_0&r1=1.1&r2=0 http://cvs.savannah.gnu.org/viewcvs/koha/search-test.pl?cvsroot=koha&only_with_tag=rel_3_0&r1=1.1&r2=0 http://cvs.savannah.gnu.org/viewcvs/koha/sec/writeoff.pl?cvsroot=koha&only_with_tag=rel_3_0&r1=1.7&r2=0 Patches: Index: koha.conf.in =================================================================== RCS file: koha.conf.in diff -N koha.conf.in --- koha.conf.in 30 Oct 2002 14:06:54 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,16 +0,0 @@ -# koha.conf -# This is the Koha configuration file. - -# $Id: koha.conf.in,v 1.1 2002/10/30 14:06:54 arensb Exp $ - -# Database access -database = @db_name@ -hostname = @db_host@ -user = @db_user@ -pass = @db_passwd@ - -# XXX -#includes = -#opachtdocs = -#intrahtdocs = -#templatedirectory = Index: koha.t =================================================================== RCS file: koha.t diff -N koha.t --- koha.t 8 Apr 2002 23:44:43 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,14 +0,0 @@ -BEGIN { $| = 1; print "1..2\n"; } -END {print "not ok 1\n" unless $loaded;} -use C4::Koha; -$loaded = 1; -print "ok 1\n"; - -$date = "01/01/2002"; -$newdate = &slashifyDate("2002-01-01"); - -if ($date eq $newdate) { - print "ok 2\n"; -} else { - print "not ok 2\n"; -} Index: search-test.pl =================================================================== RCS file: search-test.pl diff -N search-test.pl --- search-test.pl 16 Feb 2006 20:51:07 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,42 +0,0 @@ -#!/usr/bin/perl - -# simple script to test cql searching -# written by chris at katipo.co.nz 17/2/06 - -use C4::Search; -use C4::Auth; -use C4::Interface::CGI::Output; - -use CGI; -use Smart::Comments; -use strict; -use warnings; - -my $input = new CGI; - -my ( $template, $borrowernumber, $cookie ) = get_template_and_user( - { - template_name => "search-test.tmpl", - type => "opac", - query => $input, - authnotrequired => 1, - flagsrequired => { borrow => 1 }, - } -); - -my $cql=$input->param('cql'); -if ($cql){ - my %search; - $search{'cql'} = $cql; - my $results = search( \%search, 'CQL' , 10); - $template->param(CQL => 'yes' - ); - $template->param(results => $results); -} -#my $record = get_record($result); - - - - - -output_html_with_http_headers $input, $cookie, $template->output; Index: sec/writeoff.pl =================================================================== RCS file: sec/writeoff.pl diff -N sec/writeoff.pl --- sec/writeoff.pl 11 Feb 2004 08:44:30 -0000 1.7 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,91 +0,0 @@ -#!/usr/bin/perl - -#written 11/1/2000 by chris at katipo.co.nz -#script to write off accounts - - -# 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 C4::Stats; -my $input=new CGI; - -#print $input->header; -#print $input->dump; - -my%inp; - -my @name=$input->param; -for (my $i=0;$i<@name;$i++){ - my $test=$input->param($name[$i]); - if ($test eq 'wo'){ - my $temp=$name[$i]; - $temp=~ s/payfine//; - $inp{$name[$i]}=$temp; - } -} -my $bornum; -while ( my ($key, $value) = each %inp){ -# print $key,$value; - my $accounttype=$input->param("accounttype$value"); - $bornum=$input->param("bornum$value"); - my $itemno=$input->param("itemnumber$value"); - my $amount=$input->param("amount$value"); - if ($accounttype eq 'Res'){ - my $accountno=$input->param("accountno$value"); - writeoff($bornum,$accountno,$itemno,$accounttype,$amount); - } else { - writeoff($bornum,'',$itemno,$accounttype,$amount); - } -} -#print $input->header; -$bornum=$input->param('bornum'); -print $input->redirect("/cgi-bin/koha/pay.pl?bornum=$bornum"); - -#needs to be shifted to a module when time permits -sub writeoff{ - my ($bornum,$accountnum,$itemnum,$accounttype,$amount)=@_; - my $user=$input->remote_user; - $user=~ s/Levin/C/; - $user=~ s/Foxton/F/; - $user=~ s/Shannon/S/; - my $dbh = C4::Context->dbh; - my $env; - my $sth; - if ($accounttype eq 'Res'){ - $sth=$dbh->prepare("Update accountlines set amountoutstanding=0 where accounttype='Res' and accountno=? and borrowernumber=?"); - $sth->execute($accountnum,$bornum); - } else { - $sth=$dbh->prepare("Update accountlines set amountoutstanding=0 where accounttype=? and itemnumber=? and borrowernumber=?"); - $sth->execute($accounttype,$itemnum,$bornum); - } - $sth->finish; - $sth=$dbh->prepare("select max(accountno) from accountlines"); - $sth->execute; - my $account=$sth->fetchrow_hashref; - $sth->finish; - $account->{'max(accountno)'}++; - $sth=$dbh->prepare("insert into accountlines (borrowernumber,accountno,itemnumber,date,amount,description,accounttype) - values (?,?,?,now(),?,'Writeoff','W')"); - $sth->execute($bornum,$account->{'max(accountno)'},$itemnum,$amount); - $sth->finish; -# print $query; - UpdateStats($env,$user,'writeoff',$amount,'','','',$bornum); -} From antoine at koha-fr.org Fri Sep 1 09:58:04 2006 From: antoine at koha-fr.org (Antoine Farnault) Date: Fri, 01 Sep 2006 07:58:04 +0000 Subject: [Koha-cvs] koha thesaurus_popup.pl [rel_3_0] Message-ID: CVSROOT: /sources/koha Module name: koha Branch: rel_3_0 Changes by: Antoine Farnault 06/09/01 07:58:04 Removed files: . : thesaurus_popup.pl Log message: thesaurus_popup.pl has moved from "." to "./cataloguing/" CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/koha/thesaurus_popup.pl?cvsroot=koha&only_with_tag=rel_3_0&r1=1.15&r2=0 Patches: Index: thesaurus_popup.pl =================================================================== RCS file: thesaurus_popup.pl diff -N thesaurus_popup.pl --- thesaurus_popup.pl 11 Feb 2004 08:35:31 -0000 1.15 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,126 +0,0 @@ -#!/usr/bin/perl - -# written 10/5/2002 by Paul -# build result field using bibliothesaurus table - - -# 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 C4::Auth; -use CGI; -use C4::Context; -use HTML::Template; -use C4::Search; -use C4::Output; -use C4::Authorities; -use C4::Interface::CGI::Output; -# get all the data .... -my %env; - -my $input = new CGI; -my $result = $input->param('result'); -my $search_string= $input->param('search_string'); -$search_string = $result unless ($search_string); -my $op = $input->param('op'); -my $id = $input->param('id'); -my $category = $input->param('category'); -my $index= $input->param('index'); -my $insert = $input->param('insert'); -my $nohierarchy = $input->param('nohierarchy'); # if 1, just show the last part of entry (Marseille). If 0, show everything (Europe -- France --Marseille) -my $dbh = C4::Context->dbh; - -# make the page ... -#print $input->header; -if ($op eq "select") { - my $sti = $dbh->prepare("select father,stdlib from bibliothesaurus where id=?"); - $sti->execute($id); - my ($father,$freelib_text) = $sti->fetchrow_array; - if (length($result)>0) { - if ($nohierarchy) { - $result .= "|$freelib_text"; - } else { - $result .= "|$father $freelib_text"; - } - } else { - if ($nohierarchy) { - $result = "$freelib_text"; - } else { - $result = "$father $freelib_text"; - } - } -} -if ($op eq "add") { - newauthority($dbh,$category,$insert,$insert,'',1,''); - $search_string=$insert; -} -my ($template, $loggedinuser, $cookie) - = get_template_and_user({template_name => "thesaurus_popup.tmpl", - query => $input, - type => "intranet", - authnotrequired => 0, - flagsrequired => {parameters => 1}, - debug => 1, - }); -# /search thesaurus terms starting by search_string -my @freelib; -my %stdlib; -my $select_list; -if ($search_string) { -# my $sti=$dbh->prepare("select id,freelib from bibliothesaurus where freelib like '".$search_string."%' and category ='$category'"); - my $sti=$dbh->prepare("select id,freelib,father from bibliothesaurus where match (category,freelib) AGAINST (?) and category =?"); - $sti->execute($search_string,$category); - while (my $line=$sti->fetchrow_hashref) { - if ($nohierarchy) { - $stdlib{$line->{'id'}} = "$line->{'freelib'}"; - } else { - $stdlib{$line->{'id'}} = "$line->{'father'} $line->{'freelib'}"; - } - push(@freelib,$line->{'id'}); - } - $select_list= CGI::scrolling_list( -name=>'id', - -values=> \@freelib, - -default=> "", - -size=>1, - -multiple=>0, - -labels=> \%stdlib - ); -} -my @x = SearchDeeper('',$category,$search_string); -#my @son; -#foreach (my $value @$x) { -# warn \@$x[$value]->{'stdlib'}; -#} -my $dig_list= CGI::scrolling_list( -name=>'search_string', - -values=> \@x, - -default=> "", - -size=>1, - -multiple=>0, - ); - -$template->param(select_list => $select_list, - search_string => $search_string, - dig_list => $dig_list, - result => $result, - category => $category, - index => $index, - nohierarchy => $nohierarchy, - ); -output_html_with_http_headers $input, $cookie, $template->output; - - From antoine at koha-fr.org Fri Sep 1 10:08:49 2006 From: antoine at koha-fr.org (Antoine Farnault) Date: Fri, 01 Sep 2006 08:08:49 +0000 Subject: [Koha-cvs] koha cataloguing/additem.pl koha-tmpl/intranet-... [rel_3_0] Message-ID: CVSROOT: /sources/koha Module name: koha Branch: rel_3_0 Changes by: Antoine Farnault 06/09/01 08:08:49 Modified files: cataloguing : additem.pl koha-tmpl/intranet-tmpl/prog/en: modbib.tmpl thesaurus_popup.tmpl Added files: koha-tmpl/intranet-tmpl/prog/en/value-builder: unimarc_field_60X.tmpl Log message: fix bad link to thesaurus_popup.pl CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/koha/cataloguing/additem.pl?cvsroot=koha&only_with_tag=rel_3_0&r1=1.7&r2=1.7.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/modbib.tmpl?cvsroot=koha&only_with_tag=rel_3_0&r1=1.1&r2=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/thesaurus_popup.tmpl?cvsroot=koha&only_with_tag=rel_3_0&r1=1.1&r2=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_60X.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 Patches: Index: cataloguing/additem.pl =================================================================== RCS file: /sources/koha/koha/cataloguing/additem.pl,v retrieving revision 1.7 retrieving revision 1.7.2.1 diff -u -b -r1.7 -r1.7.2.1 --- cataloguing/additem.pl 3 Apr 2006 04:00:02 -0000 1.7 +++ cataloguing/additem.pl 1 Sep 2006 08:08:49 -0000 1.7.2.1 @@ -1,6 +1,6 @@ #!/usr/bin/perl -# $Id: additem.pl,v 1.7 2006/04/03 04:00:02 rangi Exp $ +# $Id: additem.pl,v 1.7.2.1 2006/09/01 08:08:49 toins Exp $ # Copyright 2000-2002 Katipo Communications # @@ -298,7 +298,7 @@ -multiple=>0, ); } elsif ($tagslib->{$tag}->{$subfield}->{thesaurus_category}) { - $subfield_data{marc_value}=" {$tag}->{$subfield}->{thesaurus_category}&index=$i',$i)\">..."; + $subfield_data{marc_value}=" {$tag}->{$subfield}->{thesaurus_category}&index=$i',$i)\">..."; #" } elsif ($tagslib->{$tag}->{$subfield}->{'value_builder'}) { my $plugin="../value_builder/".$tagslib->{$tag}->{$subfield}->{'value_builder'}; Index: koha-tmpl/intranet-tmpl/prog/en/modbib.tmpl =================================================================== RCS file: /sources/koha/koha/koha-tmpl/intranet-tmpl/prog/en/modbib.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -u -b -r1.1 -r1.1.2.1 --- koha-tmpl/intranet-tmpl/prog/en/modbib.tmpl 6 Aug 2005 20:19:56 -0000 1.1 +++ koha-tmpl/intranet-tmpl/prog/en/modbib.tmpl 1 Sep 2006 08:08:49 -0000 1.1.2.1 @@ -56,7 +56,7 @@ Index: koha-tmpl/intranet-tmpl/prog/en/thesaurus_popup.tmpl =================================================================== RCS file: /sources/koha/koha/koha-tmpl/intranet-tmpl/prog/en/thesaurus_popup.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -u -b -r1.1 -r1.1.2.1 --- koha-tmpl/intranet-tmpl/prog/en/thesaurus_popup.tmpl 6 Aug 2005 20:19:56 -0000 1.1 +++ koha-tmpl/intranet-tmpl/prog/en/thesaurus_popup.tmpl 1 Sep 2006 08:08:49 -0000 1.1.2.1 @@ -3,7 +3,7 @@ Thesaurus value builder for category <!-- TMPL_VAR name="category" --> -
+

"> "> @@ -14,7 +14,7 @@

-
+ "> "> "> @@ -23,7 +23,7 @@
-
+ "> "> "> Index: koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_60X.tmpl =================================================================== RCS file: koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_60X.tmpl diff -N koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_60X.tmpl --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_60X.tmpl 1 Sep 2006 08:08:49 -0000 1.1.2.1 @@ -0,0 +1,109 @@ + + + Thesaurus search + + + + + + + +
+

Recherche

+ A + B + C + D + E + F + G + H + I + J + K + L + M + N + O + P + Q + R + S + T + U + V + W + X + Y + Z +
+ "> + "> + "> + + +

+
+ + + + + +
+

Results

+ + + + + + + +
+ &level=&search_string="> + + + + ')">
+
+
+ + +

Dependancies

+ + + + + + +
+ &level=&search_string=+"> + + + ')">
+
+
+

Adding

+
+ "> + + "> + Create a new authority/thesaurus entry : "> + +
+ + From antoine at koha-fr.org Fri Sep 1 10:27:36 2006 From: antoine at koha-fr.org (Antoine Farnault) Date: Fri, 01 Sep 2006 08:27:36 +0000 Subject: [Koha-cvs] koha/koha-tmpl/intranet-tmpl/prog/en/value-buil... [rel_3_0] Message-ID: CVSROOT: /sources/koha Module name: koha Branch: rel_3_0 Changes by: Antoine Farnault 06/09/01 08:27:35 Added files: koha-tmpl/intranet-tmpl/prog/en/value-builder: labs_theses.tmpl marc21_leader.tmpl unimarc_field_100.tmpl unimarc_field_105.tmpl unimarc_field_106.tmpl unimarc_field_110.tmpl unimarc_field_115a.tmpl unimarc_field_115b.tmpl unimarc_field_116.tmpl unimarc_field_117.tmpl unimarc_field_120.tmpl unimarc_field_121a.tmpl unimarc_field_121b.tmpl unimarc_field_122.tmpl unimarc_field_123a.tmpl unimarc_field_123d.tmpl unimarc_field_123e.tmpl unimarc_field_123f.tmpl unimarc_field_123g.tmpl unimarc_field_124a.tmpl unimarc_field_124b.tmpl unimarc_field_124c.tmpl unimarc_field_124d.tmpl unimarc_field_124e.tmpl unimarc_field_124f.tmpl unimarc_field_124g.tmpl unimarc_field_125a.tmpl unimarc_field_125b.tmpl unimarc_field_126a.tmpl unimarc_field_126b.tmpl unimarc_field_127.tmpl unimarc_field_128a.tmpl unimarc_field_128b.tmpl unimarc_field_128c.tmpl unimarc_field_130.tmpl unimarc_field_135a.tmpl unimarc_field_140.tmpl unimarc_field_141.tmpl unimarc_field_210c.tmpl unimarc_field_225a.tmpl unimarc_field_4XX.tmpl unimarc_field_60X.tmpl~ unimarc_field_700-4.tmpl unimarc_leader.tmpl Log message: unimarc value builder added on template prog. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/labs_theses.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/marc21_leader.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_100.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_105.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_106.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_110.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_115a.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_115b.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_116.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_117.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_120.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_121a.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_121b.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_122.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_123a.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_123d.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_123e.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_123f.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_123g.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_124a.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_124b.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_124c.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_124d.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_124e.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_124f.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_124g.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_125a.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_125b.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_126a.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_126b.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_127.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_128a.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_128b.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_128c.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_130.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_135a.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_140.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_141.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_210c.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_225a.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_4XX.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_60X.tmpl%126?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_field_700-4.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/value-builder/unimarc_leader.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1 Patches: Index: labs_theses.tmpl =================================================================== RCS file: labs_theses.tmpl diff -N labs_theses.tmpl --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ labs_theses.tmpl 1 Sep 2006 08:27:35 -0000 1.1.2.1 @@ -0,0 +1,126 @@ + + + +KOHA: Labs Thesis Selection plugin + + + + + + + + + +
+

Laboratory Search

+ +
+
+

Search on

+

+ + "> + "> + + " > + " size="35"> + + +

+
+
+ + +
+

Laboratory Search results

+
+

+ + Results to of No results found. + +

+
+
+ + + + + + + + + + + + + + + +
LaboratorySelect
+ + + ','',,0)" class="button catalogue">Select + ','',,1)" class="button catalogue">Sel&close +
+
+ + +
+ +
+ + \ No newline at end of file Index: marc21_leader.tmpl =================================================================== RCS file: marc21_leader.tmpl diff -N marc21_leader.tmpl --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ marc21_leader.tmpl 1 Sep 2006 08:27:35 -0000 1.1.2.1 @@ -0,0 +1,321 @@ + + +Leader builder + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
1-4 Record size(auto-filled)
5- Record status + +
6- Type of record + +
7- Bibliographic level + +
8- Hierarchic level + +
9- Encoding + +
10-16 indicator/subfields/size(auto-filled)
17- Encoding + +
18 - Descriptive cataloging form + +
19 - Linked record requirement + +
20-24 entry map & lengths(auto-filled)
+
+ + + Index: unimarc_field_100.tmpl =================================================================== RCS file: unimarc_field_100.tmpl diff -N unimarc_field_100.tmpl --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ unimarc_field_100.tmpl 1 Sep 2006 08:27:35 -0000 1.1.2.1 @@ -0,0 +1,717 @@ + + +UNIMARC Field 100 builder + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Date d'enregistrement">
Code de date de publication + +
Premiere date de publication">
Deuxieme date de publication">
Niveau intellectuel ou public destinataire 1 + +
Niveau intellectuel ou public destinataire 2 + +
Niveau intellectuel ou public destinataire 3 + +
Publication officielle + +
Code de modification de la notice + +
Langue de catalogage (obligatoire)">
Code de transliteration + +
Jeux de caracteres (obligatoire) 1 + +
Jeux de caracteres (obligatoire) 2 + +
Jeu de caracteres additionnels">
Alphabet du titre + + + +
+
+ + + Index: unimarc_field_105.tmpl =================================================================== RCS file: unimarc_field_105.tmpl diff -N unimarc_field_105.tmpl --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ unimarc_field_105.tmpl 1 Sep 2006 08:27:35 -0000 1.1.2.1 @@ -0,0 +1,1168 @@ + + +UNIMARC constructeur champ 105 + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Illustration 1: + + Illustration 2: + +
Illustration 3: + + Illustration 4: + +
Type d'ouvrage de reference 1: + + Type d'ouvrage de reference 2: + +
Type d'ouvrage de reference 3: + + Type d'ouvrage de reference 4: + +
Colloque ou congres: +
Melanges +
Index +
Genre litteraire +
Biographie + +
+
+ + + Index: unimarc_field_106.tmpl =================================================================== RCS file: unimarc_field_106.tmpl diff -N unimarc_field_106.tmpl --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ unimarc_field_106.tmpl 1 Sep 2006 08:27:35 -0000 1.1.2.1 @@ -0,0 +1,90 @@ + + +UNIMARC Field 106 builder + + +
+ + + + + + + +
Texte presentation physique + +
+
+ + + Index: unimarc_field_110.tmpl =================================================================== RCS file: unimarc_field_110.tmpl diff -N unimarc_field_110.tmpl --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ unimarc_field_110.tmpl 1 Sep 2006 08:27:35 -0000 1.1.2.1 @@ -0,0 +1,677 @@ + + +UNIMARC Field 106 builder + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Type de publication en serie + +
Periodicite + +
Regularite + +
Type d'ouvrage de reference + +
Nature du contenu">
Colloque ou congres + +
Existence d'un index + +
Existence d'un index +