[Inteproxy-commits] r19 - trunk

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Tue Jan 30 18:37:04 CET 2007


Author: bh
Date: 2007-01-30 18:37:03 +0100 (Tue, 30 Jan 2007)
New Revision: 19

Modified:
   trunk/ChangeLog
   trunk/InteProxy.py
Log:
* InteProxy.py (getpassword_crt, getpassword_tty): renamed
getpassword_crt to getpassword_tty.  "tty" is a better term for
the terminal "window system" than "crt"


Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2007-01-30 15:55:52 UTC (rev 18)
+++ trunk/ChangeLog	2007-01-30 17:37:03 UTC (rev 19)
@@ -1,5 +1,11 @@
 2007-01-30  Bernhard Herzog  <bh at intevation.de>
 
+	* InteProxy.py (getpassword_crt, getpassword_tty): renamed
+	getpassword_crt to getpassword_tty.  "tty" is a better term for
+	the terminal "window system" than "crt"
+
+2007-01-30  Bernhard Herzog  <bh at intevation.de>
+
 	* InteProxy.py (InteProxyHTTPRequestHandler.handle_proxy_request):
 	Read the client request body before the new https request for the
 	actual server is created.  This will make it easier to deal with

Modified: trunk/InteProxy.py
===================================================================
--- trunk/InteProxy.py	2007-01-30 15:55:52 UTC (rev 18)
+++ trunk/InteProxy.py	2007-01-30 17:37:03 UTC (rev 19)
@@ -32,13 +32,13 @@
     import pywin.dialogs.login
     windowsystem = "pywin"
 except ImportError:
-    windowsystem = "crt"
+    windowsystem = "tty"
 
 
 def getpassword_pywin(title):
     return pywin.dialogs.login.GetLogin(title)
 
-def getpassword_crt(title):
+def getpassword_tty(title):
     import getpass
     try:
         user = raw_input(title)



More information about the Inteproxy-commits mailing list