class: TerminalSession
authorClaus Gittinger <cg@exept.de>
Sun, 08 Jun 2014 08:34:52 +0200
changeset 3302 aad2814c1e87
parent 3301 8a86b5083cf5
child 3303 b7f33985ea38
class: TerminalSession comment/format in: #documentation
TerminalSession.st
--- a/TerminalSession.st	Thu Jun 05 00:36:03 2014 +0200
+++ b/TerminalSession.st	Sun Jun 08 08:34:52 2014 +0200
@@ -18,12 +18,13 @@
     This keeps the state and API to interact with another program
     via a terminal session. Under Unix, a pseudo-tty connection
     is used; other operating systems might use other mechanisms.
-    This is (currently) mostly used by the TerminalView application,
+    This is (currently) used by the GDBApplication application, to interact
+    with both gdb and cscope,
     but can be used whereever more control is needed than a simple pipe
     offers (such as terminal emulation, window size, CTRL-c support etc.)
 
-    Extracted from TerminalView, which is refactored, once this is stable.
-
+    A lot of code has been Extracted from TerminalView, which will be refactored, 
+    once this is stable. For now, there is some code duplication (as of Summer2014).
 "
 ! !
 
@@ -724,11 +725,11 @@
 !TerminalSession class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/TerminalSession.st,v 1.20 2014-05-26 12:32:19 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/TerminalSession.st,v 1.21 2014-06-08 06:34:52 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic2/TerminalSession.st,v 1.20 2014-05-26 12:32:19 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/TerminalSession.st,v 1.21 2014-06-08 06:34:52 cg Exp $'
 ! !