Update of /cvsroot/popfile/engine/POPFile
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5357/POPFile
Modified Files:
Configuration.pm
Log Message:
Following Japanese support:
- Performance update for convert_encoding.
- Fix the problem with HTML entity.
- Clear the character set per mail to avoid using the wrong charsets.
- Fix the problem that 'uninitialized value' warnings occur on Japanese environment.
Index: Configuration.pm
===================================================================
RCS file: /cvsroot/popfile/engine/POPFile/Configuration.pm,v
retrieving revision 1.59
retrieving revision 1.60
diff -C2 -d -r1.59 -r1.60
*** Configuration.pm 20 Feb 2006 02:01:57 -0000 1.59
--- Configuration.pm 2 Dec 2006 17:45:02 -0000 1.60
***************
*** 689,693 ****
}
! return $self->{configuration_parameters__}{$name}{value};
}
--- 689,699 ----
}
! # If $self->{configuration_parameters__}{$name} is undefined, simply
! # return undef to avoid defining $self->{configuration_parameters__}{$name}.
! if ( defined($self->{configuration_parameters__}{$name}) ) {
! return $self->{configuration_parameters__}{$name}{value};
! } else {
! return undef;
! }
}
|