koha-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Koha-cvs] koha cataloguing/plugin_launcher.pl plugin_laun... [rel_3_0]


From: Antoine Farnault
Subject: [Koha-cvs] koha cataloguing/plugin_launcher.pl plugin_laun... [rel_3_0]
Date: Fri, 01 Sep 2006 08:55:06 +0000

CVSROOT:        /sources/koha
Module name:    koha
Branch:         rel_3_0
Changes by:     Antoine Farnault <toins>        06/09/01 08:55:06

Added files:
        cataloguing    : plugin_launcher.pl 
Removed files:
        .              : plugin_launcher.pl 

Log message:
        plugin_launcher.pl moved to cataloguing/

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/cataloguing/plugin_launcher.pl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1
http://cvs.savannah.gnu.org/viewcvs/koha/plugin_launcher.pl?cvsroot=koha&only_with_tag=rel_3_0&r1=1.4&r2=0

Patches:
Index: cataloguing/plugin_launcher.pl
===================================================================
RCS file: cataloguing/plugin_launcher.pl
diff -N cataloguing/plugin_launcher.pl
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ cataloguing/plugin_launcher.pl      1 Sep 2006 08:55:06 -0000       1.1.2.1
@@ -0,0 +1,40 @@
+#!/usr/bin/perl
+
+# $Id: plugin_launcher.pl,v 1.1.2.1 2006/09/01 08:55:06 toins Exp $
+
+# 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;
+
+my $input = new CGI;
+my $plugin_name=$input->param("plugin_name");
+my $plugin_name="value_builder/".$input->param("plugin_name");
+
+# opening plugin. Just check wether we are on a developper computer on a 
production one
+# (the cgidir differs)
+my $cgidir = C4::Context->intranetdir ."/cgi-bin";
+unless (opendir(DIR, "$cgidir/value_builder")) {
+       $cgidir = C4::Context->intranetdir;
+} 
+require $cgidir."/".$plugin_name;
+&plugin($input);

Index: plugin_launcher.pl
===================================================================
RCS file: plugin_launcher.pl
diff -N plugin_launcher.pl
--- plugin_launcher.pl  1 Mar 2005 13:40:47 -0000       1.4
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,40 +0,0 @@
-#!/usr/bin/perl
-
-# $Id: plugin_launcher.pl,v 1.4 2005/03/01 13:40:47 tipaul Exp $
-
-# 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;
-
-my $input = new CGI;
-my $plugin_name=$input->param("plugin_name");
-my $plugin_name="value_builder/".$input->param("plugin_name");
-
-# opening plugin. Just check wether we are on a developper computer on a 
production one
-# (the cgidir differs)
-my $cgidir = C4::Context->intranetdir ."/cgi-bin";
-unless (opendir(DIR, "$cgidir/value_builder")) {
-       $cgidir = C4::Context->intranetdir;
-} 
-require $cgidir."/".$plugin_name;
-&plugin($input);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]