/[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.43 - (show annotations) (download)
Thu Apr 22 18:06:42 2021 UTC (3 years, 2 months ago) by michel
Branch: MAIN
CVS Tags: smeserver-manager-0_1_2-9_el7_sme
Changes since 1.42: +9 -2 lines
* Wed Apr 21 2021 Michel Begue <mab974@gmail.com> 0.1.2-9.sme
- Add access attribute in configuration base
- Verify modes and access compatibility
- Display theme_switch button to logged in users only [SME: 11571]

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

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