Skip Menu |

This queue is for tickets about the Net-SFTP-Foreign CPAN distribution.

Report information
The Basics
Id: 62092
Status: resolved
Worked: 5 min
Priority: 0/
Queue: Net-SFTP-Foreign

People
Owner: Nobody in particular
Requestors: SILASMONK [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Spelling mistakes
Quite a few spelling mistakes. I'm putting a patch together which I will upload.
On Tue Oct 12 18:13:10 2010, SILASMONK wrote: Show quoted text
> Quite a few spelling mistakes. I'm putting a patch together which I will > upload.
Subject: fix-pod-spelling.patch
Description: fix POD spelling errors Author: Jonathan Yu <jawnsy@cpan.org> Bug: http://rt.cpan.org/Ticket/Display.html?id=62092 Reviewed-by: Nicholas Bamber <nicholas@periapt.co.uk> Last-Update: 2010-10-12 --- a/lib/Net/SFTP/Foreign.pm +++ b/lib/Net/SFTP/Foreign.pm @@ -3079,7 +3079,7 @@ Well, both modules have their pros and cons: -Net::SFTP::Foreign does not requiere a bunch of additional modules and +Net::SFTP::Foreign does not require a bunch of additional modules and external libraries to work, just the OpenBSD SSH client (or any other client compatible enough). @@ -3326,7 +3326,7 @@ Never try to disconnect this object when exiting from any process. -On most operative systems, the SSH process will exit when the last +On most operating systems, the SSH process will exit when the last process connected to it ends, but this is not guaranteed. =item 1 @@ -3683,7 +3683,7 @@ =item wanted =E<gt> qr/.../ -Only elements which filename match the regular expresion are included +Only elements which filename match the regular expression are included on the listing. =item wanted =E<gt> sub {...} @@ -3810,7 +3810,7 @@ =item ordered =E<gt> 1 -By default, the file system is searched in an implementation dependant +By default, the file system is searched in an implementation dependent order (actually optimized for low memory comsumption). If this option is included, the file system is searched in a deep-first, sorted by filename fashion. @@ -3894,7 +3894,7 @@ =item strict_leading_dot =E<gt> 0 -by default, a dot character at the begining of a file or directory +by default, a dot character at the beginning of a file or directory name is not matched by willcards (C<*> or C<?>). Setting this flags to a false value changes this behaviour. @@ -4275,7 +4275,7 @@ =item $sftp-E<gt>opendir($path) Sends a C<SSH_FXP_OPENDIR> command to open the remote directory -C<$path>, and returns an open handle on success (unfortunatelly, +C<$path>, and returns an open handle on success (unfortunately, current versions of perl does not support directory operations via tied handles, so it is not possible to use the returned handle as a native one). @@ -4647,7 +4647,7 @@ B<A>: That probably means that the public key from the remote server is not stored in the C<~/.ssh/known_hosts> file. Run an SSH Connection from the command line as the same user as the script and answer C<yes> -when asked to confirm the key suplied. +when asked to confirm the key supplied. Example: @@ -4683,7 +4683,7 @@ =item - Dirty cleanup: -On some operative systems, closing the pipes used to comunicate with +On some operating systems, closing the pipes used to comunicate with the slave SSH process does not terminate it and a work around has to be applied. If you find that your scripts hung when the $sftp object gets out of scope, try setting C<$Net::SFTP::Foreign::dirty_cleanup>
Applied, thanks!