Compare commits

...

2 Commits

Author SHA1 Message Date
1a8f935431 * Thu Jun 12 2025 Brian Read <brianr@koozali.org> 11.0.0-89.sme
- rework navigation weights to avoid duplicates [SME: 12996]
2025-06-12 18:15:41 +01:00
e8d6d39583 * Mon Jun 09 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-88.sme
- add datetime getYear_list [SME: 13031]
- use esmith::*DB::UTF8 to access db flat files [SME: 13027]
- fix typo [SME: 13038]
2025-06-10 07:17:32 -04:00
14 changed files with 21 additions and 17 deletions

View File

@@ -3,7 +3,7 @@ package SrvMngr::Controller::Backup;
#----------------------------------------------------------------------
# heading : System
# description : Backup or restore
# navigation : 4000 200
# navigation : 4000 100
# Copyright (C) 2002 Mitel Networks Corporation
#----------------------------------------------------------------------
# routes : end

View File

@@ -3,7 +3,7 @@ package SrvMngr::Controller::Bugreport;
#----------------------------------------------------------------------
# heading : Investigation
# description : Report a bug
# navigation : 7000 500
# navigation : 7000 300
# routes : end
#------------------------------
use strict;

View File

@@ -3,7 +3,7 @@ package SrvMngr::Controller::Datetime;
#----------------------------------------------------------------------
# heading : System
# description : Date and time
# navigation : 4000 400
# navigation : 4000 300
# routes : end
#------------------------------
use strict;
@@ -361,7 +361,7 @@ sub getYear_list {
my $c= shift;
my @yearArray;
# could use also `/bin/date '+%Y'`
my $start=___YEAR___-40; my $max=___YEAR___+40;
my $start=2025-40; my $max=2025+40;
for ( my $i = $start; $i <= $max; $i++ ) {
push @yearArray,$i;

View File

@@ -3,7 +3,7 @@ package SrvMngr::Controller::Directory;
#----------------------------------------------------------------------
# heading : User management
# description : Directory
# navigation : 2000 300
# navigation : 2000 400
#
# routes : end
#----------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@ package SrvMngr::Controller::Emailsettings;
#----------------------------------------------------------------------
# heading : System
# description : E-mail
# navigation : 4000 500
# navigation : 4000 400
#
#
# routes : end

View File

@@ -17,7 +17,7 @@ use SrvMngr qw(theme_list init_session);
use HTML::Entities;
use Net::IPv4Addr qw(ipv4_in_network);
use esmith::DomainsDB::UTF8;
use esmith::ConfigDB::UTF8
use esmith::ConfigDB::UTF8;
use esmith::HostsDB::UTF8;
use esmith::NetworksDB::UTF8;
@@ -373,7 +373,7 @@ sub domains_list {
$ddb = esmith::DomainsDB::UTF8->open_ro() or die "Couldn't open DomainsDB";
my @domains;
for ($d->domains) {
for ($ddb->domains) {
my $ns = $_->prop("Nameservers") || 'localhost';
push @domains, $_->key if ($ns eq 'localhost');
}

View File

@@ -3,7 +3,7 @@ package SrvMngr::Controller::Logout;
#----------------------------------------------------------------------
# heading : Current User
# description : Logout
# navigation : 1000 900
# navigation : 1000 1000
# menu : U
#
# routes : end

View File

@@ -3,7 +3,7 @@ package SrvMngr::Controller::Printers;
#----------------------------------------------------------------------
# heading : System
# description : Printers
# navigation : 4000 900
# navigation : 4000 800
#
#
# routes : end

View File

@@ -3,7 +3,7 @@ package SrvMngr::Controller::Proxy;
#----------------------------------------------------------------------
# heading : System
# description : Proxy settings
# navigation : 4000 800
# navigation : 4000 200
#----------------------------------------------------------------------
#
# routes : end

View File

@@ -3,7 +3,7 @@ package SrvMngr::Controller::Pseudonyms;
#----------------------------------------------------------------------
# heading : User management
# description : Pseudonyms
# navigation : 2000 210
# navigation : 2000 300
#----------------------------------------------------------------------
#
# routes : end

View File

@@ -3,7 +3,7 @@ package SrvMngr::Controller::Quota;
#----------------------------------------------------------------------
# heading : User management
# description : Quotas
# navigation : 2000 300
# navigation : 2000 500
#----------------------------------------------------------------------
#
# routes : end

View File

@@ -3,7 +3,7 @@ package SrvMngr::Controller::Review;
#----------------------------------------------------------------------
# heading : Investigation
# description : Review configuration
# navigation : 7000 600
# navigation : 7000 400
# routes : end
#----------------------------------------------------------------------
use strict;

View File

@@ -3,7 +3,7 @@ package SrvMngr::Controller::Yum;
#----------------------------------------------------------------------
# heading : System
# description : Software installer
# navigation : 4000 300
# navigation : 4000 500
#
# routes : end
#----------------------------------------------------------------------

View File

@@ -2,7 +2,7 @@ Summary: Sme server navigation module : manager 2
%define name smeserver-manager
Name: %{name}
%define version 11.0.0
%define release 87
%define release 89
Version: %{version}
Release: %{release}%{?dist}
License: GPL
@@ -144,9 +144,13 @@ true
%defattr(-,root,root)
%changelog
* Mon Jun 09 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-87.sme
* Thu Jun 12 2025 Brian Read <brianr@koozali.org> 11.0.0-89.sme
- rework navigation weights to avoid duplicates [SME: 12996]
* Mon Jun 09 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-88.sme
- add datetime getYear_list [SME: 13031]
- use esmith::*DB::UTF8 to access db flat files [SME: 13027]
- fix typo [SME: 13038]
* Mon Jun 09 2025 John Crisp <jcrisp@safeandsoundit.co.uk> 11.00.0-86.sme
- Fix datetime gen_locale_date_string reference [SME: 13017]