/[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.44 - (hide annotations) (download)
Thu Jun 3 19:47:24 2021 UTC (3 years ago) by michel
Branch: MAIN
CVS Tags: smeserver-manager-0_1_2-10_el7_sme
Changes since 1.43: +10 -2 lines
make: « clog » est à jour.

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

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