/[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.62 - (show annotations) (download)
Sun Jul 17 04:42:23 2022 UTC (23 months ago) by jpp
Branch: MAIN
CVS Tags: smeserver-manager-0_1_4-15_el7_sme
Changes since 1.61: +6 -1 lines
* Sun Jul 17 2022 Jean-Philippe Pialasse <tests@pialasse.com> 0.1.4-15.sme
- untainting printer [SME: 12110]

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

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