/[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.55 - (show annotations) (download)
Sun Dec 26 16:23:40 2021 UTC (2 years, 5 months ago) by brianr
Branch: MAIN
CVS Tags: smeserver-manager-0_1_4-8_el7_sme
Changes since 1.54: +7 -2 lines
* Sun Dec 26 2021 Brian Read <brianr@bjsystems.co.uk> 0.1.4-8.sme
- fix-translation-strings-with-prefix-for-review-config [SME: 11823]

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

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