CVSSourceCodeManager.st
author james
Wed, 10 Dec 2003 09:34:19 +0100
changeset 1361 8be7c99d3b3a
parent 1350 7b86a4b87972
child 1362 6c8133b5cf03
permissions -rw-r--r--
corrected spelling mistake in dialog. recommend not recomment #checkinClass:fileName:directory:module:source:logMessage:force:
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
130
4abc831b165f oops - invalid ccheckin
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
     1
"
4abc831b165f oops - invalid ccheckin
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
     2
 COPYRIGHT (c) 1995 by Claus Gittinger
807
f84a9377278e Fix .stxCvsDummy / import stuff.
Stefan Vogel <sv@exept.de>
parents: 806
diff changeset
     3
              All Rights Reserved
130
4abc831b165f oops - invalid ccheckin
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
     4
4abc831b165f oops - invalid ccheckin
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
     5
 This software is furnished under a license and may be used
4abc831b165f oops - invalid ccheckin
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
     6
 only in accordance with the terms of that license and with the
4abc831b165f oops - invalid ccheckin
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
4abc831b165f oops - invalid ccheckin
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
     8
 be provided or otherwise made available to, or used by, any
4abc831b165f oops - invalid ccheckin
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
     9
 other person.  No title to or ownership of the software is
4abc831b165f oops - invalid ccheckin
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
    10
 hereby transferred.
4abc831b165f oops - invalid ccheckin
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
    11
"
4abc831b165f oops - invalid ccheckin
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
    12
1361
8be7c99d3b3a corrected spelling mistake in dialog. recommend not recomment
james
parents: 1350
diff changeset
    13
"{ Package: 'unknown' }"
922
24cfcd3043a2 file based operations added (to check in extensions etc.)
Claus Gittinger <cg@exept.de>
parents: 905
diff changeset
    14
130
4abc831b165f oops - invalid ccheckin
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
    15
AbstractSourceCodeManager subclass:#CVSSourceCodeManager
811
bc8dc317173b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
    16
	instanceVariableNames:''
bc8dc317173b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
    17
	classVariableNames:'Verbose CVSRoot CVSWorkDirectory RemoteCVS CVSBinDir
1014
adf578f3bd16 remember unaccessable repository modules and disable access.
Claus Gittinger <cg@exept.de>
parents: 1005
diff changeset
    18
		CVSModuleRoots CMD_checkout CVSTempDir DisabledModules'
811
bc8dc317173b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
    19
	poolDictionaries:''
bc8dc317173b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
    20
	category:'System-SourceCodeManagement'
130
4abc831b165f oops - invalid ccheckin
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
    21
!
4abc831b165f oops - invalid ccheckin
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
    22
804
210040657004 Speedup creation of new containers in the repository.
Stefan Vogel <sv@exept.de>
parents: 803
diff changeset
    23
210040657004 Speedup creation of new containers in the repository.
Stefan Vogel <sv@exept.de>
parents: 803
diff changeset
    24
209
c20db1bcd820 cleanup
Claus Gittinger <cg@exept.de>
parents: 208
diff changeset
    25
130
4abc831b165f oops - invalid ccheckin
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
    26
4abc831b165f oops - invalid ccheckin
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
    27
4abc831b165f oops - invalid ccheckin
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
    28
1170
Claus Gittinger <cg@exept.de>
parents: 1159
diff changeset
    29
130
4abc831b165f oops - invalid ccheckin
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
    30
CVSSourceCodeManager initialize!