-
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.
- Loading branch information
Showing
185 changed files
with
894 additions
and
325 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
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
39 changes: 31 additions & 8 deletions
39
...y/JQuery-Tests-UI.package/JQAutocompleteFunctionalTest.class/instance/renderContentOn..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,10 +1,33 @@ | ||
rendering | ||
renderContentOn: html | ||
html label | ||
for: html nextId; | ||
with: 'Type a Seaside package name:'. | ||
html break. | ||
html textInput | ||
id: html lastId; | ||
script: (html jQuery this autocomplete | ||
sourceCallback: [ :term | self packageNamesFor: term ]) | ||
|
||
| showId | | ||
showId := html nextId. | ||
|
||
html paragraph: [ | ||
html label | ||
for: html nextId; | ||
with: 'Type a Seaside package name (no callback):'. | ||
html break. | ||
html textInput | ||
id: html lastId; | ||
script: (html jQuery this autocomplete sourceCallback: [ :term | | ||
self packageNamesFor: term ]) ]. | ||
|
||
html paragraph: [ | ||
html label | ||
for: html nextId; | ||
with: 'Type a Seaside package name (with callback):'. | ||
html break. | ||
html textInput | ||
id: html lastId; | ||
script: (html jQuery this autocomplete | ||
search: [ :term | self packageNamesFor: term ] | ||
labels: [ :packagename | packagename ] | ||
callback: [ :val :s | | ||
selectedPackageName := val. | ||
s << (s jQuery id: showId) html: [ :r | self renderSelectedPackageNameOn: r ] ]). | ||
html break. | ||
html div | ||
id: showId; | ||
with: [ self renderSelectedPackageNameOn: html ] ] |
6 changes: 6 additions & 0 deletions
6
...ts-UI.package/JQAutocompleteFunctionalTest.class/instance/renderSelectedPackageNameOn..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 @@ | ||
rendering | ||
renderSelectedPackageNameOn: html | ||
|
||
html text: (selectedPackageName | ||
ifNil: [ 'No package name selected' ] | ||
ifNotNil: [ selectedPackageName , ' was selected' ]) |
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
1 change: 1 addition & 0 deletions
1
repository/JQuery-UI.package/JQAutocomplete.class/instance/search.callback..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 @@ | ||
convenience | ||
search: aSearchBlock callback: aCallbackBlock | ||
|
||
self search: aSearchBlock labels: [ :each | each greaseString ] callback: aCallbackBlock |
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: 0 additions & 4 deletions
4
repository/Seaside-Core.package/GRPlatform.extension/instance/sourceFileEncoding.st
This file was deleted.
Oops, something went wrong.
5 changes: 5 additions & 0 deletions
5
repository/Seaside-Core.package/WAServerManager.class/class/beDefault.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 @@ | ||
configuring | ||
beDefault | ||
"Set an instance of receiver to be the default Server Manager." | ||
|
||
self setDefault: self new |
6 changes: 4 additions & 2 deletions
6
repository/Seaside-Core.package/WAServerManager.class/class/default.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,6 @@ | ||
accessing | ||
default | ||
default contents ifNil: [ default contents: self new ]. | ||
^ default contents | ||
|
||
self ensureDefaultValueHolder. | ||
Default contents ifNil: [ Default contents: self new ]. | ||
^ Default contents |
4 changes: 4 additions & 0 deletions
4
repository/Seaside-Core.package/WAServerManager.class/class/ensureDefaultValueHolder.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 @@ | ||
class initialization | ||
ensureDefaultValueHolder | ||
Default isNil ifTrue: [ | ||
Default := GRPlatform current newTransientValueHolder ] |
2 changes: 1 addition & 1 deletion
2
repository/Seaside-Core.package/WAServerManager.class/class/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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
class initialization | ||
initialize | ||
self initializeDefaultValueHolder. | ||
self ensureDefaultValueHolder. | ||
GRPlatform current | ||
addToStartUpList: self; | ||
addToShutDownList: self |
4 changes: 0 additions & 4 deletions
4
repository/Seaside-Core.package/WAServerManager.class/class/initializeDefaultValueHolder.st
This file was deleted.
Oops, something went wrong.
6 changes: 6 additions & 0 deletions
6
repository/Seaside-Core.package/WAServerManager.class/class/setDefault..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 @@ | ||
configuring | ||
setDefault: aWAServerManager | ||
"Private - Sets aWAServerManager as the default instance of receiver." | ||
|
||
self ensureDefaultValueHolder. | ||
Default contents: aWAServerManager. |
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: 4 additions & 1 deletion
5
...ackage/SentButNotImplementedTest.extension/instance/nonImplementedSelectorsSeasideCore.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,6 @@ | ||
*seaside-gemstone-core | ||
nonImplementedSelectorsSeasideCore | ||
^ #(#'javascript:' #'internalServerErrorMessage:') "WAScriptGenerator>>writeLoadScriptsOn: is the bad boy for javascript: and GRGemStonePlatform>>seasideProcessRequest:adaptor:resultBlock: is bad boy for internalServerErrorMessage:" | ||
^ #(#'javascript:' #'internalServerErrorMessage:' #array: #'_continue') "WAScriptGenerator>>writeLoadScriptsOn: is the bad boy for javascript: | ||
GRGemStonePlatform>>seasideProcessRequest:adaptor:resultBlock: is bad boy for internalServerErrorMessage: | ||
JQJsonFunctionalTest>>seasidePackagesOn: is bad boy for array: | ||
WARemoteDebuggingWalkback>>resumeContinuation is bad boy for _continue (https://github.com/SeasideSt/Seaside/issues/1355)" |
File renamed without changes.
15 changes: 15 additions & 0 deletions
15
...easide-GemStone-Development.package/WAObjectsReadFilter.class/instance/handleFiltered..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 @@ | ||
processing | ||
handleFiltered: aRequestContext | ||
| size item | | ||
|
||
item := WAObjectsReadItem request: aRequestContext request copy. | ||
item start: DateAndTime now truncated. | ||
System _enableTraceObjectsRead. | ||
[ super handleFiltered: aRequestContext ] | ||
ensure: [ | ||
size := System _disableTraceObjectsRead. | ||
item | ||
end: DateAndTime now truncated; | ||
size: size; | ||
objectsRead: (System _hiddenSetAsArray: 5). | ||
items := items copyWith: item ] |
3 changes: 3 additions & 0 deletions
3
repository/Seaside-GemStone-Development.package/WAObjectsReadFilter.class/instance/items.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 | ||
items | ||
^ items |
3 changes: 3 additions & 0 deletions
3
repository/Seaside-GemStone-Development.package/WAObjectsReadFilter.class/instance/reset.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 @@ | ||
processing | ||
reset | ||
items := Array new |
14 changes: 14 additions & 0 deletions
14
repository/Seaside-GemStone-Development.package/WAObjectsReadFilter.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 @@ | ||
{ | ||
"category" : "Seaside-GemStone-Development-Core", | ||
"classinstvars" : [ | ||
], | ||
"classvars" : [ | ||
], | ||
"commentStamp" : "JohanBrichau 06/07/2023 20:05", | ||
"instvars" : [ | ||
"items" ], | ||
"name" : "WAObjectsReadFilter", | ||
"pools" : [ | ||
], | ||
"super" : "WARequestFilter", | ||
"type" : "normal" } |
File renamed without changes.
3 changes: 3 additions & 0 deletions
3
repository/Seaside-GemStone-Development.package/WAObjectsReadItem.class/class/request..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 @@ | ||
instance creation | ||
request: aRequest | ||
^ self basicNew initializeOn: aRequest; yourself |
4 changes: 4 additions & 0 deletions
4
repository/Seaside-GemStone-Development.package/WAObjectsReadItem.class/instance/end..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 | ||
end: aDateAndTime | ||
|
||
end := aDateAndTime |
4 changes: 4 additions & 0 deletions
4
repository/Seaside-GemStone-Development.package/WAObjectsReadItem.class/instance/end.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 | ||
end | ||
|
||
^ end |
4 changes: 4 additions & 0 deletions
4
...ry/Seaside-GemStone-Development.package/WAObjectsReadItem.class/instance/initializeOn..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 @@ | ||
initialization | ||
initializeOn: aRequest | ||
self initialize. | ||
request := aRequest |
5 changes: 5 additions & 0 deletions
5
...ory/Seaside-GemStone-Development.package/WAObjectsReadItem.class/instance/objectsRead..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 @@ | ||
updating | ||
objectsRead: newValue | ||
|
||
"Modify the value of the instance variable 'objectsRead'." | ||
objectsRead := newValue |
5 changes: 5 additions & 0 deletions
5
...tory/Seaside-GemStone-Development.package/WAObjectsReadItem.class/instance/objectsRead.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 | ||
objectsRead | ||
|
||
"Return the value of the instance variable 'objectsRead'." | ||
^objectsRead |
13 changes: 13 additions & 0 deletions
13
repository/Seaside-GemStone-Development.package/WAObjectsReadItem.class/instance/report.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 @@ | ||
as yet unclassified | ||
report | ||
|
||
| objects | | ||
|
||
objects := (objectsRead groupBy:[:e | e class ] having:[:e | true ]) associations sorted:[:a :b | a value size > b value size ]. | ||
^ String streamContents:[:str | | ||
objects do:[:assoc | | ||
str | ||
nextPutAll: assoc key name; | ||
nextPutAll: '->'; | ||
nextPutAll: assoc value size asString; | ||
cr ] ] |
5 changes: 5 additions & 0 deletions
5
repository/Seaside-GemStone-Development.package/WAObjectsReadItem.class/instance/request..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 @@ | ||
updating | ||
request: newValue | ||
|
||
"Modify the value of the instance variable 'request'." | ||
request := newValue |
5 changes: 5 additions & 0 deletions
5
repository/Seaside-GemStone-Development.package/WAObjectsReadItem.class/instance/request.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 | ||
request | ||
|
||
"Return the value of the instance variable 'request'." | ||
^request |
5 changes: 5 additions & 0 deletions
5
repository/Seaside-GemStone-Development.package/WAObjectsReadItem.class/instance/size..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 @@ | ||
updating | ||
size: newValue | ||
|
||
"Modify the value of the instance variable 'size'." | ||
size := newValue |
5 changes: 5 additions & 0 deletions
5
repository/Seaside-GemStone-Development.package/WAObjectsReadItem.class/instance/size.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 | ||
size | ||
|
||
"Return the value of the instance variable 'size'." | ||
^size |
Oops, something went wrong.