Re: FvwmTaskBar fixes, `Pad' documentation fvwm-bug fixes

2006-04-15 Thread Mikhael Goikhman
On 08 Apr 2006 02:02:10 +0400, Serge (gentoosiast) Koksharov wrote:
 
 P.S. Question to Mikhael: Why you named one of your kitties `Murzilka'?
 In USSR we had a children's magazine with exactly such name. It was nice,
 kind and I read it when I was a kid.

Yes, I read it too. And it seems to be fully alive, www.murzilka.org.

Regards,
Mikhael.



Re: FvwmTaskBar fixes, `Pad' documentation fvwm-bug fixes

2006-04-08 Thread seventh guardian
On 4/7/06, Serge (gentoosiast) Koksharov [EMAIL PROTECTED] wrote:
   Hi, dear developers,

 1) First of all, the entire FvwmTaskBar module is broken in the current
 CVS tree. Because of incorrect module-namelen calculation it does not
 parses its configuration entries properly. I fixed this, quality assured
 this and provided a patch. Golden rule to all: test before commit.

That's probably my fault. Sorry..


BTW, you're doing a great job! I wonder if we can get a new stable
release this year! :D

Cheers!
  Renato Caldas



Re: FvwmTaskBar fixes, `Pad' documentation fvwm-bug fixes

2006-04-08 Thread Serge (gentoosiast) Koksharov
On Sat, Apr 08, 2006 at 11:35:56PM +0100, seventh guardian wrote:
 On 4/7/06, Serge (gentoosiast) Koksharov [EMAIL PROTECTED] wrote:
  this and provided a patch. Golden rule to all: test before commit.
 
 That's probably my fault. Sorry..

Nothing to bother about. I like one proverb: he is lifeless that is
faultless. It fits this situation perfectly. You've done a lot; with
your help now most of the modules use stable unified parsing mechanism,
gracias.

 BTW, you're doing a great job! I wonder if we can get a new stable
 release this year! :D

Thanks. Of course, new stable release will help FVWM to receive more
widespread adoption. But I really think our primary mission should be
quality.

Best wishes.

-- 
Serge Koksharov, Free Software user  supporter
GPG public key ID: 0x3D330896 (pgp.mit.edu)
Key fingerprint: 5BC4 0475 CB03 6A31 0076  82C2 C240 72F0 3D33 0896




FvwmTaskBar fixes, `Pad' documentation fvwm-bug fixes

2006-04-07 Thread Serge (gentoosiast) Koksharov
  Hi, dear developers,

1) First of all, the entire FvwmTaskBar module is broken in the current
CVS tree. Because of incorrect module-namelen calculation it does not
parses its configuration entries properly. I fixed this, quality assured
this and provided a patch. Golden rule to all: test before commit.

2) Discovered and documented another earlier undocumented FvwmTaskBar
option `Pad'. Authors, please don't forget to properly document all your
newly added features. If your feature isn't described in documentation,
it doesn't exists for 99% of our users.

3) Discovered and fixed some syntactical errors in the `fvwm-bug'
script. Without my fixes fallback entries don't work in both bash and
zsh shells. Also I changed fallback editor in this script from `emacs'
to `vi'.  No offence to anyone, but we must use `vi' as fallback,
because it much more widespread and part of the base system on *BSD
family and several commercial UNIX-like systems. Also script now honors
`TMPDIR' environment variable and if it is unset if fallbacks to /tmp.

Maybe, we should mention in the `Bug Fixes' section of the `NEWS' file
`- Documentation fixes and improvements.' ? I think we've done great job
in this specific area and it deserves an entry. Hope, 2.5.17 release
will be good. Adios.

P.S. Question to Mikhael: Why you named one of your kitties `Murzilka'?
In USSR we had a children's magazine with exactly such name. It was nice,
kind and I read it when I was a kid.

-- 
Serge Koksharov, Free Software user  supporter
GPG public key ID: 0x3D330896 (pgp.mit.edu)
Key fingerprint: 5BC4 0475 CB03 6A31 0076  82C2 C240 72F0 3D33 0896
diff -Naur fvwmCVS-orig/ChangeLog fvwmCVS-fixed/ChangeLog
--- fvwmCVS-orig/ChangeLog  2006-04-07 19:07:10.0 +0400
+++ fvwmCVS-fixed/ChangeLog 2006-04-07 19:21:53.0 +0400
@@ -1,3 +1,8 @@
+2006-04-07  Serge Koksharov  gentoosiast dog yandex dot ru
+
+   * modules/FvwmTaskBar/FvwmTaskBar.1.in:
+   added another undocumented `Pad' option description.
+
 2006-04-06  Viktor Griph  [EMAIL PROTECTED]
 
* fvwm/fvwm.1.in:
diff -Naur fvwmCVS-orig/modules/ChangeLog fvwmCVS-fixed/modules/ChangeLog
--- fvwmCVS-orig/modules/ChangeLog  2006-04-07 19:07:10.0 +0400
+++ fvwmCVS-fixed/modules/ChangeLog 2006-04-07 19:21:21.0 +0400
@@ -1,3 +1,8 @@
+2006-04-07  Serge Koksharov  gentoosiast dog yandex dot ru
+
+   * FvwmTaskBar/FvwmTaskBar.1.in:
+   added another undocumented `Pad' option description.
+
 2006-03-21  Serge Koksharov  gentoosiast dog yandex dot ru
 
* FvwmAnimate/FvwmAnimate.c:
diff -Naur fvwmCVS-orig/modules/FvwmTaskBar/FvwmTaskBar.1.in 
fvwmCVS-fixed/modules/FvwmTaskBar/FvwmTaskBar.1.in
--- fvwmCVS-orig/modules/FvwmTaskBar/FvwmTaskBar.1.in   2006-04-07 
19:07:10.0 +0400
+++ fvwmCVS-fixed/modules/FvwmTaskBar/FvwmTaskBar.1.in  2006-04-07 
19:18:24.0 +0400
@@ -228,6 +228,10 @@
 Indicates the maximum width that window buttons should reach.
 (the minimum is hard coded at 32).
 
+.IP *FvwmTaskBar: Pad \fIwidth\fP
+Specifies the space (in pixels) between the window buttons. If this option is
+not specified, the default space is 3.
+
 .IP *FvwmTaskBar: WindowButtonsLeftMargin \fImargin\fP
 Specifies the space (in pixels) between the left side of the left-most window
 button and the right side of the start button or right-most shortcut 
diff -Naur fvwmCVS-orig/AUTHORS fvwmCVS-fixed/AUTHORS
--- fvwmCVS-orig/AUTHORS2006-04-07 19:07:10.0 +0400
+++ fvwmCVS-fixed/AUTHORS   2006-04-08 00:51:03.0 +0400
@@ -3,7 +3,7 @@
 Recording Changes.
 
 Serge (gentoosiast) Koksharov:
-Documentation fixes, bug fix.
+Documentation fixes, bug fixes.
 
 Arwed von Merkatz:
 UnderMousePlacement style.
diff -Naur fvwmCVS-orig/ChangeLog fvwmCVS-fixed/ChangeLog
--- fvwmCVS-orig/ChangeLog  2006-04-07 19:07:10.0 +0400
+++ fvwmCVS-fixed/ChangeLog 2006-04-08 01:05:34.0 +0400
@@ -1,3 +1,18 @@
+2006-04-07  Serge Koksharov  gentoosiast dog yandex dot ru
+
+   * modules/FvwmTaskBar/FvwmTaskBar.c:
+   fixed typos
+   
+   * modules/FvwmTaskBar/FvwmTaskBar.c:
+   * modules/FvwmTaskBar/Goodies.c:
+   * modules/FvwmTaskBar/Start.c:
+   because of incorrect module-namelen calculation entire
+   FvwmTaskBar module was broken. _Test_ your changes before
+   commits.
+
+   * AUTHORS:
+   updated my entry
+
 2006-04-06  Viktor Griph  [EMAIL PROTECTED]
 
* fvwm/fvwm.1.in:
diff -Naur fvwmCVS-orig/modules/ChangeLog fvwmCVS-fixed/modules/ChangeLog
--- fvwmCVS-orig/modules/ChangeLog  2006-04-07 19:07:10.0 +0400
+++ fvwmCVS-fixed/modules/ChangeLog 2006-04-08 01:05:42.0 +0400
@@ -1,3 +1,15 @@
+2006-04-07  Serge Koksharov  gentoosiast dog yandex dot ru
+
+   * FvwmTaskBar/FvwmTaskBar.c:
+   fixed typos
+   
+   * FvwmTaskBar/FvwmTaskBar.c:
+   * FvwmTaskBar/Goodies.c:
+   * FvwmTaskBar/Start.c:
+   Because of incorrect