File tree 7 files changed +26
-6
lines changed
Seaside-Core.package/GRPlatform.extension/instance
Seaside-HotwireTurbo-Core.package/WAComponent.extension/instance
Seaside-HotwireTurbo-Examples.package
WATurboTodoItem.class/instance
Seaside-Welcome.package/WAWelcomeGettingStarted.class/instance
7 files changed +26
-6
lines changed Original file line number Diff line number Diff line change 2
2
seasideVersion
3
3
" Answer the Seaside version"
4
4
5
- ^ (GRVersion major: 3 minor: 5 revision: 8 )
5
+ ^ (GRVersion major: 3 minor: 5 revision: 9 )
6
6
yourself
Original file line number Diff line number Diff line change
1
+ * Seaside - HotwireTurbo - Core
2
+ turboShow: aComponent
3
+
4
+ aComponent addDecoration: (WATurboFrame newWithId: self turboframeDecoration id).
5
+ ^ self show: aComponent
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ renderContentOn: html
4
4
| id |
5
5
html listItem
6
6
id: (id := html nextId);
7
- onDoubleClick: (html javascript turboCallback: [ self turboCall : (WATurboTodoItemEditor on: self ) ]);
7
+ onDoubleClick: (html javascript turboCallback: [ self turboShow : (WATurboTodoItemEditor on: self ) ]);
8
8
with: [
9
9
html div
10
10
class : ' view' ;
Original file line number Diff line number Diff line change @@ -4,5 +4,5 @@ renderDescriptionOn: html
4
4
html label: description.
5
5
html anchor
6
6
class : ' edit-link' ;
7
- callback: [ self turboCall : (WATurboTodoItemEditor on: self ) ];
7
+ callback: [ self turboShow : (WATurboTodoItemEditor on: self ) ];
8
8
with: ' edit'
Original file line number Diff line number Diff line change 1
- SystemOrganization addCategory : #' Seaside-HotwireTurbo-Examples' !
1
+ self packageOrganizer ensurePackage : #' Seaside-HotwireTurbo-Examples' withTags: #() !
Original file line number Diff line number Diff line change @@ -11,9 +11,15 @@ renderDocumentationStepOn: html
11
11
url: ' http://book.seaside.st/' ;
12
12
with: ' Seaside Book' .
13
13
html text: ' will teach you all you need to know about Seaside and how to build killer web applications.' ].
14
+ html listItem: [
15
+ html text: ' The ' .
16
+ html anchor
17
+ url: ' https://github.com/SeasideSt/Seaside/wiki' ;
18
+ with: ' Seaside Github wiki' .
19
+ html text: ' is where we keep our most up-to-date reference documentation.' ].
14
20
html listItem: [
15
21
html text: ' The ' .
16
22
html anchor
17
- url: ' http://www.swa. hpi.uni-potsdam.de/seaside/tutorial' ;
23
+ url: ' http://www.hpi.uni-potsdam.de/hirschfeld/ seaside/tutorial/ ' ;
18
24
with: ' Seaside Tutorial' .
19
25
html text: ' has 12 chapters and introduces a sample application to explain the main features of Seaside.' ] ]
Original file line number Diff line number Diff line change @@ -20,4 +20,13 @@ renderExamplesStepOn: html
20
20
html anchor
21
21
callback: [ self show: WAWelcomeExampleFlow new ];
22
22
with: ' Task' .
23
- html text: ' , illustrating Seaside' ' s innovative approach to application control flow.' ] ]
23
+ html text: ' , illustrating Seaside' ' s innovative approach to application control flow.' ].
24
+ html listItem: [
25
+ html anchor
26
+ callback: [ self show: WATodo new ];
27
+ with: ' Todo' .
28
+ html text: ' , the Seaside implementation of the example on ' .
29
+ html anchor
30
+ url: ' https://todomvc.com/' ;
31
+ target: ' _blank' ;
32
+ with: ' https://todomvc.com/' ] ]
You can’t perform that action at this time.
0 commit comments