/[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.52 - (hide annotations) (download)
Mon Dec 20 15:16:29 2021 UTC (2 years, 5 months ago) by brianr
Branch: MAIN
CVS Tags: smeserver-manager-0_1_4-5_el7_sme
Changes since 1.51: +7 -2 lines
* Mon Dec 20 2021 Brian Read <brianr@bjsystems.co.uk> 0.1.4-5.sme
- Add-span-to-group-member-checkbox-list [SME: 11815]

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

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