Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mumez/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.
https://github.com/mumez/sixx
pharo smalltalk squeak xml-serializer
Last synced: about 1 month ago
JSON representation
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.
- Host: GitHub
- URL: https://github.com/mumez/sixx
- Owner: mumez
- Created: 2012-07-08T06:31:38.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2024-11-06T13:12:07.000Z (about 2 months ago)
- Last Synced: 2024-11-06T14:22:55.100Z (about 2 months ago)
- Topics: pharo, smalltalk, squeak, xml-serializer
- Language: Smalltalk
- Size: 272 KB
- Stars: 15
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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.
[![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
For Squeak and Pharo users, the latest version can be installed via ConfigurationOfSIXX.
### Pharo & Squeak
```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
```## Features
Please see [features.md](./doc/features.md)