Skip to content

Commit 4e312c1

Browse files
authored
Merge pull request #28 from ba-st/tonel-migration
Tonel migration
2 parents 3058ae8 + a6aa594 commit 4e312c1

File tree

460 files changed

+3525
-3050
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

460 files changed

+3525
-3050
lines changed

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ smalltalk:
66
- Pharo64-7.0
77
- Pharo-7.0
88
- Pharo-6.1
9-
- Pharo-5.0
109
matrix:
1110
allow_failures:
1211
- smalltalk: Pharo64-7.0

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
![Logo](resources/logos/128x128.png) Willow-Playground
22
======
3+
![GitHub release](https://img.shields.io/github/release/ba-st/Willow-Playground.svg)
34
[![Build Status](https://travis-ci.org/ba-st/Willow-Playground.svg?branch=master)](https://travis-ci.org/ba-st/Willow-Playground)
45

56
*Willow-Playground provides examples on how to use [Willow](https://github.com/ba-st/Willow) to develop a complete interactive web application*
@@ -14,7 +15,7 @@ The project source code is [MIT](LICENSE) licensed. Any contribution submitted t
1415
The documentation is licensed under a [Creative Commons Attribution-ShareAlike 4.0 International License](http://creativecommons.org/licenses/by-sa/4.0/)
1516

1617
### Highlights:
17-
- **Supported Platforms**: [Pharo 5 / Pharo 6](http://www.pharo.org/)
18+
- **Supported Platforms**: [Pharo 6.1 / Pharo 7](http://www.pharo.org/)
1819
- **Source Code Repository** and **Issue Tracking**: In this GitHub repository.
1920

2021
### Get started!

source/.properties

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
#format : #tonel
3+
}

source/BaselineOfWillowPlayground.package/.filetree

-5
This file was deleted.

source/BaselineOfWillowPlayground.package/BaselineOfWillowPlayground.class/README.md

-1
This file was deleted.

source/BaselineOfWillowPlayground.package/BaselineOfWillowPlayground.class/instance/baseline..st

-17
This file was deleted.

source/BaselineOfWillowPlayground.package/BaselineOfWillowPlayground.class/instance/setUpDependencies..st

-23
This file was deleted.

source/BaselineOfWillowPlayground.package/BaselineOfWillowPlayground.class/properties.json

-11
This file was deleted.

source/BaselineOfWillowPlayground.package/monticello.meta/categories.st

-1
This file was deleted.

source/BaselineOfWillowPlayground.package/monticello.meta/initializers.st

Whitespace-only changes.

source/BaselineOfWillowPlayground.package/monticello.meta/package

-1
This file was deleted.

source/BaselineOfWillowPlayground.package/properties.json

-1
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
"
2+
Baseline to load the Willow Playground
3+
"
4+
Class {
5+
#name : #BaselineOfWillowPlayground,
6+
#superclass : #BaselineOf,
7+
#category : #BaselineOfWillowPlayground
8+
}
9+
10+
{ #category : #baselines }
11+
BaselineOfWillowPlayground >> baseline: spec [
12+
13+
<baseline>
14+
spec
15+
for: #common
16+
do: [ self setUpDependencies: spec.
17+
spec
18+
package: 'Willow-Playground-Smalltalks2017'
19+
with: [ spec requires: #('WillowBootstrap' 'WillowJQueryUI' 'WillowSpinKit') ];
20+
package: 'Willow-Playground-TestRunner'
21+
with: [ spec requires: #('WillowBootstrap' 'WillowJQueryUI' 'WillowSpinKit') ];
22+
package: 'Willow-Playground-LiveDocs'
23+
with: [ spec requires: #('WillowBootstrap' 'WillowSpinKit') ];
24+
group: 'default'
25+
with:
26+
#('Willow-Playground-Smalltalks2017' 'Willow-Playground-TestRunner' 'Willow-Playground-LiveDocs') ]
27+
]
28+
29+
{ #category : #baselines }
30+
BaselineOfWillowPlayground >> setUpDependencies: spec [
31+
32+
spec
33+
baseline: 'WillowBootstrap'
34+
with: [ spec
35+
repository: 'github://ba-st/Willow-Bootstrap:v8/source';
36+
loads: #('Deployment') ];
37+
import: 'WillowBootstrap'.
38+
39+
spec
40+
baseline: 'WillowJQueryUI'
41+
with: [ spec
42+
repository: 'github://ba-st/Willow-JQueryUI:v7/source';
43+
loads: #('Deployment') ];
44+
import: 'WillowJQueryUI'.
45+
46+
spec
47+
baseline: 'WillowSpinKit'
48+
with: [ spec
49+
repository: 'github://ba-st/Willow-SpinKit:v5/source';
50+
loads: #('Deployment') ];
51+
import: 'WillowSpinKit'
52+
53+
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Package { #name : #BaselineOfWillowPlayground }

source/Willow-Playground-LiveDocs.package/WPLiveDocumentation.class/README.md

-1
This file was deleted.

source/Willow-Playground-LiveDocs.package/WPLiveDocumentation.class/class/applicationTitle.st

-4
This file was deleted.

source/Willow-Playground-LiveDocs.package/WPLiveDocumentation.class/class/handlerName.st

-4
This file was deleted.

source/Willow-Playground-LiveDocs.package/WPLiveDocumentation.class/class/sessionClass.st

-4
This file was deleted.

source/Willow-Playground-LiveDocs.package/WPLiveDocumentation.class/instance/componentSupplierForApplication.st

-8
This file was deleted.

source/Willow-Playground-LiveDocs.package/WPLiveDocumentation.class/instance/contentView.st

-4
This file was deleted.

source/Willow-Playground-LiveDocs.package/WPLiveDocumentation.class/instance/initialRequest..st

-5
This file was deleted.

source/Willow-Playground-LiveDocs.package/WPLiveDocumentation.class/instance/initialize.st

-5
This file was deleted.

source/Willow-Playground-LiveDocs.package/WPLiveDocumentation.class/instance/initializeContainerView.st

-27
This file was deleted.

source/Willow-Playground-LiveDocs.package/WPLiveDocumentation.class/instance/jQueryLibrary.st

-4
This file was deleted.

source/Willow-Playground-LiveDocs.package/WPLiveDocumentation.class/instance/newComponentSupplier.st

-8
This file was deleted.

source/Willow-Playground-LiveDocs.package/WPLiveDocumentation.class/instance/updateRoot..st

-5
This file was deleted.

source/Willow-Playground-LiveDocs.package/WPLiveDocumentation.class/properties.json

-13
This file was deleted.

source/Willow-Playground-LiveDocs.package/WPLiveDocumentationBehaviorDetailedView.class/README.md

-1
This file was deleted.

source/Willow-Playground-LiveDocs.package/WPLiveDocumentationBehaviorDetailedView.class/instance/buttonToBrowse..st

-10
This file was deleted.

source/Willow-Playground-LiveDocs.package/WPLiveDocumentationBehaviorDetailedView.class/instance/classNameHeaderFor..st

-11
This file was deleted.

source/Willow-Playground-LiveDocs.package/WPLiveDocumentationBehaviorDetailedView.class/instance/emptyPlaceholder.st

-16
This file was deleted.

source/Willow-Playground-LiveDocs.package/WPLiveDocumentationBehaviorDetailedView.class/instance/renderClass.on..st

-12
This file was deleted.

source/Willow-Playground-LiveDocs.package/WPLiveDocumentationBehaviorDetailedView.class/instance/renderContentOn..st

-11
This file was deleted.

source/Willow-Playground-LiveDocs.package/WPLiveDocumentationBehaviorDetailedView.class/instance/renderMethodsIn.on..st

-6
This file was deleted.

source/Willow-Playground-LiveDocs.package/WPLiveDocumentationBehaviorDetailedView.class/instance/renderTrait.on..st

-7
This file was deleted.

source/Willow-Playground-LiveDocs.package/WPLiveDocumentationBehaviorDetailedView.class/instance/traitNameHeaderFor..st

-10
This file was deleted.

source/Willow-Playground-LiveDocs.package/WPLiveDocumentationBehaviorDetailedView.class/properties.json

-11
This file was deleted.

source/Willow-Playground-LiveDocs.package/WPLiveDocumentationClassComment.class/README.md

-1
This file was deleted.

0 commit comments

Comments
 (0)