Skip to content

Commit ff78119

Browse files
authored
Merge pull request #59 from ba-st/58-Prepare-for-migration-to-Seaside-360
58 prepare for migration to seaside 360
2 parents 690a8e2 + cfc264f commit ff78119

File tree

7 files changed

+23
-28
lines changed

7 files changed

+23
-28
lines changed

source/BaselineOfRenoirSt/BaselineOfRenoirSt.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ BaselineOfRenoirSt >> setUpDependencies: spec [
4949
project: 'Buoy-Tools' copyFrom: 'Buoy' with: [ spec loads: 'Tools' ].
5050

5151
spec
52-
baseline: 'Seaside3' with: [ spec repository: 'github://SeasideSt/Seaside:v3.5.x/repository' ];
52+
baseline: 'Seaside3' with: [ spec repository: 'github://SeasideSt/Seaside:v3.6.x/repository' ];
5353
project: 'Seaside3-Javascript' copyFrom: 'Seaside3' with: [ spec loads: 'Javascript' ]
5454
]
5555

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
1-
Extension { #name : #CssAbstractDeclaration }
1+
Extension { #name : 'CssAbstractDeclaration' }
22

3-
{ #category : #'*RenoirSt-Seaside' }
4-
CssAbstractDeclaration >> javascriptOn: aStream [
3+
{ #category : '*RenoirSt-Seaside' }
4+
CssAbstractDeclaration >> javascriptOn: aRenderer [
55

6-
aStream nextPut: $".
7-
self property cssContentOn: aStream.
8-
aStream
9-
nextPut: $";
10-
nextPut: $:;
11-
nextPut: $".
12-
self value cssContentOn: aStream.
13-
aStream nextPut: $"
6+
aRenderer
7+
key: [
8+
aRenderer string: ( String streamContents: [ :stream | self property cssContentOn: stream ] ) ]
9+
value: [
10+
aRenderer string: ( String streamContents: [ :stream | self value cssContentOn: stream ] ) ]
1411
]
Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
Extension { #name : #CssColorUnit }
1+
Extension { #name : 'CssColorUnit' }
22

3-
{ #category : #'*RenoirSt-Seaside' }
4-
CssColorUnit >> javascriptOn: aStream [
3+
{ #category : '*RenoirSt-Seaside' }
4+
CssColorUnit >> javascriptOn: aRenderer [
55

6-
aStream nextPut: $".
7-
self cssContentOn: aStream.
8-
aStream nextPut: $"
6+
aRenderer string: ( String streamContents: [ :stream | self cssContentOn: stream ] )
97
]

source/RenoirSt-Seaside/CssDeclarationBlock.extension.st

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
Extension { #name : #CssDeclarationBlock }
1+
Extension { #name : 'CssDeclarationBlock' }
22

3-
{ #category : #'*RenoirSt-Seaside' }
3+
{ #category : '*RenoirSt-Seaside' }
44
CssDeclarationBlock >> greaseString [
55

66
^ String streamContents: [ :stream | self printInlinedOn: stream ]
77
]
88

9-
{ #category : #'*RenoirSt-Seaside' }
9+
{ #category : '*RenoirSt-Seaside' }
1010
CssDeclarationBlock >> javascriptOn: aStream [
1111

1212
aStream nextPut: ${.

source/RenoirSt-Seaside/WATagBrush.extension.st

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
Extension { #name : #WATagBrush }
1+
Extension { #name : 'WATagBrush' }
22

3-
{ #category : #'*RenoirSt-Seaside' }
3+
{ #category : '*RenoirSt-Seaside' }
44
WATagBrush >> setStyleTo: aDeclarationAction [
55

66
| declarationBlock |

source/RenoirSt-Seaside/WAUrl.extension.st

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
Extension { #name : #WAUrl }
1+
Extension { #name : 'WAUrl' }
22

3-
{ #category : #'*RenoirSt-Seaside' }
3+
{ #category : '*RenoirSt-Seaside' }
44
WAUrl >> cssContentOn: aStream [
55

66
aStream nextPutAll: 'url("'.
@@ -12,7 +12,7 @@ WAUrl >> cssContentOn: aStream [
1212
aStream nextPutAll: '")'
1313
]
1414

15-
{ #category : #'*RenoirSt-Seaside' }
15+
{ #category : '*RenoirSt-Seaside' }
1616
WAUrl >> cssContentRelativeToStyleSheetOn: aStream [
1717

1818
aStream nextPutAll: 'url("'.
@@ -22,7 +22,7 @@ WAUrl >> cssContentRelativeToStyleSheetOn: aStream [
2222
aStream nextPutAll: '")'
2323
]
2424

25-
{ #category : #'*RenoirSt-Seaside' }
25+
{ #category : '*RenoirSt-Seaside' }
2626
WAUrl >> relativeToStyleSheet [
2727

2828
^UrlRelativeToStyleSheet on: self

source/RenoirSt-Seaside/package.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Package { #name : #'RenoirSt-Seaside' }
1+
Package { #name : 'RenoirSt-Seaside' }

0 commit comments

Comments
 (0)