/[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.57 - (show annotations) (download)
Mon Dec 27 17:28:17 2021 UTC (2 years, 5 months ago) by michel
Branch: MAIN
CVS Tags: smeserver-manager-0_1_4-10_el7_sme
Changes since 1.56: +7 -2 lines
* Mon Dec 27 2021 Michel Begue <mab974@misouk.com> 0.1.4-10.sme
- Fix empty selection list in workstation restore of backup panel [SME: 11185]

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

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