/[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.49 - (hide annotations) (download)
Sun Oct 10 20:51:32 2021 UTC (2 years, 8 months ago) by michel
Branch: MAIN
CVS Tags: smeserver-manager-0_1_4-2_el7_sme
Changes since 1.48: +9 -2 lines
make: « clog » est à jour.

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

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