forked from SeasideSt/Seaside
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue SeasideSt#51: first cut at fixing the gettext load problem (mig…
…ht be other changes needed from Issue SeasideSt#48 and PR SeasideSt#50)
- Loading branch information
1 parent
c740380
commit f1a6a32
Showing
5 changed files
with
61 additions
and
68 deletions.
There are no files selected for viewing
55 changes: 25 additions & 30 deletions
55
repository/BaselineOfSeaside3.package/BaselineOfSeaside3.class/instance/baselinecommon..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
66 changes: 32 additions & 34 deletions
66
repository/BaselineOfSeaside3.package/BaselineOfSeaside3.class/instance/baselinegettext..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,34 @@ | ||
baselines | ||
baselinegettext: spec | ||
|
||
spec for: #'common' do: [ | ||
spec repository: 'http://www.smalltalkhub.com/mc/Seaside/Seaside30Addons/main'. | ||
|
||
spec | ||
project: 'Gettext-Project' | ||
with: [ spec | ||
loads: #('Core'); | ||
className: 'ConfigurationOfGettext'; | ||
repository: 'http://www.smalltalkhub.com/mc/PharoExtras/Gettext/main' ]. | ||
|
||
spec | ||
package: 'Seaside-Gettext-Core' with: [ spec requires: #('Gettext-Project' 'Core') ]; | ||
package: 'Seaside-Gettext-Examples' with: [ spec requires: #('Seaside-Gettext-Core') ]. | ||
|
||
spec | ||
group: 'Gettext' with: #('Seaside-Gettext-Core'); | ||
group: 'Gettext-Examples' with: #('Gettext' 'Seaside-Gettext-Examples') | ||
|
||
]. | ||
|
||
spec for: #(#squeak 'pharo1.x') do:[ | ||
spec | ||
package: 'Seaside-Gettext-Slime' with: [ spec requires: #('Slime') ]. | ||
|
||
spec | ||
group: 'GettextSlime' with: #('Seaside-Gettext-Slime') | ||
]. | ||
|
||
spec for: #pharo do: [ | ||
spec | ||
package: 'Seaside-Pharo-Gettext-Core'; | ||
package: 'Seaside-Gettext-Core' with:[spec includes: 'Seaside-Pharo-Gettext-Core']. | ||
]. | ||
spec | ||
for: #'common' | ||
do: [ | ||
spec repository: 'http://www.smalltalkhub.com/mc/Seaside/Seaside30Addons/main'. | ||
spec | ||
configuration: 'Gettext-Project' | ||
with: [ | ||
spec | ||
loads: #('Core'); | ||
versionString: #'stable'; | ||
repository: | ||
'http://www.smalltalkhub.com/mc/PharoExtras/Gettext/main' ]. | ||
spec | ||
package: 'Seaside-Gettext-Core' | ||
with: [ spec requires: #('Gettext-Project' 'Core') ]; | ||
package: 'Seaside-Gettext-Examples' | ||
with: [ spec requires: #('Seaside-Gettext-Core') ]. | ||
spec | ||
group: 'Gettext' with: #('Seaside-Gettext-Core'); | ||
group: 'Gettext-Examples' with: #('Gettext' 'Seaside-Gettext-Examples') ]. | ||
spec | ||
for: #(#'squeak' 'pharo1.x') | ||
do: [ | ||
spec package: 'Seaside-Gettext-Slime' with: [ spec requires: #('Slime') ]. | ||
spec group: 'GettextSlime' with: #('Seaside-Gettext-Slime') ]. | ||
spec | ||
for: #'pharo' | ||
do: [ | ||
spec | ||
package: 'Seaside-Pharo-Gettext-Core'; | ||
package: 'Seaside-Gettext-Core' | ||
with: [ spec includes: 'Seaside-Pharo-Gettext-Core' ] ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
repository/BaselineOfSeaside3.package/monticello.meta/categories.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
SystemOrganization addCategory: #BaselineOfSeaside3! | ||
SystemOrganization addCategory: #'BaselineOfSeaside3'! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters