-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #4: copy TDSessionDescription from tODE ... needed to create se…
…ssion descriptions
- Loading branch information
1 parent
895a50a
commit 56e19e9
Showing
76 changed files
with
470 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
RwSimpleProjectLoadComponentV2 { | ||
#name : 'Tode', | ||
#condition : 'common', | ||
#projectNames : [ ], | ||
#componentNames : [ ], | ||
#packageNames : [ | ||
'GsDevKit_stones-Tode' | ||
], | ||
#comment : 'Shared classes between GsDevKit_stones and Tode' | ||
} |
Empty file.
13 changes: 13 additions & 0 deletions
13
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/class/importFrom..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
instance creation | ||
importFrom: filepath | ||
[ | ||
FileStream | ||
readOnlyFileNamed: filepath | ||
do: [ :fileStream | | ||
^ ((Rowan globalNamed: 'TodeObjectSerializer') preferredSerializer fromString: fileStream contents) | ||
asTDSessionDescription ] ] | ||
on: ((Rowan globalNamed: 'Smalltalk') at: #'FileDoesNotExistException' ifAbsent: [ Error ]) | ||
do: [ :ex | | ||
self | ||
error: | ||
'The session description file ' , filepath printString , ' cannot be found.' ] |
10 changes: 10 additions & 0 deletions
10
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/class/seaside.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
instance creation | ||
seaside | ||
^ self new | ||
name: 'seaside'; | ||
gemstoneVersion: '3.2.0'; | ||
gciLibraryName: 'libgcirpc-3.2.0-32'; | ||
stoneHost: 'localhost'; | ||
stoneName: 'seaside'; | ||
gemHost: 'localhost'; | ||
yourself |
3 changes: 3 additions & 0 deletions
3
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/adornmentColor..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
adornmentColor: anObject | ||
adornmentColor := anObject |
3 changes: 3 additions & 0 deletions
3
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/adornmentColor.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
adornmentColor | ||
^ adornmentColor |
3 changes: 3 additions & 0 deletions
3
...sDevKit_stones-Tode.package/TDSessionDescription.class/instance/asTDSessionDescription.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
conversion | ||
asTDSessionDescription | ||
^ self |
3 changes: 3 additions & 0 deletions
3
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/authorId..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
authorId: anObject | ||
authorId := anObject |
4 changes: 4 additions & 0 deletions
4
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/authorId.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
authorId | ||
authorId ifNil: [ authorId := '' ]. | ||
^ authorId |
6 changes: 6 additions & 0 deletions
6
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/backupDirectory..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
accessing | ||
backupDirectory: aString | ||
|
||
(aString isEmpty or: [ aString last = $/ ]) | ||
ifTrue: [ backupDirectory := aString ] | ||
ifFalse: [ backupDirectory := aString, '/' ] |
5 changes: 5 additions & 0 deletions
5
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/backupDirectory.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
accessing | ||
backupDirectory | ||
|
||
backupDirectory == nil ifTrue: [ backupDirectory := '' ]. | ||
^backupDirectory |
6 changes: 6 additions & 0 deletions
6
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/dataDirectory..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
accessing | ||
dataDirectory: aString | ||
|
||
(aString isEmpty or: [ aString last = $/ ]) | ||
ifTrue: [ dataDirectory := aString ] | ||
ifFalse: [ dataDirectory := aString, '/' ] |
5 changes: 5 additions & 0 deletions
5
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/dataDirectory.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
accessing | ||
dataDirectory | ||
|
||
dataDirectory == nil ifTrue: [ dataDirectory := '' ]. | ||
^dataDirectory |
4 changes: 4 additions & 0 deletions
4
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/defaultGemHost.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
defaults | ||
defaultGemHost | ||
|
||
^'glass' |
4 changes: 4 additions & 0 deletions
4
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/defaultGemTask.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
defaults | ||
defaultGemTask | ||
|
||
^'gemnetobject' |
4 changes: 4 additions & 0 deletions
4
...sDevKit_stones-Tode.package/TDSessionDescription.class/instance/defaultGemstoneVersion.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
defaults | ||
defaultGemstoneVersion | ||
|
||
^'3.2.0' |
4 changes: 4 additions & 0 deletions
4
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/defaultNetLDI.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
defaults | ||
defaultNetLDI | ||
|
||
^'50377' |
4 changes: 4 additions & 0 deletions
4
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/defaultPassword.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
defaults | ||
defaultPassword | ||
|
||
^'swordfish' |
4 changes: 4 additions & 0 deletions
4
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/defaultStoneHost.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
defaults | ||
defaultStoneHost | ||
|
||
^'glass' |
4 changes: 4 additions & 0 deletions
4
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/defaultStoneName.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
defaults | ||
defaultStoneName | ||
|
||
^'seaside' |
4 changes: 4 additions & 0 deletions
4
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/defaultUserId.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
defaults | ||
defaultUserId | ||
|
||
^'DataCurator' |
3 changes: 3 additions & 0 deletions
3
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/environmentId..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
environmentId: anObject | ||
environmentId := anObject |
3 changes: 3 additions & 0 deletions
3
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/environmentId.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
environmentId | ||
^ environmentId ifNil: [ environmentId := 0 ] |
3 changes: 3 additions & 0 deletions
3
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/excludeNetLDIPort..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
excludeNetLDIPort: anObject | ||
excludeNetLDIPort := anObject |
4 changes: 4 additions & 0 deletions
4
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/excludeNetLDIPort.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
excludeNetLDIPort | ||
excludeNetLDIPort ifNil: [ excludeNetLDIPort := true ]. | ||
^ excludeNetLDIPort |
24 changes: 24 additions & 0 deletions
24
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/excludedInstVarNames.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
ston | ||
excludedInstVarNames | ||
| excluded | | ||
excluded := Set new. | ||
excluded add: #excludeNetLDIPort. | ||
self netLDIPortRange ifNil: [ excluded add: #netLDIPortRange ]. | ||
self excludeNetLDIPort | ||
ifTrue: [ | ||
"when excludeNetLDIPort is true, avoid exporting netLDIPort and | ||
netLDIPortRange i.v.s because we may be passing the description | ||
to an older version of tode" | ||
self netLDIPort isEmpty | ||
ifTrue: [ excluded add: #netLDIPort ]. | ||
self netLDIPortRange | ||
ifNotNil: [ :range | | ||
range isEmpty | ||
ifTrue: [ excluded add: #netLDIPortRange ] ]. | ||
self authorId isEmpty | ||
ifTrue: [ excluded add: #authorId ] ]. | ||
self snapshotDirectory isEmpty | ||
ifTrue: [ excluded add: #snapshotDirectory ]. | ||
environmentId ifNil: [ excluded add: #environmentId ]. | ||
todeUserId ifNil: [ excluded add: #todeUserId ]. | ||
^ excluded |
3 changes: 3 additions & 0 deletions
3
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/exportTo..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
exportTo: filepath | ||
self exportTo: filepath extension: '' |
12 changes: 12 additions & 0 deletions
12
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/exportTo.extension..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
accessing | ||
exportTo: filepath extension: extension | ||
| stream old | | ||
old := self excludeNetLDIPort. | ||
[ | ||
"when exporting to file system, we are interested in including netLDIPort.. i.v.s" | ||
self excludeNetLDIPort: false. | ||
stream := FileStream forceNewFileNamed: filepath , self name , extension. | ||
stream lineEndConvention: #lf. | ||
stream nextPutAll: ((Rowan globalNamed: 'TodeObjectSerializer') preferredSerializer toStringPretty: self). | ||
stream close ] | ||
ensure: [ self excludeNetLDIPort: old ] |
9 changes: 9 additions & 0 deletions
9
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/fromSton..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
ston | ||
fromSton: stonReader | ||
stonReader | ||
parseMapDo: [ :instVarName :value | | ||
[ self instVarNamed: instVarName put: value ] | ||
on: Error | ||
do: [ :ignored | | ||
"If the instance variable for a TDsessionDescription is missing ... it is for a good reason ... keep on truckin' ... if it's critical let's find out during execution rather than during import" | ||
] ] |
3 changes: 3 additions & 0 deletions
3
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/gciLibraryName..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
gciLibraryName: anObject | ||
gciLibraryName := anObject |
4 changes: 4 additions & 0 deletions
4
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/gciLibraryName.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
gciLibraryName | ||
gciLibraryName ifNil: [ gciLibraryName := 'libgcirpc-' , self gemstoneVersion , '-32' ]. | ||
^ gciLibraryName |
4 changes: 4 additions & 0 deletions
4
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/gemHost..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
gemHost: aString | ||
|
||
gemHost := aString |
5 changes: 5 additions & 0 deletions
5
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/gemHost.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
accessing | ||
gemHost | ||
|
||
gemHost == nil ifTrue: [ gemHost := self defaultGemHost ]. | ||
^gemHost |
6 changes: 6 additions & 0 deletions
6
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/gemNRS.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
nrs | ||
gemNRS | ||
|
||
^'!tcp@' , self gemHost, | ||
'#netldi:' , self netLDIOrNetLDIPort, | ||
'#task!' , self gemTask. |
4 changes: 4 additions & 0 deletions
4
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/gemTask..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
gemTask: aString | ||
|
||
gemTask := aString |
5 changes: 5 additions & 0 deletions
5
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/gemTask.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
accessing | ||
gemTask | ||
|
||
gemTask == nil ifTrue: [ gemTask := self defaultGemTask ]. | ||
^gemTask |
7 changes: 7 additions & 0 deletions
7
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/gemstoneVersion..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
accessing | ||
gemstoneVersion: aString | ||
| tokens | | ||
tokens := aString findTokens: '.'. | ||
tokens size <= 2 | ||
ifTrue: [ self error: 'GemStone version must have a minimum of three version fields: ''3.2.0''' ]. | ||
gemstoneVersion := aString |
4 changes: 4 additions & 0 deletions
4
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/gemstoneVersion.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
gemstoneVersion | ||
gemstoneVersion ifNil: [ gemstoneVersion := self defaultGemstoneVersion ]. | ||
^ gemstoneVersion |
4 changes: 4 additions & 0 deletions
4
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/isGuest.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
testing | ||
isGuest | ||
|
||
^ osUserId isNil |
4 changes: 4 additions & 0 deletions
4
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/name..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
name: aString | ||
|
||
name := aString |
6 changes: 6 additions & 0 deletions
6
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/name.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
accessing | ||
name | ||
|
||
^name == nil | ||
ifTrue: [ self class label ] | ||
ifFalse: [ name ] |
4 changes: 4 additions & 0 deletions
4
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/netLDI..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
netLDI: aString | ||
|
||
netLDI := aString |
5 changes: 5 additions & 0 deletions
5
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/netLDI.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
accessing | ||
netLDI | ||
|
||
netLDI == nil ifTrue: [ netLDI := self defaultNetLDI ]. | ||
^netLDI |
5 changes: 5 additions & 0 deletions
5
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/netLDIOrNetLDIPort.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
accessing | ||
netLDIOrNetLDIPort | ||
^ self netLDIPort isEmpty | ||
ifTrue: [ self netLDI ] | ||
ifFalse: [ self netLDIPort ] |
3 changes: 3 additions & 0 deletions
3
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/netLDIPort..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
netLDIPort: anObject | ||
netLDIPort := anObject |
4 changes: 4 additions & 0 deletions
4
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/netLDIPort.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
netLDIPort | ||
netLDIPort ifNil: [ netLDIPort := '' ]. | ||
^ netLDIPort |
3 changes: 3 additions & 0 deletions
3
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/netLDIPortRange..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
netLDIPortRange: aString | ||
netLDIPortRange := aString |
3 changes: 3 additions & 0 deletions
3
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/netLDIPortRange.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
netLDIPortRange | ||
^ netLDIPortRange |
4 changes: 4 additions & 0 deletions
4
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/osPassword..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
osPassword: aString | ||
|
||
osPassword := aString |
5 changes: 5 additions & 0 deletions
5
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/osPassword.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
accessing | ||
osPassword | ||
|
||
osPassword == nil ifTrue: [ osPassword := '' ]. | ||
^osPassword |
4 changes: 4 additions & 0 deletions
4
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/osUserId..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
osUserId: aString | ||
|
||
osUserId := aString |
4 changes: 4 additions & 0 deletions
4
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/password..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
password: aString | ||
|
||
password := aString |
5 changes: 5 additions & 0 deletions
5
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/password.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
accessing | ||
password | ||
|
||
password == nil ifTrue: [ password := self defaultPassword ]. | ||
^password |
5 changes: 5 additions & 0 deletions
5
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/postCopy.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
copying | ||
postCopy | ||
|
||
super postCopy. | ||
self name: self name, ' copy' |
3 changes: 3 additions & 0 deletions
3
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/serverGitRoot..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
serverGitRoot: anObject | ||
serverGitRoot := anObject |
3 changes: 3 additions & 0 deletions
3
src/GsDevKit_stones-Tode.package/TDSessionDescription.class/instance/serverGitRoot.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
serverGitRoot | ||
^ serverGitRoot |
Oops, something went wrong.