* Sun Jun 08 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-13.sme
- add esmith::AccountsDB::UTF8 support [SME: 13029] also esmith::DomainsDB::UTF8, esmith::HostsDB::UTF8, esmith::NetworksDB::UTF8 - improve esmith::ConfigDB::UTF8 support [SME: 13028]
This commit is contained in:
22
root/usr/share/perl5/vendor_perl/esmith/AccountsDB/UTF8.pm
Normal file
22
root/usr/share/perl5/vendor_perl/esmith/AccountsDB/UTF8.pm
Normal file
@@ -0,0 +1,22 @@
|
||||
#----------------------------------------------------------------------
|
||||
# Copyright 2013-2025 Koozali Foundation inc.
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the same terms as Perl itself.
|
||||
#----------------------------------------------------------------------
|
||||
|
||||
package esmith::AccountsDB::UTF8;
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use esmith::AccountsDB;
|
||||
use esmith::config::utf8;
|
||||
our @ISA = qw(esmith::AccountsDB);
|
||||
|
||||
sub tie_class
|
||||
{
|
||||
return 'esmith::config::utf8';
|
||||
}
|
||||
|
||||
1;
|
||||
|
@@ -1,5 +1,6 @@
|
||||
#----------------------------------------------------------------------
|
||||
# Copyright 1999-2008 Mitel Networks Corporation
|
||||
# Copyright 2013-2025 Koozali Foundationi inc.
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the same terms as Perl itself.
|
||||
#----------------------------------------------------------------------
|
||||
@@ -9,9 +10,9 @@ package esmith::ConfigDB::UTF8;
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use esmith::DB::db;
|
||||
use esmith::ConfigDB;
|
||||
use esmith::config::utf8;
|
||||
our @ISA = qw( esmith::DB::db );
|
||||
our @ISA = qw( esmith::ConfigDB );
|
||||
|
||||
sub tie_class
|
||||
{
|
||||
|
22
root/usr/share/perl5/vendor_perl/esmith/DomainsDB/UTF8.pm
Normal file
22
root/usr/share/perl5/vendor_perl/esmith/DomainsDB/UTF8.pm
Normal file
@@ -0,0 +1,22 @@
|
||||
#----------------------------------------------------------------------
|
||||
# Copyright 2013-2025 Koozali Foundation inc.
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the same terms as Perl itself.
|
||||
#----------------------------------------------------------------------
|
||||
|
||||
package esmith::DomainsDB::UTF8;
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use esmith::DomainsDB;
|
||||
use esmith::config::utf8;
|
||||
our @ISA = qw(esmith::DomainsDB);
|
||||
|
||||
sub tie_class
|
||||
{
|
||||
return 'esmith::config::utf8';
|
||||
}
|
||||
|
||||
1;
|
||||
|
22
root/usr/share/perl5/vendor_perl/esmith/HostsDB/UTF8.pm
Normal file
22
root/usr/share/perl5/vendor_perl/esmith/HostsDB/UTF8.pm
Normal file
@@ -0,0 +1,22 @@
|
||||
#----------------------------------------------------------------------
|
||||
# Copyright 2013-2025 Koozali Foundation inc.
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the same terms as Perl itself.
|
||||
#----------------------------------------------------------------------
|
||||
|
||||
package esmith::HostsDB::UTF8;
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use esmith::HostsDB;
|
||||
use esmith::config::utf8;
|
||||
our @ISA = qw(esmith::HostsDB);
|
||||
|
||||
sub tie_class
|
||||
{
|
||||
return 'esmith::config::utf8';
|
||||
}
|
||||
|
||||
1;
|
||||
|
22
root/usr/share/perl5/vendor_perl/esmith/NetworksDB/UTF8.pm
Normal file
22
root/usr/share/perl5/vendor_perl/esmith/NetworksDB/UTF8.pm
Normal file
@@ -0,0 +1,22 @@
|
||||
#----------------------------------------------------------------------
|
||||
# Copyright 2013-2025 Koozali Foundation inc.
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the same terms as Perl itself.
|
||||
#----------------------------------------------------------------------
|
||||
|
||||
package esmith::NetworksDB::UTF8;
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use esmith::NetworksDB;
|
||||
use esmith::config::utf8;
|
||||
our @ISA = qw(esmith::NetworksDB);
|
||||
|
||||
sub tie_class
|
||||
{
|
||||
return 'esmith::config::utf8';
|
||||
}
|
||||
|
||||
1;
|
||||
|
Reference in New Issue
Block a user