/[smeserver]/rpms/smeserver-manager/sme10/smeserver-manager.spec
ViewVC logotype

Annotation of /rpms/smeserver-manager/sme10/smeserver-manager.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.70 - (hide annotations) (download)
Mon Jan 29 14:02:00 2024 UTC (4 months, 3 weeks ago) by brianr
Branch: MAIN
CVS Tags: smeserver-manager-0_1_4-22_el7_sme
Changes since 1.69: +1 -0 lines
* Sat Jan 27 2024 Brian Read <brianr@koozali.org> 0.1.4-22.sme
- Update to use jquery plugin dataTables [SME: 12458]
- Update Copyright footer to 2024
- Edit tables to have TableSort in class
- Fix up tables tbody and thead correctly
- Sort out action column to make compatible with dataTable
- Change action links to icons

1 michel 1.10 Summary: Sme server navigation module : manager 2
2 jpp 1.1 %define name smeserver-manager
3     Name: %{name}
4 michel 1.48 %define version 0.1.4
5 brianr 1.69 %define release 22
6 jpp 1.1 Version: %{version}
7     Release: %{release}%{?dist}
8     License: GPL
9     Group: Networking/Daemons
10 michel 1.35 Source: %{name}-%{version}.tar.xz
11 michel 1.58 Source1: visible.png
12 michel 1.49 Patch0: %{name}-%{version}-list_access_csrf.patch
13 michel 1.50 Patch1: %{name}-%{version}-review_csrf_url.patch
14 brianr 1.51 Patch2: smeserver-manager-0.1.4-Add-dummy-classes-to-ep-files.patch
15 brianr 1.52 Patch3: smeserver-manager-0.1.4-Add-span-to-group-member-checkbox-list.patch
16 brianr 1.53 Patch4: smeserver-manager-0.1.4-Review-configuration-Virtual-domains-re-format-html.patch
17 brianr 1.54 Patch5: smeserver-manager-0.1.4-Sort-out-responsive-table-in-user-and-host-lists.patch
18 brianr 1.55 Patch6: smeserver-manager-0.1.4-fix-translation-strings-with-prefix-for-review-config.patch
19 brianr 1.56 Patch7: smeserver-manager-0.1.4-format-for-dhcp-ips-in-review-config.patch
20 michel 1.57 Patch8: smeserver-manager-0.1.4-fix_backup_empty_selection_list.patch
21 michel 1.58 Patch9: smeserver-manager-0.1.4-toggle_password_and_menu-jquery_cond-csrf_get.patch
22 brianr 1.60 Patch10: smeserver-manager-0.1.4-Update-format-for-datetime-and-reboot.patch
23 jpp 1.62 Patch11: smeserver-manager-0.1.4-bz12110-untainting-printer.patch
24 jpp 1.63 Patch12: smeserver-manager-0.1.4-bz12111-untainting-date.patch
25 michel 1.64 Patch13: smeserver-manager-0.1.4-bz11816_password_reset.patch
26 brianr 1.65 Patch14: smeserver-manager-0.1.4-Fix-typo-in-datetime-processing.patch
27 brianr 1.66 Patch15: smeserver-manager-0.1.4-Correct-Requires-slapd-ldap-in-systemd-service-file.patch
28 michel 1.67 Patch16: smeserver-manager-0.1.4-yum_session_awstats.patch
29 brianr 1.68 Patch17: smeserver-manager-0.1.4-Add-css-to-hover-and-click-feedback-on-submit.patch
30 brianr 1.69 Patch18: smeserver-manager-0.1.4-Update-to-use-jquery-dataTables-in-tables.patch
31 brianr 1.51
32 michel 1.33 BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot
33     BuildArchitectures: noarch
34 jpp 1.1 BuildRequires: e-smith-devtools
35 michel 1.33 #<Build tests>
36     #BuildRequires: perl >= 0:5.016
37     #BuildRequires: perl(Test::More)
38     #BuildRequires: perl(Test::Mojo)
39     #BuildRequires: perl(Mojolicious) >= 7.56
40     #BuildRequires: perl(Mojolicious::Plugin::I18N) >= 1.6
41     #BuildRequires: perl(Net::Netmask) >= 1.9
42     #</Build tests>
43    
44 jpp 1.1 Requires: e-smith-lib >= 1.18.0-26
45     Requires: e-smith-manager >= 2.4.0-22
46 michel 1.64 Requires: e-smith-apache >= 2.6.0-19
47     Requires: smeserver-php >= 3.0.0-43
48 michel 1.58 Requires: perl(Mojolicious) >= 7.56
49     Requires: perl(Mojolicious::Plugin::I18N) >= 1.6
50     Requires: perl(Mojolicious::Plugin::RenderFile) >= 0.12
51     Requires: perl(Mojolicious::Plugin::CSRFDefender) >= 0.0.8
52     Requires: perl(Net::Netmask) >= 1.9
53 michel 1.64 Requires: perl(DBM::Deep) >= 2.0011-1
54     Requires: perl(Mojo::JWT) >= 0.08-1
55     Requires: mutt >= 1.5.21
56 michel 1.26 #Requires: js-jquery > 2.2.4-3 (optional)
57 michel 1.33
58 michel 1.24 Provides: server-manager
59 jpp 1.1 AutoReqProv: no
60    
61 michel 1.26 %define dir_mngr /usr/share/smanager
62    
63     %description
64 michel 1.35 This RPM contributes the navigation bars for the smeserver-manager. New Mojolicious version.
65 michel 1.26
66     %prep
67     %setup
68 michel 1.49 %patch0 -p1
69 michel 1.50 %patch1 -p1
70 brianr 1.51 %patch2 -p1
71 brianr 1.52 %patch3 -p1
72 brianr 1.53 %patch4 -p1
73 brianr 1.54 %patch5 -p1
74 brianr 1.55 %patch6 -p1
75 brianr 1.56 %patch7 -p1
76 michel 1.57 %patch8 -p1
77 michel 1.58 %patch9 -p1
78 brianr 1.60 %patch10 -p1
79 jpp 1.62 %patch11 -p1
80 jpp 1.63 %patch12 -p1
81 michel 1.64 %patch13 -p1
82 brianr 1.65 %patch14 -p1
83 brianr 1.66 %patch15 -p1
84 michel 1.67 %patch16 -p1
85 brianr 1.68 %patch17 -p1
86 brianr 1.69 %patch18 -p1
87 michel 1.26
88     %build
89     perl createlinks
90    
91     # Force creation of potentially empty directories
92     mkdir -p root/etc/e-smith/db/routes
93     mkdir -p root/home/e-smith/db/navigation2
94     mkdir -p root%{dir_mngr}/themes/default/public/css
95 michel 1.58 mkdir -p root%{dir_mngr}/data
96     cp %{SOURCE1} root%{dir_mngr}/themes/default/public/images
97 michel 1.26
98     %install
99     rm -rf $RPM_BUILD_ROOT
100     (cd root ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT)
101     rm -f %{name}-%{version}-%{release}-filelist
102     /sbin/e-smith/genfilelist $RPM_BUILD_ROOT \
103     --dir %{dir_mngr} 'attr(0755,root,root)' \
104     --file %{dir_mngr}/log/development.log 'attr(0660,root,admin)' \
105     --file %{dir_mngr}/log/production.log 'attr(0660,root,admin)' \
106 michel 1.45 --file %{dir_mngr}/script/daily.sh 'attr(0770,root,root)' \
107     --file %{dir_mngr}/script/routes.pl 'attr(0770,root,root)' \
108     --file %{dir_mngr}/script/secrets.pl 'attr(0770,root,root)' \
109 michel 1.26 > %{name}-%{version}-%{release}-filelist
110    
111 michel 1.45 echo "%doc COPYING f2b/*" >> %{name}-%{version}-%{release}-filelist
112 michel 1.26
113 michel 1.33 %check
114     #cd $RPM_BUILD_ROOT/%{dir_mngr} && QUICK_TEST=1 /usr/bin/prove -q -l -r
115 michel 1.26
116     %clean
117     rm -rf $RPM_BUILD_ROOT
118    
119     %preun
120 michel 1.61 # complete remove
121     if [ $1 == 0 ]
122 michel 1.26 then
123 michel 1.61 systemctl stop smanager.service
124     rm -f /home/e-smith/db/navigation2/*
125     rm -f /home/e-smith/db/routes
126     rm -f %{dir_mngr}/themes/default/public/css/*
127     rm -rf %{dir_mngr}/themes/default/public/js
128     find %{dir_mngr}/lib/SrvMngr/I18N/Modules -type f -name '*.pm' -exec rm '{}' \;
129 michel 1.26 fi
130     true
131    
132     %post
133     if [ -f /usr/share/javascript/jquery/latest/jquery.min.js ]
134     then
135 michel 1.50 [ -d %{dir_mngr}/themes/default/public/js ] ||
136     mkdir %{dir_mngr}/themes/default/public/js
137     [ -h %{dir_mngr}/themes/default/public/js/jquery.min.js ] ||
138     ln -s /usr/share/javascript/jquery/latest/jquery.min.js %{dir_mngr}/themes/default/public/js/jquery.min.js
139 michel 1.61 [ -h %{dir_mngr}/themes/default/public/js/jquery.min.map ] ||
140     ln -s /usr/share/javascript/jquery/latest/jquery.min.map %{dir_mngr}/themes/default/public/js/jquery.min.map
141 michel 1.26 fi
142     true
143    
144     %files -f %{name}-%{version}-%{release}-filelist
145     %defattr(-,root,root)
146 michel 1.19
147 jpp 1.1 %changelog
148 brianr 1.69 * Sat Jan 27 2024 Brian Read <brianr@koozali.org> 0.1.4-22.sme
149     - Update to use jquery plugin dataTables [SME: 12458]
150     - Update Copyright footer to 2024
151     - Edit tables to have TableSort in class
152     - Fix up tables tbody and thead correctly
153     - Sort out action column to make compatible with dataTable
154 brianr 1.70 - Change action links to icons
155 brianr 1.69
156 brianr 1.68 * Sun Dec 03 2023 Brian Read <brianr@koozali.org> 0.1.4-21.sme
157     - Update CSS to provide feedback to hover and click on panel submit button [SME: 12442]
158    
159 michel 1.67 * Tue Apr 25 2023 Michel Begue <mab974@misouk.com> 0.1.4-20.sme
160     - general locales for awstats [SME:12324b]
161     - fix reconfigure asked when not needed [SME: 12171b]
162     - remove unSafe status from session data
163    
164 brianr 1.66 * Wed Dec 28 2022 Brian Read <brianr@bjsystems.co.uk> 0.1.4-19.sme
165     - Fix requires in systemd smanager.server file [SME:12294]
166    
167 brianr 1.65 * Fri Dec 09 2022 Brian Read <brianr@bjsystems.co.uk> 0.1.4-18.sme
168     - Fix up typo in datetime processing [SME: 11827]
169    
170 michel 1.64 * Mon Jul 18 2022 Michel Begue <mab974@misouk.com> 0.1.4-17.sme
171     - add forgotten password link to login panel [SME: 11816]
172     - update to httpd 2.4 syntax [SME: 12112]
173     - enable backup of /usr/share/smanager/data
174     - fix target in link to 'Previous SM'
175    
176 jpp 1.63 * Sun Jul 17 2022 Jean-Philippe Pialasse <tests@pialasse.com> 0.1.4-16.sme
177     - untainting datetime [SME: 12111]
178    
179 jpp 1.62 * Sun Jul 17 2022 Jean-Philippe Pialasse <tests@pialasse.com> 0.1.4-15.sme
180     - untainting printer [SME: 12110]
181    
182 michel 1.61 * Fri Jan 21 2022 Michel Begue <mab974@misouk.com> 0.1.4-14.sme
183     - Fix jquery map link missing
184     - Fix jquery link deleted during update
185     - Remove generated file during remove
186    
187 brianr 1.60 * Wed Jan 05 2022 Brian Read <brianr@bjsystems.co.uk> 0.1.4-13.sme
188     - Update-format-for-datetime-and-reboot [SME: 11830]
189    
190 michel 1.59 * Mon Jan 03 2022 Michel Begue <mab974@misouk.com> 0.1.4-12.sme
191 michel 1.58 - Add show password icon to login panel (requires jquery)
192     - Extend toggle hide to section menu (requires jquery)
193     - Set layout according to jquery presence
194     - Set CSRF less strict for GET method. Only if csrftoken param exists [SME: 11789]
195    
196 michel 1.57 * Mon Dec 27 2021 Michel Begue <mab974@misouk.com> 0.1.4-10.sme
197     - Fix empty selection list in workstation restore of backup panel [SME: 11185]
198    
199 brianr 1.56 * Mon Dec 27 2021 Brian Read <brianr@bjsystems.co.uk> 0.1.4-9.sme
200     - format-for-dhcp-ips-in-review-config [SME: ]
201    
202 brianr 1.55 * Sun Dec 26 2021 Brian Read <brianr@bjsystems.co.uk> 0.1.4-8.sme
203     - fix-translation-strings-with-prefix-for-review-config [SME: 11823]
204    
205 brianr 1.54 * Sun Dec 26 2021 Brian Read <brianr@bjsystems.co.uk> 0.1.4-7.sme
206     - Sort-out-responsive-table-in-user-and-host-lists [SME: 11824]
207    
208 brianr 1.53 * Sun Dec 26 2021 Brian Read <brianr@bjsystems.co.uk> 0.1.4-6.sme
209     - e-format html for Vistual domains inReview config to be compatible with email format list [SME 11822]
210    
211 brianr 1.52 * Mon Dec 20 2021 Brian Read <brianr@bjsystems.co.uk> 0.1.4-5.sme
212     - Add-span-to-group-member-checkbox-list [SME: 11815]
213    
214 brianr 1.51 * Mon Nov 29 2021 Brian Read <brianr@bjsystems.co.uk> 0.1.4-4.sme
215     - Add-dummy-classes-to-ep-files.patch [SME: 11780]
216    
217 michel 1.50 * Mon Nov 15 2021 Michel Begue <mab974@misouk.com> 0.1.4-3.sme
218     - Fix error message when linking, unlinking jquery in spec
219     - Correct the 'review' panel presentation
220     - Modify CSRFDefender plugin to take into account GET method
221     - Add TOKEN param where the GET method is used in templates
222     - Remove smanager from local url address
223    
224 michel 1.49 * Mon Oct 11 2021 Michel Begue <mab974@protonmail.com> 0.1.4-2.sme
225     - Fix incorrect list order (users, ibays, ...)
226     - Add external private access (remote management)
227     - Change CSRF error message
228    
229 michel 1.48 * Mon Jun 21 2021 Michel Begue <mab974@gmail.com> 0.1.4-1.sme
230     - New version: smeserver-manager-0.1.4-1 (= 0.1.2-13)
231    
232 michel 1.47 * Sat Jun 19 2021 Michel Begue <mab974@gmail.com> 0.1.2-13.sme
233     - Remove non english locale files (move to smeserver-manager-locale)
234     - Fix error in 'locale2-conf' action
235    
236 michel 1.46 * Tue Jun 15 2021 Michel Begue <mab974@gmail.com> 0.1.2-12.sme
237     - Fix errors in daily script
238     - Fix url and routes for 'hostentries' panel
239     - Change GET to POST method for CSRF plugin (routes and templates)
240     - Fix some translations
241    
242 michel 1.45 * Tue Jun 08 2021 Michel Begue <mab974@gmail.com> 0.1.2-11.sme
243     - Add cron job for secrets and routes purge
244     - Add CSRFDefender plugin against CSRF attacks
245     - Add optional fail2ban configuration files in doc
246     - Fix zh-tw locale file name
247     - Fix missing links in 'Bugreport'
248     - Fix copyright in footer
249     - Fix translations
250    
251 michel 1.44 * Thu Jun 03 2021 Michel Begue <mab974@gmail.com> 0.1.2-10.sme
252     - Add header for contrib in layout
253     - fix emailsettings error 'webmail is only SSL' [SME: 11443]
254     - fix locale files
255     - clean up template files
256    
257 michel 1.43 * Wed Apr 21 2021 Michel Begue <mab974@gmail.com> 0.1.2-9.sme
258     - Add access attribute in configuration base
259     - Verify modes and access compatibility
260     - Display theme_switch button to logged in users only [SME: 11571]
261    
262 michel 1.42 * Tue Apr 20 2021 Michel Begue <mab974@gmail.com> 0.1.2-8.sme
263     - Fix 'theme switch' [SME: 11571]
264    
265 michel 1.41 * Mon Apr 12 2021 Michel Begue <mab974@gmail.com> 0.1.2-7.sme
266     - Fix server-mode in bugreport [SME: 10448]
267     - Add systemd-default for smanager type (service) [SME: 11544]
268     - Fix smanager type and status in db
269     - Move initial security notification to central place
270     - Render 'Manual' output in template
271     - Add a link to koozali.org on Sme logo
272    
273 michel 1.40 * Mon Jan 25 2021 Michel Begue <mab974@gmail.com> 0.1.2-6.sme
274     - Fix missing backup functions
275     - background mode for halt and reboot
276     - Store debug mode in ENV
277     - Add a warning mode notification
278     - Fix some translations needing to be escaped
279    
280 michel 1.39 * Wed Jan 13 2021 Michel Begue <mab974@gmail.com> 0.1.2-5.sme
281     - Fix menu items not translated [SME: 11322]
282     - Add other locales files
283    
284 michel 1.38 * Thu Jan 07 2021 Michel Begue <mab974@gmail.com> 0.1.2-4.sme
285     - Fix 404 error when trailing slash is missing
286     - Fix missing translations for ibay and quota panels
287     - Comment out pptp settings in remoteaccess panel
288     - Fix 'sigusr1' exec for httpd [SME: 11185]
289    
290 michel 1.37 * Tue Dec 01 2020 Michel Begue <mab974@gmail.com> 0.1.2-3.sme
291     - Fix download error on 'viewlogfiles' panel [SME: 11217]
292     - Fix duplicate entries in log files to be chosen
293     - Fix duplicate translation terms in 'General' lexicon
294    
295 michel 1.36 * Fri Nov 20 2020 Michel Begue <mab974@gmail.com> 0.1.2-2.sme
296     - Fix smanager-update event name
297     - Move smanager service to /usr/lib/systemd
298     - Fix Bugreport file download
299     - Fix translations missing in 'viewlogfiles'
300     - Remove Admin auth in httpd configuration
301     - Add an optional alias for admin sign in.
302     - Remove systemctl from .spec file
303    
304 michel 1.35 * Thu Nov 19 2020 Michel Begue <mab974@gmail.com> 0.1.2-1.sme
305     - Create new version smeserver-manager-0.1.2-1 (= 0.1.0-31)
306    
307 michel 1.34 * Wed Oct 07 2020 Michel Begue <mab974@gmail.com> 0.1.0-31.sme
308     - smanager-refresh event come back
309     - add smanager version in footer
310     - add optional refresh in layout
311     - fix yum logfile displaying
312    
313 michel 1.33 * Mon Oct 05 2020 Michel Begue <mab974@gmail.com> 0.1.0-30.sme
314     - fix I18N Namespace change for keeping Language
315     - clean up emailsettings code
316     - remove old global lexicon files
317     - add first simple tests
318     - add smanager-update event
319    
320 michel 1.32 * Mon Aug 17 2020 Michel Begue <mab974@gmail.com> 0.1.0-29.sme
321     - validate lexicon file before install
322     - fix route url construction (+)
323     - add authentication messages to locales
324    
325 michel 1.31 * Fri Aug 07 2020 Michel Begue <mab974@gmail.com> 0.1.0-28.sme
326     - validate netmask in LocalNetworks [SME: 10976]
327     - validate netmask in RemoteAccess [SME: 10977]
328     - prettier action button
329     - accept undescore in lexicon name
330     - change route urls for LocalNetworks and Portforwarding
331     - add rendering to LocalNetworks notification
332    
333 michel 1.30 * Mon Jul 06 2020 Michel Begue <mab974@gmail.com> 0.1.0-27.sme
334     - Fix typo in %post here
335     - Complete 'datetime' panel
336     - Fix notification in 'quota' panel
337    
338 michel 1.29 * Wed Jul 01 2020 Michel Begue <mab974@gmail.com> 0.1.0-26.sme
339     - Fix first start error
340     - Fix incorrect messages and various typos in modules
341     - Add possibility to hide menu(s) (requires jquery)
342    
343 michel 1.28 * Sat Jun 13 2020 Michel Begue <mab974@gmail.com> 0.1.0-25.sme
344     - Remove 'Starterwebsite' panel [SME: 8903]
345     - Add choice for creating Pseudonyms [SME: 9457]
346     - Change URL in 'useraccounts' templates
347     - Change app to smanager in controller 'Swttheme'
348    
349 michel 1.27 * Wed Jun 10 2020 Michel Begue <mab974@gmail.com> 0.1.0-24.sme
350     - Fix missing translations for some panels
351    
352 michel 1.26 * Mon Jun 08 2020 Michel Begue <mab974@gmail.com> 0.1.0-23.sme
353     - Transform to Mojo application (apache/mod_proxy mode)
354     - Add internal login and multi mode menus
355     - Add userpassword panel
356    
357 michel 1.25 * Fri May 08 2020 Michel Begue <mab974@gmail.com> 0.1.0-22.sme
358     - Fix translation in 'useraccounts' panel
359     - Restore theme switcher route
360     - Fix theme switcher redirection
361     - fix lexicon file not found [SME: 10927]
362    
363 michel 1.24 * Mon Apr 27 2020 Michel Begue <mab974@gmail.com> 0.1.0-21.sme
364     - Fix error and success management
365     - Optimize Routes (number)
366     - Delete share_dir variable
367     - Attach Locale lexicon to Panel and Panel?
368     - Fix lack of translation of first page
369    
370 michel 1.23 * Wed Apr 15 2020 Michel Begue <mab974@gmail.com> 0.1.0-20.sme
371     - Patch the I18N plugin to accept namespace changes
372     - Split global locales files to module level
373     - Consider additional contrib locales files
374     - Consider additional contrib routes and navigation item
375     - fix colour button in portforwarding panel
376     - fix missing esmith::util in starterwebsite panel
377    
378 michel 1.22 * Tue Apr 14 2020 Michel Begue <mab974@gmail.com> 0.1.0-19.sme
379     - Remove tests : useraccounts, wbl
380    
381 michel 1.21 * Sat Apr 11 2020 Michel Begue <mab974@gmail.com> 0.1.0-18.sme
382 michel 1.19 - Add panels : emailaccess, yum, backup
383     - Fix Rendering comments in portforwarding & localnetworks panels
384     - Css and images files added (from manager).
385     - Initial javascript in navigation added (jQuery) -optional-
386     - Add 'Heading...' navigation informations in controllers
387     - Show Themes_switch if there is more than one theme
388    
389     * Tue Apr 07 2020 Brian Read <brianr@bjsystems.co.uk> 0.1.0-15.sme
390 brianr 1.18 - Sort out rule comment in portforwarding add panel
391    
392     * Tue Apr 07 2020 Brian Read <brianr@bjsystems.co.uk> 0.1.0-14.sme
393 brianr 1.17 - Add in portforwarding panel
394     - Clean up localnetwork panel code
395    
396 brianr 1.16 * Sun Mar 29 2020 Brian Read <brianr@bjsystems.co.uk> 0.1.0-13.sme
397     - Remove Db call in LN_del template
398     - Use Sme-error css class and make sure parameters applied to error message
399     - Remove creation of AdminLTE directories on install
400    
401 brianr 1.15 * Fri Mar 20 2020 Brian Read <brianr@bjsystems.co.uk> 0.1.0-12.sme
402     - Add panels : localnetworks
403     - Delete AdminLTE code - will get added into new rpm
404    
405 michel 1.14 * Sat Feb 29 2020 Michel Begue <mab974@gmail.com> 0.1.0-11.sme
406     - Add panels : remoteaccess, useraccounts and viewlogfiles
407     - Fix 'bugreport' download
408     - css enhancement in default theme
409     - Fix warnings and typos
410    
411 michel 1.13 * Wed Feb 19 2020 Michel Begue <mab974@gmail.com> 0.1.0-10.sme
412     - add panels : domains, hostentries and pseudonyms
413     - remove old navigation menu
414    
415 michel 1.12 * Mon Jan 27 2020 Michel Begue <mab974@gmail.com> 0.1.0-9.sme
416     - Fix messages without variables expansion
417     - add a theme switcher
418     - split navigation menu between controller and template
419     - template + event for .conf file
420    
421 michel 1.11 * Thu Jan 23 2020 Michel Begue <mab974@gmail.com> 0.1.0-8.sme
422     - Fix errors in Navigation
423    
424 michel 1.10 * Wed Jan 22 2020 Michel Begue <mab974@gmail.com> 0.1.0-7.sme
425     - Fix link between Navigation and Theme
426     - Add System and Domain names to available data (header)
427     - Move some data lists from template to controller (select_field)
428     - Integrate last Brian's changes in server-manager2.css (AdminLTE)
429     - Fix some warnings and typos
430    
431 brianr 1.9 * Fri Jan 17 2020 Brian Read <brianr@bjsystems.co.uk> 0.1.0-6.sme
432     - Add in theme based on AdminLTE html template
433     - Fixes Server name in header (Needs Template expansion - added to Console-Save
434    
435 michel 1.8 * Sun Jan 12 2020 Michel Begue <mab974@gmail.com> 0.1.0-5.sme
436 michel 1.7 - new theme to come
437     - css enhancement (thanks to B. Read)
438     - panels: reboot and ibays
439    
440 michel 1.6 * Wed Jan 01 2020 Michel Begue <mab974@gmail.com> 0.1.0-4.sme
441     - fix setuid with wrapper (remove sudo)
442     - panels quota and groups
443    
444 michel 1.5 * Mon Dec 16 2019 Michel Begue <mab974@gmail.com> 0.1.0-3.sme
445     - simple architecture : basic mojolicious app running
446     - some panels
447     - requires perl-Mojolicious-Plugin-I18N
448    
449 jcrisp 1.4 * Tue Feb 06 2018 John Crisp <jcrisp@safeandsoundit.co.uk> 0.1.0-2.sme
450     - Start adding some template files
451    
452 jpp 1.1 * Sun Feb 04 2018 Jean-Philipe Pialasse <tests@pialasse.com> 0.1.0-1.sme
453     - first smeserver-manager package [SME: 10506]
454     this is a sandbox to dev the next server-manager based on mojolicious
455     this package is based on part of the old e-smith-manager and needs it
456     to work until we moved the httpd-admin part.
457    
458     * Sun Apr 16 2017 Jean-Philipe Pialasse <tests@pialasse.com> 2.8.0-26.sme
459     - add a panel to ease reporting bugs [SME: 8783]
460     - Original work from Mats Schuh m.schuh@neckargeo.net
461    
462     * Wed Apr 05 2017 Jean-Philipe Pialasse <tests@pialasse.com> 2.8.0-20.sme
463     - fix warning uninitialized value in lc [SME: 10209]
464    
465     * Mon Mar 27 2017 Jean-Philipe Pialasse <tests@pialasse.com> 2.8.0-19.sme
466     - fix typo in e-smith-manager-2.8.0-bz10167-emptyback.patch
467    
468     * Sat Mar 25 2017 Jean-Philipe Pialasse <tests@pialasse.com> 2.8.0-18.sme
469     - avoid internal server error if empty back parameter [SME: 10167]
470     - return user friendly message
471    
472     * Sat Mar 25 2017 Jean-Philipe Pialasse <tests@pialasse.com> 2.8.0-17.sme
473     - fix too short timeout in server-manager [SME: 9921]
474     - now 30 min as default instead of 5
475     - possibility to change this and adapt the default 0.66 of timeout remaining to reset it
476     - by default only a session cookie, can activate persistent cookie
477     - sha256 as encryption.
478    
479     * Mon Jan 16 2017 Jean-Philipe Pialasse <tests@pialasse.com> 2.8.0-15.sme
480     - fix bad redirection parameter that might reveal session information to remote site [SME: 9924]
481    
482     * Tue Jul 19 2016 Jean-Philipe Pialasse <tests@pialasse.com> 2.8.0-13.sme
483     - added missing template-begin for tkt.css [SME: 9676]
484    
485     * Tue Jul 19 2016 Jean-Philipe Pialasse <tests@pialasse.com> 2.8.0-12.sme
486     - Update server-manager to Koozali branding [SME: 9676]
487     - We thanks John Crisp for his wonderful work.
488    
489     * Wed Jun 15 2016 Jean-Philipe Pialasse <tests@pialasse.com> 2.8.0-11.sme
490     - change link for donation to koozali.org [SME: 9599]
491    
492     * Wed Jun 15 2016 Daniel Berteaud <daniel@firewall-services.com> 2.8.0-10.sme
493     - Fix syntax for removing Indexes options [SME: 9587]
494    
495     * Wed Jun 15 2016 Daniel Berteaud <daniel@firewall-services.com> 2.8.0-9.sme
496     - Remove index option for manager's resources [SME: 9587]
497    
498     * Mon Jun 13 2016 Jean-Philipe Pialasse <tests@pialasse.com> 2.8.0-8.sme
499     - fix 307 redirection to http when https is used [SME: 8825] [SME: 9583]
500     - update syntaxe for TKT Auth
501     - bump 8 for typo
502    
503     * Wed Jun 1 2016 Daniel Berteaud <daniel@firewall-services.com> 2.8.0-6.sme
504     - Fix a syntax error in server-manager's logout script [SME: 9527]
505    
506     * Wed May 11 2016 Daniel Berteaud <daniel@firewall-services.com> 2.8.0-5.sme
507     - Add a C wrapper to execute manager's cgi to replace perl-suid [SME: 9393]
508    
509     * Wed Mar 23 2016 Jean-Philipe Pialasse <tests@pialasse.com> 2.8.0-4.sme
510     - fix syntax for httpd 2.4 [SME: 9365]
511    
512     * Fri Mar 18 2016 Jean-Philipe Pialasse <tests@pialasse.com> 2.8.0-3.sme
513     - rebuild for Bug [SME: 9347]
514     - Eliminated rpmbuild "bogus date" warnings due to inconsistent weekday,
515     by assuming the date is correct and changing the weekday.
516     Wed Mar 14 2000 --> Wed Mar 08 2000 or Tue Mar 14 2000 or Wed Mar 15 2000 or ....
517     Wed Apr 04 2002 --> Wed Apr 03 2002 or Thu Apr 04 2002 or Wed Apr 10 2002 or ....
518     Tue May 15 2008 --> Tue May 13 2008 or Thu May 15 2008 or Tue May 20 2008 or ....
519    
520     * Fri Mar 18 2016 Daniel Berteaud <daniel@firewall-services.com> 2.8.0-2.sme
521     - Don't require perl-suidperl anymore [SME: 9339]
522    
523     * Fri Feb 05 2016 stephane de Labrusse <stephdl@de-labrusse.fr> 2.8.0-1.sme
524     - Initial release to sme10
525    
526     * Fri Feb 5 2016 Daniel Berteaud <daniel@firewall-services.com> 2.6.0-4.sme
527     - Really don't redirect to http when login in/out of the server-manager
528     [SME: 9163]
529    
530     * Sun Jan 31 2016 Daniel Berteaud <daniel@firewall-services.com> 2.6.0-3.sme
531     - Don't redirect to http when login in/out of the server-manager from
532     localhost [SME: 9163]
533    
534     * Tue Jan 6 2015 Daniel Berteaud <daniel@firewall-services.com> 2.6.0-2.sme
535     - Allow access to the server-manager without SSL from the loopback
536     [SME: 9163]
537    
538     * Sun Mar 23 2014 Ian Wells <esmith@wellsi.com> 2.6.0-1.sme
539     - Roll new stream to remove obsolete images [SME: 7962]
540    
541     * Sun Mar 23 2014 Ian Wells <esmith@wellsi.com> 2.4.0-9.sme
542     - Remove references to obsolete images, by Stephane de Labrusse [SME: 7962]
543    
544     * Fri Oct 11 2013 Ian Wells <esmith@wellsi.com> 2.4.0-8.sme
545     - Renew donation text in server-manager, by John Crisp [SME: 7897]
546    
547     * Thu Jun 6 2013 Daniel Berteaud <daniel@firewall-services.com> 2.4.0-7.sme
548     - Do not load mod_ssl [SME: 7602]
549    
550     * Wed Mar 6 2013 Shad L. Lords <slords@mail.com> 2.4.0-6.sme
551     - Correct path to pwauth [SME: 7319]
552    
553     * Sat Feb 23 2013 Ian Wells <esmith@wellsi.com> 2.4.0-5.sme
554     - Correct processing of server-manager URL [SME: 7254]
555    
556     * Thu Jan 31 2013 Shad L. Lords <slords@mail.com> 2.4.0-4.sme
557     - Fix typo in perl(Apache::AuthTkt) requires [SME: 7236]
558    
559     * Thu Jan 31 2013 Shad L. Lords <slords@mail.com> 2.4.0-3.sme
560     - Add perl-suidperl dependency [SME: 7235]
561    
562     * Thu Jan 31 2013 Shad L. Lords <slords@mail.com> 2.4.0-2.sme
563     - Add perl(Apache::AuthTkt) dependency [SME: 7236]
564    
565     * Thu Jan 31 2013 Shad L. Lords <slords@mail.com> 2.4.0-1.sme
566     - Roll new stream for sme9
567    
568     * Sat Aug 7 2010 Ian Wells <esmith@wellsi.com> 2.2.0-6.sme
569     - Remove empty <p> tag from /etc/e-smith/web/common/foot.tmpl, by Daniel [SME: 5905]
570    
571     * Sun Jan 31 2010 Jonathan Martens <smeserver-contribs@snetram.nl> 2.2.0-5.sme
572     - Only display error messages intended for admin in server-manager [SME: 5700]
573    
574     * Wed Dec 9 2009 Charlie Brady <charlieb@budge.apana.org.au> 2.2.0-4.sme
575     - Fix css validation errors. [SME: 5656]
576    
577     * Fri Sep 18 2009 Stephen Noble <support@dungog.net> 2.2.0-4.sme
578     - display reconfigure warning once if UnsavedChanges=yes [SME: 5475]
579    
580     * Fri Sep 18 2009 Stephen Noble <support@dungog.net> 2.2.0-3.sme
581     - display reconfigure warning if UnsavedChanges=yes [SME: 5475]
582    
583     * Sun Apr 26 2009 Jonathan Martens <smeserver-contribs@snetram.nl> 2.2.0-2.sme
584     - Fix misinterpretation of display string [SME: 5022]
585    
586     * Tue Oct 7 2008 Shad L. Lords <slords@mail.com> 2.2.0-1.sme
587     - Roll new stream to separate sme7/sme8 trees [SME: 4633]
588    
589     * Sat Oct 4 2008 Shad L. Lords <slords@mail.com> 1.14.0-20
590     - Make navigation use new db class for navigation [SME: 4619]
591    
592     * Thu Jul 31 2008 Shad L. Lords <slords@mail.com> 1.14.0-19
593     - Make binmode properties of db class [SME: 4317]
594     - Add new navigation db & utf8 classes [SME: 4317]
595    
596     * Tue Jul 1 2008 Shad L. Lords <slords@mail.com> 1.14.0-18
597     - Fix open of database to create if necessary [SME: 4147]
598    
599     * Thu May 15 2008 Shad L. Lords <slords@mail.com> 1.14.0-17
600     Tue May 15 2008 --> Tue May 13 2008 or Thu May 15 2008 or Tue May 20 2008 or ....
601     - No longer remove navigation dbs. [SME: 4147]
602     - Deal a little more gracefully with non UTF-8 lexicons [SME: 4229]
603    
604     * Mon Mar 31 2008 Shad L. Lords <slords@mail.com> 1.14.0-16
605     - Remove navigation dbs and create new [SME: 4147]
606    
607     * Fri Mar 28 2008 Shad L. Lords <slords@mail.com> 1.14.0-15
608     - Remove last remnant of pleasewait [SME: 4130]
609    
610     * Wed Mar 26 2008 Shad L. Lords <slords@mail.com> 1.14.0-14
611     - Include general lexicons in nav-config [SME: 4113]
612    
613     * Tue Mar 25 2008 Shad L. Lords <slords@mail.com> 1.14.0-13
614     - Fix wide output to print in navigation and allow navigations db to
615     be utf8 [SME: 4101]
616    
617     * Sat Mar 22 2008 Shad L. Lords <slords@mail.com> 1.14.0-12
618     - Fix UTF-8 encoding in header and nav-conf [SME: 4072]
619    
620     * Tue Jan 08 2008 Stephen Noble <support@dungog.net> 1.14.0-11
621     - Fix to remove spaces and newlines in panel headers [SME: 3346]
622    
623     * Tue Jan 08 2008 Stephen Noble <support@dungog.net> 1.14.0-10
624     - remove the FormMagick session files [SME: 3723]
625    
626     * Tue Jan 08 2008 Stephen Noble <support@dungog.net> 1.14.0-9
627     - Remove spaces and newlines in panel headers [SME: 3346]
628    
629     * Sun Jul 01 2007 Shad L. Lords <slords@mail.com> 1.14.0-8
630     - Make login/logout no quite so verbose. [SME: 2660]
631    
632     * Fri May 18 2007 Shad L. Lords <slords@mail.com> 1.14.0-7
633     - Use correct lib for modules
634    
635     * Sun Apr 29 2007 Shad L. Lords <slords@mail.com>
636     - Clean up spec so package can be built by koji/plague
637    
638     * Mon Apr 9 2007 Stephen Noble <support@dungog.net> 1.14.0-6
639     - Convert http to https [SME: 2577]
640    
641     * Mon Mar 12 2007 Gavin Weight <gweight@gmail.com> 1.14.0-5
642     - Restyle the SME Server manager login form. [SME: 2666]
643    
644     * Mon Mar 05 2007 Shad L. Lords <slords@mail.com> 1.14.0-4
645     - Don't pass domain in ticket cookie (logout) unless it contains a dot [SME: 2402]
646    
647     * Mon Mar 05 2007 Shad L. Lords <slords@mail.com> 1.14.0-3
648     - Don't pass domain in ticket cookie (login) unless it contains a dot [SME: 2402]
649    
650     * Tue Feb 13 2007 Charlie Brady <charlie_brady@mitel.com> 1.14.0-2
651     - Deal gracefully with renamed apache modules. [SME: 2471]
652    
653     * Fri Jan 26 2007 Shad L. Lords <slords@mail.com> 1.14.0-1
654     - Roll stable stream. [SME: 2328]
655    
656     * Fri Jan 19 2007 Shad L. Lords <slords@mail.com> 1.13.1-13
657     - Create /etc/httpd/admin-conf directory
658    
659     * Fri Jan 19 2007 Shad L. Lords <slords@mail.com> 1.13.1-12
660     - Move apache logrotate to e-smith-apache.
661     - Put quotes around 'httpd-admin' in hashes.
662    
663     * Thu Jan 18 2007 Shad L. Lords <slords@mail.com> 1.13.1-11
664     - Move last httpd fragments from e-smith-base.
665    
666     * Thu Dec 07 2006 Shad L. Lords <slords@mail.com>
667     - Update to new release naming. No functional changes.
668     - Make Packager generic
669    
670     * Mon Nov 27 2006 Charlie Brady <charlie_brady@mitel.com> 1.13.1-09
671     - Randomize string used for encrypting auth tickets.
672    
673     * Tue Nov 21 2006 Charlie Brady <charlie_brady@mitel.com> 1.13.1-08
674     - Add ProxyPassReverse entries for server-manager passthroughs, so that
675     redirects work correctly.
676    
677     * Thu Nov 16 2006 Charlie Brady <charlie_brady@mitel.com> 1.13.1-07
678     - Add basic L10N in navigation-conf.
679    
680     * Wed Nov 15 2006 Charlie Brady <charlie_brady@mitel.com> 1.13.1-06
681     - Avoid use of FormMagick in navigation-conf. TODO: fix I18N.
682    
683     * Mon Nov 06 2006 Charlie Brady <charlie_brady@mitel.com> 1.13.1-05
684     - Simplify the sorting code in navigation (so that I can understand
685     it).
686    
687     * Mon Nov 06 2006 Charlie Brady <charlie_brady@mitel.com> 1.13.1-04
688     - Simplify javascript, and remove use of pleasewait script.
689    
690     * Mon Nov 06 2006 Charlie Brady <charlie_brady@mitel.com> 1.13.1-03
691     - Move swapClass javascript out of standard header and into just
692     navigation.
693    
694     * Fri Nov 03 2006 Charlie Brady <charlie_brady@mitel.com> 1.13.1-02
695     - Use mod_auth_tkt authentication for server manager access.
696    
697     * Thu Nov 02 2006 Charlie Brady <charlie_brady@mitel.com> 1.13.1-01
698     - Add branch tag and roll new development version.
699    
700     * Wed Nov 01 2006 Charlie Brady <charlie_brady@mitel.com> 1.13.0-06
701     - Move httpd-admin and its configuration templates from e-smith-base RPM.
702     [SME: 2023]
703    
704     * Wed Nov 01 2006 Charlie Brady <charlie_brady@mitel.com> 1.13.0-05
705     - Move more server-manager components from e-smith-base RPM. [SME: 2023]
706    
707     * Wed Nov 01 2006 Charlie Brady <charlie_brady@mitel.com> 1.13.0-04
708     - Add manager header/footer templates (moved from e-smith-base)
709     [SME: 2023]
710    
711     * Wed Aug 2 2006 Michael Soulier <msoulier@digitaltorque.ca>
712     - [1.13.0-03]
713     - Fixing broken db path in patch. [SME: 107]
714    
715     * Wed Mar 29 2006 Michael Soulier <michael_soulier@mitel.com>
716     - [1.13.0-02]
717     - Forward porting arbitrary menu plugins. [SME: 107]
718    
719     * Wed Mar 29 2006 Michael Soulier <michael_soulier@mitel.com>
720     - [1.13.0-01]
721     - Rolling to dev.
722     [SME: 107]
723    
724     * Wed Mar 15 2006 Charlie Brady <charlie_brady@mitel.com> 1.12.0-01
725     - Roll stable stream version. [SME: 1016]
726    
727     * Tue Jan 31 2006 Gordon Rowell <gordonr@gormand.com.au> 1.11.0-13
728     - Changed the static CSS files into directory templates, which are
729     expanded in bootstrap-console-save [SME: 408]
730    
731     * Wed Nov 30 2005 Gordon Rowell <gordonr@gormand.com.au> 1.11.0-12
732     - Bump release number only
733    
734     * Sun Oct 16 2005 Gordon Rowell <gordonr@e-smith.com>
735     - [1.11.0-11]
736     - Removed "table-layout: fixed;" from sme_main.css [SF: 1299779]
737    
738     * Sun Oct 16 2005 Gordon Rowell <gordonr@e-smith.com>
739     - [1.11.0-10]
740     - dos2unix conversion on CSS files [SF: 1299779]
741    
742     * Wed Aug 17 2005 Charlie Brady <charlieb@e-smith.com>
743     - [1.11.0-09]
744     - Remove bogus "Provides: perl(I18N::AcceptLanguage)" header. [SF: 1262438]
745    
746     * Thu Jun 9 2005 Charlie Brady <charlieb@e-smith.com>
747     - [1.11.0-08]
748     - Add newly required manager/cgi-bin/{navigation,noframes} symlinks.
749     [SF: 1217426]
750    
751     * Tue Jun 7 2005 Charlie Brady <charlieb@e-smith.com>
752     - [1.11.0-07]
753     - Remove references to /etc/e-smith/web/panel/manager/common
754     [SF: 1172203, 1210715]
755    
756     * Tue Sep 28 2004 Michael Soulier <msoulier@e-smith.com>
757     - [1.11.0-06]
758     - Updated perl dependencies. [msoulier MN00040240]
759    
760     * Tue Jul 13 2004 Michael Soulier <msoulier@e-smith.com>
761     - [1.11.0-05]
762     - Added the sme_panel_menu.css file, for tabbed menu support. Added a link to
763     it in the standard header.
764     [msoulier MN00030141]
765    
766     * Thu Feb 26 2004 Michael Soulier <msoulier@e-smith.com>
767     - [1.11.0-04]
768     - Backed-out previous change. It was better before. [msoulier dpar-22042]
769    
770     * Thu Feb 26 2004 Michael Soulier <msoulier@e-smith.com>
771     - [1.11.0-03]
772     - Added vertical-align: text-top; to td.sme-noborders-label to ensure that
773     text is aligned vertically at the top of the cell. [msoulier dpar-22042]
774    
775     * Tue Jul 8 2003 Charlie Brady <charlieb@e-smith.com>
776     - [1.11.0-02]
777     - Check that files are executable before listing in the
778     manager navigation frame. [charlieb 9197]
779     - s/Copyright/License/.
780    
781     * Tue Jul 8 2003 Charlie Brady <charlieb@e-smith.com>
782     - [1.11.0-01]
783     - Changing version to development stream number - 1.11.0
784    
785     * Thu Jun 26 2003 Charlie Brady <charlieb@e-smith.com>
786     - [1.10.0-01]
787     - Changing version to stable stream number - 1.10.0
788    
789     * Mon Apr 21 2003 Gordon Rowell <gordonr@e-smith.com>
790     - [1.9.5-16]
791     - New class for error link within table cell [gordonr 8129]
792    
793     * Tue Apr 8 2003 Gordon Rowell <gordonr@e-smith.com>
794     - [1.9.5-15]
795     - Removed borders around "warning" cells so they don't look like
796     they are bleeding on some browsers (e.g. Mozilla) [gordonr 8127]
797    
798     * Thu Apr 3 2003 Gordon Rowell <gordonr@e-smith.com>
799     - [1.9.5-14]
800     - Make <h2> and <p> within div.{success,error} => {red,green} [gordonr 7919]
801    
802     * Wed Apr 2 2003 Gordon Rowell <gordonr@e-smith.com>
803     - [1.9.5-13]
804     - Moved manager SSL fragments back to e-smith-base [gordonr 7900]
805    
806     * Tue Apr 1 2003 Tony Clayton <apc@e-smith.com>
807     - [1.9.5-12]
808     - add td.sme-radiobutton css class for date/time panel [tonyc 1588]
809    
810     * Tue Apr 1 2003 Gordon Rowell <gordonr@e-smith.com>
811     - [1.9.5-11]
812     - Make the question make bold [gordonr 7946]
813    
814     * Tue Apr 1 2003 Gordon Rowell <gordonr@e-smith.com>
815     - [1.9.5-10]
816     - Fix SSL listen template for serveronly mode [gordonr 7900]
817    
818     * Tue Apr 1 2003 Gordon Rowell <gordonr@e-smith.com>
819     - [1.9.5-09]
820     - Bind manager on port 981 to localhost only [gordonr 7900]
821    
822     * Mon Mar 31 2003 Mike Dickson <miked@e-smith.com>
823     - [1.9.5-08]
824     - changed class for sme-noborders-label to width=33% rather than
825     a fixed 250px wide, due to limitations in IE6 [miked 7676]
826     - added class "sectionbar" for use [miked]
827     - modified "td.noborders-label" colour [miked]
828    
829    
830     * Fri Mar 28 2003 Gordon Rowell <gordonr@e-smith.com>
831     - [1.9.5-07]
832     - Changed Copyright font from 8px to 10px [gordonr 7676]
833    
834     * Thu Mar 27 2003 Mark Knox <markk@e-smith.com>
835     - [1.9.5-06]
836     - Changed Help -> ? and changed formatting of current user and host [markk
837     7707]
838    
839     * Thu Mar 20 2003 Tony Clayton <apc@e-smith.com>
840     - [1.9.5-05]
841     - Add css style for a.error class [tonyc 4718]
842    
843     * Wed Mar 19 2003 Gordon Rowell <gordonr@e-smith.com>
844     - [1.9.5-04]
845     - Move navigation dbs to /home/e-smith/db/navigation. We shouldn't generate
846     them in /etc/e-smith/locale and we should name them by language, in case
847     we share lexicons (e.g. fr/fr-ca) [gordonr 7733]
848    
849     * Sun Mar 16 2003 Mike Dickson <miked@e-smith.com>
850     - [1.9.5-03]
851     - stylesheet fixes: darkend the copyrigt text, adjuste the UL and LI tags [miked 7676]
852    
853     * Thu Mar 13 2003 Mark Knox <markk@e-smith.com>
854     - [1.9.5-02]
855     - Removed 40LogoRow from header.htm templates [markk 4722]
856    
857     * Thu Mar 13 2003 Mark Knox <markk@e-smith.com>
858     - [1.9.5-01]
859     - Removed product_logo.gif [markk 4722]
860    
861     * Tue Mar 11 2003 Mike Dickson <miked@e-smith.com>
862     - [1.9.4-09]
863     - changed Adming to admin in header.htm templates [miked 7595]
864    
865     * Thu Feb 6 2003 Mike Dickson <miked@e-smith.com>
866     - [1.9.4-08]
867     - updated the CSS to add a new "success" class [miked 7032]
868    
869     * Tue Feb 4 2003 Mark Knox <markk@e-smith.com>
870     - [1.9.4-07]
871     - Refer to new SSL cert name of $SystemName.$DomainName [markk 4874]
872    
873     * Mon Feb 3 2003 Mark Knox <markk@e-smith.com>
874     - [1.9.4-06]
875     - Include ValidFrom hosts in SSL allow statements [markk 6428]
876    
877     * Mon Feb 3 2003 Mark Knox <markk@e-smith.com>
878     - [1.9.4-05]
879     - Also Listen on the right ports [markk 6428]
880    
881     * Mon Feb 3 2003 Mark Knox <markk@e-smith.com>
882     - [1.9.4-04]
883     - Bind SSL to port 443 if no primary web server available [markk 6428]
884    
885     * Sat Jan 25 2003 Mike Dickson <miked@e-smith.com>
886     - [1.9.4-03]
887     - darkened colour of copyright text [miked 6696]
888    
889     * Sat Jan 25 2003 Mike Dickson <miked@e-smith.com>
890     - [1.9.4-02]
891     - removed demo class "warn" from nav script [miked 6706]
892    
893     * Mon Jan 13 2003 Mike Dickson <miked@e-smith.com>
894     - [1.9.4-01]
895     - updated CSS file to show correct colour in menu, added "warn.gif" [miked 6398]
896    
897     * Fri Jan 3 2003 Gordon Rowell <gordonr@e-smith.com>
898     - [1.9.3-13]
899     - Made use of esmith::I18N in navigation-conf. Renamed locale->lang
900     to make it more obvious that we are dealing with a langtag [gordonr 5212]
901    
902     * Thu Jan 2 2003 Gordon Rowell <gordonr@e-smith.com>
903     - [1.9.3-12]
904     - Hide online-manual from navigation bar - now in header Help [gordonr 6394]
905    
906     * Wed Jan 1 2003 Gordon Rowell <gordonr@e-smith.com>
907     - [1.9.3-11]
908     - Updated navigation script to use esmith::I18N [gordonr 5212]
909    
910     * Wed Jan 1 2003 Gordon Rowell <gordonr@e-smith.com>
911     - [1.9.3-10]
912     - Spell bootstrap-console-save correctly [gordonr 5493]
913    
914     * Wed Jan 1 2003 Gordon Rowell <gordonr@e-smith.com>
915     - [1.9.3-09]
916     - Work out the correct navigation.info based on browser language [gordonr 5493]
917    
918     * Wed Jan 1 2003 Gordon Rowell <gordonr@e-smith.com>
919     - [1.9.3-08]
920     - Generate navigation.info files (config db format) for each supported
921     language in /etc/e-smith/locale/{language}/etc/e-smith/web/functions
922     - Read the navigation.info file for the preferred language when
923     displaying the navigation bar
924     - TODO: Actually select the correct navigation.info file [gordonr 5493]
925    
926     * Tue Dec 31 2002 Gordon Rowell <gordonr@e-smith.com>
927     - [1.9.3-07]
928     - Skip non-executable files when generating nav bar [gordonr 5802]
929    
930     * Fri Dec 27 2002 Mike Dickson <miked@e-smith.com>
931     - [1.9.3-06]
932     - updates and comments in the CSS files [miked 3185]
933     - commented out the two links in the header that are not ready yet
934     (log out and update available) [miked 5967 and 492]
935    
936     * Mon Dec 16 2002 Mike Dickson <miked@e-smith.com>
937     - [1.9.3-05]
938     - UI Update, part of the tweaking for the new UI [miked 5494]
939    
940     * Tue Dec 10 2002 Mike Dickson <miked@e-smith.com>
941     - [1.9.3-04]
942     - forgot to update header.htm fragments [miked 5494]
943    
944     * Mon Dec 9 2002 Mike Dickson <miked@e-smith.com>
945     - [1.9.3-03]
946     - ui update [miked 5494]
947    
948     * Mon Dec 2 2002 Mike Dickson <miked@e-smith.com>
949     - [1.9.3-02]
950     - ui update [miked 5494]
951    
952     * Wed Nov 27 2002 Mike Dickson <miked@e-smith.com>
953     - [1.9.3-01]
954     - and again to make it stick
955    
956     * Wed Nov 27 2002 Mike Dickson <miked@e-smith.com>
957     - [1.9.2-01]
958     - updated the header images [miked 5529]
959     - updated other UI stuff [miked 5494]
960    
961     * Fri Nov 22 2002 Gordon Rowell <gordonr@e-smith.com>
962     - [1.9.1-02]
963     - templated header.htm [miked 5826]
964     - modified header.htm template to link to online-manual and blades
965     [gordonr 5826]
966    
967     * Thu Nov 21 2002 Mike Dickson <miked@e-smith.com>
968     - [1.9.1-01]
969     - update to new UI system [miked 5494]
970    
971     * Wed Nov 20 2002 Mike Dickson <miked@e-smith.com>
972     - [1.9.0-01]
973     - Changing to development stream; version upped to 1.9.0
974    
975     * Fri Oct 11 2002 Charlie Brady <charlieb@e-smith.com>
976     - [1.8.0-01]
977     - Roll to maintained version number to 1.8.0
978    
979     * Wed Jun 19 2002 Mark Knox <markk@e-smith.com>
980     - [1.7.2-01]
981     - Move SSL mutex and cache out of /var/log [markk 3830]
982    
983     * Tue Jun 18 2002 Charlie Brady <charlieb@e-smith.com>
984     - [1.7.1-01]
985     - Move admin apache SSL mutex and SSL session cache to files named admin_xxx
986     to avoid name clash with main server. [charlieb 3830]
987    
988     * Wed Jun 5 2002 Charlie Brady <charlieb@e-smith.com>
989     - [1.7.0-01]
990     - Changing version to maintained stream number to 1.7.0
991    
992     * Fri May 31 2002 Charlie Brady <charlieb@e-smith.com>
993     - [1.6.0-01]
994     - Changing version to maintained stream number to 1.6.0
995    
996     * Thu May 23 2002 Gordon Rowell <gordonr@e-smith.com>
997     - [1.5.11-01]
998     - RPM rebuild forced by cvsroot2rpm
999    
1000     * Thu May 16 2002 Tony Clayton <apc@e-smith.com>
1001     - [1.5.10-01]
1002     - Pass noframes=1 as cgi param for browsers without frames [tonyc 3475]
1003    
1004     * Thu May 16 2002 Tony Clayton <apc@e-smith.com>
1005     - [1.5.9-01]
1006     - use Dan McGarry's manager.css/navigation fixes for 3377 [tonyc]
1007    
1008     * Thu May 16 2002 Tony Clayton <apc@e-smith.com>
1009     - [1.5.8-01]
1010     - Remove unnecessary <p> tags in navigation html [tonyc 3377]
1011     - Fix navigation panel to not import symbols from fm subclasses
1012     [tonyc 3109]
1013    
1014     * Mon May 13 2002 Tony Clayton <apc@e-smith.com>
1015     - [1.5.7-01]
1016     - Fix navigation panel to play nice with FM subclasses [tonyc 3109]
1017    
1018     * Fri May 10 2002 Gordon Rowell <gordonr@e-smith.com>
1019     - [1.5.6-01]
1020     - Tell CGI.pm to not produce xhtml [gordonr 3377]
1021    
1022     * Tue May 7 2002 Gordon Rowell <gordonr@e-smith.com>
1023     - [1.5.5-01]
1024     - Missing use esmith::util [gordonr 3372]
1025    
1026     * Wed Apr 24 2002 Gordon Rowell <gordonr@e-smith.com>
1027     - [1.5.4-01]
1028     - Ignore cgi-bin/internal-.* in navigation [gordonr 3202]
1029    
1030     * Mon Apr 22 2002 Gordon Rowell <gordonr@e-smith.com>
1031     - [1.5.3-01]
1032     - Back out gettext() calls - esmith::FormMagic was Croaking on
1033     bad lexicons for old panels. Now properly localises the navigation
1034     bar if the localisations exist [gordonr 3155]
1035    
1036     * Fri Apr 19 2002 Gordon Rowell <gordonr@e-smith.com>
1037     - [1.5.2-01]
1038     - Added explicit gettext() call to localize navigation bar while
1039     figuring out esmith::FormMagick won't do it for me [gordonr 3155]
1040    
1041     * Wed Apr 10 2002 Gordon Rowell <gordonr@e-smith.com>
1042     - [1.5.1-01]
1043     - navigation is now polymorphic and does noframes as well [gordonr #3155]
1044    
1045     * Thu Apr 04 2002 Gordon Rowell <gordonr@e-smith.com>
1046     Wed Apr 04 2002 --> Wed Apr 03 2002 or Thu Apr 04 2002 or Wed Apr 10 2002 or ....
1047     - [1.5.0-01]
1048     - Rolled to development stream [gordonr]
1049    
1050     * Wed Apr 03 2002 Kirrily Robert <skud@e-smith.com>
1051     - [1.4.4-01]
1052     - Added red error messages to CSS [skud 3027]
1053    
1054     * Thu Mar 14 2002 Gordon Rowell <gordonr@e-smith.com>
1055     - [1.4.3-01]
1056     - Fixed regexp for ignoring pleasewait(-.*?). Two each in
1057     pleasewait/noframes. Reduced to one in each [gordonr]
1058    
1059     * Fri Mar 1 2002 Tony Clayton <tonyc@e-smith.com>
1060     - [1.4.2-01]
1061     - rollRPM: Rolled version number to 1.4.2-01. Includes patches up to 1.4.1-02.
1062     - mkdir panels/manager/common in spec file for CVS migration
1063    
1064     * Fri Jan 25 2002 Tony Clayton <tonyc@e-smith.com>
1065     - [1.4.1-02]
1066     - added missing ')' in navigation script pleasewait munging
1067    
1068     * Fri Jan 25 2002 Tony Clayton <tonyc@e-smith.com>
1069     - [1.4.1-01]
1070     - rollRPM: Rolled version number to 1.4.1-01. Includes patches up to 1.4.0-02.
1071     - navigation now ignores pleasewait-* files
1072    
1073     * Thu Jan 10 2002 Charlie Brady <charlieb@e-smith.com>
1074     - [1.4.0-02]
1075     - Use dated log file for ssl_engine_log. Name the file ssl_engine_log.xxxxx
1076     to keep it distinct from the main web server's log file.
1077    
1078     * Tue Dec 11 2001 Jason Miller <jay@e-smith.com>
1079     - [1.4.0-01]
1080     - rollRPM: Rolled version number to 1.4.0-01. Includes patches up to 1.3.0-07.
1081    
1082     * Sat Dec 08 2001 Charlie Brady <charlieb@e-smith.com>
1083     - [1.3.0-07]
1084     - Move genNavigationHeader() down below the script grokking code in
1085     "navigation", to help Netscape's faulty rendering.
1086    
1087     * Wed Nov 21 2001 Charlie Brady <charlieb@e-smith.com>
1088     - [1.3.0-06]
1089     - Remove troublesome "Requires: e-smith-base".
1090     - Remove obsolete "Requires: e-smith".
1091    
1092     * Thu Nov 1 2001 Gordon Rowell <gordonr@e-smith.com>
1093     - [1.3.0-05]
1094     - Indent description within navigation headings sections
1095    
1096     * Thu Nov 1 2001 Gordon Rowell <gordonr@e-smith.com>
1097     - [1.3.0-04]
1098     - Backed out patch from 1.3.0-02 - restored image to navigation frame
1099    
1100     * Wed Oct 31 2001 Charlie Brady <charlieb@e-smith.com>
1101     - [1.3.0-03]
1102     - Add Mitel branding changes.
1103    
1104     * Fri Aug 31 2001 Gordon Rowell <gordonr@e-smith.com>
1105     - [1.3.0-02]
1106     - Removed image from top of navigation - now in separate frame
1107     - Added Provides: server-manager
1108    
1109     * Fri Aug 31 2001 Gordon Rowell <gordonr@e-smith.com>
1110     - [1.3.0-01]
1111     - Rolled version number to 1.3.0-01. Includes patches upto 1.2.0-02.
1112    
1113     * Fri Aug 17 2001 gordonr
1114     - [1.2.0-02]
1115     - Autorebuild by rebuildRPM
1116    
1117     * Wed Aug 8 2001 Charlie Brady <charlieb@e-smith.com>
1118     - [1.2.0-01]
1119     - Rolled version number to 1.2.0-01. Includes patches upto 1.1.0-04.
1120    
1121     * Tue Jul 31 2001 Adrian Chung <adrianc@e-smith.com>
1122     - [1.1.0-04]
1123     - moving manager.css file from manager/html to common/css
1124    
1125     * Tue Jul 31 2001 Adrian Chung <adrianc@e-smith.com>
1126     - [1.1.0-03]
1127     - Adding SSL enabling templates for port 981.
1128     - Adding 01localAccessString fragment for use in SSL
1129     enabling templates.
1130    
1131     * Fri Jul 27 2001 Charlie Brady <charlieb@e-smith.com>
1132     - [1.1.0-02]
1133     - Prepend "/server-manager" to hrefs, to allow consistent path interpretation
1134     between admin and standard web server.
1135    
1136     * Fri Jul 27 2001 Charlie Brady <charlieb@e-smith.com>
1137     - [1.1.0-01]
1138     - Rolled version number to 1.1.0-01. Includes patches upto 0.1.1-06.
1139    
1140     * Tue Jul 24 2001 Adrian Chung <adrianc@e-smith.com>
1141     - [0.1.1-06]
1142     - Incorporating font size changes to manager.css
1143    
1144     * Mon Jul 9 2001 Peter Samuel <peters@e-smith.com>
1145     - [0.1.1-05]
1146     - Updated packager information
1147    
1148     * Fri Jul 6 2001 Peter Samuel <peters@e-smith.com>
1149     - [0.1.1-04]
1150     - Changed license to GPL
1151    
1152     * Wed Jun 06 2001 Charlie Brady <charlieb@e-smith.com>
1153     - [0.1.1-03]
1154     - Change font setting in navigation - use css class instead.
1155     - Add newlines after each link in navigation frame - so that HTML
1156     source is readable.
1157     - Add manager.css, which came from e-smith-base. Let's have all look&feel
1158     in the one RPM.
1159     - Check whether "files" in cgi-bin directory are actually directories. Skip
1160     any directories.
1161    
1162     * Mon Apr 9 2001 Adrian Chung <adrianc@e-smith.com>
1163     - [0.1.1-02]
1164     - changing CELLPADDING in navigation from 4 to 2.
1165    
1166     * Tue Mar 14 2000 Charlie Brady <charlieb@e-smith.com>
1167     Wed Mar 14 2000 --> Wed Mar 08 2000 or Tue Mar 14 2000 or Wed Mar 15 2000 or ....
1168     - initial release

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed