forked from pharo-vcs/iceberg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restaure the PR review tool. Is still in Glamour but at least it works.
Fixes pharo-vcs#775
- Loading branch information
Showing
24 changed files
with
105 additions
and
0 deletions.
There are no files selected for viewing
4 changes: 4 additions & 0 deletions
4
Iceberg-Plugin-GitHub.package/IceDiff.extension/instance/changes.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 @@ | ||
*Iceberg-Plugin-GitHub | ||
changes | ||
"I am called by Iceberg's UI to get UI nodes for the tree" | ||
^ (IceDiffNode on: tree) children |
3 changes: 3 additions & 0 deletions
3
Iceberg-Plugin-GitHub.package/IceDiff.extension/properties.json
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 @@ | ||
{ | ||
"name" : "IceDiff" | ||
} |
Empty file.
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 @@ | ||
instance-creation | ||
on: anIceNode | ||
|
||
^ self new | ||
node: anIceNode; | ||
yourself |
4 changes: 4 additions & 0 deletions
4
Iceberg-Plugin-GitHub.package/IceDiffNode.class/instance/balloonText.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 @@ | ||
morph-compatibility | ||
balloonText | ||
|
||
^ nil |
4 changes: 4 additions & 0 deletions
4
Iceberg-Plugin-GitHub.package/IceDiffNode.class/instance/browse.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 @@ | ||
as yet unclassified | ||
browse | ||
|
||
^ node value browse |
4 changes: 4 additions & 0 deletions
4
Iceberg-Plugin-GitHub.package/IceDiffNode.class/instance/canBeBrowsed.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 @@ | ||
ui | ||
canBeBrowsed | ||
|
||
^ node value canBeBrowsed |
4 changes: 4 additions & 0 deletions
4
Iceberg-Plugin-GitHub.package/IceDiffNode.class/instance/canBrowseReferences.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 @@ | ||
ui | ||
canBrowseReferences | ||
|
||
^ node value canBrowseReferences |
4 changes: 4 additions & 0 deletions
4
Iceberg-Plugin-GitHub.package/IceDiffNode.class/instance/children.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 | ||
children | ||
|
||
^ node children collect: [ :e | IceDiffNode on: e ] |
4 changes: 4 additions & 0 deletions
4
Iceberg-Plugin-GitHub.package/IceDiffNode.class/instance/contents.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 @@ | ||
morph-compatibility | ||
contents | ||
|
||
^ self children |
4 changes: 4 additions & 0 deletions
4
Iceberg-Plugin-GitHub.package/IceDiffNode.class/instance/description.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 | ||
description | ||
|
||
^ node description |
4 changes: 4 additions & 0 deletions
4
Iceberg-Plugin-GitHub.package/IceDiffNode.class/instance/hasContents.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 @@ | ||
morph-compatibility | ||
hasContents | ||
|
||
^ node notEmpty |
5 changes: 5 additions & 0 deletions
5
Iceberg-Plugin-GitHub.package/IceDiffNode.class/instance/hasEquivalentIn..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 @@ | ||
morph-compatibility | ||
hasEquivalentIn: aCollection | ||
|
||
self haltIf: [ aCollection notEmpty ]. | ||
^ false |
4 changes: 4 additions & 0 deletions
4
Iceberg-Plugin-GitHub.package/IceDiffNode.class/instance/highlightingColor.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 @@ | ||
morph-compatibility | ||
highlightingColor | ||
|
||
^ self theme selectionColor |
4 changes: 4 additions & 0 deletions
4
Iceberg-Plugin-GitHub.package/IceDiffNode.class/instance/icon.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 @@ | ||
ui | ||
icon | ||
|
||
^ node value icon |
4 changes: 4 additions & 0 deletions
4
Iceberg-Plugin-GitHub.package/IceDiffNode.class/instance/install.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 @@ | ||
actions | ||
install | ||
|
||
^ node value install |
4 changes: 4 additions & 0 deletions
4
Iceberg-Plugin-GitHub.package/IceDiffNode.class/instance/key.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 | ||
key | ||
|
||
^ node key |
4 changes: 4 additions & 0 deletions
4
Iceberg-Plugin-GitHub.package/IceDiffNode.class/instance/myVersion.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 | ||
myVersion | ||
|
||
^ node value leftContents |
4 changes: 4 additions & 0 deletions
4
Iceberg-Plugin-GitHub.package/IceDiffNode.class/instance/node..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 | ||
node: anIceNode | ||
|
||
node := anIceNode |
4 changes: 4 additions & 0 deletions
4
Iceberg-Plugin-GitHub.package/IceDiffNode.class/instance/node.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 | ||
node | ||
|
||
^ node |
4 changes: 4 additions & 0 deletions
4
Iceberg-Plugin-GitHub.package/IceDiffNode.class/instance/printOn..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 @@ | ||
printing | ||
printOn: aStream | ||
|
||
self description printOn: aStream |
4 changes: 4 additions & 0 deletions
4
Iceberg-Plugin-GitHub.package/IceDiffNode.class/instance/theirVersion.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 | ||
theirVersion | ||
|
||
^ node value rightContents |
14 changes: 14 additions & 0 deletions
14
Iceberg-Plugin-GitHub.package/IceDiffNode.class/properties.json
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,14 @@ | ||
{ | ||
"commentStamp" : "", | ||
"super" : "Object", | ||
"category" : "Iceberg-Plugin-GitHub-Old", | ||
"classinstvars" : [ ], | ||
"pools" : [ ], | ||
"classvars" : [ ], | ||
"instvars" : [ | ||
"node", | ||
"diff" | ||
], | ||
"name" : "IceDiffNode", | ||
"type" : "normal" | ||
} |
5 changes: 5 additions & 0 deletions
5
Iceberg-Plugin-GitHub.package/IceGitHubPullRequestBrowser.class/instance/compose.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 @@ | ||
building | ||
compose | ||
self tabulator with: [ :browser | | ||
browser initialExtent: self initialExtent. | ||
self composeBrowserOn: browser ] |