Skip to content

Commit a98c17a

Browse files
committed
files corresponding to SOAP 0.233 release
1 parent 0be1885 commit a98c17a

File tree

1,998 files changed

+14379
-1
lines changed

Some content is hidden

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

1,998 files changed

+14379
-1
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,7 @@ SOAP
33

44
Port to GemStone/S 3.x in progress...
55

6-
Original repository: http://squeaksource.blueplane.jp/SOAP/
6+
Original repositories:
7+
8+
* http://squeaksource.blueplane.jp/SOAP/
9+
* http://squeaksource.blueplane.jp/SoXML.html

repository/.filetree

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
{"packageExtension" : ".package",
2+
"propertyFileExtension" : ".json" }
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"noMethodMetaData" : true,
3+
"separateMethodMetaAndSource" : false,
4+
"useCypressPropertiesFile" : true }

repository/ConfigurationOfGsSOAP.package/ConfigurationOfGsSOAP.class/README.md

Whitespace-only changes.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
private
2+
bootstrapPackage: aString from: aPath
3+
| repository version |
4+
repository := MCHttpRepository
5+
location: aPath
6+
user: ''
7+
password: ''.
8+
repository
9+
versionReaderForFileNamed: aString , '.mcz'
10+
do: [:reader |
11+
version := reader version.
12+
version load.
13+
version workingCopy repositoryGroup addRepository: repository]
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
private
2+
ensureMetacello
3+
"Minimum package versions from which to boot Metacello. Corresponds to version 1.0-beta.6"
4+
5+
Smalltalk at: #MetacelloProject ifAbsent: [
6+
Smalltalk at: #Gofer ifAbsent: [
7+
"Minimum version of Gofer from which to bootstrap"
8+
self bootstrapPackage: 'Gofer-lr.70' from: 'http://source.lukas-renggli.ch/flair' ].
9+
Smalltalk at: #Gofer ifPresent: [:gofer |
10+
gofer new
11+
url: 'http://seaside.gemstone.com/ss/metacello';
12+
addVersion: 'Metacello-Core-dkh.277'; "Minimum version from which to bootstrap Metacello"
13+
addVersion: 'Metacello-MC-dkh.209'; "Minimum version from which to bootstrap Metacello"
14+
addPackage: 'ConfigurationOfMetacello'; "Loads latest version of configuration package"
15+
load ].
16+
"load latest version of Metacello, load a specific version if desired"
17+
(Smalltalk at: #ConfigurationOfMetacello) loadLatestVersion ]
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
metacello tool support
2+
isMetacelloConfig
3+
"Answer true and the Metacello tools will operate on you"
4+
5+
^true
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
accessing
2+
project
3+
4+
^self new project
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
baselines
2+
baseline0231: spec
3+
<version: '0.231-baseline'>
4+
5+
spec for: #common do: [
6+
spec blessing: #baseline.
7+
spec repositories: [
8+
spec
9+
repository: 'http://seaside.gemstone.com/ss/SOAP';
10+
repository: 'http://seaside.gemstone.com/ss/SoXML' ]].
11+
spec for: #gemstone do: [
12+
spec
13+
package: 'SoXML' with: [ spec requires: #('Core') ];
14+
package: 'SOAP-Core' with: [
15+
spec
16+
file: 'SOAP-Core.g';
17+
requires: #('SoXML' 'Hyper') ];
18+
package: 'SOAP-Client' with: [
19+
spec
20+
file: 'SOAP-Client.g';
21+
requires: #('SOAP-Core') ];
22+
package: 'SOAP-Server' with: [
23+
spec
24+
file: 'SOAP-Server.g';
25+
requires: #('SOAP-Core') ];
26+
package: 'SOAP-Example' with: [
27+
spec
28+
file: 'SOAP-Example.g';
29+
requires: #('SOAP-Client' 'SOAP-Server') ];
30+
package: 'SOAP-TestCases' with: [ spec requires: #('SOAP-Client' 'SOAP-Server') ];
31+
yourself.
32+
spec
33+
project: 'Core' with: [
34+
spec
35+
className: 'ConfigurationOfGsCore';
36+
projectPackage: [
37+
spec
38+
name: 'ConfigurationOfGsCore';
39+
repository: 'http://seaside.gemstone.com/ss/GLASSproject' ]];
40+
project: 'Hyper' with: [
41+
spec
42+
className: 'ConfigurationOfGsHyper';
43+
projectPackage: [
44+
spec
45+
name: 'ConfigurationOfGsHyper';
46+
repository: 'http://seaside.gemstone.com/ss/hyper' ]];
47+
yourself.].
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
baselines
2+
baseline0232: spec
3+
<version: '0.232-baseline' imports: #('0.231-baseline' )>
4+
5+
spec for: #gemstone do: [
6+
spec
7+
package: 'SoXML' with: [
8+
spec
9+
file: 'SoXML.g';
10+
requires: #('XML-Parser' 'Utf8Encoding') ];
11+
yourself.
12+
spec
13+
project: 'XML-Parser' with: [
14+
spec
15+
className: 'ConfigurationOfGsMisc';
16+
loads: #('XML-Parser');
17+
projectPackage: [
18+
spec
19+
name: 'ConfigurationOfGsMisc';
20+
repository: 'http://seaside.gemstone.com/ss/MetacelloRepository' ]];
21+
project: 'Utf8Encoding' with: [
22+
spec
23+
className: 'ConfigurationOfGsMisc';
24+
loads: #('Utf8Encoding');
25+
projectPackage: [
26+
spec
27+
name: 'ConfigurationOfGsMisc';
28+
repository: 'http://seaside.gemstone.com/ss/MetacelloRepository' ]];
29+
yourself].

0 commit comments

Comments
 (0)