-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from mumez/develop
Added Squeak 6 support
- Loading branch information
Showing
33 changed files
with
85 additions
and
76 deletions.
There are no files selected for viewing
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
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
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,25 +1,29 @@ | ||
SIXX | ||
==== | ||
# SIXX | ||
|
||
SIXX is an XML serializer/deserializer written in Smalltalk. The purpose is to store and load Smalltalk objects in a portable, dialect-independent XML format. | ||
|
||
This repository is mainly for sources ([Cypress](<https://github.com/CampSmalltalk/Cypress>) format). For further info, see the [main site](http://www.mars.dti.ne.jp/~umejava/smalltalk/sixx/index.html) | ||
[![CI](https://github.com/mumez/SIXX/actions/workflows/main.yml/badge.svg)](https://github.com/mumez/SIXX/actions/workflows/main.yml) | ||
|
||
This repository is mainly for sources ([Cypress](<https://github.com/CampSmalltalk/Cypress>) format). For further info, see the [main site](http://www.mars.dti.ne.jp/~umejava/smalltalk/sixx/index.html) and [wiki site](https://swikis.ddo.jp/umejava/SIXX). | ||
|
||
## Installation using Metacello | ||
|
||
### Installation using Metacello | ||
For Squeak and Pharo users, the latest version can be installed via ConfigurationOfSIXX. | ||
|
||
#### Squeak | ||
```Smalltalk | ||
Installer squeaksource | ||
project: 'MetacelloRepository'; | ||
install: 'ConfigurationOfSIXX'. | ||
(Smalltalk at: #ConfigurationOfSIXX) load | ||
``` | ||
### Pharo & Squeak | ||
|
||
#### Pharo | ||
```Smalltalk | ||
Metacello new | ||
baseline: 'SIXX'; | ||
repository: 'github://mumez/SIXX'; | ||
load | ||
``` | ||
|
||
### Squeak before version 5 | ||
|
||
```Smalltalk | ||
Installer squeaksource | ||
project: 'MetacelloRepository'; | ||
install: 'ConfigurationOfSIXX'. | ||
(Smalltalk at: #ConfigurationOfSIXX) load | ||
``` |
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,5 +1,4 @@ | ||
{ | ||
"separateMethodMetaAndSource" : false, | ||
"noMethodMetaData" : true, | ||
"useCypressPropertiesFile" : true | ||
} | ||
"separateMethodMetaAndSource" : false, | ||
"useCypressPropertiesFile" : true } |
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
6 changes: 6 additions & 0 deletions
6
repository/BaselineOfSIXX.package/BaselineOfSIXX.class/methodProperties.json
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"class" : { | ||
}, | ||
"instance" : { | ||
"baseline:" : "MU 2/1/2023 17:25", | ||
"xmlParser:" : " 2/1/2023 11:39:55" } } |
19 changes: 11 additions & 8 deletions
19
repository/BaselineOfSIXX.package/BaselineOfSIXX.class/properties.json
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,11 +1,14 @@ | ||
{ | ||
"commentStamp" : "", | ||
"super" : "BaselineOf", | ||
"category" : "BaselineOfSIXX", | ||
"classinstvars" : [ ], | ||
"pools" : [ ], | ||
"classvars" : [ ], | ||
"instvars" : [ ], | ||
"classinstvars" : [ | ||
], | ||
"classvars" : [ | ||
], | ||
"commentStamp" : "", | ||
"instvars" : [ | ||
], | ||
"name" : "BaselineOfSIXX", | ||
"type" : "normal" | ||
} | ||
"pools" : [ | ||
], | ||
"super" : "BaselineOf", | ||
"type" : "normal" } |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
(name 'BaselineOfSIXX-MU.3' message 'Removed XML-Parser requirement for Squeak' id 'd4022c6d-1272-cc40-94e0-824ebb38da3b' date '1 February 2023' time '5:26:36.949295 pm' author 'MU' ancestors ((name 'BaselineOfSIXX-MU.2' message 'Updated Baseline for Squeak' id 'b5850611-169a-1047-9c09-933902fa380b' date '1 February 2023' time '5:00:02.48794 pm' author 'MU' ancestors ((name 'BaselineOfSIXX-cypress.1' message 'fabricated from a Cypress format repository' id 'fb27f779-e902-1948-b229-c852ff7f25c4' date '1 February 2023' time '11:39:55.364373 am' author '' ancestors () stepChildren ())) stepChildren ())) stepChildren ()) |
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,2 @@ | ||
{ } | ||
{ | ||
} |
3 changes: 3 additions & 0 deletions
3
repository/SIXX-Pharo.package/SixxPortableUtil.class/class/testRunnerSupportWarningTest.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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
testing | ||
testRunnerSupportWarningTest | ||
^ true |
17 changes: 0 additions & 17 deletions
17
repository/SIXX-Pharo.package/SixxPortableUtil.class/methodProperties.json
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
repository/SIXX-Pharo.package/ZnEncodedWriteStream.extension/methodProperties.json
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
3 changes: 3 additions & 0 deletions
3
repository/SIXX-Squeak.package/SixxPortableUtil.class/class/testRunnerSupportWarningTest.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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
testing | ||
testRunnerSupportWarningTest | ||
^ SystemVersion current majorVersionNumber < 6 |
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
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 @@ | ||
(name 'SIXX-Squeak-MasashiUmezawa.3' message 'Use MultiByteFileStream instead of CrLfFileStream' id '07fec1dd-363e-e943-857c-1605eb7e167a' date '3 January 2016' time '3:43:09.075753 pm' author 'MasashiUmezawa' ancestors ((name 'SIXX-Squeak-mu.2' message '- Repackaged from SIXX-mu.146' id 'f33ee064-e1b7-0d46-93ba-64cf9ffe91b2' date '14 November 2009' time '10:59:55 pm' author 'mu' ancestors ((name 'SIXX-Squeak-mu.1' message 'empty log message' id '3435adcc-a2b9-ab4a-ad19-698196f83385' date '14 November 2009' time '10:28:49 pm' author 'mu' ancestors () stepChildren ())) stepChildren ())) stepChildren ()) | ||
(name 'SIXX-Squeak-MU.4' message 'Added SixxPortableUtil class>>testRunnerSupportWarningTest' id '3f446494-2e77-0140-8a14-9e7c4bee5b63' date '1 February 2023' time '4:53:05.02294 pm' author 'MU' ancestors ((name 'SIXX-Squeak-MasashiUmezawa.3' message 'Use MultiByteFileStream instead of CrLfFileStream' id '07fec1dd-363e-e943-857c-1605eb7e167a' date '3 January 2016' time '3:43:09.075753 pm' author 'MasashiUmezawa' ancestors ((name 'SIXX-Squeak-mu.2' message '- Repackaged from SIXX-mu.146' id 'f33ee064-e1b7-0d46-93ba-64cf9ffe91b2' date '14 November 2009' time '10:59:55 pm' author 'mu' ancestors ((name 'SIXX-Squeak-mu.1' message 'empty log message' id '3435adcc-a2b9-ab4a-ad19-698196f83385' date '14 November 2009' time '10:28:49 pm' author 'mu' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) |
7 changes: 7 additions & 0 deletions
7
repository/SIXX-Test.package/SixxAbstractTestCase.class/instance/ignoreWarning..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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
private | ||
ignoreWarning: aBlock | ||
SixxPortableUtil testRunnerSupportWarningTest ifTrue: [ | ||
^ aBlock value. | ||
]. | ||
"This hack is especially for Squeak 6+ which records testing error when a warning occurs" | ||
^ aBlock on: Warning do: [:ex | ex resume ]. |
3 changes: 3 additions & 0 deletions
3
repository/SIXX-Test.package/SixxAbstractTestCase.class/instance/should..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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
actions | ||
should: aBlock | ||
^ self ignoreWarning: [super should: aBlock] |
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
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
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
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
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.