/[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.45 - (hide annotations) (download)
Tue Jun 8 18:37:20 2021 UTC (3 years ago) by michel
Branch: MAIN
CVS Tags: smeserver-manager-0_1_2-11_el7_sme
Changes since 1.44: +18 -3 lines
make: « clog » est à jour.

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

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