/[smeserver]/rpms/smeserver-manager/sme10/smeserver-manager.spec
ViewVC logotype

Annotation of /rpms/smeserver-manager/sme10/smeserver-manager.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.53 - (hide annotations) (download)
Sun Dec 26 12:35:52 2021 UTC (2 years, 5 months ago) by brianr
Branch: MAIN
CVS Tags: smeserver-manager-0_1_4-6_el7_sme
Changes since 1.52: +7 -2 lines
* Sun Dec 26 2021 Brian Read <brianr@bjsystems.co.uk> 0.1.4-6.sme
- e-format html for Vistual domains inReview config to be compatible with email format list [SME 11822]

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

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