* 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:
		| @@ -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 | ||||
|   | ||||
| @@ -3,7 +3,7 @@ package SrvMngr::Controller::Bugreport; | ||||
| #---------------------------------------------------------------------- | ||||
| # heading     : Investigation | ||||
| # description : Report a bug | ||||
| # navigation  : 7000 500 | ||||
| # navigation  : 7000 300 | ||||
| # routes : end | ||||
| #------------------------------ | ||||
| use strict; | ||||
|   | ||||
| @@ -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; | ||||
|   | ||||
| @@ -3,7 +3,7 @@ package SrvMngr::Controller::Directory; | ||||
| #---------------------------------------------------------------------- | ||||
| # heading     : User management | ||||
| # description : Directory | ||||
| # navigation  : 2000 300 | ||||
| # navigation  : 2000 400 | ||||
| # | ||||
| # routes : end | ||||
| #---------------------------------------------------------------------- | ||||
|   | ||||
| @@ -3,7 +3,7 @@ package SrvMngr::Controller::Emailsettings; | ||||
| #---------------------------------------------------------------------- | ||||
| # heading     : System | ||||
| # description : E-mail | ||||
| # navigation  : 4000 500 | ||||
| # navigation  : 4000 400 | ||||
| # | ||||
| # | ||||
| # routes : end | ||||
|   | ||||
| @@ -3,7 +3,7 @@ package SrvMngr::Controller::Logout; | ||||
| #---------------------------------------------------------------------- | ||||
| # heading     : Current User | ||||
| # description : Logout | ||||
| # navigation  : 1000 900 | ||||
| # navigation  : 1000 1000 | ||||
| # menu        : U | ||||
| # | ||||
| # routes : end | ||||
|   | ||||
| @@ -3,7 +3,7 @@ package SrvMngr::Controller::Printers; | ||||
| #---------------------------------------------------------------------- | ||||
| # heading     : System | ||||
| # description : Printers | ||||
| # navigation  : 4000 900 | ||||
| # navigation  : 4000 800 | ||||
| # | ||||
| # | ||||
| # routes : end | ||||
|   | ||||
| @@ -3,7 +3,7 @@ package SrvMngr::Controller::Proxy; | ||||
| #---------------------------------------------------------------------- | ||||
| # heading     : System | ||||
| # description : Proxy settings | ||||
| # navigation  : 4000 800 | ||||
| # navigation  : 4000 200 | ||||
| #---------------------------------------------------------------------- | ||||
| # | ||||
| # routes : end | ||||
|   | ||||
| @@ -3,7 +3,7 @@ package SrvMngr::Controller::Pseudonyms; | ||||
| #---------------------------------------------------------------------- | ||||
| # heading     : User management | ||||
| # description : Pseudonyms | ||||
| # navigation  : 2000 210 | ||||
| # navigation  : 2000 300 | ||||
| #---------------------------------------------------------------------- | ||||
| # | ||||
| # routes : end | ||||
|   | ||||
| @@ -3,7 +3,7 @@ package SrvMngr::Controller::Quota; | ||||
| #---------------------------------------------------------------------- | ||||
| # heading     : User management | ||||
| # description : Quotas | ||||
| # navigation  : 2000 300 | ||||
| # navigation  : 2000 500 | ||||
| #---------------------------------------------------------------------- | ||||
| # | ||||
| # routes : end | ||||
|   | ||||
| @@ -3,7 +3,7 @@ package SrvMngr::Controller::Review; | ||||
| #---------------------------------------------------------------------- | ||||
| # heading     : Investigation | ||||
| # description : Review configuration | ||||
| # navigation  : 7000 600 | ||||
| # navigation  : 7000 400 | ||||
| # routes : end | ||||
| #---------------------------------------------------------------------- | ||||
| use strict; | ||||
|   | ||||
| @@ -3,7 +3,7 @@ package SrvMngr::Controller::Yum; | ||||
| #---------------------------------------------------------------------- | ||||
| # heading     : System | ||||
| # description : Software installer | ||||
| # navigation  : 4000 300 | ||||
| # navigation  : 4000 500 | ||||
| # | ||||
| # routes : end | ||||
| #---------------------------------------------------------------------- | ||||
|   | ||||
| @@ -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] | ||||
|   | ||||
		Reference in New Issue
	
	Block a user