terminals/stx_goodies_xtreams_terminals.st
changeset 52 a1363827b596
child 60 0c3108ae4344
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/terminals/stx_goodies_xtreams_terminals.st	Sun Jan 15 22:50:34 2012 +0000
@@ -0,0 +1,157 @@
+'From Smalltalk/X, Version:6.2.1 on 15-01-2012 at 05:49:32 PM'                  !
+
+"{ Package: 'stx:goodies/xtreams/terminals' }"
+
+LibraryDefinition subclass:#stx_goodies_xtreams_terminals
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'* Projects & Packages *'
+!
+
+!stx_goodies_xtreams_terminals class methodsFor:'documentation'!
+
+extensionsVersion_SVN
+    ^ '$Id: extensions.st 17 2011-11-21 06:03:03Z mkobetic $'
+! !
+
+!stx_goodies_xtreams_terminals class methodsFor:'description'!
+
+excludedFromPreRequisites
+    "list all packages which should be ignored in the automatic
+     preRequisites scan. See #preRequisites for more."
+
+    ^ #(
+    )
+!
+
+preRequisites
+    "list all required packages.
+     This list can be maintained manually or (better) generated and
+     updated by scanning the superclass hierarchies and looking for
+     global variable accesses. (the browser has a menu function for that)
+     Howevery, often too much is found, and you may want to explicitely
+     exclude individual packages in the #excludedFromPrerequisites method."
+
+    ^ #(
+        #'stx:goodies/xtreams/core'    "Xtreams::WriteStream - superclass of Xtreams::NullWriteStream "
+        #'stx:libbasic'    "Object - superclass of Xtreams::NullWriteStream "
+        #'stx:libbasic2'    "Queue - superclass of extended SharedQueue "
+    )
+! !
+
+!stx_goodies_xtreams_terminals class methodsFor:'description - contents'!
+
+classNamesAndAttributes
+    "lists the classes which are to be included in the project.
+     Each entry in the list may be: a single class-name (symbol),
+     or an array-literal consisting of class name and attributes.
+     Attributes are: #autoload or #<os> where os is one of win32, unix,..."
+
+    ^ #(
+        "<className> or (<className> attributes...) in load order"
+        #'Xtreams::BlockClosureGenerateStream'
+        #'Xtreams::BlockClosureReadStream'
+        #'Xtreams::BlockClosureWriteStream'
+        #'Xtreams::BufferReadStream'
+        #'Xtreams::BufferWriteStream'
+        #'Xtreams::BufferedWriteStream'
+        #'Xtreams::CollectionWriteStream'
+        #'Xtreams::ExternalReadStream'
+        #'Xtreams::ExternalWriteStream'
+        #'Xtreams::FileWriteStream'
+        #'Xtreams::NullWriteStream'
+        #'Xtreams::PointerReadStream'
+        #'Xtreams::PointerWriteStream'
+        #'Xtreams::SequenceableCollectionReadStream'
+        #'Xtreams::SequenceableCollectionWriteStream'
+        #'Xtreams::SharedQueueReadStream'
+        #'Xtreams::SharedQueueWriteStream'
+        #'Xtreams::stx_goodies_xtreams_terminals'
+        #'Xtreams::FileReadStream'
+    )
+!
+
+extensionMethodNames
+    "lists the extension methods which are to be included in the project.
+     Entries are 2-element array literals, consisting of class-name and selector."
+
+    ^ #(
+        Block reading
+        Block writing
+        Collection writing
+        Filename appending
+        Filename reading
+        Filename writing
+        Random reading
+        SequenceableCollection reading
+        SequenceableCollection writing
+        SharedQueue reading
+        SharedQueue writing
+        Socket accepting
+        Socket reading
+        Socket writing
+        UndefinedObject writing
+        #'UnixOperatingSystem::FileDescriptorHandle' reading
+        #'UnixOperatingSystem::FileDescriptorHandle' writing
+        #'Xtreams::Buffer' reading
+        #'Xtreams::Buffer' writing
+        #'Xtreams::WriteStream' buffering:
+    )
+! !
+
+!stx_goodies_xtreams_terminals class methodsFor:'description - project information'!
+
+applicationIconFileName
+    "Return the name (without suffix) of an icon-file (the app's icon); will be included in the rc-resource file"
+
+    ^ nil
+    "/ ^ self applicationName
+!
+
+companyName
+    "Return a companyname which will appear in <lib>.rc"
+
+    ^ 'eXept Software AG'
+!
+
+description
+    "Return a description string which will appear in vc.def / bc.def"
+
+    ^ 'Smalltalk/X Class library'
+!
+
+legalCopyright
+    "Return a copyright string which will appear in <lib>.rc"
+
+    ^ 'Copyright Claus Gittinger 1988-2011\nCopyright eXept Software AG 1998-2011'
+!
+
+productName
+    "Return a product name which will appear in <lib>.rc"
+
+    ^ 'Smalltalk/X'
+! !
+
+!stx_goodies_xtreams_terminals class methodsFor:'description - svn'!
+
+svnRepositoryUrlString
+    "Return a SVN repository URL of myself.
+     (Generated since 2011-04-08)
+    "        
+
+    ^ '$URL: https://swing.fit.cvut.cz/svn/stx/goodies/xtreams/trunk/terminals/stx_goodies_xtreams_terminals.st $'
+!
+
+svnRevisionNr
+    "Return a SVN revision number of myself.
+     This number is updated after a commit"
+
+    ^ "$SVN-Revision:"'32'"$"
+! !
+
+!stx_goodies_xtreams_terminals class methodsFor:'documentation'!
+
+version_SVN
+    ^ '$Id: stx_goodies_xtreams_terminals.st 17 2011-11-21 06:03:03Z mkobetic $'
+! !