Amend doc L<xx> links

Amend all L<xx> links to prevent build breakage on cygwin (Sf bug 3115635)
This commit is contained in:
Duncan Ferguson 2011-04-01 15:39:40 +01:00
parent c006703e6e
commit 8ae8459b1e
3 changed files with 14 additions and 11 deletions

View file

@ -1,3 +1,6 @@
2011-04-01 Duncan Ferguson <duncan_ferguson@user.sf.net> - v4.00_08
* Amend all L<xx> links to prevent build breakage on cygwin (Sf bug 3115635)
2011-01-24 Duncan Ferguson <duncan_ferguson@user.sf.net> - v4.00_07 2011-01-24 Duncan Ferguson <duncan_ferguson@user.sf.net> - v4.00_07
* Fix for parsing config files with empty values (Stefan Steiner) * Fix for parsing config files with empty values (Stefan Steiner)
* Reinstate acting on '-l username' option (reported by Ryan Brown) * Reinstate acting on '-l username' option (reported by Ryan Brown)

View file

@ -47,7 +47,7 @@ changes are committed.
=head2 Further Notes =head2 Further Notes
Please also see L<KNOWN BUGS>. Please also see L</KNOWN BUGS>.
=over =over
@ -65,12 +65,12 @@ that host. Re-selecting it will plug it back in.
=item * =item *
If your window manager menu bars are obscured by terminal windows see If your window manager menu bars are obscured by terminal windows see
the C<screen_reserve_XXXXX> options in the F<csshrc> file (see L<"FILES">). the C<screen_reserve_XXXXX> options in the F<csshrc> file (see L</"FILES">).
=item * =item *
If the terminals overlap too much see the C<terminal_reserve_XXXXX> If the terminals overlap too much see the C<terminal_reserve_XXXXX>
options in the F<csshrc> file (see L<"FILES">). options in the F<csshrc> file (see L</"FILES">).
=item * =item *
@ -132,11 +132,11 @@ Enable|Disable automatically quiting after the last client window has closed
=item --cluster-file,-c <file> =item --cluster-file,-c <file>
Use supplied file as additional cluster file (see also L<"FILES">) Use supplied file as additional cluster file (see also L</"FILES">)
=item --config-file,-C <file> =item --config-file,-C <file>
Use supplied file as additional configuration file (see also L<"FILES">) Use supplied file as additional configuration file (see also L</"FILES">)
=item -d =item -d
@ -179,7 +179,7 @@ Show full help test (the man page), and exit
Specify arguments to be passed to ssh or rsh when making the connection. Specify arguments to be passed to ssh or rsh when making the connection.
B<NOTE:> any "generic" change to the method (i.e. specifying the ssh port to use) B<NOTE:> any "generic" change to the method (i.e. specifying the ssh port to use)
should be done in the medium's own config file (see L<ssh_config> and should be done in the medium's own config file (see C<ssh_config> and
F<$HOME/.ssh/config>). F<$HOME/.ssh/config>).
=item --output-config,-u =item --output-config,-u
@ -239,7 +239,7 @@ on standard port (e.g not listening on port 22) and ssh_config cannot be used.
=item <tag> ... =item <tag> ...
Open a series of xterms defined by <tag> within either /etc/clusters or Open a series of xterms defined by <tag> within either /etc/clusters or
F<$HOME/.csshrc> (see L<"FILES">). F<$HOME/.csshrc> (see L</"FILES">).
Note: specifying a username on a cluster tag will override any usernames Note: specifying a username on a cluster tag will override any usernames
defined in the cluster defined in the cluster
@ -456,7 +456,7 @@ arguments).
B<NOTE:> The given defaults are based on OpenSSH, not commercial ssh software. B<NOTE:> The given defaults are based on OpenSSH, not commercial ssh software.
B<NOTE:> Any "generic" change to the method (i.e. specifying the ssh port to use) B<NOTE:> Any "generic" change to the method (i.e. specifying the ssh port to use)
should be done in the medium's own config file (see L<ssh_config> and should be done in the medium's own config file (see C<ssh_config> and
F<$HOME/.ssh/config>). F<$HOME/.ssh/config>).
=item screen_reserve_top = 0 =item screen_reserve_top = 0
@ -739,10 +739,10 @@ and child windows).
=head1 SEE ALSO =head1 SEE ALSO
L<http://clusterssh.sourceforge.net/>, L<http://clusterssh.sourceforge.net/>,
L<ssh>, C<ssh>,
L<Tk::overview>, L<Tk::overview>,
L<X11::Protocol>, L<X11::Protocol>,
L<perl> C<perl>
=head1 CREDITS =head1 CREDITS

View file

@ -3,7 +3,7 @@ package App::ClusterSSH;
use 5.008.004; use 5.008.004;
use warnings; use warnings;
use strict; use strict;
use version; our $VERSION = version->new('4.00_07'); use version; our $VERSION = version->new('4.00_08');
use Carp; use Carp;