MCPostscriptDefinition.st
author Claus Gittinger <cg@exept.de>
Sun, 26 Aug 2018 14:41:59 +0200
changeset 1051 793db72fde39
parent 1043 aeecdb5610e4
permissions -rw-r--r--
#FEATURE by cg class: MCFtpRepository class definition added: #asRepositorySpecFor: #directory #host #isRemote #koRemote #loadAllFileNames comment/format in: #readStreamForFileNamed:do: changed: #description class: MCFtpRepository class added: #basicFromUrl: #documentation #fillInTheBlankRequest #morphicConfigure #urlSchemes

"{ Package: 'stx:goodies/monticello' }"

"{ NameSpace: Smalltalk }"

MCScriptDefinition subclass:#MCPostscriptDefinition
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'SCM-Monticello-Modeling'
!


!MCPostscriptDefinition class methodsFor:'as yet unclassified'!

scriptSelector
	^ #postscript
! !

!MCPostscriptDefinition methodsFor:'comparing'!

sortKey
	^ 'zzz' "force to the end so it gets loaded late"
! !

!MCPostscriptDefinition methodsFor:'converting'!

asChange
    ^OtherChange new
        mcDefinition: self;
        yourself
! !

!MCPostscriptDefinition methodsFor:'installing'!

postload
	self evaluate
! !

!MCPostscriptDefinition class methodsFor:'documentation'!

version
    ^ '$Header$'
!

version_CVS
    ^ '$Header$'
!

version_SVN
    ^ '$Id$'
! !