Skip to content

Commit

Permalink
Merge pull request #39 from ba-st/37-Update-Boardwalk-dependency-to-5…
Browse files Browse the repository at this point in the history
…00-and-rename-base-package-to-RenoirSt-Core

Update Seaside to v3.4.x.
  • Loading branch information
gcotelli authored Apr 30, 2020
2 parents 08cada8 + aac0677 commit 8a300f6
Show file tree
Hide file tree
Showing 79 changed files with 153 additions and 153 deletions.
74 changes: 37 additions & 37 deletions source/BaselineOfRenoirSt/BaselineOfRenoirSt.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Metacello Baseline definition for RenoirSt
Class {
#name : #BaselineOfRenoirSt,
#superclass : #BaselineOf,
#category : 'BaselineOfRenoirSt'
#category : #BaselineOfRenoirSt
}

{ #category : #baselines }
Expand All @@ -15,8 +15,8 @@ BaselineOfRenoirSt >> baseline: spec [
for: #pharo
do: [ self
setUpDependencies: spec;
baselineRenoirSt: spec;
baselineSeasideExtensions: spec.
setUpPackages: spec;
setUpSeasideExtensionPackages: spec.

spec
group: 'CI' with: 'Tests';
Expand All @@ -25,39 +25,6 @@ BaselineOfRenoirSt >> baseline: spec [
]
]

{ #category : #private }
BaselineOfRenoirSt >> baselineRenoirSt: spec [

spec
package: 'RenoirSt' with: [ spec requires: 'Buoy-Deployment' ];
group: 'Deployment' with: 'RenoirSt';
package: 'RenoirSt-HTML' with: [ spec requires: 'RenoirSt' ];
group: 'Deployment' with: 'RenoirSt-HTML';
package: 'RenoirSt-Tests' with: [ spec requires: #('RenoirSt' 'Buoy-SUnit') ];
group: 'Tests' with: 'RenoirSt-Tests';
package: 'RenoirSt-HTML-Tests' with: [ spec requires: #('RenoirSt-HTML' 'RenoirSt-Tests') ];
group: 'Tests' with: 'RenoirSt-HTML-Tests'.

spec
for: #UnitsIsLoaded
do: [ "Compatibility with the Units project"
spec
package: 'RenoirSt-UnitsCompatibility' with: [ spec requires: 'RenoirSt' ];
group: 'Deployment' with: 'RenoirSt-UnitsCompatibility'
]
]

{ #category : #private }
BaselineOfRenoirSt >> baselineSeasideExtensions: spec [

spec
package: 'RenoirSt-Seaside' with: [ spec requires: #('Deployment' 'Seaside3-Javascript') ];
group: 'Deployment-Seaside-Extensions' with: 'RenoirSt-Seaside';
package: 'RenoirSt-Seaside-Tests' with: [ spec requires: #('RenoirSt-Seaside' 'Tests') ];
group: 'Development-Seaside-Extensions'
with: #('Development' 'Deployment-Seaside-Extensions' 'RenoirSt-Seaside-Tests')
]

{ #category : #private }
BaselineOfRenoirSt >> customProjectAttributes [

Expand All @@ -81,6 +48,39 @@ BaselineOfRenoirSt >> setUpDependencies: spec [
project: 'Buoy-Tools' copyFrom: 'Buoy' with: [ spec loads: 'Tools' ].

spec
baseline: 'Seaside3' with: [ spec repository: 'github://SeasideSt/Seaside:v3.3.x/repository' ];
baseline: 'Seaside3' with: [ spec repository: 'github://SeasideSt/Seaside:v3.4.x/repository' ];
project: 'Seaside3-Javascript' copyFrom: 'Seaside3' with: [ spec loads: 'Javascript' ]
]

{ #category : #private }
BaselineOfRenoirSt >> setUpPackages: spec [

spec
package: 'RenoirSt-Core' with: [ spec requires: 'Buoy-Deployment' ];
group: 'Deployment' with: 'RenoirSt-Core';
package: 'RenoirSt-HTML' with: [ spec requires: 'RenoirSt-Core' ];
group: 'Deployment' with: 'RenoirSt-HTML';
package: 'RenoirSt-Tests' with: [ spec requires: #('RenoirSt-Core' 'Buoy-SUnit') ];
group: 'Tests' with: 'RenoirSt-Tests';
package: 'RenoirSt-HTML-Tests' with: [ spec requires: #('RenoirSt-HTML' 'RenoirSt-Tests') ];
group: 'Tests' with: 'RenoirSt-HTML-Tests'.

spec
for: #UnitsIsLoaded
do: [ "Compatibility with the Units project"
spec
package: 'RenoirSt-UnitsCompatibility' with: [ spec requires: 'RenoirSt-Core' ];
group: 'Deployment' with: 'RenoirSt-UnitsCompatibility'
]
]

{ #category : #private }
BaselineOfRenoirSt >> setUpSeasideExtensionPackages: spec [

spec
package: 'RenoirSt-Seaside' with: [ spec requires: #('Deployment' 'Seaside3-Javascript') ];
group: 'Deployment-Seaside-Extensions' with: 'RenoirSt-Seaside';
package: 'RenoirSt-Seaside-Tests' with: [ spec requires: #('RenoirSt-Seaside' 'Tests') ];
group: 'Development-Seaside-Extensions'
with: #('Development' 'Deployment-Seaside-Extensions' 'RenoirSt-Seaside-Tests')
]
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Extension { #name : #Array }

{ #category : #'*RenoirSt' }
{ #category : #'*RenoirSt-Core' }
Array >> cssContentOn: aStream [

self do: [ :element | element cssContentOn: aStream ] separatedBy: [ aStream space ]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Class {
#instVars : [
'statements'
],
#category : #'RenoirSt-Common'
#category : #'RenoirSt-Core-Common'
}

{ #category : #'Instance Creation' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Class {
#instVars : [
'statements'
],
#category : #'RenoirSt-Common'
#category : #'RenoirSt-Core-Common'
}

{ #category : #private }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A CssAbstractDeclaration defines the common behavior for the declarations.
Class {
#name : #CssAbstractDeclaration,
#superclass : #CssObject,
#category : #'RenoirSt-Common'
#category : #'RenoirSt-Core-Common'
}

{ #category : #private }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Class {
'predecessor',
'successor'
],
#category : #'RenoirSt-Selectors'
#category : #'RenoirSt-Core-Selectors'
}

{ #category : #'Instance Creation' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A CssAlphaChannelComponent is the abstract class of the alpha channel provision
Class {
#name : #CssAlphaChannel,
#superclass : #Object,
#category : #'RenoirSt-Colors'
#category : #'RenoirSt-Core-Colors'
}

{ #category : #Enumerating }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Class {
#instVars : [
'value'
],
#category : #'RenoirSt-Colors'
#category : #'RenoirSt-Core-Colors'
}

{ #category : #private }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Class {
'attributeValue',
'condition'
],
#category : #'RenoirSt-Selectors'
#category : #'RenoirSt-Core-Selectors'
}

{ #category : #'Instance Creation' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Class {
'typeOrUnit',
'fallback'
],
#category : #'RenoirSt-Units'
#category : #'RenoirSt-Core-Units'
}

{ #category : #'Instance Creation' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Class {
'attributeName',
'matchingCondition'
],
#category : #'RenoirSt-Selectors'
#category : #'RenoirSt-Core-Selectors'
}

{ #category : #'Instance Creation' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Class {
#instVars : [
'components'
],
#category : #'RenoirSt-Common'
#category : #'RenoirSt-Core-Common'
}

{ #category : #'Instance Creation' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Class {
'parent',
'child'
],
#category : #'RenoirSt-Selectors'
#category : #'RenoirSt-Core-Selectors'
}

{ #category : #'Instance Creation' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Class {
'cssClass',
'parentSelector'
],
#category : #'RenoirSt-Selectors'
#category : #'RenoirSt-Core-Selectors'
}

{ #category : #'instance creation' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A CssColor is a color suitable for use in CSS
Class {
#name : #CssColor,
#superclass : #CssColorUnit,
#category : #'RenoirSt-Colors'
#category : #'RenoirSt-Core-Colors'
}

{ #category : #private }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Class {
'color',
'stop'
],
#category : #'RenoirSt-Colors'
#category : #'RenoirSt-Core-Colors'
}

{ #category : #'Instance Creation' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A CssColorUnit is an abstract color unit for CSS
Class {
#name : #CssColorUnit,
#superclass : #CssObject,
#category : #'RenoirSt-Colors'
#category : #'RenoirSt-Core-Colors'
}

{ #category : #Converting }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Class {
#instVars : [
'comment'
],
#category : #'RenoirSt-Common'
#category : #'RenoirSt-Core-Common'
}

{ #category : #'Instance Creation' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Class {
#instVars : [
'values'
],
#category : #'RenoirSt-Easing'
#category : #'RenoirSt-Core-Easing'
}

{ #category : #'Instance Creation' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Class {
'property',
'value'
],
#category : #'RenoirSt-Common'
#category : #'RenoirSt-Core-Common'
}

{ #category : #'Instance Creation' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Class {
'declarations',
'rulePrecedencePolicy'
],
#category : #'RenoirSt-Common'
#category : #'RenoirSt-Core-Common'
}

{ #category : #'keyframes properties' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Class {
'ancestor',
'descendant'
],
#category : #'RenoirSt-Selectors'
#category : #'RenoirSt-Core-Selectors'
}

{ #category : #'Instance Creation' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Class {
'url',
'format'
],
#category : #'RenoirSt-Fonts'
#category : #'RenoirSt-Core-Fonts'
}

{ #category : #'Instance Creation' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Class {
#instVars : [
'value'
],
#category : #'RenoirSt-Units'
#category : #'RenoirSt-Core-Units'
}

{ #category : #'Instance Creation' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ I represent a font reference
Class {
#name : #CssFontReference,
#superclass : #CssObject,
#category : #'RenoirSt-Fonts'
#category : #'RenoirSt-Core-Fonts'
}

{ #category : #Concatenating }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A CssFunction represents an abstract CSS function
Class {
#name : #CssFunction,
#superclass : #CssObject,
#category : #'RenoirSt-Common'
#category : #'RenoirSt-Core-Common'
}

{ #category : #Printing }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Class {
'predecessor',
'successor'
],
#category : #'RenoirSt-Selectors'
#category : #'RenoirSt-Core-Selectors'
}

{ #category : #'Instance Creation' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A gradient is an image that smoothly fades from one color to another.
Class {
#name : #CssGradient,
#superclass : #CssObject,
#category : #'RenoirSt-Colors'
#category : #'RenoirSt-Core-Colors'
}

{ #category : #converting }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Class {
#instVars : [
'direction'
],
#category : #'RenoirSt-Colors'
#category : #'RenoirSt-Core-Colors'
}

{ #category : #'Instance Creation' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Class {
'lightness',
'alphaChannel'
],
#category : #'RenoirSt-Colors'
#category : #'RenoirSt-Core-Colors'
}

{ #category : #'Instance Creation' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Class {
'id',
'selector'
],
#category : #'RenoirSt-Selectors'
#category : #'RenoirSt-Core-Selectors'
}

{ #category : #private }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Class {
'color',
'identification'
],
#category : #'RenoirSt-Colors'
#category : #'RenoirSt-Core-Colors'
}

{ #category : #private }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Class {
#instVars : [
'declaration'
],
#category : #'RenoirSt-Common'
#category : #'RenoirSt-Core-Common'
}

{ #category : #'instance creation' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A CssImportantRulePrecedencePoliciy is a policy indicating an important declarat
Class {
#name : #CssImportantRulePrecedencePoliciy,
#superclass : #CssRulePrecedencePolicy,
#category : #'RenoirSt-Common'
#category : #'RenoirSt-Core-Common'
}

{ #category : #Applying }
Expand Down
Loading

0 comments on commit 8a300f6

Please sign in to comment.