MCDirtyPackageInfo.st
author Patrik Svestka <patrik.svestka@gmail.com>
Wed, 14 Nov 2018 12:57:13 +0100
branchjv
changeset 1095 87f223484bc3
parent 624 7d905e6df6ed
permissions -rw-r--r--
Issue #239: Fix all Smalltak/X source files to be in unicode (UTF8 without BOM) and prefixed by "{ Encoding: utf8 }" when any unicode character is present - All source *.st files are now Unicode UTF8 without BOM Files are in two groups (fileOut works this way in Smalltalk/X): - containing a unicode character have "{ Encoding: utf8 }" at the header - ASCII only are without the header
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1095
87f223484bc3 Issue #239: Fix all Smalltak/X source files to be in unicode (UTF8 without BOM) and prefixed by "{ Encoding: utf8 }" when any unicode character is present
Patrik Svestka <patrik.svestka@gmail.com>
parents: 624
diff changeset
     1
"{ Encoding: utf8 }"
87f223484bc3 Issue #239: Fix all Smalltak/X source files to be in unicode (UTF8 without BOM) and prefixed by "{ Encoding: utf8 }" when any unicode character is present
Patrik Svestka <patrik.svestka@gmail.com>
parents: 624
diff changeset
     2
87
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
"{ Package: 'stx:goodies/monticello' }"
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
PackageInfo subclass:#MCDirtyPackageInfo
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
	instanceVariableNames:''
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
	classVariableNames:''
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
	poolDictionaries:''
624
7d905e6df6ed category change
Claus Gittinger <cg@exept.de>
parents: 330
diff changeset
     9
	category:'SCM-Monticello-Mocks'
87
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
!
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
!MCDirtyPackageInfo class methodsFor:'as yet unclassified'!
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
initialize
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	[self new register] on: MessageNotUnderstood do: []
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
!
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
wantsChangeSetLogging
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	^ false
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
! !
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
!MCDirtyPackageInfo methodsFor:'as yet unclassified'!
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
classes
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
	^ Array new: 0.
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
!
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
methods
223
a57928e550bc added: #version_CVS
Claus Gittinger <cg@exept.de>
parents: 87
diff changeset
    30
	^ MCMockClassA selectors
87
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
		select: [:ea | ea beginsWith: 'ordinal']
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
		thenCollect:
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
			[:ea | 
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
				MethodReference new 
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
					setStandardClass: MCMockClassA 
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
					methodSymbol: ea].
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
!
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
packageName
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
	^ 'MCDirtyPackage'
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
! !
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
!MCDirtyPackageInfo class methodsFor:'documentation'!
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
version
624
7d905e6df6ed category change
Claus Gittinger <cg@exept.de>
parents: 330
diff changeset
    46
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCDirtyPackageInfo.st,v 1.4 2012-09-11 21:21:43 cg Exp $'
223
a57928e550bc added: #version_CVS
Claus Gittinger <cg@exept.de>
parents: 87
diff changeset
    47
!
a57928e550bc added: #version_CVS
Claus Gittinger <cg@exept.de>
parents: 87
diff changeset
    48
a57928e550bc added: #version_CVS
Claus Gittinger <cg@exept.de>
parents: 87
diff changeset
    49
version_CVS
624
7d905e6df6ed category change
Claus Gittinger <cg@exept.de>
parents: 330
diff changeset
    50
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCDirtyPackageInfo.st,v 1.4 2012-09-11 21:21:43 cg Exp $'
223
a57928e550bc added: #version_CVS
Claus Gittinger <cg@exept.de>
parents: 87
diff changeset
    51
!
a57928e550bc added: #version_CVS
Claus Gittinger <cg@exept.de>
parents: 87
diff changeset
    52
a57928e550bc added: #version_CVS
Claus Gittinger <cg@exept.de>
parents: 87
diff changeset
    53
version_SVN
1095
87f223484bc3 Issue #239: Fix all Smalltak/X source files to be in unicode (UTF8 without BOM) and prefixed by "{ Encoding: utf8 }" when any unicode character is present
Patrik Svestka <patrik.svestka@gmail.com>
parents: 624
diff changeset
    54
    ^ '§Id: MCDirtyPackageInfo.st 5 2010-08-29 07:30:29Z vranyj1 §'
87
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
! !
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
97f5c163eed1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
MCDirtyPackageInfo initialize!