/[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.41 - (hide annotations) (download)
Mon Apr 12 16:51:27 2021 UTC (3 years, 2 months ago) by michel
Branch: MAIN
CVS Tags: smeserver-manager-0_1_2-7_el7_sme
Changes since 1.40: +12 -2 lines
* Mon Apr 12 2021 Michel Begue <mab974@gmail.com> 0.1.2-7.sme
- Fix server-mode in bugreport [SME: 10448]
- Add systemd-default for smanager type (service) [SME: 11544]
- Fix smanager type and status in db
- Move initial security notification to central place
- Render 'Manual' output in template
- Add a link to koozali.org on Sme logo

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

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