/[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.51 - (hide annotations) (download)
Mon Nov 29 15:55:51 2021 UTC (2 years, 6 months ago) by brianr
Branch: MAIN
CVS Tags: smeserver-manager-0_1_4-4_el7_sme
Changes since 1.50: +8 -2 lines
* Mon Nov 29 2021 Brian Read <brianr@bjsystems.co.uk> 0.1.4-4.sme
- Add-dummy-classes-to-ep-files.patch [SME: 11780]

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

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