stx_libbasic3.st
author Claus Gittinger <cg@exept.de>
Tue, 02 Apr 2013 21:24:22 +0200
changeset 3194 1c23b71d73dc
parent 3118 e7b6c79e6824
child 3219 92e64a42ab4e
child 3257 f61ea97050ca
permissions -rw-r--r--
automatic checkIn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1551
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
     1
"
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
     2
 COPYRIGHT (c) 2006 by eXept Software AG
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
     3
              All Rights Reserved
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
     4
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
     5
 This software is furnished under a license and may be used
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
     6
 only in accordance with the terms of that license and with the
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
     8
 be provided or otherwise made available to, or used by, any
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
     9
 other person.  No title to or ownership of the software is
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    10
 hereby transferred.
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    11
"
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libbasic3' }"
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
LibraryDefinition subclass:#stx_libbasic3
2771
f3492f31da4e automatic checkIn
vrany
parents: 2761
diff changeset
    15
	instanceVariableNames:''
f3492f31da4e automatic checkIn
vrany
parents: 2761
diff changeset
    16
	classVariableNames:''
f3492f31da4e automatic checkIn
vrany
parents: 2761
diff changeset
    17
	poolDictionaries:''
f3492f31da4e automatic checkIn
vrany
parents: 2761
diff changeset
    18
	category:'* Projects & Packages *'
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
1551
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    21
!stx_libbasic3 class methodsFor:'documentation'!
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    22
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    23
copyright
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    24
"
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    25
 COPYRIGHT (c) 2006 by eXept Software AG
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    26
              All Rights Reserved
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    27
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    28
 This software is furnished under a license and may be used
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    29
 only in accordance with the terms of that license and with the
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    31
 be provided or otherwise made available to, or used by, any
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    32
 other person.  No title to or ownership of the software is
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    33
 hereby transferred.
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    34
"
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    35
!
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    36
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    37
documentation
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    38
"
2933
d93d281cbc09 comment
Claus Gittinger <cg@exept.de>
parents: 2890
diff changeset
    39
    Build- and package information for creation of the st/x standard library: stx_libbasic3.
1551
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    40
    This library contains source-code-management, packaging and history related stuff.
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    41
"
2890
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
    42
!
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
    43
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
    44
extensionsVersion_SVN
3194
1c23b71d73dc automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3118
diff changeset
    45
    ^ '$Id: stx_libbasic3.st,v 1.79 2013-04-02 19:24:22 cg Exp $'
1551
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    46
! !
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
!stx_libbasic3 class methodsFor:'description'!
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
1968
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    50
excludedFromPreRequisites
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    51
    ^ #(
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    52
        #'stx:goodies/refactoryBrowser/parser'    "ParseTreeSearcher - referenced by HTMLDocGenerator>>methodCommentOf: "
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    53
        #'stx:goodies/webServer'    "HTTPRequest - referenced by HTMLDocGenerator>>generateClassDocReferenceFor:text:autoloading: "
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    54
        #'stx:goodies/xml/vw'    "XML::SourceScannerNodeBuilder - referenced by ChangeSet class>>fromXMLStream: "
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    55
        #'stx:libcomp'    "Parser - referenced by MessageTracer class>>wrapClass:selector:onEntry:onExit: "
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    56
        #'stx:libcompat'    "SystemWindow - referenced by MethodFinder class>>methodFor: "
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    57
        #'stx:libdb'    "SQL::SQLError - referenced by StoreSourceCodeManager class>>connectToDatabase "
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    58
        #'stx:libtool'    "Diff3TextView - referenced by CVSSourceCodeManager class>>checkin:text:directory:module:logMessage:force: "
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    59
        #'stx:libview'    "Color - referenced by CVSSourceCodeManager class>>checkin:text:directory:module:logMessage:force: "
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    60
        #'stx:libview2'    "ValueHolder - referenced by MessageTracer class>>trapModificationsIn:selectors:filter: "
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    61
        #'stx:libwidg'    "DialogBox - referenced by SourceCodeManagerUtilities class>>askForExistingRevision:title:class:manager:module:package:fileName: "
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    62
        #'stx:libwidg2'    "CheckBox - referenced by SourceCodeManagerUtilities class>>checkAndWarnAboutBadMessagesInClass:checkAgainHolder: "
3117
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    63
        #'stx:libdb/libodbc'    "SQL::ODBCSession - referenced by StoreSourceCodeManager class>>tryToConnectToDatabase: "
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    64
        #'stx:libdb/libsqlite'    "SQLiteConnection - referenced by DataBaseSourceCodeManager class>>openSQLite: "
1968
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    65
    )
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    66
!
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    67
3117
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    68
mandatoryPreRequisites
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    69
    "list all required mandatory packages.
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    70
     Packages are mandatory, if they contain superclasses of the package's classes
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    71
     or classes which are extended by this package.
2890
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
    72
     This list can be maintained manually or (better) generated and
3117
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    73
     updated by scanning the superclass hierarchies
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    74
     (the browser has a menu function for that)
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    75
     However, often too much is found, and you may want to explicitely
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    76
     exclude individual packages in the #excludedFromPreRequisites method."
2890
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
    77
1853
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    78
    ^ #(
3117
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    79
        #'stx:libbasic'    "Query - superclass of ClassRemoveChange::ClassBeingRemovedQuery "
1853
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    80
    )
3117
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    81
!
2890
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
    82
3117
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    83
referencedPreRequisites
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    84
    "list all packages containing classes referenced by the packages's members.
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    85
     This list can be maintained manually or (better) generated and
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    86
     updated by looking for global variable accesses
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    87
     (the browser has a menu function for that)
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    88
     However, often too much is found, and you may want to explicitely
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    89
     exclude individual packages in the #excludedFromPreRequisites method."
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    90
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    91
    ^ #(
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    92
        #'stx:libbasic2'    "OrderedDictionary - referenced by ChangeSet>>groupBy:labelAs:sort: "
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    93
    )
1776
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
    94
! !
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
    95
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
    96
!stx_libbasic3 class methodsFor:'description - compilation'!
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
    97
2116
e115ae36c395 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
    98
additionalBaseAddressDefinition_bc_dot_mak
e115ae36c395 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
    99
    "this is an optional definition, which (if present) may speed up the dll-loading a little
e115ae36c395 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   100
     on win32 systems."
e115ae36c395 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   101
1776
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
   102
    ^ '
1926
7ebda08994ea Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1853
diff changeset
   103
# see stdHeader_bc for LIBBASIC3_BASE
2116
e115ae36c395 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   104
LIB_BASE=$(LIBBASIC3_BASE)
1776
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
   105
'
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
   106
! !
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
   107
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
   108
!stx_libbasic3 class methodsFor:'description - contents'!
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
   109
1596
9927fe121382 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1593
diff changeset
   110
classNamesAndAttributes
2277
a510a862841f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2222
diff changeset
   111
    "lists the classes which are to be included in the project.
a510a862841f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2222
diff changeset
   112
     Each entry in the list may be: a single class-name (symbol),
a510a862841f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2222
diff changeset
   113
     or an array-literal consisting of class name and attributes.
a510a862841f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2222
diff changeset
   114
     Attributes are: #autoload or #<os> where os is one of win32, unix,..."
a510a862841f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2222
diff changeset
   115
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   116
    ^ #(
1943
0f843e4c315c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1926
diff changeset
   117
        "<className> or (<className> attributes...) in load order"
1853
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   118
        AbstractSourceCodeManager
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   119
        CallChain
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   120
        Change
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   121
        ChangeSet
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   122
        ClassOrganizer
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   123
        HTMLDocGenerator
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   124
        HistoryManager
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   125
        MessageTally
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   126
        MessageTracer
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   127
        MethodFinder
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   128
        ProfileTree
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   129
        SourceCodeManagerError
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   130
        SourceCodeManagerUtilities
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   131
        SystemOrganizer
2367
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   132
        VersionInfo
1853
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   133
        WrappedMethod
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   134
        #'stx_libbasic3'
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   135
        CVSSourceCodeManager
2367
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   136
        CVSVersionInfo
1853
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   137
        ClassChange
2367
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   138
        CompositeChange
1853
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   139
        DoItChange
2367
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   140
        FileInChange
1853
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   141
        NameSpaceCreationChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   142
        OtherChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   143
        StoreSourceCodeManager
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   144
        ClassCategoryChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   145
        ClassClassVariableChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   146
        ClassCommentChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   147
        ClassDefinitionChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   148
        ClassInstVarDefinitionChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   149
        ClassOtherChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   150
        ClassPrimitiveChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   151
        ClassRemoveChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   152
        ClassRenameChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   153
        MethodCategoryRenameChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   154
        MethodChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   155
        TimestampChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   156
        ClassPrimitiveDefinitionsChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   157
        ClassPrimitiveFunctionsChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   158
        ClassPrimitiveVariablesChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   159
        MethodCategoryChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   160
        MethodDefinitionChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   161
        MethodPackageChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   162
        MethodPrivacyChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   163
        MethodRemoveChange
2277
a510a862841f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2222
diff changeset
   164
        ChangeNotificationParameter
a510a862841f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2222
diff changeset
   165
        MethodChangeNotificationParameter
a510a862841f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2222
diff changeset
   166
        MethodRemoveChangeNotificationParameter
a510a862841f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2222
diff changeset
   167
        MethodCategoryChangeNotificationParameter
a510a862841f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2222
diff changeset
   168
        MethodTrapChangeNotificationParameter
2307
1fa46ff10c2e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2277
diff changeset
   169
        TraceBuffer
2339
489c973fe96e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   170
        PerforceSourceCodeManager
2422
488641c3fad0 automatic checkIn
vrany
parents: 2392
diff changeset
   171
        ChangeSetDiffComponent
488641c3fad0 automatic checkIn
vrany
parents: 2392
diff changeset
   172
        ChangeSetDiff
488641c3fad0 automatic checkIn
vrany
parents: 2392
diff changeset
   173
        ChangeSetDiffSet
488641c3fad0 automatic checkIn
vrany
parents: 2392
diff changeset
   174
        ChangeSetDiffEntry
2501
ea40755dc1b5 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2466
diff changeset
   175
        ChangeDeltaInformation
2538
4036cbad70cb automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2501
diff changeset
   176
        SVNVersionInfo
2589
c2c6869a5c46 automatic checkIn
vrany
parents: 2564
diff changeset
   177
        SourceCodeCache
2655
b147cdba1175 changed: #classNamesAndAttributes
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
   178
        FileBasedSourceCodeManager
2681
b263ea7953fb automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2664
diff changeset
   179
        DataBaseSourceCodeManager
2715
8c3c13f13dba automatic checkIn
vrany
parents: 2681
diff changeset
   180
        ProjectChecker
2761
3a8ac58accff automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2752
diff changeset
   181
        MercurialSourceCodeManager
2752
b843866af8d3 automatic checkIn
vrany
parents: 2723
diff changeset
   182
        InvalidChange
2890
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   183
        InfoChange
2785
6104c269c2d3 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2771
diff changeset
   184
        GitSourceCodeManager
2863
26afd02c2e40 automatic checkIn
vrany
parents: 2837
diff changeset
   185
        ProjectProblem
26afd02c2e40 automatic checkIn
vrany
parents: 2837
diff changeset
   186
        SourceCodeManagerUtilitiesForContainerBasedManagers
26afd02c2e40 automatic checkIn
vrany
parents: 2837
diff changeset
   187
        SourceCodeManagerUtilitiesForWorkspaceBasedManagers
2992
081f706d6ebe automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2964
diff changeset
   188
        (VisualAgeChunkFileSourceWriter autoload)
3008
9c4bfb96451f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2992
diff changeset
   189
        (TraitDefinitionChange autoload)
3194
1c23b71d73dc automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3118
diff changeset
   190
        (TraitClassTraitDefinitionChange autoload)
1596
9927fe121382 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1593
diff changeset
   191
    )
1968
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
   192
!
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
   193
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
   194
extensionMethodNames
2890
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   195
    "lists the extension methods which are to be included in the project.
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   196
     Entries are 2-element array literals, consisting of class-name and selector."
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   197
1968
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
   198
    ^ #(
2367
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   199
        UserPreferences historyManagerModificationLimit
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   200
        UserPreferences historyManagerModificationLimit:
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   201
        UserPreferences historyManagerSignature
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   202
        UserPreferences historyManagerSignature:
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   203
        UserPreferences historyManagerSignatures
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   204
        UserPreferences historyManagerSignatures:
2890
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   205
        UserPreferences historyManagerAllowEditOfHistory
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   206
        UserPreferences managerPerMatchingModuleDefinitions
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   207
        UserPreferences managerPerMatchingModuleDefinitions:
1968
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
   208
    )
1738
e63af0d84b52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
   209
! !
e63af0d84b52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
   210
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   211
!stx_libbasic3 class methodsFor:'description - project information'!
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   212
3117
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
   213
applicationIconFileName
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
   214
    "Return the name (without suffix) of an icon-file (the app's icon); will be included in the rc-resource file"
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
   215
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
   216
    ^ nil
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
   217
    "/ ^ self applicationName
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
   218
!
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
   219
1620
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   220
companyName
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   221
    "Return a companyname which will appear in <lib>.rc"
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   222
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   223
    ^ 'eXept Software AG'
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   224
!
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   225
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   226
description
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   227
    "Return a description string which will appear in nt.def / bc.def"
1573
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
   228
1789
cd1e0942f4c0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1776
diff changeset
   229
    ^ 'Smalltalk/X Additional Developer Basic Classes'
1573
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
   230
1789
cd1e0942f4c0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1776
diff changeset
   231
    "Modified: / 14-09-2006 / 10:57:32 / cg"
1620
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   232
!
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   233
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   234
legalCopyright
1682
f7b542414914 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1662
diff changeset
   235
    "Return a copyright string which will appear in <lib>.rc"
1620
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   236
2837
843d4a4075c8 changed: #legalcopyright
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
   237
    ^ 'Copyright Claus Gittinger 1988-2012\nCopyright eXept Software AG 1998-2012'
1976
a50d8dd04223 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1975
diff changeset
   238
2837
843d4a4075c8 changed: #legalcopyright
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
   239
    "Modified: / 18-07-2012 / 19:11:26 / cg"
3117
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
   240
!
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
   241
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
   242
productName
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
   243
    "Return a product name which will appear in <lib>.rc"
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
   244
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
   245
    ^ 'Smalltalk/X'
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   246
! !
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   247
2367
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   248
!stx_libbasic3 class methodsFor:'description - svn'!
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   249
2890
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   250
svnRepositoryUrlString
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   251
    "Return a SVN repository URL of myself.
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   252
     (Generated since 2011-04-08)
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   253
     Do not make the string shorter!!!!!! We have to use fixed-length keyword!!!!!!
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   254
    "        
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   255
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   256
    ^ '$URL:: https://vranyj1@swing.fit.cvut.cz/svn/stx/libbasic3/branches/jv/stx_libbasic3.st                                       $'
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   257
!
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   258
2367
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   259
svnRevisionNr
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   260
    "Return a SVN revision number of myself.
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   261
     This number is updated after a commit"
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   262
3117
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
   263
    ^ "$SVN-Revision:"'Nicht versioniertes Verzeichnis'"$"
2890
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   264
! !
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   265
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   266
!stx_libbasic3 class methodsFor:'others'!
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   267
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   268
version_CVS
3194
1c23b71d73dc automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3118
diff changeset
   269
    ^ '$Header: /cvs/stx/stx/libbasic3/stx_libbasic3.st,v 1.79 2013-04-02 19:24:22 cg Exp $'
2367
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   270
! !
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   271
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   272
!stx_libbasic3 class methodsFor:'documentation'!
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   273
2664
5c6195fa9f1e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
   274
version
3194
1c23b71d73dc automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3118
diff changeset
   275
    ^ '$Header: /cvs/stx/stx/libbasic3/stx_libbasic3.st,v 1.79 2013-04-02 19:24:22 cg Exp $'
2222
5d9cfb01969f automatic checkIn
fm
parents: 2155
diff changeset
   276
!
5d9cfb01969f automatic checkIn
fm
parents: 2155
diff changeset
   277
2367
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   278
version_SVN
2890
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   279
    ^ '§Id:: stx_libbasic3.st 1942 2012-07-27 14:53:23Z vranyj1                                                                     §'
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   280
! !
2992
081f706d6ebe automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2964
diff changeset
   281