* Thu Jun 12 2025 Brian Read <brianr@koozali.org> 11.0.0-89.sme

- rework navigation weights to avoid duplicates [SME: 12996]
This commit is contained in:
Brian Read 2025-06-12 18:15:41 +01:00
parent e8d6d39583
commit 1a8f935431
13 changed files with 17 additions and 14 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

@ -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 88
%define release 89
Version: %{version}
Release: %{release}%{?dist}
License: GPL
@ -144,6 +144,9 @@ true
%defattr(-,root,root)
%changelog
* 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]