koha-cvs
[Top][All Lists]
Advanced

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

[Koha-cvs] CVS: koha/C4 Output.pm,1.28,1.29


From: Andrew Arensburger
Subject: [Koha-cvs] CVS: koha/C4 Output.pm,1.28,1.29
Date: Sun, 13 Oct 2002 01:30:06 -0700

Update of /cvsroot/koha/koha/C4
In directory usw-pr-cvs1:/tmp/cvs-serv14848

Modified Files:
        Output.pm 
Log Message:
Deleted unused variables.
Removed trailing whitespace.


Index: Output.pm
===================================================================
RCS file: /cvsroot/koha/koha/C4/Output.pm,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -r1.28 -r1.29
*** Output.pm   13 Oct 2002 06:05:59 -0000      1.28
--- Output.pm   13 Oct 2002 08:30:03 -0000      1.29
***************
*** 1,4 ****
--- 1,6 ----
  package C4::Output;
  
+ # $Id$
+ 
  #package to deal with marking up output
  #You will need to edit parts of this pm
***************
*** 23,26 ****
--- 25,31 ----
  # Suite 330, Boston, MA  02111-1307 USA
  
+ # NOTE: I'm pretty sure this module is deprecated in favor of
+ # templates.
+ 
  use strict;
  require Exporter;
***************
*** 29,33 ****
  use C4::Database;
  
! use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
  
  # set the version for version checking
--- 34,38 ----
  use C4::Database;
  
! use vars qw($VERSION @ISA @EXPORT);
  
  # set the version for version checking
***************
*** 67,95 ****
                &themelanguage &gettemplate
             );
- %EXPORT_TAGS = ( );     # eg: TAG => [ qw!name1 name2! ],
- 
- # your exported package globals go here,
- # as well as any optionally exported functions
- 
- @EXPORT_OK   = qw($Var1 %Hashit);     # FIXME - These are never used
- 
- 
- # non-exported package globals go here
- use vars qw(@more $stuff);            # FIXME - These are never used
- 
- # initalize package globals, first exported ones
- 
- # FIXME - These are never used
- my $Var1   = '';
- my %Hashit = ();
- 
- 
- # then the others (which are still accessible as $Some::Module::stuff)
- # FIXME - These are never used
- my $stuff  = '';
- my @more   = ();
- 
- # all file-scoped lexicals must be created before
- # the functions below that use them.
  
  my $path = C4::Context->config('includes') ||
--- 72,75 ----




reply via email to

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