-
Notifications
You must be signed in to change notification settings - Fork 71
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 #1304 from SeasideSt/pharo10
Pharo10
- Loading branch information
Showing
98 changed files
with
650 additions
and
34 deletions.
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
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
5 changes: 5 additions & 0 deletions
5
...haro-Development.package/WAPharoWalkback.class/instance/tempNamedAndValuesInSqueak.do..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 @@ | ||
private | ||
tempNamedAndValuesInSqueak: aContext do: aTwoArgumentBlock | ||
|
||
aContext tempNames doWithIndex: [ :each :index | | ||
aTwoArgumentBlock value: each value: (aContext namedTempAt: index) ] |
12 changes: 6 additions & 6 deletions
12
...side-Pharo-Development.package/WAPharoWalkback.class/instance/tempNamesAndValuesIn.do..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,9 +1,9 @@ | ||
private | ||
tempNamesAndValuesIn: aContext do: aTwoArgumentBlock | ||
(((SystemVersion current asString includesSubstring: 'Pharo') | ||
((SystemVersion current asString includesSubstring: 'Pharo') | ||
and: [ SystemVersion current major >= 8 ]) | ||
or: [ (SystemVersion current asString includesSubstring: 'Squeak') | ||
and: [ SystemVersion current majorVersionNumber >= 5 ] ]) | ||
ifTrue: [ aContext tempNames | ||
doWithIndex: | ||
[ :each :index | aTwoArgumentBlock value: each value: (aContext namedTempAt: index) ] ] | ||
ifTrue: [ ^ self tempNamesAndValuesInPharo8Plus: aContext do: aTwoArgumentBlock ]. | ||
|
||
((SystemVersion current asString includesSubstring: 'Squeak') | ||
and: [ SystemVersion current majorVersionNumber >= 5 ]) | ||
ifTrue: [ ^ self tempNamedAndValuesInSqueak: aContext do: aTwoArgumentBlock ] |
5 changes: 5 additions & 0 deletions
5
...-Development.package/WAPharoWalkback.class/instance/tempNamesAndValuesInPharo8Plus.do..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 @@ | ||
private | ||
tempNamesAndValuesInPharo8Plus: aContext do: aTwoArgumentBlock | ||
|
||
aContext tempNames do: [ :each | | ||
aTwoArgumentBlock value: each value: (aContext tempNamed: each) ] |
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 @@ | ||
{ | ||
"separateMethodMetaAndSource" : false, | ||
"noMethodMetaData" : true, | ||
"useCypressPropertiesFile" : true | ||
} |
8 changes: 8 additions & 0 deletions
8
.../Seaside-Pharo100-Tools-Spec2.package/GRPackage.extension/class/seasidePharoToolsSpec2.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,8 @@ | ||
*Seaside-Pharo100-Tools-Spec2 | ||
seasidePharoToolsSpec2 | ||
^ self new | ||
name: 'Seaside-Pharo100-Tools-Spec2'; | ||
description: 'Spec based server adapter browser for Pharo'; | ||
addDependency: 'Seaside-Tools-Core'; | ||
url: #seasideUrl; | ||
yourself |
3 changes: 3 additions & 0 deletions
3
repository/Seaside-Pharo100-Tools-Spec2.package/GRPackage.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" : "GRPackage" | ||
} |
4 changes: 4 additions & 0 deletions
4
...sitory/Seaside-Pharo100-Tools-Spec2.package/WAAddAdaptorCommand.class/README.md
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 @@ | ||
Description | ||
-------------------- | ||
|
||
I am an action to register a new adaptor in Seaside. |
3 changes: 3 additions & 0 deletions
3
...Seaside-Pharo100-Tools-Spec2.package/WAAddAdaptorCommand.class/instance/adaptorClasses.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 | ||
adaptorClasses | ||
^ (WAServerAdaptor allSubclasses reject: #isAbstract) sorted: #name ascending |
5 changes: 5 additions & 0 deletions
5
.../Seaside-Pharo100-Tools-Spec2.package/WAAddAdaptorCommand.class/instance/asSpecCommand.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 @@ | ||
converting | ||
asSpecCommand | ||
^ super asSpecCommand | ||
iconName: #add; | ||
yourself |
15 changes: 15 additions & 0 deletions
15
...sitory/Seaside-Pharo100-Tools-Spec2.package/WAAddAdaptorCommand.class/instance/execute.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,15 @@ | ||
hooks | ||
execute | ||
| allAdaptors | | ||
allAdaptors := self adaptorClasses. | ||
(UIManager default | ||
chooseFrom: (allAdaptors collect: #name) | ||
values: allAdaptors | ||
lines: #() | ||
title: 'Add Seaside Adaptor' translated) | ||
ifNotNil: [ :class | | ||
(UIManager default request: 'Enter a port number' initialAnswer: class basicNew defaultPort greaseString) | ||
ifNotNil: [ :port | | ||
(port isEmpty or: [ port isAllDigits not ]) | ||
ifFalse: [ class port: port greaseInteger. | ||
context updateAdaptorsTable ] ] ] |
6 changes: 6 additions & 0 deletions
6
...ory/Seaside-Pharo100-Tools-Spec2.package/WAAddAdaptorCommand.class/instance/initialize.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 @@ | ||
initialization | ||
initialize | ||
super initialize. | ||
self | ||
name: 'Add adaptor'; | ||
description: 'Allows one to create a new adaptor.' |
11 changes: 11 additions & 0 deletions
11
repository/Seaside-Pharo100-Tools-Spec2.package/WAAddAdaptorCommand.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,11 @@ | ||
{ | ||
"commentStamp" : "CyrilFerlicot 8/26/2019 12:06", | ||
"super" : "WAControlPanelCommand", | ||
"category" : "Seaside-Pharo100-Tools-Spec2", | ||
"classinstvars" : [ ], | ||
"pools" : [ ], | ||
"classvars" : [ ], | ||
"instvars" : [ ], | ||
"name" : "WAAddAdaptorCommand", | ||
"type" : "normal" | ||
} |
4 changes: 4 additions & 0 deletions
4
...-Pharo100-Tools-Spec2.package/WAClearConfigurationCachesCommand.class/README.md
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 @@ | ||
Description | ||
-------------------- | ||
|
||
I am an action to clear the caches of seaside configurations. |
5 changes: 5 additions & 0 deletions
5
...100-Tools-Spec2.package/WAClearConfigurationCachesCommand.class/instance/asSpecCommand.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 @@ | ||
converting | ||
asSpecCommand | ||
^ super asSpecCommand | ||
iconName: #remove; | ||
yourself |
3 changes: 3 additions & 0 deletions
3
...-Pharo100-Tools-Spec2.package/WAClearConfigurationCachesCommand.class/instance/execute.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 @@ | ||
hooks | ||
execute | ||
WAAdmin clearConfigurationCaches |
6 changes: 6 additions & 0 deletions
6
...aro100-Tools-Spec2.package/WAClearConfigurationCachesCommand.class/instance/initialize.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 @@ | ||
initialization | ||
initialize | ||
super initialize. | ||
self | ||
name: 'Clear configuration caches'; | ||
description: 'Cleat all the caches of the configuration.' |
11 changes: 11 additions & 0 deletions
11
...side-Pharo100-Tools-Spec2.package/WAClearConfigurationCachesCommand.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,11 @@ | ||
{ | ||
"commentStamp" : "CyrilFerlicot 8/26/2019 12:07", | ||
"super" : "WAControlPanelCommand", | ||
"category" : "Seaside-Pharo100-Tools-Spec2", | ||
"classinstvars" : [ ], | ||
"pools" : [ ], | ||
"classvars" : [ ], | ||
"instvars" : [ ], | ||
"name" : "WAClearConfigurationCachesCommand", | ||
"type" : "normal" | ||
} |
4 changes: 4 additions & 0 deletions
4
...ory/Seaside-Pharo100-Tools-Spec2.package/WAClearSessionsCommand.class/README.md
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 @@ | ||
Description | ||
-------------------- | ||
|
||
I am an action to clear seaside sessions. |
5 changes: 5 additions & 0 deletions
5
...aside-Pharo100-Tools-Spec2.package/WAClearSessionsCommand.class/instance/asSpecCommand.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 @@ | ||
converting | ||
asSpecCommand | ||
^ super asSpecCommand | ||
iconName: #remove; | ||
yourself |
3 changes: 3 additions & 0 deletions
3
...ory/Seaside-Pharo100-Tools-Spec2.package/WAClearSessionsCommand.class/instance/execute.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 @@ | ||
hooks | ||
execute | ||
WAAdmin clearSessions |
6 changes: 6 additions & 0 deletions
6
.../Seaside-Pharo100-Tools-Spec2.package/WAClearSessionsCommand.class/instance/initialize.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 @@ | ||
initialization | ||
initialize | ||
super initialize. | ||
self | ||
name: 'Clear sessions'; | ||
description: 'Clear all the sessions.' |
11 changes: 11 additions & 0 deletions
11
repository/Seaside-Pharo100-Tools-Spec2.package/WAClearSessionsCommand.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,11 @@ | ||
{ | ||
"commentStamp" : "CyrilFerlicot 8/26/2019 12:07", | ||
"super" : "WAControlPanelCommand", | ||
"category" : "Seaside-Pharo100-Tools-Spec2", | ||
"classinstvars" : [ ], | ||
"pools" : [ ], | ||
"classvars" : [ ], | ||
"instvars" : [ ], | ||
"name" : "WAClearSessionsCommand", | ||
"type" : "normal" | ||
} |
6 changes: 6 additions & 0 deletions
6
...tory/Seaside-Pharo100-Tools-Spec2.package/WAControlPanelCommand.class/README.md
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 @@ | ||
Description | ||
-------------------- | ||
|
||
I am an abstract class to manage commands of the controle panel of Seaside. | ||
|
||
My context is a WAPharoControlPanel. |
3 changes: 3 additions & 0 deletions
3
...tory/Seaside-Pharo100-Tools-Spec2.package/WAControlPanelCommand.class/class/isAbstract.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 | ||
isAbstract | ||
^ self = WAControlPanelCommand |
3 changes: 3 additions & 0 deletions
3
...tory/Seaside-Pharo100-Tools-Spec2.package/WAControlPanelCommand.class/instance/adaptor.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 | ||
adaptor | ||
^ self context selectedAdaptor |
3 changes: 3 additions & 0 deletions
3
...y/Seaside-Pharo100-Tools-Spec2.package/WAControlPanelCommand.class/instance/hasAdaptor.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 @@ | ||
hooks | ||
hasAdaptor | ||
^ self adaptor isNotNil |
11 changes: 11 additions & 0 deletions
11
repository/Seaside-Pharo100-Tools-Spec2.package/WAControlPanelCommand.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,11 @@ | ||
{ | ||
"commentStamp" : "CyrilFerlicot 8/26/2019 12:06", | ||
"super" : "CmCommand", | ||
"category" : "Seaside-Pharo100-Tools-Spec2", | ||
"classinstvars" : [ ], | ||
"pools" : [ ], | ||
"classvars" : [ ], | ||
"instvars" : [ ], | ||
"name" : "WAControlPanelCommand", | ||
"type" : "normal" | ||
} |
4 changes: 4 additions & 0 deletions
4
...ry/Seaside-Pharo100-Tools-Spec2.package/WAInspectAdaptorCommand.class/README.md
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 @@ | ||
Description | ||
-------------------- | ||
|
||
I am an action to inspect the currently selected adaptor. |
5 changes: 5 additions & 0 deletions
5
...side-Pharo100-Tools-Spec2.package/WAInspectAdaptorCommand.class/instance/asSpecCommand.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 @@ | ||
converting | ||
asSpecCommand | ||
^ super asSpecCommand | ||
iconName: #smallInspectIt; | ||
yourself |
3 changes: 3 additions & 0 deletions
3
...ry/Seaside-Pharo100-Tools-Spec2.package/WAInspectAdaptorCommand.class/instance/execute.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 @@ | ||
hooks | ||
execute | ||
self adaptor ifNotNil: #inspect |
6 changes: 6 additions & 0 deletions
6
...Seaside-Pharo100-Tools-Spec2.package/WAInspectAdaptorCommand.class/instance/initialize.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 @@ | ||
initialization | ||
initialize | ||
super initialize. | ||
self | ||
name: 'Inspect'; | ||
description: 'Inspect the currently selected adaptor.' |
11 changes: 11 additions & 0 deletions
11
...sitory/Seaside-Pharo100-Tools-Spec2.package/WAInspectAdaptorCommand.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,11 @@ | ||
{ | ||
"commentStamp" : "CyrilFerlicot 8/26/2019 12:07", | ||
"super" : "WAControlPanelCommand", | ||
"category" : "Seaside-Pharo100-Tools-Spec2", | ||
"classinstvars" : [ ], | ||
"pools" : [ ], | ||
"classvars" : [ ], | ||
"instvars" : [ ], | ||
"name" : "WAInspectAdaptorCommand", | ||
"type" : "normal" | ||
} |
4 changes: 4 additions & 0 deletions
4
...itory/Seaside-Pharo100-Tools-Spec2.package/WAOpenBrowserCommand.class/README.md
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 @@ | ||
Description | ||
-------------------- | ||
|
||
I am an action to open a web browser on the localhost defined by the adaptor depending on its port. |
5 changes: 5 additions & 0 deletions
5
...Seaside-Pharo100-Tools-Spec2.package/WAOpenBrowserCommand.class/instance/asSpecCommand.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 @@ | ||
converting | ||
asSpecCommand | ||
^ super asSpecCommand | ||
iconName: #window; | ||
yourself |
6 changes: 6 additions & 0 deletions
6
...itory/Seaside-Pharo100-Tools-Spec2.package/WAOpenBrowserCommand.class/instance/execute.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 @@ | ||
hooks | ||
execute | ||
self adaptor | ||
ifNotNil: [ :adaptor | | ||
adaptor isRunning ifFalse: [ ^ self ]. | ||
WebBrowser openOn: 'http://localhost:' , adaptor port asString ] |
6 changes: 6 additions & 0 deletions
6
...ry/Seaside-Pharo100-Tools-Spec2.package/WAOpenBrowserCommand.class/instance/initialize.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 @@ | ||
initialization | ||
initialize | ||
super initialize. | ||
self | ||
name: 'Open'; | ||
description: 'Opoen localhost on the port of the adaptor.' |
11 changes: 11 additions & 0 deletions
11
repository/Seaside-Pharo100-Tools-Spec2.package/WAOpenBrowserCommand.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,11 @@ | ||
{ | ||
"commentStamp" : "CyrilFerlicot 8/26/2019 12:08", | ||
"super" : "WAControlPanelCommand", | ||
"category" : "Seaside-Pharo100-Tools-Spec2", | ||
"classinstvars" : [ ], | ||
"pools" : [ ], | ||
"classvars" : [ ], | ||
"instvars" : [ ], | ||
"name" : "WAOpenBrowserCommand", | ||
"type" : "normal" | ||
} |
22 changes: 22 additions & 0 deletions
22
...sitory/Seaside-Pharo100-Tools-Spec2.package/WAPharoControlPanel.class/README.md
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,22 @@ | ||
Description | ||
-------------------- | ||
|
||
I am a controle panel for seaside. I will present to the user the list of adaptors registered in Seaside and let the user do some actions such as: | ||
- Adding a new adaptor | ||
- Removing an adaptor | ||
- Starting an adaptor | ||
- Removing an adaptor | ||
... | ||
|
||
Examples | ||
-------------------- | ||
|
||
self class open | ||
|
||
Internal Representation and Key Implementation Points. | ||
-------------------- | ||
|
||
Instance Variables | ||
actionBar: <aToolbarPresenter> A toolbar containing actions to execute on the selected adaptor | ||
adaptors: <aTablePresenter> A table providing informations about the registered adaptors | ||
infos: <aTextPresenter> A text giving informations to the user about the selected adaptor |
Oops, something went wrong.