zsh-users
 help / color / mirror / code / Atom feed
* zsh 4.0.2 released
@ 2001-06-26 14:57 Peter Stephenson
  2001-06-28 13:02 ` Zvi Har'El
  0 siblings, 1 reply; 3+ messages in thread
From: Peter Stephenson @ 2001-06-26 14:57 UTC (permalink / raw)
  To: Zsh users list

I have finally succeeded in uploading zsh 4.0.2 to ftp.zsh.org and
sourceforge.  It will eventually reach the mirrors.

This is a maintenance release for the (stable) 4.0 branch.  Most of the
changes are bug fixes, including a fix for a bug which caused the test
suite to fail.  On fully supported systems, all tests should now pass.

There is one new feature:  the option KSH_TYPESET provides compatibility
with other shells for assignment arguments of `typeset', `export' and
related builtins.

(This is based on this morning's code.  Any later changes to the 4.0 branch
will not have been incorporated.)

One slight hickup is that the formatted HTML documentation in the zsh-doc
bundle doesn't use my hacked version of texi2html, which means there is no
pargraph formatting inside list items.  This makes the builtins manual
page, for example, look rather less neat.  I suspect this was the case with
4.0.1, however.

-- 
Peter Stephenson <pws@csr.com>                  Software Engineer
CSR Ltd., Unit 300, Science Park, Milton Road,
Cambridge, CB4 0XL, UK                          Tel: +44 (0)1223 392070


**********************************************************************
The information transmitted is intended only for the person or
entity to which it is addressed and may contain confidential 
and/or privileged material. 
Any review, retransmission, dissemination or other use of, or
taking of any action in reliance upon, this information by 
persons or entities other than the intended recipient is 
prohibited.  
If you received this in error, please contact the sender and 
delete the material from any computer.
**********************************************************************


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: zsh 4.0.2 released
  2001-06-26 14:57 zsh 4.0.2 released Peter Stephenson
@ 2001-06-28 13:02 ` Zvi Har'El
  2001-06-28 13:15   ` Andrej Borsenkow
  0 siblings, 1 reply; 3+ messages in thread
From: Zvi Har'El @ 2001-06-28 13:02 UTC (permalink / raw)
  To: ZSH Users

On Tue, 26 Jun 2001, Peter Stephenson wrote:

> I have finally succeeded in uploading zsh 4.0.2 to ftp.zsh.org and
> sourceforge.  It will eventually reach the mirrors.
>

Hi,

I didn't notice this before, but the `make install.html'' does not install the
zsh.html file. Texi2html generates from zsh.texi the top page zsh.html, and a
lot of zsh_*.html files. However, only the latter are installed. Since they all
have links like <a HREF="zsh.html#SEC_Top">Top</a> all these links do not work
unless the former is also installed. Therefore, Doc/Makefile should be changed
so that the loop `for file in zsh_*.html' should be replaced by `for file in
zsh*.html' (underscore omitted). Same comment refers to `make uninstall.html'

Best,

Zvi.

-- 
Dr. Zvi Har'El     mailto:rl@math.technion.ac.il     Department of Mathematics
tel:+972-54-227607                   Technion - Israel Institute of Technology
fax:+972-4-8324654 http://www.math.technion.ac.il/~rl/     Haifa 32000, ISRAEL
"If you can't say somethin' nice, don't say nothin' at all." -- Thumper (1942)
                                Thursday, 7 Tammuz 5761, 28 June 2001,  3:49PM


^ permalink raw reply	[flat|nested] 3+ messages in thread

* RE: zsh 4.0.2 released
  2001-06-28 13:02 ` Zvi Har'El
@ 2001-06-28 13:15   ` Andrej Borsenkow
  0 siblings, 0 replies; 3+ messages in thread
From: Andrej Borsenkow @ 2001-06-28 13:15 UTC (permalink / raw)
  To: Zvi Har'El, ZSH Users

> 
> I didn't notice this before, but the `make install.html'' does 
> not install the
> zsh.html file. Texi2html generates from zsh.texi the top page 
> zsh.html, and a
> lot of zsh_*.html files. However, only the latter are installed. 
> Since they all
> have links like <a HREF="zsh.html#SEC_Top">Top</a> all these 
> links do not work
> unless the former is also installed. Therefore, Doc/Makefile 
> should be changed
> so that the loop `for file in zsh_*.html' should be replaced by 
> `for file in
> zsh*.html' (underscore omitted). Same comment refers to `make 
> uninstall.html'
> 

Does it help?

Index: Doc/Makefile.in
===================================================================
RCS file: /cvsroot/zsh/zsh/Doc/Makefile.in,v
retrieving revision 1.9
diff -u -r1.9 Makefile.in
--- Doc/Makefile.in     2001/05/31 11:58:40     1.9
+++ Doc/Makefile.in     2001/06/28 13:14:58
@@ -297,14 +297,14 @@
 # install HTML manual
 install.html: html
        ${SHELL} $(sdir_top)/mkinstalldirs $(DESTDIR)$(htmldir)
-       for file in zsh_*.html; do \
+       for file in zsh*.html; do \
            $(INSTALL_DATA) $$file $(DESTDIR)$(htmldir) || exit 1; \
        done
 .PHONY: install.html
 
 # uninstall HTML manual
 uninstall.html:
-       rm -f $(DESTDIR)$(htmldir)/zsh_*.html
+       rm -f $(DESTDIR)$(htmldir)/zsh*.html
 .PHONY: uninstall.html
 
 # ========== DEPENDENCIES FOR CLEANUP ==========


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2001-06-28 13:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-06-26 14:57 zsh 4.0.2 released Peter Stephenson
2001-06-28 13:02 ` Zvi Har'El
2001-06-28 13:15   ` Andrej Borsenkow

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).