/[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.39 - (hide annotations) (download)
Wed Jan 13 19:49:58 2021 UTC (3 years, 5 months ago) by michel
Branch: MAIN
CVS Tags: smeserver-manager-0_1_2-5_el7_sme
Changes since 1.38: +8 -2 lines
* Wed Jan 13 2021 Michel Begue <mab974@gmail.com> 0.1.2-5.sme
- Fix menu items not translated [SME: 11322]
- Add other locales files

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

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