* bugfixes
authortipaul <tipaul>
Tue, 10 Dec 2002 13:54:08 +0000 (13:54 +0000)
committertipaul <tipaul>
Tue, 10 Dec 2002 13:54:08 +0000 (13:54 +0000)
* improvements done during dombes intallation/tests
* adding authentication (new Auth.pm)

mainpage.pl
plugin_launcher.pl
thesaurus_popup.pl

index 78c7080..18772f3 100755 (executable)
@@ -12,4 +12,4 @@ my ($loggedinuser, $cookie, $sessionID) = checkauth($query);
 
 my $template = gettemplate("intranet-main.tmpl");
 
-print "Content-Type: text/html\n\n", $template->output;
+print  $query->header(-cookie => $cookie), $template->output;
index 4d4c510..a071ccf 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/perl
 
-# written 10/5/2002 by Paul
+# $Id$
 
 # Copyright 2000-2002 Katipo Communications
 #
@@ -27,6 +27,7 @@ use C4::Search;
 use C4::Output;
 
 my $input = new CGI;
+my $plugin_name=$input->param("plugin_name");
 my $plugin_name="value_builder/".$input->param("plugin_name");
 require $plugin_name;
-&plugin($input);
+&plugin($input);
\ No newline at end of file
index 1a01179..56bcc7f 100755 (executable)
@@ -26,10 +26,8 @@ use CGI;
 use C4::Context;
 use HTML::Template;
 use C4::Search;
-#use C4::Circulation::Circ2;
 use C4::Output;
-#use C4::Biblio;
-
+use C4::Authorities;
 # get all the data ....
 my %env;
 
@@ -40,6 +38,7 @@ 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 $dbh = C4::Context->dbh;
 
@@ -55,6 +54,10 @@ if ($op eq "select") {
                $result = $freelib_text;
        }
 }
+if ($op eq "add") {
+       newauthority($dbh,$category,$insert,$insert,'',1,'');
+       $search_string=$insert;
+}
 
 my $template = gettemplate("thesaurus_popup.tmpl",0);
 # /search thesaurus terms starting by search_string
@@ -62,8 +65,9 @@ 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'");
-       $sti->execute;
+#      my $sti=$dbh->prepare("select id,freelib from bibliothesaurus where freelib like '".$search_string."%' and category ='$category'");
+       my $sti=$dbh->prepare("select id,freelib from bibliothesaurus where match (category,freelib) AGAINST ('$search_string') and category ='$category'");
+               $sti->execute;
        while (my $line=$sti->fetchrow_hashref) {
                $stdlib{$line->{'id'}} = "$line->{'freelib'}";
                push(@freelib,$line->{'id'});