/[smeserver]/rpms/smeserver-manager/sme10/smeserver-manager.spec
ViewVC logotype

Contents of /rpms/smeserver-manager/sme10/smeserver-manager.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.54 - (show annotations) (download)
Sun Dec 26 15:33:49 2021 UTC (2 years, 5 months ago) by brianr
Branch: MAIN
CVS Tags: smeserver-manager-0_1_4-7_el7_sme
Changes since 1.53: +7 -2 lines
* Sun Dec 26 2021 Brian Read <brianr@bjsystems.co.uk> 0.1.4-7.sme
- Sort-out-responsive-table-in-user-and-host-lists [SME: 11824]

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

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