-
Notifications
You must be signed in to change notification settings - Fork 72
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 #1155 from jecisc/New-control-panel-in-spec2
New-control-panel-in-spec2
- Loading branch information
Showing
85 changed files
with
598 additions
and
4 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
4 changes: 4 additions & 0 deletions
4
...itory/BaselineOfSeaside3.package/GRPharoPlatform.extension/instance/pharoVersionsFrom..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 @@ | ||
*BaselineOfSeaside3 | ||
pharoVersionsFrom: aVersion | ||
^ (aVersion to: SystemVersion current major) | ||
collect: [ :v | ('pharo' , v asString , '.x') asSymbol ] |
3 changes: 3 additions & 0 deletions
3
repository/BaselineOfSeaside3.package/GRPharoPlatform.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" : "GRPharoPlatform" | ||
} |
5 changes: 5 additions & 0 deletions
5
repository/BaselineOfSeaside3.package/GRPlatform.extension/instance/pharoVersionsFrom..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 @@ | ||
*BaselineOfSeaside3 | ||
pharoVersionsFrom: aVersion | ||
"Return a list of pharo version from the major version as parameter to the major version of the image" | ||
|
||
^ #() |
3 changes: 3 additions & 0 deletions
3
repository/BaselineOfSeaside3.package/GRPlatform.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" : "GRPlatform" | ||
} |
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
...ory/Seaside-Pharo-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-Pharo-Tools-Spec2 | ||
seasidePharoToolsSpec2 | ||
^ self new | ||
name: 'Seaside-Pharo-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-Pharo-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
repository/Seaside-Pharo-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
...ry/Seaside-Pharo-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
...ory/Seaside-Pharo-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
repository/Seaside-Pharo-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
...sitory/Seaside-Pharo-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 | ||
basicName: 'Add adaptor'; | ||
basicDescription: 'Allows one to create a new adaptor.' |
11 changes: 11 additions & 0 deletions
11
repository/Seaside-Pharo-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-Pharo-Tools-Spec2", | ||
"classinstvars" : [ ], | ||
"pools" : [ ], | ||
"classvars" : [ ], | ||
"instvars" : [ ], | ||
"name" : "WAAddAdaptorCommand", | ||
"type" : "normal" | ||
} |
4 changes: 4 additions & 0 deletions
4
...ide-Pharo-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
...aro-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
...ide-Pharo-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
...-Pharo-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 | ||
basicName: 'Clear configuration caches'; | ||
basicDescription: 'Cleat all the caches of the configuration.' |
11 changes: 11 additions & 0 deletions
11
...Seaside-Pharo-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-Pharo-Tools-Spec2", | ||
"classinstvars" : [ ], | ||
"pools" : [ ], | ||
"classvars" : [ ], | ||
"instvars" : [ ], | ||
"name" : "WAClearConfigurationCachesCommand", | ||
"type" : "normal" | ||
} |
4 changes: 4 additions & 0 deletions
4
...sitory/Seaside-Pharo-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
.../Seaside-Pharo-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
...sitory/Seaside-Pharo-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
...ory/Seaside-Pharo-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 | ||
basicName: 'Clear sessions'; | ||
basicDescription: 'Clear all the sessions.' |
11 changes: 11 additions & 0 deletions
11
repository/Seaside-Pharo-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-Pharo-Tools-Spec2", | ||
"classinstvars" : [ ], | ||
"pools" : [ ], | ||
"classvars" : [ ], | ||
"instvars" : [ ], | ||
"name" : "WAClearSessionsCommand", | ||
"type" : "normal" | ||
} |
6 changes: 6 additions & 0 deletions
6
repository/Seaside-Pharo-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
repository/Seaside-Pharo-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
repository/Seaside-Pharo-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
...tory/Seaside-Pharo-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-Pharo-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-Pharo-Tools-Spec2", | ||
"classinstvars" : [ ], | ||
"pools" : [ ], | ||
"classvars" : [ ], | ||
"instvars" : [ ], | ||
"name" : "WAControlPanelCommand", | ||
"type" : "normal" | ||
} |
4 changes: 4 additions & 0 deletions
4
...itory/Seaside-Pharo-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
...Seaside-Pharo-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
...itory/Seaside-Pharo-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
...ry/Seaside-Pharo-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 | ||
basicName: 'Inspect'; | ||
basicDescription: 'Inspect the currently selected adaptor.' |
11 changes: 11 additions & 0 deletions
11
repository/Seaside-Pharo-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-Pharo-Tools-Spec2", | ||
"classinstvars" : [ ], | ||
"pools" : [ ], | ||
"classvars" : [ ], | ||
"instvars" : [ ], | ||
"name" : "WAInspectAdaptorCommand", | ||
"type" : "normal" | ||
} |
4 changes: 4 additions & 0 deletions
4
repository/Seaside-Pharo-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
...ry/Seaside-Pharo-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
repository/Seaside-Pharo-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
...itory/Seaside-Pharo-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 | ||
basicName: 'Open'; | ||
basicDescription: 'Opoen localhost on the port of the adaptor.' |
11 changes: 11 additions & 0 deletions
11
repository/Seaside-Pharo-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-Pharo-Tools-Spec2", | ||
"classinstvars" : [ ], | ||
"pools" : [ ], | ||
"classvars" : [ ], | ||
"instvars" : [ ], | ||
"name" : "WAOpenBrowserCommand", | ||
"type" : "normal" | ||
} |
22 changes: 22 additions & 0 deletions
22
repository/Seaside-Pharo-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.