/[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.60 - (show annotations) (download)
Wed Jan 5 16:16:08 2022 UTC (2 years, 5 months ago) by brianr
Branch: MAIN
CVS Tags: smeserver-manager-0_1_4-13_el7_sme
Changes since 1.59: +7 -2 lines
* Wed Jan 05 2022 Brian Read <brianr@bjsystems.co.uk> 0.1.4-13.sme
- Update-format-for-datetime-and-reboot [SME: 11830]

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

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