File tree Expand file tree Collapse file tree 7 files changed +23
-28
lines changed
Expand file tree Collapse file tree 7 files changed +23
-28
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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]
Original file line number Diff line number Diff line change 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]
Original file line number Diff line number Diff line change 1- Extension { #name : # CssDeclarationBlock }
1+ Extension { #name : ' CssDeclarationBlock' }
22
3- { #category : # ' *RenoirSt-Seaside' }
3+ { #category : ' *RenoirSt-Seaside' }
44CssDeclarationBlock >> greaseString [
55
66 ^ String streamContents: [ :stream | self printInlinedOn: stream ]
77]
88
9- { #category : # ' *RenoirSt-Seaside' }
9+ { #category : ' *RenoirSt-Seaside' }
1010CssDeclarationBlock >> javascriptOn: aStream [
1111
1212 aStream nextPut: ${.
Original file line number Diff line number Diff line change 1- Extension { #name : # WATagBrush }
1+ Extension { #name : ' WATagBrush' }
22
3- { #category : # ' *RenoirSt-Seaside' }
3+ { #category : ' *RenoirSt-Seaside' }
44WATagBrush >> setStyleTo: aDeclarationAction [
55
66 | declarationBlock |
Original file line number Diff line number Diff line change 1- Extension { #name : # WAUrl }
1+ Extension { #name : ' WAUrl' }
22
3- { #category : # ' *RenoirSt-Seaside' }
3+ { #category : ' *RenoirSt-Seaside' }
44WAUrl >> 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' }
1616WAUrl >> 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' }
2626WAUrl >> relativeToStyleSheet [
2727
2828 ^ UrlRelativeToStyleSheet on: self
Original file line number Diff line number Diff line change 1- Package { #name : # ' RenoirSt-Seaside' }
1+ Package { #name : ' RenoirSt-Seaside' }
You can’t perform that action at this time.
0 commit comments