smalltalk
/
osmo-st-all
Archived
1
0
Fork 0

Iliad now works with swazoo 2.2 (install it from gst git)

This commit is contained in:
Nicolas Petton 2009-06-25 20:44:59 +00:00
parent 12a8cb9b05
commit 5dc671921f
5 changed files with 8 additions and 8 deletions

View File

@ -41,7 +41,7 @@
Widget subclass: Application [
| model page originalRoutePosition |
<category: 'Iliad-Core-Builders'>
<category: 'Iliad-Core-Buildables'>
<comment: 'I am the implementation of an application.
The first thing to do to develop web applications with Iliad is to subclass me.

View File

@ -39,10 +39,10 @@
Builder subclass: Decorator [
Buildable subclass: Decorator [
| decoratee |
<category: 'Iliad-Core-Builders'>
<category: 'Iliad-Core-Buildables'>
<comment: 'I am an abstract decorator for Widgets. I can be added to a widget by calling: #addDecoration: from a widget.
Subclasses can be used to modify the building process of a widget, or change its behavior'>

View File

@ -35,10 +35,10 @@
Builder subclass: Page [
Buildable subclass: Page [
<comment: nil>
<category: 'Iliad-Core-Builders'>
<category: 'Iliad-Core-Buildables'>
bodyElement [
<category: 'accessing attributes'>

View File

@ -39,10 +39,10 @@
Builder subclass: Widget [
Buildable subclass: Widget [
| id decorator owner |
<category: 'Iliad-Core-Builders'>
<category: 'Iliad-Core-Buildables'>
<comment: 'I am a stateful graphical component.
To build HTML override the #contents method, which should always

View File

@ -1,4 +1,4 @@
Swazoo.Site subclass: Site [
Swazoo.SwazooSite subclass: Site [
| encoder |
<comment: nil>
<category: 'Iliad-Swazoo'>