From be5542c05e46b500e47b94bc8a6254cae8335a8b Mon Sep 17 00:00:00 2001 From: "Jeremy T. Bouse" Date: Sun, 29 May 2011 08:16:54 -0400 Subject: Imported Upstream version 1.7.7.1 --- docs/paramiko-pysrc.html | 132 ++++++++++++++++++++--------------------------- 1 file changed, 56 insertions(+), 76 deletions(-) (limited to 'docs/paramiko-pysrc.html') diff --git a/docs/paramiko-pysrc.html b/docs/paramiko-pysrc.html index fe7d304..607fd59 100644 --- a/docs/paramiko-pysrc.html +++ b/docs/paramiko-pysrc.html @@ -53,7 +53,7 @@

Source Code for Package paramiko

-  1  # Copyright (C) 2003-2009  Robey Pointer <robeypointer@gmail.com> 
+  1  # Copyright (C) 2003-2011  Robey Pointer <robeypointer@gmail.com> 
   2  # 
   3  # This file is part of paramiko. 
   4  # 
@@ -75,7 +75,7 @@
  20  I{Paramiko} (a combination of the esperanto words for "paranoid" and "friend") 
  21  is a module for python 2.3 or greater that implements the SSH2 protocol for 
  22  secure (encrypted and authenticated) connections to remote machines.  Unlike 
- 23  SSL (aka TLS), the SSH2 protocol does not require heirarchical certificates 
+ 23  SSL (aka TLS), the SSH2 protocol does not require hierarchical certificates 
  24  signed by a powerful central authority.  You may know SSH2 as the protocol that 
  25  replaced C{telnet} and C{rsh} for secure access to remote shells, but the 
  26  protocol also includes the ability to open arbitrary channels to remote 
@@ -102,7 +102,7 @@
  47   
  48  Website: U{http://www.lag.net/paramiko/} 
  49   
- 50  @version: 1.7.6 (Fanny) 
+ 50  @version: 1.7.7.1 (George) 
  51  @author: Robey Pointer 
  52  @contact: robeypointer@gmail.com 
  53  @license: GNU Lesser General Public License (LGPL) 
@@ -115,67 +115,47 @@
  60   
  61   
  62  __author__ = "Robey Pointer <robeypointer@gmail.com>" 
- 63  __date__ = "1 Nov 2009" 
- 64  __version__ = "1.7.6 (Fanny)" 
- 65  __version_info__ = (1, 7, 6) 
+ 63  __date__ = "21 May 2011" 
+ 64  __version__ = "1.7.7.1 (George)" 
+ 65  __version_info__ = (1, 7, 7, 1) 
  66  __license__ = "GNU Lesser General Public License (LGPL)" 
  67   
  68   
- 69  from transport import randpool, SecurityOptions, Transport 
- 70  from client import SSHClient, MissingHostKeyPolicy, AutoAddPolicy, RejectPolicy, WarningPolicy 
- 71  from auth_handler import AuthHandler 
- 72  from channel import Channel, ChannelFile 
- 73  from ssh_exception import SSHException, PasswordRequiredException, \ 
- 74      BadAuthenticationType, ChannelException, BadHostKeyException, \ 
- 75      AuthenticationException 
- 76  from server import ServerInterface, SubsystemHandler, InteractiveQuery 
- 77  from rsakey import RSAKey 
- 78  from dsskey import DSSKey 
- 79  from sftp import SFTPError, BaseSFTP 
- 80  from sftp_client import SFTP, SFTPClient 
- 81  from sftp_server import SFTPServer 
- 82  from sftp_attr import SFTPAttributes 
- 83  from sftp_handle import SFTPHandle 
- 84  from sftp_si import SFTPServerInterface 
- 85  from sftp_file import SFTPFile 
- 86  from message import Message 
- 87  from packet import Packetizer 
- 88  from file import BufferedFile 
- 89  from agent import Agent, AgentKey 
- 90  from pkey import PKey 
- 91  from hostkeys import HostKeys 
- 92  from config import SSHConfig 
+ 69  from transport import SecurityOptions, Transport 
+ 70  from client import SSHClient, MissingHostKeyPolicy, AutoAddPolicy, RejectPolicy, WarningPolicy 
+ 71  from auth_handler import AuthHandler 
+ 72  from channel import Channel, ChannelFile 
+ 73  from ssh_exception import SSHException, PasswordRequiredException, \ 
+ 74      BadAuthenticationType, ChannelException, BadHostKeyException, \ 
+ 75      AuthenticationException 
+ 76  from server import ServerInterface, SubsystemHandler, InteractiveQuery 
+ 77  from rsakey import RSAKey 
+ 78  from dsskey import DSSKey 
+ 79  from sftp import SFTPError, BaseSFTP 
+ 80  from sftp_client import SFTP, SFTPClient 
+ 81  from sftp_server import SFTPServer 
+ 82  from sftp_attr import SFTPAttributes 
+ 83  from sftp_handle import SFTPHandle 
+ 84  from sftp_si import SFTPServerInterface 
+ 85  from sftp_file import SFTPFile 
+ 86  from message import Message 
+ 87  from packet import Packetizer 
+ 88  from file import BufferedFile 
+ 89  from agent import Agent, AgentKey 
+ 90  from pkey import PKey 
+ 91  from hostkeys import HostKeys 
+ 92  from config import SSHConfig 
  93   
  94  # fix module names for epydoc 
- 95  for c in locals().values(): 
+ 95  for c in locals().values(): 
  96      if issubclass(type(c), type) or type(c).__name__ == 'classobj': 
  97          # classobj for exceptions :/ 
  98          c.__module__ = __name__ 
  99  del c 
 100   
-101  from common import 101  from common import AUTH_SUCCESSFUL, AUTH_SUCCESSFUL, AUTH_PARTIALLY_SUCCESSFUL, AUTH_PARTIALLY_SUCCESSFUL, AUTH_FAILED, \ 
-102       AUTH_FAILED, \ 
+102       OPEN_SUCCEEDED, OPEN_SUCCEEDED, OPEN_FAILED_ADMINISTRATIVELY_PROHIBITED,  OPEN_FAILED_ADMINISTRATIVELY_PROHIBITED,  OPEN_FAILED_CONNECT_FAILED, \ 
-103       OPEN_FAILED_CONNECT_FAILED, \ 
+103       OPEN_FAILED_UNKNOWN_CHANNEL_TYPE, OPEN_FAILED_UNKNOWN_CHANNEL_TYPE, OPEN_FAILED_RESOURCE_SHORTAGE 
+paramiko.util.OPEN_FAILED_RESOURCE_SHORTAGE" class="py-name" href="#" onclick="return doclink('link-68', 'OPEN_FAILED_RESOURCE_SHORTAGE', 'link-68');">OPEN_FAILED_RESOURCE_SHORTAGE 
 104   
-105  from sftp import 105  from sftp import SFTP_OK, SFTP_OK, SFTP_EOF, SFTP_EOF, SFTP_NO_SUCH_FILE, SFTP_NO_SUCH_FILE, SFTP_PERMISSION_DENIED, SFTP_PERMISSION_DENIED, SFTP_FAILURE, \ 
-106       SFTP_FAILURE, \ 
+106       SFTP_BAD_MESSAGE, SFTP_BAD_MESSAGE, SFTP_NO_CONNECTION, SFTP_NO_CONNECTION, SFTP_CONNECTION_LOST, SFTP_CONNECTION_LOST, SFTP_OP_UNSUPPORTED 
+paramiko.sftp_si.SFTP_OP_UNSUPPORTED" class="py-name" href="#" onclick="return doclink('link-78', 'SFTP_OP_UNSUPPORTED', 'link-78');">SFTP_OP_UNSUPPORTED 
 107   
 108  __all__ = [ 'Transport', 
 109              'SSHClient', 
@@ -463,7 +443,7 @@ expandto(location.href);