/[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.50 - (hide annotations) (download)
Mon Nov 15 18:03:45 2021 UTC (2 years, 7 months ago) by michel
Branch: MAIN
CVS Tags: smeserver-manager-0_1_4-3_el7_sme
Changes since 1.49: +16 -5 lines
* Mon Nov 15 2021 Michel Begue <mab974@misouk.com> 0.1.4-3.sme
- Fix error message when linking, unlinking jquery in spec
- Correct the 'review' panel presentation
- Modify CSRFDefender plugin to take into account GET method
- Add TOKEN param where the GET method is used in templates
- Remove smanager from local url address

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

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