-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #122 from dalehenrich/dev
Pick up recent changes that include support for latest Metacello release
- Loading branch information
Showing
38 changed files
with
87 additions
and
66 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
repository/Topez-Common-Core.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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
instance creation | ||
importFrom: filepath | ||
FileStream readOnlyFileNamed: filepath do: [ :fileStream | ^(STON fromStream: fileStream) asTDSessionDescription ]. | ||
FileStream readOnlyFileNamed: filepath do: [ :fileStream | ^(STON fromStream: fileStream) asTDSessionDescription ]. |
21 changes: 11 additions & 10 deletions
21
repository/Topez-Common-Core.package/TDSessionDescription.class/instance/gciLibrary.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 |
---|---|---|
@@ -1,12 +1,13 @@ | ||
accessing | ||
gciLibrary | ||
| libraryClass library libName ext | | ||
libraryClass := GciLibrary withAllSubclasses detect: [ :each | each isClassForVersion: self gemstoneVersion ]. | ||
ExternalAddress startUp: true. | ||
libName := self gciLibraryName. | ||
ext := self gciLibraryExtension. | ||
(libName endsWith: ext) | ||
ifFalse: [ libName := libName , ext ]. | ||
library := libraryClass libraryNamed: libName. | ||
library apiGciInit. | ||
^ library | ||
| libraryClass library libName ext | | ||
libraryClass := GciLibrary withAllSubclasses | ||
detect: [ :each | each isClassForVersion: self gemstoneVersion ]. | ||
(Smalltalk at: #'ExternalAddress') startUp: true. | ||
libName := self gciLibraryName. | ||
ext := self gciLibraryExtension. | ||
(libName endsWith: ext) | ||
ifFalse: [ libName := libName , ext ]. | ||
library := libraryClass libraryNamed: libName. | ||
library apiGciInit. | ||
^ library |
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 |
---|---|---|
|
@@ -3,4 +3,4 @@ gemNRS | |
|
||
^'!tcp@' , self gemHost, | ||
'#netldi:' , self netLDI, | ||
'#task!' , self gemTask. | ||
'#task!' , self gemTask. |
2 changes: 1 addition & 1 deletion
2
repository/Topez-Common-Core.package/TDSessionDescription.class/instance/serverTodeRoot..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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
accessing | ||
serverTodeRoot: anObject | ||
|
||
serverTodeRoot := anObject | ||
serverTodeRoot := anObject |
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 |
---|---|---|
|
@@ -2,5 +2,4 @@ nrs | |
stoneNRS | ||
|
||
^'!tcp@' , self stoneHost , | ||
'#server!' , self stoneName. | ||
|
||
'#server!' , self stoneName. |
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
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...efinition.class/instance/hasGithubRepo.st → ...inition.class/instance/hasGitBasedRepo.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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
testing | ||
hasGithubRepo | ||
hasGitBasedRepo | ||
^ false |
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
3 changes: 2 additions & 1 deletion
3
repository/Topez-Server-Core.package/TDMergeDiffBrowser.class/instance/operations.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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
accessing | ||
operations | ||
^ self merger operations | ||
stFilterBlock ifNil: [ ^ self merger operations ]. | ||
^ self merger operations select: stFilterBlock |
4 changes: 4 additions & 0 deletions
4
repository/Topez-Server-Core.package/TDMergeDiffBrowser.class/instance/stFilterBlock..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 | ||
stFilterBlock: anObject | ||
|
||
stFilterBlock := anObject |
4 changes: 4 additions & 0 deletions
4
repository/Topez-Server-Core.package/TDMergeDiffBrowser.class/instance/stFilterBlock.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 | ||
stFilterBlock | ||
|
||
^stFilterBlock |
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
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
4 changes: 2 additions & 2 deletions
4
...efinition.class/instance/hasGithubRepo.st → ...inition.class/instance/hasGitBasedRepo.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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
testing | ||
hasGithubRepo | ||
self repositorySpec type = 'github' | ||
hasGitBasedRepo | ||
super hasGitBasedRepo | ||
ifTrue: [ ^ true ]. | ||
^ self hybridRepositorySpec notNil |
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
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
3 changes: 3 additions & 0 deletions
3
...r-Core.package/TDMetacelloProjectRegistrationDefinition.class/instance/hasGitBasedRepo.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 @@ | ||
testing | ||
hasGitBasedRepo | ||
^ #('github' 'gitorious' 'bitbucket') includes: self repositorySpec type |
5 changes: 4 additions & 1 deletion
5
...-Core.package/TDMetacelloProjectRegistrationDefinition.class/instance/hasGitRepository.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 |
---|---|---|
@@ -1,4 +1,7 @@ | ||
testing | ||
hasGitRepository | ||
^ self hasFileTreeRepo | ||
and: [ MetacelloPlatform current gitIsGitDirectoryPath: self gitRepoDirectoryPath ] | ||
and: [ | ||
[ MetacelloPlatform current gitIsGitDirectoryPath: self gitRepoDirectoryPath ] | ||
on: Error | ||
do: [ :ex | ex return: false ] ] |
3 changes: 0 additions & 3 deletions
3
...ver-Core.package/TDMetacelloProjectRegistrationDefinition.class/instance/hasGithubRepo.st
This file was deleted.
Oops, something went wrong.
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
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
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
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
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
4 changes: 2 additions & 2 deletions
4
...efinition.class/instance/hasGithubRepo.st → ...inition.class/instance/hasGitBasedRepo.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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
testing | ||
hasGithubRepo | ||
self repositorySpec type = 'github' | ||
hasGitBasedRepo | ||
super hasGitBasedRepo | ||
ifTrue: [ ^ true ]. | ||
^ self hybridRepositorySpec notNil |
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
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
Large diffs are not rendered by default.
Oops, something went wrong.