[otrs-cvs] otrs/Kernel/cpan-lib/HTML Safe.pm,1.5,1.6

CVS commits notifications of OTRS.org cvs-log at otrs.org
Tue Apr 29 12:52:34 GMT 2008


Comments:
Update of /home/cvs/otrs/Kernel/cpan-lib/HTML
In directory lancelot:/tmp/cvs-serv3649/HTML

Modified Files:
	Safe.pm 
Log Message:
Replaced OTRS GmbH with OTRS AG.

Author: tr

Index: Safe.pm
===================================================================
RCS file: /home/cvs/otrs/Kernel/cpan-lib/HTML/Safe.pm,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** Safe.pm	2 Apr 2008 04:52:27 -0000	1.5
--- Safe.pm	29 Apr 2008 12:52:28 -0000	1.6
***************
*** 1,5 ****
  # --
  # HTML::Safe.pm - remove activ html stuff from html strings
! # Copyright (C) 2001-2006 OTRS GmbH, http://otrs.org/
  # --
  # $Id$
--- 1,5 ----
  # --
  # HTML::Safe.pm - remove activ html stuff from html strings
! # Copyright (C) 2001-2008 OTRS AG, http://otrs.org/
  # --
  # $Id$
***************
*** 63,67 ****
      $Self->{Debug} = $Param{Debug} || 0;
  
!     foreach (qw(NoApplet NoObject NoEmbed NoExtSrcLoad NoIntSrcLoad NoJavaScript)) {
          $Self->{$_} = defined($Param{$_}) ? $Param{$_} : 1;
      }
--- 63,67 ----
      $Self->{Debug} = $Param{Debug} || 0;
  
!     for (qw(NoApplet NoObject NoEmbed NoExtSrcLoad NoIntSrcLoad NoJavaScript)) {
          $Self->{$_} = defined($Param{$_}) ? $Param{$_} : 1;
      }
***************
*** 88,97 ****
      my $Self = shift;
      my %Param = @_;
      # check needed stuff
!     foreach (qw(Data)) {
!         if (!$Param{$_}) {
!             print STDERR "Need $_!";
!             return;
!         }
      }
  
--- 88,96 ----
      my $Self = shift;
      my %Param = @_;
+     
      # check needed stuff
!     if (!$Param{Data}) {
!         print STDERR 'Need Data!';
!         return;
      }
  
***************
*** 110,114 ****
              }
              else {
!                 "";
              }
          }segxim;
--- 109,113 ----
              }
              else {
!                 '';
              }
          }segxim;
***************
*** 129,133 ****
              }
              else {
!                 "";
              }
          }segxim;
--- 128,132 ----
              }
              else {
!                 '';
              }
          }segxim;
***************
*** 148,152 ****
              }
              else {
!                 "";
              }
          }segxim;
--- 147,151 ----
              }
              else {
!                 '';
              }
          }segxim;
***************
*** 167,171 ****
              }
              else {
!                 "";
              }
          }segxim;
--- 166,170 ----
              }
              else {
!                 '';
              }
          }segxim;
***************
*** 185,189 ****
              {
                  print STDERR "Found <on action> tags ($1)!\n" if ($Self->{Debug});
!                 "";
              }segxim;
  
--- 184,188 ----
              {
                  print STDERR "Found <on action> tags ($1)!\n" if ($Self->{Debug});
!                 '';
              }segxim;
  
***************
*** 194,198 ****
              {
                  print STDERR "Found js entities tags($1)!\n" if ($Self->{Debug});
!                 "";
              }segxim;
  
--- 193,197 ----
              {
                  print STDERR "Found js entities tags($1)!\n" if ($Self->{Debug});
!                 '';
              }segxim;
  
***************
*** 236,240 ****
                  }
                  else {
!                     "";
                  }
              }segxim;
--- 235,239 ----
                  }
                  else {
!                     '';
                  }
              }segxim;
***************
*** 255,259 ****
                      }
                      else {
!                        "";
                      }
                  }
--- 254,258 ----
                      }
                      else {
!                        '';
                      }
                  }


More information about the cvs-log mailing list