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