[Glass] Sixx problematic

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
25 messages Options
12
Reply | Threaded
Open this post in threaded view
|

[Glass] Sixx problematic

GLASS mailing list
Ciao,

        I have a devkit tODE stone create with createTodeStone  devkit  3.1.0.6

into it i load:

GsDeployer
  bulkMigrate: [
    {#( 'XMLSupport' '1.2.2' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
        #('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
    #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
    #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
      do: [ :ar |
        | projectName version repository |
        projectName := ar at: 1.
        version := ar at: 2.
        repository := ar at: 3.
        Metacello new
          configuration: projectName;
          repository: repository;
          get.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          onUpgrade: [ :ex :existing :new |
                existing locked
                  ifTrue: [ ex disallow ]
                  ifFalse: [ ex allow ] ];
          onConflict: [ :ex | ex disallow ];
          load.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          lock ] ]

and:

GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: 'github://glassdb/SIXX:master/repository';
      load ].

A this point the SixxExamples example2 works fine.





Now i can save a sixx file relative to my data  application   anEnv link with:

        writeObject: anEnv toFile: aFilename inFolder: aDirectoryPath

        | fileStream sws |
       
        fileStream := ( FileDirectory on: aDirectoryPath) newFileNamed: aFilename.
       
        sws := SixxWriteStream on: fileStream.

        sws nextPut: anEnv.
        sws close.





After when i do the command:  ^Object readSixxFrom: fileStream contents.

to read the sixx file create above the system answer the error:

a SixxXmlParseError occurred (error 2710) -  G/S[Scandella3106 devkit:1]

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal: (envId 0)
AbstractException class >> signal: (envId 0)
XMLTokenizer >> parseError: (envId 0)
XMLTokenizer >> errorExpected: (envId 0)
XMLTokenizer >> nextLiteral (envId 0)
XMLTokenizer >> nextPCDataDelimitedBy:putOn: (envId 0)
[] in  XMLTokenizer >> nextPCData (envId 0)
XMLNestedStreamWriter >> writeWith: (envId 0)
XMLTokenizer >> nextPCData (envId 0)
XMLTokenizer >> nextToken (envId 0)
XMLParser >> parseToken (envId 0)
XMLParser >> parseDocument (envId 0)
SAXHandler >> parseDocument (envId 0)
XMLDOMParser >> parseDocument (envId 0)
SAXHandler class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
XMLDOMParser class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
SAXHandler class >> parseDocumentFrom:persistentRoot: (envId 0)
SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)

Considerations ?

Thanks,

        Dario

P.S.  I have another  3.1.0.6    stone where i have:

        ConfigurationOfGsSIXX project currentVersion >=0.3-c.1 [ConfigurationOfGsSIXX]

        ConfigurationOfXMLSupport project currentVersion  >=1.2.2.1 [ConfigurationOfXMLSupport]

        Into it  all works fine.

        The sixx file created into it   can reading  into  the devkit  tODE stone  without problem


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
Reply | Threaded
Open this post in threaded view
|

Re: [Glass] Sixx problematic

GLASS mailing list
Hi Dario,

I was planning to write a whole detailed post about how I finally manage to serialize and materialize using SIXX, with UTF8 and without running out of memory. 

Let me paste the code here.... it contains a LOT of comments because I wanted to explain the reasons. Paste it in GemStone so that you can read it better. 


serialize: anObject toSixxFile: aFilename
| stream codec persistentKey persistentDict file  |
" First, let's be sure to use UTF8 encoding"
codec := GRCodec forEncoding: 'utf8'.
" Note that we do the whole serializion to a in memory stream rather than directly to file."
stream := codec encoderFor: String new writeStream.

"The persistentKey can be whatever...just something unique for the time the serialization is running"
persistentKey := ('SIXX_ROOT_ARRAY', UUID new asString) asSymbol.
" We need a persistent place to hold sixx temporal persisting roots. While you can put these roots directly in UserGlobals
I don't do that because if I fire multiple serializations in paralel, I will get Write-Write conflict in UserGlobals (multiple gems doing at:ifAbsentPut:)
Therefore, I define only one entry in UserGlobals and I store there a Reduced Conflict instance: a RcKeyValueDictionary. That way, even with multiple gems
doing exports / imports, I won't get a Write-Write conflict (at least for the UserGlobals at:ifAbsentPut: case). "
persistentDict := UserGlobals at: #LargeSIXXExportsAndImportRoots ifAbsentPut: [ RcKeyValueDictionary new ].

[ "With #commitOnAlmostOutOfMemoryDuring:  we force commits (and hence new persistent objects could go to disk now freeing memory) if we are about to run out of memory"
  MCPlatformSupport commitOnAlmostOutOfMemoryDuring: [
    persistentDict at: persistentKey put: Array new.
"This is the SIXX hook that allow us to specifiy a persistent root. "
      anObject sixxOn: stream persistentRoot: (persistentDict at: persistentKey)
  ].
"Just be jure to remove entry for the temp root because we do not need it anymore"
] ensure: [ persistentDict removeKey: persistentKey ifAbsent: [] ].

"Once the whole serialization was made into a memory stream it's time to write it to a file. Why we didn't write directly to a file from the beginning?
The reason is that GsFile, GsSocket and a few other cases have state that is associated to the session or gem being run. In addition, SIXX stores the stream
in the persistent root array. Therefore, the GsFile could technically go to disk if the Gem needs more temp memory and then brough back. When this happens
the GsFile instance will be quite broken. "
stream flush.
file := (GsFile open: aFilename mode: 'w' onClient: false).
" Instead of using a UTF8 stream for the serialization, another possibility was to user a straight String stream at the beginning and 
now at the end, convert the whole contents into a UTF encoded string. While it may be faster, I thought this approach would require two large arrays in memory
and since we are trying not to run out of memory, I thoguht the current solution is better. But I might be wrong. "
file nextPutAll: stream contents.
file flush.






materializeFromSixxFile: aFilename
" Please read the comments of #serialize:toSixxFile: since most of them applies to the materialization as well"
| codec stream object context persistentKey persistentDict |
persistentKey := ('SIXX_ROOT_ARRAY', Object new identityHash asString) asSymbol.
codec := GRCodec forEncoding: 'utf8'.
" Here, again, we read the whole file and get an in-memory readStream to avoid the problem of the GsFile being persisted"
stream := codec decoderFor: (FileStream oldFileNamed: aFilename) binary contents readStream.
persistentDict := UserGlobals at: #LargeSIXXExportsAndImportRoots ifAbsentPut: [ RcKeyValueDictionary new ].
MCPlatformSupport commitOnAlmostOutOfMemoryDuring: [
  persistentDict at: persistentKey put: Array new.
context := SixxContext forRead.
object := Object readSixxFrom: stream
       context: context
 persistentRoot: (persistentDict at: persistentKey)
].
] ensure: [ persistentDict removeKey: persistentKey ].
^ object




Did it work? 




On Tue, Mar 10, 2015 at 3:06 PM, Dario Trussardi via Glass <[hidden email]> wrote:
Ciao,

        I have a devkit tODE stone create with   createTodeStone  devkit  3.1.0.6

into it i load:

GsDeployer
  bulkMigrate: [
    {#( 'XMLSupport' '1.2.2' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
        #('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
    #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
    #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
      do: [ :ar |
        | projectName version repository |
        projectName := ar at: 1.
        version := ar at: 2.
        repository := ar at: 3.
        Metacello new
          configuration: projectName;
          repository: repository;
          get.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          onUpgrade: [ :ex :existing :new |
                existing locked
                  ifTrue: [ ex disallow ]
                  ifFalse: [ ex allow ] ];
          onConflict: [ :ex | ex disallow ];
          load.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          lock ] ]

and:

GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: 'github://glassdb/SIXX:master/repository';
      load ].

A this point the        SixxExamples example2           works fine.





Now i can save a sixx file relative to my data  application     anEnv link       with:

        writeObject: anEnv toFile: aFilename inFolder: aDirectoryPath

        | fileStream sws |

        fileStream := ( FileDirectory on: aDirectoryPath) newFileNamed: aFilename.

        sws := SixxWriteStream on: fileStream.

        sws nextPut: anEnv.
        sws close.





After when i do the command:  ^Object readSixxFrom: fileStream contents.

to read the sixx file create above the system answer the error:

a SixxXmlParseError occurred (error 2710) -  G/S[Scandella3106 devkit:1]

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal: (envId 0)
AbstractException class >> signal: (envId 0)
XMLTokenizer >> parseError: (envId 0)
XMLTokenizer >> errorExpected: (envId 0)
XMLTokenizer >> nextLiteral (envId 0)
XMLTokenizer >> nextPCDataDelimitedBy:putOn: (envId 0)
[] in  XMLTokenizer >> nextPCData (envId 0)
XMLNestedStreamWriter >> writeWith: (envId 0)
XMLTokenizer >> nextPCData (envId 0)
XMLTokenizer >> nextToken (envId 0)
XMLParser >> parseToken (envId 0)
XMLParser >> parseDocument (envId 0)
SAXHandler >> parseDocument (envId 0)
XMLDOMParser >> parseDocument (envId 0)
SAXHandler class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
XMLDOMParser class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
SAXHandler class >> parseDocumentFrom:persistentRoot: (envId 0)
SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)

Considerations ?

Thanks,

        Dario

P.S.  I have another  3.1.0.6    stone where i have:

        ConfigurationOfGsSIXX project currentVersion >=0.3-c.1 [ConfigurationOfGsSIXX]

        ConfigurationOfXMLSupport project currentVersion  >=1.2.2.1 [ConfigurationOfXMLSupport]

        Into it  all works fine.

        The sixx file created into it   can reading  into  the devkit  tODE stone  without problem


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass



--

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
Reply | Threaded
Open this post in threaded view
|

Re: [Glass] Sixx problematic

GLASS mailing list
In reply to this post by GLASS mailing list
Dario,

You have a stone that works and a stone that does not ... I would like
to understand the differences in packages loaded between the two (for
example XMLSupport 1.2.2 my not be the correct version to use for SIXX ...)

Use the following to list the packages in each stone:

   | stream |
   stream := WriteStream on: String new.
   (MCWorkingCopy allManagers sorted: [ :a :b | a packageName < b
packageName ])
     do: [ :wc |
       stream
         nextPutAll: wc description;
         cr ].
   stream contents

Dale

On 03/10/2015 11:06 AM, Dario Trussardi via Glass wrote:

> Ciao,
>
> I have a devkit tODE stone create with createTodeStone  devkit  3.1.0.6
>
> into it i load:
>
> GsDeployer
>    bulkMigrate: [
>      {#( 'XMLSupport' '1.2.2' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
> #('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
>      #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
>      #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
>      #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
>      #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
>      #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
>        do: [ :ar |
>          | projectName version repository |
>          projectName := ar at: 1.
>          version := ar at: 2.
>          repository := ar at: 3.
>          Metacello new
>            configuration: projectName;
>            repository: repository;
>            get.
>          Metacello new
>            configuration: projectName;
>            version: version;
>            repository: repository;
>            onUpgrade: [ :ex :existing :new |
>                  existing locked
>                    ifTrue: [ ex disallow ]
>                    ifFalse: [ ex allow ] ];
>            onConflict: [ :ex | ex disallow ];
>            load.
>          Metacello new
>            configuration: projectName;
>            version: version;
>            repository: repository;
>            lock ] ]
>
> and:
>
> GsDeployer bulkMigrate: [
>    Metacello new
>        baseline: 'SIXX';
>        repository: 'github://glassdb/SIXX:master/repository';
>        load ].
>
> A this point the SixxExamples example2 works fine.
>
>
>
>
>
> Now i can save a sixx file relative to my data  application   anEnv link with:
>
> writeObject: anEnv toFile: aFilename inFolder: aDirectoryPath
>
> | fileStream sws |
>
> fileStream := ( FileDirectory on: aDirectoryPath) newFileNamed: aFilename.
>
> sws := SixxWriteStream on: fileStream.
>
> sws nextPut: anEnv.
> sws close.
>
>
>
>
>
> After when i do the command:  ^Object readSixxFrom: fileStream contents.
>
> to read the sixx file create above the system answer the error:
>
> a SixxXmlParseError occurred (error 2710) -  G/S[Scandella3106 devkit:1]
>
> AbstractException >> _signalWith: (envId 0)
> AbstractException >> signal (envId 0)
> SixxPortableUtil class >> signalException: (envId 0)
> [] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
> AbstractException >> _executeHandler: (envId 0)
> AbstractException >> _signalWith: (envId 0)
> AbstractException >> signal: (envId 0)
> AbstractException class >> signal: (envId 0)
> XMLTokenizer >> parseError: (envId 0)
> XMLTokenizer >> errorExpected: (envId 0)
> XMLTokenizer >> nextLiteral (envId 0)
> XMLTokenizer >> nextPCDataDelimitedBy:putOn: (envId 0)
> [] in  XMLTokenizer >> nextPCData (envId 0)
> XMLNestedStreamWriter >> writeWith: (envId 0)
> XMLTokenizer >> nextPCData (envId 0)
> XMLTokenizer >> nextToken (envId 0)
> XMLParser >> parseToken (envId 0)
> XMLParser >> parseDocument (envId 0)
> SAXHandler >> parseDocument (envId 0)
> XMLDOMParser >> parseDocument (envId 0)
> SAXHandler class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
> XMLDOMParser class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
> SAXHandler class >> parseDocumentFrom:persistentRoot: (envId 0)
> SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
> [] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
> ExecBlock >> on:do: (envId 0)
> SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
> Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
> Behavior >> readSixxFrom: (envId 0)
>
> Considerations ?
>
> Thanks,
>
> Dario
>
> P.S.  I have another  3.1.0.6    stone where i have:
>
> ConfigurationOfGsSIXX project currentVersion >=0.3-c.1 [ConfigurationOfGsSIXX]
>
> ConfigurationOfXMLSupport project currentVersion  >=1.2.2.1 [ConfigurationOfXMLSupport]
>
> Into it  all works fine.
>
> The sixx file created into it   can reading  into  the devkit  tODE stone  without problem
>
>
> _______________________________________________
> Glass mailing list
> [hidden email]
> http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
Reply | Threaded
Open this post in threaded view
|

Re: [Glass] Sixx problematic

GLASS mailing list
Dale,


> Dario,
>
> You have a stone that works and a stone that does not ... I would like to understand the differences in packages loaded between the two (for example XMLSupport 1.2.2 my not be the correct version to use for SIXX ...)
>
> Use the following to list the packages in each stone:
>
>  | stream |
>  stream := WriteStream on: String new.
>  (MCWorkingCopy allManagers sorted: [ :a :b | a packageName < b packageName ])
>    do: [ :wc |
>      stream
>        nextPutAll: wc description;
>        cr ].
>  stream contents

The stone that works reports:

'Announcements (Announcements.v3-dkh.18)
Base-Bootstrap (Base-Bootstrap.v3-dkh.29)
BaselineOfDtrLogin (BaselineOfDtrLogin-DTR.8)
BaselineOfDtrMOL (BaselineOfDtrMOL-DTR.2)
BaselineOfDtrSupport (BaselineOfDtrSupport-DTR.3)
BaselineOfFileTree (BaselineOfFileTree-dkh.4)
BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
BaselineOfMetacello (BaselineOfMetacello-dkh.85)
BaselineOfSIXX (BaselineOfSIXX-dkh.1)
* Bootstrap (Bootstrap.v3-DaleHenrichs.230)
Change-Notification (Change-Notification.v3-dkh.20)
Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-dkh.11)
Collections-Support (Collections-Support.g-dkh.46)
ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.10)
ConfigurationOfDtrSupport (ConfigurationOfDtrSupport-DTR.1)
ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.66)
ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
ConfigurationOfGofer (ConfigurationOfGofer-dkh.44)
ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-DaleHenrichs.21)
ConfigurationOfGrease (ConfigurationOfGrease-dkh.270)
ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.89)
ConfigurationOfGsSIXX (ConfigurationOfGsSIXX-dkh.11)
ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
* ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
ConfigurationOfSeaside3 (ConfigurationOfSeaside3-JohanBrichau.218)
ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.69)
ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
* Core (Core.v3-DaleHenrichs.76)
* Crossfade (Crossfade-pmm.8)
CSSBarGraph (CSSBarGraph-pmm.11)
DTRAlbums (DTRAlbums-DTR.451)
DtrAssociazioni (DtrAssociazioni-DTR.5)
DtrBase (DtrBase-DTR.418)
* DTRCassa (DTRCassa-DTR.21)
DtrConfig (DtrConfig-DTR.412)
DTRConfigGruppi (DTRConfigGruppi-DTR.1)
DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
DTRCore (DTRCore-DTR.417)
DtrCrossfade (DtrCrossfade-DTR.408)
DtrCRP (DtrCRP-DTR.411)
DtrFinanza (DtrFinanza-DTR.417)
DtrGestionale (DtrGestionale-DTR.412)
DtrGoogle (DtrGoogle-DTR.408)
DtrLogin (DtrLogin-DTR.426)
DtrMA (DtrMA-DTR.410)
DtrMagazzino (DtrMagazzino-DTR.412)
DtrMagritteAuto (DtrMagritteAuto-DTR.407)
* DtrMenuOnLine (DtrMenuOnLine-DTR.416)
DTRMetaDb (DTRMetaDb-DTR.5)
* DtrMicroObj (DtrMicroObj-DTR.414)
DtrMRP (DtrMRP-DTR.408)
DTROnlyForOODB (DTROnlyForOODB-DTR.186)
DTRPier (DTRPier-DTR.445)
DtrPrinterTicket (DtrPrinterTicket-DTR.5)
DtrRedu (DtrRedu-DTR.405)
DtrReduPorting (DtrReduPorting-DTR.407)
FastCGI (FastCGI-dkh.33)
FastCGIPool (FastCGIPool-dkh.2)
GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.9)
GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.3)
GemStone-Release-Support (GemStone-Release-Support-dkh.67)
Gofer-Core (Gofer-Core.gemstone-dkh.137)
GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
* GoogleMaps (GoogleMaps-jgf.23)
Grease-Core (Grease-Core-JohanBrichau.94)
Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
Grease-Tests-Core (Grease-Tests-Core-pmm.99)
Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.10)
GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
GsUpgrader-Core (GsUpgrader-Core-dkh.38)
JadeServer (JadeServer-dkh.13)
Javascript-Core (Javascript-Core-pmm.94)
Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
JQuery-Core (JQuery-Core-lr.123)
JQuery-Extensions (JQuery-Extensions-DTR.7)
JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
JQuery-UI (JQuery-UI.gemstone-dkh.81)
JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
Magritte-Json (Magritte-Json-NickAger.18)
Magritte-Model (Magritte-Model-NickAger.431)
* Magritte-Seaside (Magritte-Seaside-NickAger.355)
Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
Metacello-Base (Metacello-Base-dkh.123)
Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
Metacello-Core (Metacello-Core-dkh.806)
Metacello-FileTree (Metacello-FileTree-dkh.36)
Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
Metacello-GitHub (Metacello-GitHub-dkh.44)
Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
Metacello-MC (Metacello-MC-dkh.722)
Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
Metacello-ToolBox (Metacello-ToolBox-dkh.139)
Monticello (Monticello.v3-dkh.456)
* MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.166)
MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
OB-GemStone-Platform (OB-GemStone-Platform-dkh.69)
OB-Metacello (OB-Metacello-dkh.83)
OB-Monticello (OB-Monticello-DaleHenrichs.103)
OB-Standard (OB-Standard.v3-dkh.448)
OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
OB-Tools (OB-Tools.v3-dkh.136)
OmniBrowser (OmniBrowser-DaleHenrichs.447)
PackageInfo-Base (PackageInfo-Base.g-dkh.36)
Pier-Admin (Pier-Admin-NickAger.87)
Pier-Blog (Pier-Blog-NickAger.158)
Pier-Book (Pier-Book.gemstone-NickAger.159)
Pier-Design (Pier-Design-NickAger.12)
Pier-Documents (Pier-Documents-NickAger.29)
Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
Pier-Google (Pier-Google-NickAger.20)
Pier-JQuery (Pier-JQuery-NickAger.13)
Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
Pier-LinkChecker (Pier-LinkChecker-lr.7)
Pier-Model (Pier-Model-NickAger.424)
* Pier-Seaside (Pier-Seaside-NickAger.536)
* Pier-Security (Pier-Security-NickAger.184)
Pier-Shout (Pier-Shout-NickAger.5)
Pier-TagCloud (Pier-TagCloud-NickAger.26)
Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
Prototype-Core (Prototype-Core-lr.25)
Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
Regex-Core (Regex-Core-DaleHenrichs.3)
Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
RSS-Core (RSS-Core-lr.67)
RSS-Examples (RSS-Examples-lr.26)
RSS-Tests-Core (RSS-Tests-Core-lr.30)
* Scriptaculous-Components (Scriptaculous-Components-lr.111)
Scriptaculous-Core (Scriptaculous-Core-pmm.102)
Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
Seaside-Component (Seaside-Component-jok.92)
* Seaside-Core (Seaside-Core.gemstone-dkh.774)
* Seaside-Development (Seaside-Development-pmm.156)
Seaside-Email (Seaside-Email-PaulDeBruicker.24)
Seaside-Environment (Seaside-Environment-NickAger.77)
Seaside-Examples (Seaside-Examples-lr.23)
Seaside-FileSystem (Seaside-FileSystem-pmm.26)
Seaside-Flow (Seaside-Flow-pmm.23)
Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
* Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
Seaside-HTML5 (Seaside-HTML5-pmm.28)
Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
Seaside-Session (Seaside-Session.gemstone-dkh.158)
Seaside-Swazoo (Seaside-Swazoo-pmm.20)
Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
* Seaside-Welcome (Seaside-Welcome-NickAger.40)
Seaside-Widgets (Seaside-Widgets-lr.26)
Shout-Parsing (Shout-Parsing-NickAger.3)
SIXX (SIXX.310-PaulDeBruicker.182)
SMTPMail (SMTPMail-dkh.11)
SocketStream (SocketStream-PaulDeBruicker.12)
Sport (Sport3.010.v3-dkh.29)
* Squeak (Squeak.v3-DaleHenrichs.298)
Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
System-Digital-Signatures (System-Digital-Signatures-dkh.5)
TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
TopFeeder-Model (TopFeeder-Model-NickAger.5)
TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
Utf8Encoding (Utf8Encoding.310-dkh.30)
XML-Observable (XML-Observable-JohanBrichau.1)
XML-Parser (XML-Parser.g-dkh.122)
XML-Writer (XML-Writer-JAAyer.5)
Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
* Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)'




The stone does not work report:

'Announcements (Announcements.v3-dkh.18)
AST-Core (AST-Core-dkh.102)
Base-Bootstrap (Base-Bootstrap.v3-dkh.30)
BaselineOfFileTree (BaselineOfFileTree-dkh.4)
BaselineOfGLASS1 (BaselineOfGLASS1-dkh.43)
BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
BaselineOfMetacello (BaselineOfMetacello-dkh.85)
BaselineOfRB (BaselineOfRB-dkh.5)
BaselineOfSIXX (BaselineOfSIXX-dkh.1)
BaselineOfSton (BaselineOfSton-dkh.1)
BaselineOfTode (BaselineOfTode-dkh.41)
* Bootstrap (Bootstrap.v3-dkh.241)
Change-Notification (Change-Notification.v310-dkh.21)
Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-JohanBrichau.9)
Collections-Support (Collections-Support.g-OttoBehrens.45)
ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.11)
ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.36)
ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
ConfigurationOfGofer (ConfigurationOfGofer-dkh.45)
ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-dkh.22)
ConfigurationOfGrease (ConfigurationOfGrease-dkh.189)
ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.91)
ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
ConfigurationOfSeaside3 (ConfigurationOfSeaside3-dkh.222)
ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-NorbertHartl.64)
ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
* Core (Core.v3-dkh.90)
Core31x (Core31x-dkh.5)
* Crossfade (Crossfade-pmm.8)
CSSBarGraph (CSSBarGraph-pmm.11)
DtrBase (DtrBase-DTR.418)
DTRCassa (DTRCassa-DTR.21)
* DtrConfig (DtrConfig-DTR.412)
DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
DTRCore (DTRCore-DTR.417)
DtrCrossfade (DtrCrossfade-DTR.408)
DtrCRP (DtrCRP-DTR.411)
DtrFinanza (DtrFinanza-DTR.417)
DtrGestionale (DtrGestionale-DTR.412)
DtrGoogle (DtrGoogle-DTR.408)
DtrLogin (DtrLogin-DTR.426)
DtrMA (DtrMA-DTR.410)
DtrMagazzino (DtrMagazzino-DTR.412)
DtrMagritteAuto (DtrMagritteAuto-DTR.407)
DtrMenuOnLine (DtrMenuOnLine-DTR.416)
DTRMetaDb (DTRMetaDb-DTR.5)
DtrMicroObj (DtrMicroObj-DTR.414)
DtrMRP (DtrMRP-DTR.408)
DTROnlyForOODB (DTROnlyForOODB-DTR.186)
DtrPrinterTicket (DtrPrinterTicket-DTR.5)
DtrRedu (DtrRedu-DTR.405)
DtrReduPorting (DtrReduPorting-DTR.408)
FastCGI (FastCGI-dkh.33)
FastCGIPool (FastCGIPool-dkh.2)
GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.12)
GemStone-Compression (GemStone-Compression-dkh.7)
GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.4)
GemStone-Interactions (GemStone-Interactions-dkh.12)
GemStone-Release-Support (GemStone-Release-Support-dkh.67)
* Generated ()
Gofer-Core (Gofer-Core.gemstone-dkh.138)
GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
* GoogleMaps (GoogleMaps-jgf.23)
Grease-Core (Grease-Core-JohanBrichau.94)
Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
Grease-Tests-Core (Grease-Tests-Core-pmm.99)
Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
* GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.20)
GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
GsSqueakCommon-CoreV30 (GsSqueakCommon-CoreV30-dkh.1)
GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
GsUpgrader-Core (GsUpgrader-Core-dkh.38)
JadeServer (JadeServer-dkh.13)
Javascript-Core (Javascript-Core-pmm.94)
Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
JQuery-Core (JQuery-Core-lr.123)
JQuery-Extensions (JQuery-Extensions-DTR.7)
JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
JQuery-UI (JQuery-UI.gemstone-dkh.81)
JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
Magritte-Json (Magritte-Json-NickAger.18)
Magritte-Model (Magritte-Model-NickAger.431)
* Magritte-Seaside (Magritte-Seaside-NickAger.355)
Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
Metacello-Base (Metacello-Base-topa.124)
Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
Metacello-Core (Metacello-Core-dkh.809)
Metacello-FileTree (Metacello-FileTree-dkh.36)
Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
Metacello-GitHub (Metacello-GitHub-dkh.44)
Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
Metacello-MC (Metacello-MC-dkh.726)
Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
Metacello-ToolBox (Metacello-ToolBox-dkh.139)
Monticello (Monticello.v3-dkh.476)
MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.183)
MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
MonticelloGs (MonticelloGs-dkh.2)
NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
OB-GemStone-Platform (OB-GemStone-Platform-dkh.76)
OB-Metacello (OB-Metacello-dkh.83)
OB-Monticello (OB-Monticello-dkh.105)
OB-Standard (OB-Standard.v3-dkh.449)
OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
OB-Tools (OB-Tools.v3-dkh.140)
OmniBrowser (OmniBrowser-DaleHenrichs.447)
PackageInfo-Base (PackageInfo-Base.g-dkh.36)
Pier-Admin (Pier-Admin-NickAger.87)
Pier-Blog (Pier-Blog-NickAger.158)
Pier-Book (Pier-Book.gemstone-NickAger.159)
Pier-Design (Pier-Design-NickAger.12)
Pier-Documents (Pier-Documents-NickAger.29)
Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
Pier-Google (Pier-Google-NickAger.20)
Pier-JQuery (Pier-JQuery-NickAger.13)
Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
Pier-LinkChecker (Pier-LinkChecker-lr.7)
Pier-Model (Pier-Model-NickAger.424)
Pier-Seaside (Pier-Seaside-NickAger.536)
Pier-Security (Pier-Security-NickAger.184)
Pier-Shout (Pier-Shout-NickAger.5)
Pier-TagCloud (Pier-TagCloud-NickAger.26)
Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
Prototype-Core (Prototype-Core-lr.25)
Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
Regex-Core (Regex-Core-DaleHenrichs.3)
Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
RSS-Core (RSS-Core-lr.67)
RSS-Examples (RSS-Examples-lr.26)
RSS-Tests-Core (RSS-Tests-Core-lr.30)
* Scriptaculous-Components (Scriptaculous-Components-lr.111)
Scriptaculous-Core (Scriptaculous-Core-pmm.102)
Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
Seaside-Component (Seaside-Component-jok.92)
* Seaside-Core (Seaside-Core.gemstone-dkh.774)
* Seaside-Development (Seaside-Development-pmm.156)
Seaside-Email (Seaside-Email-PaulDeBruicker.24)
Seaside-Environment (Seaside-Environment-NickAger.77)
Seaside-Examples (Seaside-Examples-lr.23)
Seaside-FileSystem (Seaside-FileSystem-pmm.26)
Seaside-Flow (Seaside-Flow-pmm.23)
Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
* Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
Seaside-HTML5 (Seaside-HTML5-pmm.28)
Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
Seaside-Session (Seaside-Session.gemstone-dkh.158)
Seaside-Swazoo (Seaside-Swazoo-pmm.20)
Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
* Seaside-Welcome (Seaside-Welcome-NickAger.40)
Seaside-Widgets (Seaside-Widgets-lr.26)
Shout-Parsing (Shout-Parsing-NickAger.3)
SIXX (SIXX.310-dkh.183)
SMTPMail (SMTPMail-dkh.11)
SocketStream (SocketStream-PaulDeBruicker.12)
* Sport (Sport3.010.v3-dkh.32)
* Squeak (Squeak.v3-dkh.309)
* STON-Core (STON-Core-dkh.46)
Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
System-Digital-Signatures (System-Digital-Signatures-dkh.5)
Tode-AST-Extensions (Tode-AST-Extensions-dkh.2)
Tode-BatchEdit-Tool (Tode-BatchEdit-Tool-dkh.3)
Tode-GemStone-Server-Core (Tode-GemStone-Server-Core-dkh.118)
Tode-GemStone-Server-Tests (Tode-GemStone-Server-Tests-dkh.5)
Tode-Server-31x-GsProcess-Patch (Tode-Server-31x-GsProcess-Patch-dkh.1)
Tode-Server-TestTestTools (Tode-Server-TestTestTools-dkh.2)
Topez-Common-Core (Topez-Common-Core-dkh.414)
Topez-Common-Tests (Topez-Common-Tests-dkh.22)
Topez-Server-31x-Core (Topez-Server-31x-Core-dkh.5)
Topez-Server-31x-DebugTools (Topez-Server-31x-DebugTools-dkh.19)
Topez-Server-31x-Tests (Topez-Server-31x-Tests-dkh.3)
Topez-Server-3x-Core (Topez-Server-3x-Core-dkh.2)
Topez-Server-3x-DebugTools (Topez-Server-3x-DebugTools-dkh.2)
Topez-Server-Core (Topez-Server-Core-dkh.89)
Topez-Server-DebugTools (Topez-Server-DebugTools-dkh.151)
Topez-Server-ProcessTools (Topez-Server-ProcessTools-dkh.25)
Topez-Server-TestDebugTools (Topez-Server-TestDebugTools-dkh.19)
Topez-Server-Tests (Topez-Server-Tests-dkh.151)
Topez-Server-TestTools (Topez-Server-TestTools-dkh.54)
TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
TopFeeder-Model (TopFeeder-Model-NickAger.5)
TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
Utf8Encoding (Utf8Encoding.310-dkh.32)
XML-Observable (XML-Observable-JohanBrichau.1)
XML-Parser (XML-Parser.g-NorbertHartl.119)
XML-Writer (XML-Writer-JAAyer.5)
Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
* Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)
'

Thanks,
                Dario

>
> Dale
>
> On 03/10/2015 11:06 AM, Dario Trussardi via Glass wrote:
>> Ciao,
>>
>> I have a devkit tODE stone create with createTodeStone  devkit  3.1.0.6
>>
>> into it i load:
>>
>> GsDeployer
>>   bulkMigrate: [
>>     {#( 'XMLSupport' '1.2.2' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
>> #('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
>>     #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
>>     #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
>>     #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
>>     #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
>>     #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
>>       do: [ :ar |
>>         | projectName version repository |
>>         projectName := ar at: 1.
>>         version := ar at: 2.
>>         repository := ar at: 3.
>>         Metacello new
>>           configuration: projectName;
>>           repository: repository;
>>           get.
>>         Metacello new
>>           configuration: projectName;
>>           version: version;
>>           repository: repository;
>>           onUpgrade: [ :ex :existing :new |
>>                 existing locked
>>                   ifTrue: [ ex disallow ]
>>                   ifFalse: [ ex allow ] ];
>>           onConflict: [ :ex | ex disallow ];
>>           load.
>>         Metacello new
>>           configuration: projectName;
>>           version: version;
>>           repository: repository;
>>           lock ] ]
>>
>> and:
>>
>> GsDeployer bulkMigrate: [
>>   Metacello new
>>       baseline: 'SIXX';
>>       repository: 'github://glassdb/SIXX:master/repository';
>>       load ].
>>
>> A this point the SixxExamples example2 works fine.
>>
>>
>>
>>
>>
>> Now i can save a sixx file relative to my data  application   anEnv link with:
>>
>> writeObject: anEnv toFile: aFilename inFolder: aDirectoryPath
>>
>> | fileStream sws |
>>
>> fileStream := ( FileDirectory on: aDirectoryPath) newFileNamed: aFilename.
>>
>> sws := SixxWriteStream on: fileStream.
>>
>> sws nextPut: anEnv.
>> sws close.
>>
>>
>>
>>
>>
>> After when i do the command:  ^Object readSixxFrom: fileStream contents.
>>
>> to read the sixx file create above the system answer the error:
>>
>> a SixxXmlParseError occurred (error 2710) -  G/S[Scandella3106 devkit:1]
>>
>> AbstractException >> _signalWith: (envId 0)
>> AbstractException >> signal (envId 0)
>> SixxPortableUtil class >> signalException: (envId 0)
>> [] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
>> AbstractException >> _executeHandler: (envId 0)
>> AbstractException >> _signalWith: (envId 0)
>> AbstractException >> signal: (envId 0)
>> AbstractException class >> signal: (envId 0)
>> XMLTokenizer >> parseError: (envId 0)
>> XMLTokenizer >> errorExpected: (envId 0)
>> XMLTokenizer >> nextLiteral (envId 0)
>> XMLTokenizer >> nextPCDataDelimitedBy:putOn: (envId 0)
>> [] in  XMLTokenizer >> nextPCData (envId 0)
>> XMLNestedStreamWriter >> writeWith: (envId 0)
>> XMLTokenizer >> nextPCData (envId 0)
>> XMLTokenizer >> nextToken (envId 0)
>> XMLParser >> parseToken (envId 0)
>> XMLParser >> parseDocument (envId 0)
>> SAXHandler >> parseDocument (envId 0)
>> XMLDOMParser >> parseDocument (envId 0)
>> SAXHandler class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
>> XMLDOMParser class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
>> SAXHandler class >> parseDocumentFrom:persistentRoot: (envId 0)
>> SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
>> [] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
>> ExecBlock >> on:do: (envId 0)
>> SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
>> Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
>> Behavior >> readSixxFrom: (envId 0)
>>
>> Considerations ?
>>
>> Thanks,
>>
>> Dario
>>
>> P.S.  I have another  3.1.0.6    stone where i have:
>>
>> ConfigurationOfGsSIXX project currentVersion >=0.3-c.1 [ConfigurationOfGsSIXX]
>>
>> ConfigurationOfXMLSupport project currentVersion  >=1.2.2.1 [ConfigurationOfXMLSupport]
>>
>> Into it  all works fine.
>>
>> The sixx file created into it   can reading  into  the devkit  tODE stone  without problem
>>
>>
>> _______________________________________________
>> Glass mailing list
>> [hidden email]
>> http://lists.gemtalksystems.com/mailman/listinfo/glass
>
> _______________________________________________
> Glass mailing list
> [hidden email]
> http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
Reply | Threaded
Open this post in threaded view
|

Re: [Glass] Sixx problematic

GLASS mailing list
In reply to this post by GLASS mailing list

Ciao Mariano,

Hi Dario,

I was planning to write a whole detailed post about how I finally manage to serialize and materialize using SIXX, with UTF8 and without running out of memory. 

Let me paste the code here.... it contains a LOT of comments because I wanted to explain the reasons. Paste it in GemStone so that you can read it better. 


serialize: anObject toSixxFile: aFilename
| stream codec persistentKey persistentDict file  |
" First, let's be sure to use UTF8 encoding"
codec := GRCodec forEncoding: 'utf8'.
" Note that we do the whole serializion to a in memory stream rather than directly to file."
stream := codec encoderFor: String new writeStream.

"The persistentKey can be whatever...just something unique for the time the serialization is running"
persistentKey := ('SIXX_ROOT_ARRAY', UUID new asString) asSymbol.
" We need a persistent place to hold sixx temporal persisting roots. While you can put these roots directly in UserGlobals
I don't do that because if I fire multiple serializations in paralel, I will get Write-Write conflict in UserGlobals (multiple gems doing at:ifAbsentPut:)
Therefore, I define only one entry in UserGlobals and I store there a Reduced Conflict instance: a RcKeyValueDictionary. That way, even with multiple gems
doing exports / imports, I won't get a Write-Write conflict (at least for the UserGlobals at:ifAbsentPut: case). "
persistentDict := UserGlobals at: #LargeSIXXExportsAndImportRoots ifAbsentPut: [ RcKeyValueDictionary new ].

[ "With #commitOnAlmostOutOfMemoryDuring:  we force commits (and hence new persistent objects could go to disk now freeing memory) if we are about to run out of memory"
  MCPlatformSupport commitOnAlmostOutOfMemoryDuring: [
    persistentDict at: persistentKey put: Array new.
"This is the SIXX hook that allow us to specifiy a persistent root. "
      anObject sixxOn: stream persistentRoot: (persistentDict at: persistentKey)
  ].
"Just be jure to remove entry for the temp root because we do not need it anymore"
] ensure: [ persistentDict removeKey: persistentKey ifAbsent: [] ].

"Once the whole serialization was made into a memory stream it's time to write it to a file. Why we didn't write directly to a file from the beginning?
The reason is that GsFile, GsSocket and a few other cases have state that is associated to the session or gem being run. In addition, SIXX stores the stream
in the persistent root array. Therefore, the GsFile could technically go to disk if the Gem needs more temp memory and then brough back. When this happens
the GsFile instance will be quite broken. "
stream flush.
file := (GsFile open: aFilename mode: 'w' onClient: false).
" Instead of using a UTF8 stream for the serialization, another possibility was to user a straight String stream at the beginning and 
now at the end, convert the whole contents into a UTF encoded string. While it may be faster, I thought this approach would require two large arrays in memory
and since we are trying not to run out of memory, I thoguht the current solution is better. But I might be wrong. "
file nextPutAll: stream contents.
file flush.






materializeFromSixxFile: aFilename
" Please read the comments of #serialize:toSixxFile: since most of them applies to the materialization as well"
| codec stream object context persistentKey persistentDict |
persistentKey := ('SIXX_ROOT_ARRAY', Object new identityHash asString) asSymbol.
codec := GRCodec forEncoding: 'utf8'.
" Here, again, we read the whole file and get an in-memory readStream to avoid the problem of the GsFile being persisted"
stream := codec decoderFor: (FileStream oldFileNamed: aFilename) binary contents readStream.
persistentDict := UserGlobals at: #LargeSIXXExportsAndImportRoots ifAbsentPut: [ RcKeyValueDictionary new ].
MCPlatformSupport commitOnAlmostOutOfMemoryDuring: [
  persistentDict at: persistentKey put: Array new.
context := SixxContext forRead.
object := Object readSixxFrom: stream
       context: context
 persistentRoot: (persistentDict at: persistentKey)
].
] ensure: [ persistentDict removeKey: persistentKey ].
^ object




Did it work? 

I have do it,  it work in my tODE stones.

I can save and load sixx file without error.

Thanks,

Dario





On Tue, Mar 10, 2015 at 3:06 PM, Dario Trussardi via Glass <[hidden email]> wrote:
Ciao,

        I have a devkit tODE stone create with   createTodeStone  devkit  3.1.0.6

into it i load:

GsDeployer
  bulkMigrate: [
    {#( 'XMLSupport' '1.2.2' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
        #('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
    #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
    #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
      do: [ :ar |
        | projectName version repository |
        projectName := ar at: 1.
        version := ar at: 2.
        repository := ar at: 3.
        Metacello new
          configuration: projectName;
          repository: repository;
          get.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          onUpgrade: [ :ex :existing :new |
                existing locked
                  ifTrue: [ ex disallow ]
                  ifFalse: [ ex allow ] ];
          onConflict: [ :ex | ex disallow ];
          load.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          lock ] ]

and:

GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: '<a href="github://glassdb/SIXX:master/repository'">github://glassdb/SIXX:master/repository';
      load ].

A this point the        SixxExamples example2           works fine.





Now i can save a sixx file relative to my data  application     anEnv link       with:

        writeObject: anEnv toFile: aFilename inFolder: aDirectoryPath

        | fileStream sws |

        fileStream := ( FileDirectory on: aDirectoryPath) newFileNamed: aFilename.

        sws := SixxWriteStream on: fileStream.

        sws nextPut: anEnv.
        sws close.





After when i do the command:  ^Object readSixxFrom: fileStream contents.

to read the sixx file create above the system answer the error:

a SixxXmlParseError occurred (error 2710) -  G/S[Scandella3106 devkit:1]

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal: (envId 0)
AbstractException class >> signal: (envId 0)
XMLTokenizer >> parseError: (envId 0)
XMLTokenizer >> errorExpected: (envId 0)
XMLTokenizer >> nextLiteral (envId 0)
XMLTokenizer >> nextPCDataDelimitedBy:putOn: (envId 0)
[] in  XMLTokenizer >> nextPCData (envId 0)
XMLNestedStreamWriter >> writeWith: (envId 0)
XMLTokenizer >> nextPCData (envId 0)
XMLTokenizer >> nextToken (envId 0)
XMLParser >> parseToken (envId 0)
XMLParser >> parseDocument (envId 0)
SAXHandler >> parseDocument (envId 0)
XMLDOMParser >> parseDocument (envId 0)
SAXHandler class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
XMLDOMParser class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
SAXHandler class >> parseDocumentFrom:persistentRoot: (envId 0)
SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)

Considerations ?

Thanks,

        Dario

P.S.  I have another  3.1.0.6    stone where i have:

        ConfigurationOfGsSIXX project currentVersion >=0.3-c.1 [ConfigurationOfGsSIXX]

        ConfigurationOfXMLSupport project currentVersion  >=1.2.2.1 [ConfigurationOfXMLSupport]

        Into it  all works fine.

        The sixx file created into it   can reading  into  the devkit  tODE stone  without problem


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass



--


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
Reply | Threaded
Open this post in threaded view
|

Re: [Glass] Sixx problematic

GLASS mailing list
In reply to this post by GLASS mailing list
Likely suspects in from working stone package list (XMLSupport ???):

   SIXX (SIXX.310-PaulDeBruicker.182)
   XML-Observable (XML-Observable-JohanBrichau.1)
   XML-Parser (XML-Parser.g-dkh.122)
   XML-Writer (XML-Writer-JAAyer.5)

and from failing stone package list (XMLSupport 1.2.2):

   SIXX (SIXX.310-dkh.183)
   XML-Observable (XML-Observable-JohanBrichau.1)
   XML-Parser (XML-Parser.g-NorbertHartl.119)
   XML-Writer (XML-Writer-JAAyer.5)


It's interesting that for the "working stone" you are using XML-Parser.g-dkh.122 and that package version is not in "any of the ConfigurationOfXMLSupport" versions.

According to the commit comment XML-Parser.g-dkh.122:
    final sent but not implemented for https://github.com/glassdb/glass/issues/39 bugfix?[1]


According to a comment in Issue #39 for glass[2], I created version XMLSupprt 1.2.2.1 with a reference to XML-Parser.g-dkh.122, but a quick search through the configurations for XMLSupport did not reveal a 1.2.2.1 version .. until I peeked at http://www.squeaksource.com/MetacelloRepository/ and found ConfigurationOfXMLSupport-dkh.69 with the 1.2.2.1 version
  ... It turns out that Monty had written a new version of ConfigurationOfXMLSupport-monty.70, but neglected to merge his changes into ConfigurationOfXMLSupport-dkh.69, so 1.2.2.1 was lost ...

Sooooo, I've copied ConfigurationOfXMLSupport-dkh.69 to http://seaside.gemstone.com/ss/MetacelloRepository and you should change your load spec for XMLSupport to the following

   #( 'XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository')

It appears that Mariano's workspace has helped you to get going, but I do believe that 1.2.2.1 is the version of XMLSupprt you should be using, until we can port SIXX (and any other projects that depend upon XMLSupport) to use the newer versions of XMLSupport ...

Dale

[1] https://github.com/GsDevKit/GsDevKit/issues/39
[2] https://github.com/GsDevKit/GsDevKit/issues/39#issuecomment-58772264

On 03/10/2015 01:54 PM, Dario Trussardi via Glass wrote:

> Dale,
>
>
>> Dario,
>>
>> You have a stone that works and a stone that does not ... I would like to understand the differences in packages loaded between the two (for example XMLSupport 1.2.2 my not be the correct version to use for SIXX ...)
>>
>> Use the following to list the packages in each stone:
>>
>>   | stream |
>>   stream := WriteStream on: String new.
>>   (MCWorkingCopy allManagers sorted: [ :a :b | a packageName < b packageName ])
>>     do: [ :wc |
>>       stream
>>         nextPutAll: wc description;
>>         cr ].
>>   stream contents
> The stone that works reports:
>
> 'Announcements (Announcements.v3-dkh.18)
> Base-Bootstrap (Base-Bootstrap.v3-dkh.29)
> BaselineOfDtrLogin (BaselineOfDtrLogin-DTR.8)
> BaselineOfDtrMOL (BaselineOfDtrMOL-DTR.2)
> BaselineOfDtrSupport (BaselineOfDtrSupport-DTR.3)
> BaselineOfFileTree (BaselineOfFileTree-dkh.4)
> BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
> BaselineOfMetacello (BaselineOfMetacello-dkh.85)
> BaselineOfSIXX (BaselineOfSIXX-dkh.1)
> * Bootstrap (Bootstrap.v3-DaleHenrichs.230)
> Change-Notification (Change-Notification.v3-dkh.20)
> Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
> Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-dkh.11)
> Collections-Support (Collections-Support.g-dkh.46)
> ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.10)
> ConfigurationOfDtrSupport (ConfigurationOfDtrSupport-DTR.1)
> ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.66)
> ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
> ConfigurationOfGofer (ConfigurationOfGofer-dkh.44)
> ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-DaleHenrichs.21)
> ConfigurationOfGrease (ConfigurationOfGrease-dkh.270)
> ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
> ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
> ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
> ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
> ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.89)
> ConfigurationOfGsSIXX (ConfigurationOfGsSIXX-dkh.11)
> ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
> ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
> ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
> ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
> ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
> ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
> ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
> ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
> * ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
> ConfigurationOfSeaside3 (ConfigurationOfSeaside3-JohanBrichau.218)
> ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
> ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
> ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
> ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
> ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.69)
> ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
> ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
> * Core (Core.v3-DaleHenrichs.76)
> * Crossfade (Crossfade-pmm.8)
> CSSBarGraph (CSSBarGraph-pmm.11)
> DTRAlbums (DTRAlbums-DTR.451)
> DtrAssociazioni (DtrAssociazioni-DTR.5)
> DtrBase (DtrBase-DTR.418)
> * DTRCassa (DTRCassa-DTR.21)
> DtrConfig (DtrConfig-DTR.412)
> DTRConfigGruppi (DTRConfigGruppi-DTR.1)
> DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
> DTRCore (DTRCore-DTR.417)
> DtrCrossfade (DtrCrossfade-DTR.408)
> DtrCRP (DtrCRP-DTR.411)
> DtrFinanza (DtrFinanza-DTR.417)
> DtrGestionale (DtrGestionale-DTR.412)
> DtrGoogle (DtrGoogle-DTR.408)
> DtrLogin (DtrLogin-DTR.426)
> DtrMA (DtrMA-DTR.410)
> DtrMagazzino (DtrMagazzino-DTR.412)
> DtrMagritteAuto (DtrMagritteAuto-DTR.407)
> * DtrMenuOnLine (DtrMenuOnLine-DTR.416)
> DTRMetaDb (DTRMetaDb-DTR.5)
> * DtrMicroObj (DtrMicroObj-DTR.414)
> DtrMRP (DtrMRP-DTR.408)
> DTROnlyForOODB (DTROnlyForOODB-DTR.186)
> DTRPier (DTRPier-DTR.445)
> DtrPrinterTicket (DtrPrinterTicket-DTR.5)
> DtrRedu (DtrRedu-DTR.405)
> DtrReduPorting (DtrReduPorting-DTR.407)
> FastCGI (FastCGI-dkh.33)
> FastCGIPool (FastCGIPool-dkh.2)
> GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.9)
> GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
> GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.3)
> GemStone-Release-Support (GemStone-Release-Support-dkh.67)
> Gofer-Core (Gofer-Core.gemstone-dkh.137)
> GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
> * GoogleMaps (GoogleMaps-jgf.23)
> Grease-Core (Grease-Core-JohanBrichau.94)
> Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
> Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
> Grease-Tests-Core (Grease-Tests-Core-pmm.99)
> Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
> GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.10)
> GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
> GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
> GsUpgrader-Core (GsUpgrader-Core-dkh.38)
> JadeServer (JadeServer-dkh.13)
> Javascript-Core (Javascript-Core-pmm.94)
> Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
> Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
> Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
> JQuery-Core (JQuery-Core-lr.123)
> JQuery-Extensions (JQuery-Extensions-DTR.7)
> JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
> JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
> JQuery-UI (JQuery-UI.gemstone-dkh.81)
> JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
> JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
> JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
> JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
> Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
> Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
> Magritte-Json (Magritte-Json-NickAger.18)
> Magritte-Model (Magritte-Model-NickAger.431)
> * Magritte-Seaside (Magritte-Seaside-NickAger.355)
> Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
> Metacello-Base (Metacello-Base-dkh.123)
> Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
> Metacello-Core (Metacello-Core-dkh.806)
> Metacello-FileTree (Metacello-FileTree-dkh.36)
> Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
> Metacello-GitHub (Metacello-GitHub-dkh.44)
> Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
> Metacello-MC (Metacello-MC-dkh.722)
> Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
> Metacello-ToolBox (Metacello-ToolBox-dkh.139)
> Monticello (Monticello.v3-dkh.456)
> * MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.166)
> MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
> NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
> NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
> OB-GemStone-Platform (OB-GemStone-Platform-dkh.69)
> OB-Metacello (OB-Metacello-dkh.83)
> OB-Monticello (OB-Monticello-DaleHenrichs.103)
> OB-Standard (OB-Standard.v3-dkh.448)
> OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
> OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
> OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
> OB-Tools (OB-Tools.v3-dkh.136)
> OmniBrowser (OmniBrowser-DaleHenrichs.447)
> PackageInfo-Base (PackageInfo-Base.g-dkh.36)
> Pier-Admin (Pier-Admin-NickAger.87)
> Pier-Blog (Pier-Blog-NickAger.158)
> Pier-Book (Pier-Book.gemstone-NickAger.159)
> Pier-Design (Pier-Design-NickAger.12)
> Pier-Documents (Pier-Documents-NickAger.29)
> Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
> Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
> Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
> Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
> Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
> Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
> Pier-Google (Pier-Google-NickAger.20)
> Pier-JQuery (Pier-JQuery-NickAger.13)
> Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
> Pier-LinkChecker (Pier-LinkChecker-lr.7)
> Pier-Model (Pier-Model-NickAger.424)
> * Pier-Seaside (Pier-Seaside-NickAger.536)
> * Pier-Security (Pier-Security-NickAger.184)
> Pier-Shout (Pier-Shout-NickAger.5)
> Pier-TagCloud (Pier-TagCloud-NickAger.26)
> Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
> Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
> Prototype-Core (Prototype-Core-lr.25)
> Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
> Regex-Core (Regex-Core-DaleHenrichs.3)
> Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
> RSS-Core (RSS-Core-lr.67)
> RSS-Examples (RSS-Examples-lr.26)
> RSS-Tests-Core (RSS-Tests-Core-lr.30)
> * Scriptaculous-Components (Scriptaculous-Components-lr.111)
> Scriptaculous-Core (Scriptaculous-Core-pmm.102)
> Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
> Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
> Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
> Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
> Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
> Seaside-Component (Seaside-Component-jok.92)
> * Seaside-Core (Seaside-Core.gemstone-dkh.774)
> * Seaside-Development (Seaside-Development-pmm.156)
> Seaside-Email (Seaside-Email-PaulDeBruicker.24)
> Seaside-Environment (Seaside-Environment-NickAger.77)
> Seaside-Examples (Seaside-Examples-lr.23)
> Seaside-FileSystem (Seaside-FileSystem-pmm.26)
> Seaside-Flow (Seaside-Flow-pmm.23)
> Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
> Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
> Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
> Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
> Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
> Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
> Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
> Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
> Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
> * Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
> Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
> Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
> Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
> Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
> Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
> Seaside-HTML5 (Seaside-HTML5-pmm.28)
> Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
> Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
> Seaside-Session (Seaside-Session.gemstone-dkh.158)
> Seaside-Swazoo (Seaside-Swazoo-pmm.20)
> Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
> Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
> Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
> Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
> Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
> Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
> Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
> Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
> Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
> Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
> Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
> Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
> Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
> Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
> Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
> Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
> Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
> Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
> Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
> Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
> Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
> Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
> Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
> Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
> Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
> * Seaside-Welcome (Seaside-Welcome-NickAger.40)
> Seaside-Widgets (Seaside-Widgets-lr.26)
> Shout-Parsing (Shout-Parsing-NickAger.3)
> SIXX (SIXX.310-PaulDeBruicker.182)
> SMTPMail (SMTPMail-dkh.11)
> SocketStream (SocketStream-PaulDeBruicker.12)
> Sport (Sport3.010.v3-dkh.29)
> * Squeak (Squeak.v3-DaleHenrichs.298)
> Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
> System-Digital-Signatures (System-Digital-Signatures-dkh.5)
> TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
> TopFeeder-Model (TopFeeder-Model-NickAger.5)
> TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
> Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
> Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
> Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
> Utf8Encoding (Utf8Encoding.310-dkh.30)
> XML-Observable (XML-Observable-JohanBrichau.1)
> XML-Parser (XML-Parser.g-dkh.122)
> XML-Writer (XML-Writer-JAAyer.5)
> Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
> Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
> * Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)'
>
>
>
>
> The stone does not work report:
>
> 'Announcements (Announcements.v3-dkh.18)
> AST-Core (AST-Core-dkh.102)
> Base-Bootstrap (Base-Bootstrap.v3-dkh.30)
> BaselineOfFileTree (BaselineOfFileTree-dkh.4)
> BaselineOfGLASS1 (BaselineOfGLASS1-dkh.43)
> BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
> BaselineOfMetacello (BaselineOfMetacello-dkh.85)
> BaselineOfRB (BaselineOfRB-dkh.5)
> BaselineOfSIXX (BaselineOfSIXX-dkh.1)
> BaselineOfSton (BaselineOfSton-dkh.1)
> BaselineOfTode (BaselineOfTode-dkh.41)
> * Bootstrap (Bootstrap.v3-dkh.241)
> Change-Notification (Change-Notification.v310-dkh.21)
> Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
> Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-JohanBrichau.9)
> Collections-Support (Collections-Support.g-OttoBehrens.45)
> ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.11)
> ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.36)
> ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
> ConfigurationOfGofer (ConfigurationOfGofer-dkh.45)
> ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-dkh.22)
> ConfigurationOfGrease (ConfigurationOfGrease-dkh.189)
> ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
> ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
> ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
> ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
> ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.91)
> ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
> ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
> ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
> ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
> ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
> ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
> ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
> ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
> ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
> ConfigurationOfSeaside3 (ConfigurationOfSeaside3-dkh.222)
> ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
> ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
> ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
> ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
> ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-NorbertHartl.64)
> ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
> ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
> * Core (Core.v3-dkh.90)
> Core31x (Core31x-dkh.5)
> * Crossfade (Crossfade-pmm.8)
> CSSBarGraph (CSSBarGraph-pmm.11)
> DtrBase (DtrBase-DTR.418)
> DTRCassa (DTRCassa-DTR.21)
> * DtrConfig (DtrConfig-DTR.412)
> DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
> DTRCore (DTRCore-DTR.417)
> DtrCrossfade (DtrCrossfade-DTR.408)
> DtrCRP (DtrCRP-DTR.411)
> DtrFinanza (DtrFinanza-DTR.417)
> DtrGestionale (DtrGestionale-DTR.412)
> DtrGoogle (DtrGoogle-DTR.408)
> DtrLogin (DtrLogin-DTR.426)
> DtrMA (DtrMA-DTR.410)
> DtrMagazzino (DtrMagazzino-DTR.412)
> DtrMagritteAuto (DtrMagritteAuto-DTR.407)
> DtrMenuOnLine (DtrMenuOnLine-DTR.416)
> DTRMetaDb (DTRMetaDb-DTR.5)
> DtrMicroObj (DtrMicroObj-DTR.414)
> DtrMRP (DtrMRP-DTR.408)
> DTROnlyForOODB (DTROnlyForOODB-DTR.186)
> DtrPrinterTicket (DtrPrinterTicket-DTR.5)
> DtrRedu (DtrRedu-DTR.405)
> DtrReduPorting (DtrReduPorting-DTR.408)
> FastCGI (FastCGI-dkh.33)
> FastCGIPool (FastCGIPool-dkh.2)
> GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.12)
> GemStone-Compression (GemStone-Compression-dkh.7)
> GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
> GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.4)
> GemStone-Interactions (GemStone-Interactions-dkh.12)
> GemStone-Release-Support (GemStone-Release-Support-dkh.67)
> * Generated ()
> Gofer-Core (Gofer-Core.gemstone-dkh.138)
> GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
> * GoogleMaps (GoogleMaps-jgf.23)
> Grease-Core (Grease-Core-JohanBrichau.94)
> Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
> Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
> Grease-Tests-Core (Grease-Tests-Core-pmm.99)
> Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
> * GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.20)
> GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
> GsSqueakCommon-CoreV30 (GsSqueakCommon-CoreV30-dkh.1)
> GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
> GsUpgrader-Core (GsUpgrader-Core-dkh.38)
> JadeServer (JadeServer-dkh.13)
> Javascript-Core (Javascript-Core-pmm.94)
> Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
> Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
> Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
> JQuery-Core (JQuery-Core-lr.123)
> JQuery-Extensions (JQuery-Extensions-DTR.7)
> JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
> JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
> JQuery-UI (JQuery-UI.gemstone-dkh.81)
> JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
> JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
> JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
> JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
> Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
> Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
> Magritte-Json (Magritte-Json-NickAger.18)
> Magritte-Model (Magritte-Model-NickAger.431)
> * Magritte-Seaside (Magritte-Seaside-NickAger.355)
> Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
> Metacello-Base (Metacello-Base-topa.124)
> Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
> Metacello-Core (Metacello-Core-dkh.809)
> Metacello-FileTree (Metacello-FileTree-dkh.36)
> Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
> Metacello-GitHub (Metacello-GitHub-dkh.44)
> Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
> Metacello-MC (Metacello-MC-dkh.726)
> Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
> Metacello-ToolBox (Metacello-ToolBox-dkh.139)
> Monticello (Monticello.v3-dkh.476)
> MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.183)
> MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
> MonticelloGs (MonticelloGs-dkh.2)
> NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
> NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
> OB-GemStone-Platform (OB-GemStone-Platform-dkh.76)
> OB-Metacello (OB-Metacello-dkh.83)
> OB-Monticello (OB-Monticello-dkh.105)
> OB-Standard (OB-Standard.v3-dkh.449)
> OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
> OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
> OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
> OB-Tools (OB-Tools.v3-dkh.140)
> OmniBrowser (OmniBrowser-DaleHenrichs.447)
> PackageInfo-Base (PackageInfo-Base.g-dkh.36)
> Pier-Admin (Pier-Admin-NickAger.87)
> Pier-Blog (Pier-Blog-NickAger.158)
> Pier-Book (Pier-Book.gemstone-NickAger.159)
> Pier-Design (Pier-Design-NickAger.12)
> Pier-Documents (Pier-Documents-NickAger.29)
> Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
> Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
> Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
> Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
> Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
> Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
> Pier-Google (Pier-Google-NickAger.20)
> Pier-JQuery (Pier-JQuery-NickAger.13)
> Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
> Pier-LinkChecker (Pier-LinkChecker-lr.7)
> Pier-Model (Pier-Model-NickAger.424)
> Pier-Seaside (Pier-Seaside-NickAger.536)
> Pier-Security (Pier-Security-NickAger.184)
> Pier-Shout (Pier-Shout-NickAger.5)
> Pier-TagCloud (Pier-TagCloud-NickAger.26)
> Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
> Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
> Prototype-Core (Prototype-Core-lr.25)
> Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
> Regex-Core (Regex-Core-DaleHenrichs.3)
> Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
> RSS-Core (RSS-Core-lr.67)
> RSS-Examples (RSS-Examples-lr.26)
> RSS-Tests-Core (RSS-Tests-Core-lr.30)
> * Scriptaculous-Components (Scriptaculous-Components-lr.111)
> Scriptaculous-Core (Scriptaculous-Core-pmm.102)
> Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
> Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
> Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
> Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
> Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
> Seaside-Component (Seaside-Component-jok.92)
> * Seaside-Core (Seaside-Core.gemstone-dkh.774)
> * Seaside-Development (Seaside-Development-pmm.156)
> Seaside-Email (Seaside-Email-PaulDeBruicker.24)
> Seaside-Environment (Seaside-Environment-NickAger.77)
> Seaside-Examples (Seaside-Examples-lr.23)
> Seaside-FileSystem (Seaside-FileSystem-pmm.26)
> Seaside-Flow (Seaside-Flow-pmm.23)
> Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
> Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
> Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
> Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
> Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
> Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
> Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
> Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
> Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
> * Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
> Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
> Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
> Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
> Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
> Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
> Seaside-HTML5 (Seaside-HTML5-pmm.28)
> Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
> Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
> Seaside-Session (Seaside-Session.gemstone-dkh.158)
> Seaside-Swazoo (Seaside-Swazoo-pmm.20)
> Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
> Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
> Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
> Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
> Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
> Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
> Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
> Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
> Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
> Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
> Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
> Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
> Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
> Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
> Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
> Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
> Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
> Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
> Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
> Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
> Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
> Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
> Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
> Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
> Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
> * Seaside-Welcome (Seaside-Welcome-NickAger.40)
> Seaside-Widgets (Seaside-Widgets-lr.26)
> Shout-Parsing (Shout-Parsing-NickAger.3)
> SIXX (SIXX.310-dkh.183)
> SMTPMail (SMTPMail-dkh.11)
> SocketStream (SocketStream-PaulDeBruicker.12)
> * Sport (Sport3.010.v3-dkh.32)
> * Squeak (Squeak.v3-dkh.309)
> * STON-Core (STON-Core-dkh.46)
> Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
> System-Digital-Signatures (System-Digital-Signatures-dkh.5)
> Tode-AST-Extensions (Tode-AST-Extensions-dkh.2)
> Tode-BatchEdit-Tool (Tode-BatchEdit-Tool-dkh.3)
> Tode-GemStone-Server-Core (Tode-GemStone-Server-Core-dkh.118)
> Tode-GemStone-Server-Tests (Tode-GemStone-Server-Tests-dkh.5)
> Tode-Server-31x-GsProcess-Patch (Tode-Server-31x-GsProcess-Patch-dkh.1)
> Tode-Server-TestTestTools (Tode-Server-TestTestTools-dkh.2)
> Topez-Common-Core (Topez-Common-Core-dkh.414)
> Topez-Common-Tests (Topez-Common-Tests-dkh.22)
> Topez-Server-31x-Core (Topez-Server-31x-Core-dkh.5)
> Topez-Server-31x-DebugTools (Topez-Server-31x-DebugTools-dkh.19)
> Topez-Server-31x-Tests (Topez-Server-31x-Tests-dkh.3)
> Topez-Server-3x-Core (Topez-Server-3x-Core-dkh.2)
> Topez-Server-3x-DebugTools (Topez-Server-3x-DebugTools-dkh.2)
> Topez-Server-Core (Topez-Server-Core-dkh.89)
> Topez-Server-DebugTools (Topez-Server-DebugTools-dkh.151)
> Topez-Server-ProcessTools (Topez-Server-ProcessTools-dkh.25)
> Topez-Server-TestDebugTools (Topez-Server-TestDebugTools-dkh.19)
> Topez-Server-Tests (Topez-Server-Tests-dkh.151)
> Topez-Server-TestTools (Topez-Server-TestTools-dkh.54)
> TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
> TopFeeder-Model (TopFeeder-Model-NickAger.5)
> TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
> Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
> Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
> Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
> Utf8Encoding (Utf8Encoding.310-dkh.32)
> XML-Observable (XML-Observable-JohanBrichau.1)
> XML-Parser (XML-Parser.g-NorbertHartl.119)
> XML-Writer (XML-Writer-JAAyer.5)
> Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
> Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
> * Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)
> '
>
> Thanks,
> Dario
>
>> Dale
>>
>> On 03/10/2015 11:06 AM, Dario Trussardi via Glass wrote:
>>> Ciao,
>>>
>>> I have a devkit tODE stone create with createTodeStone  devkit  3.1.0.6
>>>
>>> into it i load:
>>>
>>> GsDeployer
>>>    bulkMigrate: [
>>>      {#( 'XMLSupport' '1.2.2' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
>>> #('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
>>>      #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
>>>      #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
>>>      #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
>>>      #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
>>>      #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
>>>        do: [ :ar |
>>>          | projectName version repository |
>>>          projectName := ar at: 1.
>>>          version := ar at: 2.
>>>          repository := ar at: 3.
>>>          Metacello new
>>>            configuration: projectName;
>>>            repository: repository;
>>>            get.
>>>          Metacello new
>>>            configuration: projectName;
>>>            version: version;
>>>            repository: repository;
>>>            onUpgrade: [ :ex :existing :new |
>>>                  existing locked
>>>                    ifTrue: [ ex disallow ]
>>>                    ifFalse: [ ex allow ] ];
>>>            onConflict: [ :ex | ex disallow ];
>>>            load.
>>>          Metacello new
>>>            configuration: projectName;
>>>            version: version;
>>>            repository: repository;
>>>            lock ] ]
>>>
>>> and:
>>>
>>> GsDeployer bulkMigrate: [
>>>    Metacello new
>>>        baseline: 'SIXX';
>>>        repository: 'github://glassdb/SIXX:master/repository';
>>>        load ].
>>>
>>> A this point the SixxExamples example2 works fine.
>>>
>>>
>>>
>>>
>>>
>>> Now i can save a sixx file relative to my data  application   anEnv link with:
>>>
>>> writeObject: anEnv toFile: aFilename inFolder: aDirectoryPath
>>>
>>> | fileStream sws |
>>>
>>> fileStream := ( FileDirectory on: aDirectoryPath) newFileNamed: aFilename.
>>>
>>> sws := SixxWriteStream on: fileStream.
>>>
>>> sws nextPut: anEnv.
>>> sws close.
>>>
>>>
>>>
>>>
>>>
>>> After when i do the command:  ^Object readSixxFrom: fileStream contents.
>>>
>>> to read the sixx file create above the system answer the error:
>>>
>>> a SixxXmlParseError occurred (error 2710) -  G/S[Scandella3106 devkit:1]
>>>
>>> AbstractException >> _signalWith: (envId 0)
>>> AbstractException >> signal (envId 0)
>>> SixxPortableUtil class >> signalException: (envId 0)
>>> [] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
>>> AbstractException >> _executeHandler: (envId 0)
>>> AbstractException >> _signalWith: (envId 0)
>>> AbstractException >> signal: (envId 0)
>>> AbstractException class >> signal: (envId 0)
>>> XMLTokenizer >> parseError: (envId 0)
>>> XMLTokenizer >> errorExpected: (envId 0)
>>> XMLTokenizer >> nextLiteral (envId 0)
>>> XMLTokenizer >> nextPCDataDelimitedBy:putOn: (envId 0)
>>> [] in  XMLTokenizer >> nextPCData (envId 0)
>>> XMLNestedStreamWriter >> writeWith: (envId 0)
>>> XMLTokenizer >> nextPCData (envId 0)
>>> XMLTokenizer >> nextToken (envId 0)
>>> XMLParser >> parseToken (envId 0)
>>> XMLParser >> parseDocument (envId 0)
>>> SAXHandler >> parseDocument (envId 0)
>>> XMLDOMParser >> parseDocument (envId 0)
>>> SAXHandler class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
>>> XMLDOMParser class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
>>> SAXHandler class >> parseDocumentFrom:persistentRoot: (envId 0)
>>> SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
>>> [] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
>>> ExecBlock >> on:do: (envId 0)
>>> SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
>>> Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
>>> Behavior >> readSixxFrom: (envId 0)
>>>
>>> Considerations ?
>>>
>>> Thanks,
>>>
>>> Dario
>>>
>>> P.S.  I have another  3.1.0.6    stone where i have:
>>>
>>> ConfigurationOfGsSIXX project currentVersion >=0.3-c.1 [ConfigurationOfGsSIXX]
>>>
>>> ConfigurationOfXMLSupport project currentVersion  >=1.2.2.1 [ConfigurationOfXMLSupport]
>>>
>>> Into it  all works fine.
>>>
>>> The sixx file created into it   can reading  into  the devkit  tODE stone  without problem
>>>
>>>
>>> _______________________________________________
>>> Glass mailing list
>>> [hidden email]
>>> http://lists.gemtalksystems.com/mailman/listinfo/glass
>> _______________________________________________
>> Glass mailing list
>> [hidden email]
>> http://lists.gemtalksystems.com/mailman/listinfo/glass
> _______________________________________________
> Glass mailing list
> [hidden email]
> http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
Reply | Threaded
Open this post in threaded view
|

Re: [Glass] Sixx problematic

GLASS mailing list
Okay after further review I merge XMLSupport 1.2.2.1 into
ConfigurationOfXMLSupport-monty.70 and saved a new version of the
configuration (ConfigurationOfXMLSupport-dkh.71) and copied it to the
appropriate repositories ... so at least we have 1.2.2.1 around for
posterity ...

I have not been able to look into the issues with SIXX and XMLSupport
1.3.0 (the new version published by Monty) ... Monty assures me that the
tests all pass for GemStone, but I am not sure whether or not the places
that are/were dependent upon the older versions of XMLSupport (like
SIXX) are impacted by version 1.3.0 or not .... if so then locking and
loading XMLSupport 1.2.2.1 should put things right again ...

Dale

On 03/10/2015 03:07 PM, Dale Henrichs wrote:

> Likely suspects in from working stone package list (XMLSupport ???):
>
>   SIXX (SIXX.310-PaulDeBruicker.182)
>   XML-Observable (XML-Observable-JohanBrichau.1)
>   XML-Parser (XML-Parser.g-dkh.122)
>   XML-Writer (XML-Writer-JAAyer.5)
>
> and from failing stone package list (XMLSupport 1.2.2):
>
>   SIXX (SIXX.310-dkh.183)
>   XML-Observable (XML-Observable-JohanBrichau.1)
>   XML-Parser (XML-Parser.g-NorbertHartl.119)
>   XML-Writer (XML-Writer-JAAyer.5)
>
>
> It's interesting that for the "working stone" you are using
> XML-Parser.g-dkh.122 and that package version is not in "any of the
> ConfigurationOfXMLSupport" versions.
>
> According to the commit comment XML-Parser.g-dkh.122:
>    final sent but not implemented for
> https://github.com/glassdb/glass/issues/39 bugfix?[1]
>
>
> According to a comment in Issue #39 for glass[2], I created version
> XMLSupprt 1.2.2.1 with a reference to XML-Parser.g-dkh.122, but a
> quick search through the configurations for XMLSupport did not reveal
> a 1.2.2.1 version .. until I peeked at
> http://www.squeaksource.com/MetacelloRepository/ and found
> ConfigurationOfXMLSupport-dkh.69 with the 1.2.2.1 version
>  ... It turns out that Monty had written a new version of
> ConfigurationOfXMLSupport-monty.70, but neglected to merge his changes
> into ConfigurationOfXMLSupport-dkh.69, so 1.2.2.1 was lost ...
>
> Sooooo, I've copied ConfigurationOfXMLSupport-dkh.69 to
> http://seaside.gemstone.com/ss/MetacelloRepository and you should
> change your load spec for XMLSupport to the following
>
>   #( 'XMLSupport' '1.2.2.1'
> 'http://seaside.gemtalksystems.com/ss/MetacelloRepository')
>
> It appears that Mariano's workspace has helped you to get going, but I
> do believe that 1.2.2.1 is the version of XMLSupprt you should be
> using, until we can port SIXX (and any other projects that depend upon
> XMLSupport) to use the newer versions of XMLSupport ...
>
> Dale
>
> [1] https://github.com/GsDevKit/GsDevKit/issues/39
> [2] https://github.com/GsDevKit/GsDevKit/issues/39#issuecomment-58772264
>
> On 03/10/2015 01:54 PM, Dario Trussardi via Glass wrote:
>> Dale,
>>
>>
>>> Dario,
>>>
>>> You have a stone that works and a stone that does not ... I would
>>> like to understand the differences in packages loaded between the
>>> two (for example XMLSupport 1.2.2 my not be the correct version to
>>> use for SIXX ...)
>>>
>>> Use the following to list the packages in each stone:
>>>
>>>   | stream |
>>>   stream := WriteStream on: String new.
>>>   (MCWorkingCopy allManagers sorted: [ :a :b | a packageName < b
>>> packageName ])
>>>     do: [ :wc |
>>>       stream
>>>         nextPutAll: wc description;
>>>         cr ].
>>>   stream contents
>> The stone that works reports:
>>
>> 'Announcements (Announcements.v3-dkh.18)
>> Base-Bootstrap (Base-Bootstrap.v3-dkh.29)
>> BaselineOfDtrLogin (BaselineOfDtrLogin-DTR.8)
>> BaselineOfDtrMOL (BaselineOfDtrMOL-DTR.2)
>> BaselineOfDtrSupport (BaselineOfDtrSupport-DTR.3)
>> BaselineOfFileTree (BaselineOfFileTree-dkh.4)
>> BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
>> BaselineOfMetacello (BaselineOfMetacello-dkh.85)
>> BaselineOfSIXX (BaselineOfSIXX-dkh.1)
>> * Bootstrap (Bootstrap.v3-DaleHenrichs.230)
>> Change-Notification (Change-Notification.v3-dkh.20)
>> Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
>> Collections-OrderPreservingDictionary
>> (Collections-OrderPreservingDictionary.g-dkh.11)
>> Collections-Support (Collections-Support.g-dkh.46)
>> ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.10)
>> ConfigurationOfDtrSupport (ConfigurationOfDtrSupport-DTR.1)
>> ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.66)
>> ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
>> ConfigurationOfGofer (ConfigurationOfGofer-dkh.44)
>> ConfigurationOfGoferProjectLoader
>> (ConfigurationOfGoferProjectLoader-DaleHenrichs.21)
>> ConfigurationOfGrease (ConfigurationOfGrease-dkh.270)
>> ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
>> ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
>> ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
>> ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
>> ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.89)
>> ConfigurationOfGsSIXX (ConfigurationOfGsSIXX-dkh.11)
>> ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
>> ConfigurationOfJQueryWidgetBox
>> (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
>> ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
>> ConfigurationOfMagritte3AddOns
>> (ConfigurationOfMagritte3AddOns-NickAger.23)
>> ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
>> ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
>> ConfigurationOfNAFileUpload
>> (ConfigurationOfNAFileUpload-StephanEggermont.6)
>> ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
>> * ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
>> ConfigurationOfSeaside3 (ConfigurationOfSeaside3-JohanBrichau.218)
>> ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
>> ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
>> ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
>> ConfigurationOfTwitterBootstrap
>> (ConfigurationOfTwitterBootstrap-DiegoLont.16)
>> ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.69)
>> ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
>> ConfigurationOfZincHTTPComponents
>> (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
>> * Core (Core.v3-DaleHenrichs.76)
>> * Crossfade (Crossfade-pmm.8)
>> CSSBarGraph (CSSBarGraph-pmm.11)
>> DTRAlbums (DTRAlbums-DTR.451)
>> DtrAssociazioni (DtrAssociazioni-DTR.5)
>> DtrBase (DtrBase-DTR.418)
>> * DTRCassa (DTRCassa-DTR.21)
>> DtrConfig (DtrConfig-DTR.412)
>> DTRConfigGruppi (DTRConfigGruppi-DTR.1)
>> DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
>> DTRCore (DTRCore-DTR.417)
>> DtrCrossfade (DtrCrossfade-DTR.408)
>> DtrCRP (DtrCRP-DTR.411)
>> DtrFinanza (DtrFinanza-DTR.417)
>> DtrGestionale (DtrGestionale-DTR.412)
>> DtrGoogle (DtrGoogle-DTR.408)
>> DtrLogin (DtrLogin-DTR.426)
>> DtrMA (DtrMA-DTR.410)
>> DtrMagazzino (DtrMagazzino-DTR.412)
>> DtrMagritteAuto (DtrMagritteAuto-DTR.407)
>> * DtrMenuOnLine (DtrMenuOnLine-DTR.416)
>> DTRMetaDb (DTRMetaDb-DTR.5)
>> * DtrMicroObj (DtrMicroObj-DTR.414)
>> DtrMRP (DtrMRP-DTR.408)
>> DTROnlyForOODB (DTROnlyForOODB-DTR.186)
>> DTRPier (DTRPier-DTR.445)
>> DtrPrinterTicket (DtrPrinterTicket-DTR.5)
>> DtrRedu (DtrRedu-DTR.405)
>> DtrReduPorting (DtrReduPorting-DTR.407)
>> FastCGI (FastCGI-dkh.33)
>> FastCGIPool (FastCGIPool-dkh.2)
>> GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.9)
>> GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
>> GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.3)
>> GemStone-Release-Support (GemStone-Release-Support-dkh.67)
>> Gofer-Core (Gofer-Core.gemstone-dkh.137)
>> GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
>> * GoogleMaps (GoogleMaps-jgf.23)
>> Grease-Core (Grease-Core-JohanBrichau.94)
>> Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
>> Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
>> Grease-Tests-Core (Grease-Tests-Core-pmm.99)
>> Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
>> GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.10)
>> GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
>> GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
>> GsUpgrader-Core (GsUpgrader-Core-dkh.38)
>> JadeServer (JadeServer-dkh.13)
>> Javascript-Core (Javascript-Core-pmm.94)
>> Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
>> Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
>> Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
>> JQuery-Core (JQuery-Core-lr.123)
>> JQuery-Extensions (JQuery-Extensions-DTR.7)
>> JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
>> JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
>> JQuery-UI (JQuery-UI.gemstone-dkh.81)
>> JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
>> JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
>> JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
>> JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
>> Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
>> Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
>> Magritte-Json (Magritte-Json-NickAger.18)
>> Magritte-Model (Magritte-Model-NickAger.431)
>> * Magritte-Seaside (Magritte-Seaside-NickAger.355)
>> Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
>> Metacello-Base (Metacello-Base-dkh.123)
>> Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
>> Metacello-Core (Metacello-Core-dkh.806)
>> Metacello-FileTree (Metacello-FileTree-dkh.36)
>> Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
>> Metacello-GitHub (Metacello-GitHub-dkh.44)
>> Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
>> Metacello-MC (Metacello-MC-dkh.722)
>> Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
>> Metacello-ToolBox (Metacello-ToolBox-dkh.139)
>> Monticello (Monticello.v3-dkh.456)
>> * MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.166)
>> MonticelloFileTree-FileDirectory-Utilities
>> (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
>> NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
>> NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
>> OB-GemStone-Platform (OB-GemStone-Platform-dkh.69)
>> OB-Metacello (OB-Metacello-dkh.83)
>> OB-Monticello (OB-Monticello-DaleHenrichs.103)
>> OB-Standard (OB-Standard.v3-dkh.448)
>> OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
>> OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
>> OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
>> OB-Tools (OB-Tools.v3-dkh.136)
>> OmniBrowser (OmniBrowser-DaleHenrichs.447)
>> PackageInfo-Base (PackageInfo-Base.g-dkh.36)
>> Pier-Admin (Pier-Admin-NickAger.87)
>> Pier-Blog (Pier-Blog-NickAger.158)
>> Pier-Book (Pier-Book.gemstone-NickAger.159)
>> Pier-Design (Pier-Design-NickAger.12)
>> Pier-Documents (Pier-Documents-NickAger.29)
>> Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
>> Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
>> Pier-FileUpload-Common-Wysiwyg
>> (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
>> Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
>> Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
>> Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
>> Pier-Google (Pier-Google-NickAger.20)
>> Pier-JQuery (Pier-JQuery-NickAger.13)
>> Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
>> Pier-LinkChecker (Pier-LinkChecker-lr.7)
>> Pier-Model (Pier-Model-NickAger.424)
>> * Pier-Seaside (Pier-Seaside-NickAger.536)
>> * Pier-Security (Pier-Security-NickAger.184)
>> Pier-Shout (Pier-Shout-NickAger.5)
>> Pier-TagCloud (Pier-TagCloud-NickAger.26)
>> Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
>> Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
>> Prototype-Core (Prototype-Core-lr.25)
>> Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
>> Regex-Core (Regex-Core-DaleHenrichs.3)
>> Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
>> RSS-Core (RSS-Core-lr.67)
>> RSS-Examples (RSS-Examples-lr.26)
>> RSS-Tests-Core (RSS-Tests-Core-lr.30)
>> * Scriptaculous-Components (Scriptaculous-Components-lr.111)
>> Scriptaculous-Core (Scriptaculous-Core-pmm.102)
>> Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
>> Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
>> Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
>> Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
>> Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
>> Seaside-Component (Seaside-Component-jok.92)
>> * Seaside-Core (Seaside-Core.gemstone-dkh.774)
>> * Seaside-Development (Seaside-Development-pmm.156)
>> Seaside-Email (Seaside-Email-PaulDeBruicker.24)
>> Seaside-Environment (Seaside-Environment-NickAger.77)
>> Seaside-Examples (Seaside-Examples-lr.23)
>> Seaside-FileSystem (Seaside-FileSystem-pmm.26)
>> Seaside-Flow (Seaside-Flow-pmm.23)
>> Seaside-GemStone-Adaptors-Swazoo
>> (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
>> Seaside-GemStone-Basic-Development
>> (Seaside-GemStone-Basic-Development-NickAger.25)
>> Seaside-GemStone-Continuation
>> (Seaside-GemStone-Continuation-DaleHenrichs.20)
>> Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
>> Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
>> Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
>> Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
>> Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
>> Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
>> * Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
>> Seaside-GemStone-Tools-OmniBrowser
>> (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
>> Seaside-GemStone-Tools-Production
>> (Seaside-GemStone-Tools-Production-dkh.13)
>> Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
>> Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
>> Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
>> Seaside-HTML5 (Seaside-HTML5-pmm.28)
>> Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
>> Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
>> Seaside-Session (Seaside-Session.gemstone-dkh.158)
>> Seaside-Swazoo (Seaside-Swazoo-pmm.20)
>> Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
>> Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
>> Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
>> Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
>> Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
>> Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
>> Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
>> Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
>> Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
>> Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
>> Seaside-Tests-GemStone-Continuation
>> (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
>> Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
>> Seaside-Tests-GemStone-Development
>> (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
>> Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
>> Seaside-Tests-GemStone-Functional
>> (Seaside-Tests-GemStone-Functional-dkh.12)
>> Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
>> Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
>> Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
>> Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
>> Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
>> Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
>> Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
>> Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
>> Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
>> Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
>> * Seaside-Welcome (Seaside-Welcome-NickAger.40)
>> Seaside-Widgets (Seaside-Widgets-lr.26)
>> Shout-Parsing (Shout-Parsing-NickAger.3)
>> SIXX (SIXX.310-PaulDeBruicker.182)
>> SMTPMail (SMTPMail-dkh.11)
>> SocketStream (SocketStream-PaulDeBruicker.12)
>> Sport (Sport3.010.v3-dkh.29)
>> * Squeak (Squeak.v3-DaleHenrichs.298)
>> Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
>> System-Digital-Signatures (System-Digital-Signatures-dkh.5)
>> TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
>> TopFeeder-Model (TopFeeder-Model-NickAger.5)
>> TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
>> Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
>> Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
>> Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
>> Utf8Encoding (Utf8Encoding.310-dkh.30)
>> XML-Observable (XML-Observable-JohanBrichau.1)
>> XML-Parser (XML-Parser.g-dkh.122)
>> XML-Writer (XML-Writer-JAAyer.5)
>> Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
>> Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
>> * Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)'
>>
>>
>>
>>
>> The stone does not work report:
>>
>> 'Announcements (Announcements.v3-dkh.18)
>> AST-Core (AST-Core-dkh.102)
>> Base-Bootstrap (Base-Bootstrap.v3-dkh.30)
>> BaselineOfFileTree (BaselineOfFileTree-dkh.4)
>> BaselineOfGLASS1 (BaselineOfGLASS1-dkh.43)
>> BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
>> BaselineOfMetacello (BaselineOfMetacello-dkh.85)
>> BaselineOfRB (BaselineOfRB-dkh.5)
>> BaselineOfSIXX (BaselineOfSIXX-dkh.1)
>> BaselineOfSton (BaselineOfSton-dkh.1)
>> BaselineOfTode (BaselineOfTode-dkh.41)
>> * Bootstrap (Bootstrap.v3-dkh.241)
>> Change-Notification (Change-Notification.v310-dkh.21)
>> Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
>> Collections-OrderPreservingDictionary
>> (Collections-OrderPreservingDictionary.g-JohanBrichau.9)
>> Collections-Support (Collections-Support.g-OttoBehrens.45)
>> ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.11)
>> ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.36)
>> ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
>> ConfigurationOfGofer (ConfigurationOfGofer-dkh.45)
>> ConfigurationOfGoferProjectLoader
>> (ConfigurationOfGoferProjectLoader-dkh.22)
>> ConfigurationOfGrease (ConfigurationOfGrease-dkh.189)
>> ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
>> ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
>> ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
>> ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
>> ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.91)
>> ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
>> ConfigurationOfJQueryWidgetBox
>> (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
>> ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
>> ConfigurationOfMagritte3AddOns
>> (ConfigurationOfMagritte3AddOns-NickAger.23)
>> ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
>> ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
>> ConfigurationOfNAFileUpload
>> (ConfigurationOfNAFileUpload-StephanEggermont.6)
>> ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
>> ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
>> ConfigurationOfSeaside3 (ConfigurationOfSeaside3-dkh.222)
>> ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
>> ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
>> ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
>> ConfigurationOfTwitterBootstrap
>> (ConfigurationOfTwitterBootstrap-DiegoLont.16)
>> ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-NorbertHartl.64)
>> ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
>> ConfigurationOfZincHTTPComponents
>> (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
>> * Core (Core.v3-dkh.90)
>> Core31x (Core31x-dkh.5)
>> * Crossfade (Crossfade-pmm.8)
>> CSSBarGraph (CSSBarGraph-pmm.11)
>> DtrBase (DtrBase-DTR.418)
>> DTRCassa (DTRCassa-DTR.21)
>> * DtrConfig (DtrConfig-DTR.412)
>> DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
>> DTRCore (DTRCore-DTR.417)
>> DtrCrossfade (DtrCrossfade-DTR.408)
>> DtrCRP (DtrCRP-DTR.411)
>> DtrFinanza (DtrFinanza-DTR.417)
>> DtrGestionale (DtrGestionale-DTR.412)
>> DtrGoogle (DtrGoogle-DTR.408)
>> DtrLogin (DtrLogin-DTR.426)
>> DtrMA (DtrMA-DTR.410)
>> DtrMagazzino (DtrMagazzino-DTR.412)
>> DtrMagritteAuto (DtrMagritteAuto-DTR.407)
>> DtrMenuOnLine (DtrMenuOnLine-DTR.416)
>> DTRMetaDb (DTRMetaDb-DTR.5)
>> DtrMicroObj (DtrMicroObj-DTR.414)
>> DtrMRP (DtrMRP-DTR.408)
>> DTROnlyForOODB (DTROnlyForOODB-DTR.186)
>> DtrPrinterTicket (DtrPrinterTicket-DTR.5)
>> DtrRedu (DtrRedu-DTR.405)
>> DtrReduPorting (DtrReduPorting-DTR.408)
>> FastCGI (FastCGI-dkh.33)
>> FastCGIPool (FastCGIPool-dkh.2)
>> GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.12)
>> GemStone-Compression (GemStone-Compression-dkh.7)
>> GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
>> GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.4)
>> GemStone-Interactions (GemStone-Interactions-dkh.12)
>> GemStone-Release-Support (GemStone-Release-Support-dkh.67)
>> * Generated ()
>> Gofer-Core (Gofer-Core.gemstone-dkh.138)
>> GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
>> * GoogleMaps (GoogleMaps-jgf.23)
>> Grease-Core (Grease-Core-JohanBrichau.94)
>> Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
>> Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
>> Grease-Tests-Core (Grease-Tests-Core-pmm.99)
>> Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
>> * GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.20)
>> GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
>> GsSqueakCommon-CoreV30 (GsSqueakCommon-CoreV30-dkh.1)
>> GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
>> GsUpgrader-Core (GsUpgrader-Core-dkh.38)
>> JadeServer (JadeServer-dkh.13)
>> Javascript-Core (Javascript-Core-pmm.94)
>> Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
>> Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
>> Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
>> JQuery-Core (JQuery-Core-lr.123)
>> JQuery-Extensions (JQuery-Extensions-DTR.7)
>> JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
>> JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
>> JQuery-UI (JQuery-UI.gemstone-dkh.81)
>> JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
>> JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
>> JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
>> JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
>> Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
>> Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
>> Magritte-Json (Magritte-Json-NickAger.18)
>> Magritte-Model (Magritte-Model-NickAger.431)
>> * Magritte-Seaside (Magritte-Seaside-NickAger.355)
>> Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
>> Metacello-Base (Metacello-Base-topa.124)
>> Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
>> Metacello-Core (Metacello-Core-dkh.809)
>> Metacello-FileTree (Metacello-FileTree-dkh.36)
>> Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
>> Metacello-GitHub (Metacello-GitHub-dkh.44)
>> Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
>> Metacello-MC (Metacello-MC-dkh.726)
>> Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
>> Metacello-ToolBox (Metacello-ToolBox-dkh.139)
>> Monticello (Monticello.v3-dkh.476)
>> MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.183)
>> MonticelloFileTree-FileDirectory-Utilities
>> (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
>> MonticelloGs (MonticelloGs-dkh.2)
>> NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
>> NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
>> OB-GemStone-Platform (OB-GemStone-Platform-dkh.76)
>> OB-Metacello (OB-Metacello-dkh.83)
>> OB-Monticello (OB-Monticello-dkh.105)
>> OB-Standard (OB-Standard.v3-dkh.449)
>> OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
>> OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
>> OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
>> OB-Tools (OB-Tools.v3-dkh.140)
>> OmniBrowser (OmniBrowser-DaleHenrichs.447)
>> PackageInfo-Base (PackageInfo-Base.g-dkh.36)
>> Pier-Admin (Pier-Admin-NickAger.87)
>> Pier-Blog (Pier-Blog-NickAger.158)
>> Pier-Book (Pier-Book.gemstone-NickAger.159)
>> Pier-Design (Pier-Design-NickAger.12)
>> Pier-Documents (Pier-Documents-NickAger.29)
>> Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
>> Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
>> Pier-FileUpload-Common-Wysiwyg
>> (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
>> Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
>> Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
>> Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
>> Pier-Google (Pier-Google-NickAger.20)
>> Pier-JQuery (Pier-JQuery-NickAger.13)
>> Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
>> Pier-LinkChecker (Pier-LinkChecker-lr.7)
>> Pier-Model (Pier-Model-NickAger.424)
>> Pier-Seaside (Pier-Seaside-NickAger.536)
>> Pier-Security (Pier-Security-NickAger.184)
>> Pier-Shout (Pier-Shout-NickAger.5)
>> Pier-TagCloud (Pier-TagCloud-NickAger.26)
>> Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
>> Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
>> Prototype-Core (Prototype-Core-lr.25)
>> Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
>> Regex-Core (Regex-Core-DaleHenrichs.3)
>> Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
>> RSS-Core (RSS-Core-lr.67)
>> RSS-Examples (RSS-Examples-lr.26)
>> RSS-Tests-Core (RSS-Tests-Core-lr.30)
>> * Scriptaculous-Components (Scriptaculous-Components-lr.111)
>> Scriptaculous-Core (Scriptaculous-Core-pmm.102)
>> Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
>> Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
>> Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
>> Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
>> Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
>> Seaside-Component (Seaside-Component-jok.92)
>> * Seaside-Core (Seaside-Core.gemstone-dkh.774)
>> * Seaside-Development (Seaside-Development-pmm.156)
>> Seaside-Email (Seaside-Email-PaulDeBruicker.24)
>> Seaside-Environment (Seaside-Environment-NickAger.77)
>> Seaside-Examples (Seaside-Examples-lr.23)
>> Seaside-FileSystem (Seaside-FileSystem-pmm.26)
>> Seaside-Flow (Seaside-Flow-pmm.23)
>> Seaside-GemStone-Adaptors-Swazoo
>> (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
>> Seaside-GemStone-Basic-Development
>> (Seaside-GemStone-Basic-Development-NickAger.25)
>> Seaside-GemStone-Continuation
>> (Seaside-GemStone-Continuation-DaleHenrichs.20)
>> Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
>> Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
>> Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
>> Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
>> Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
>> Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
>> * Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
>> Seaside-GemStone-Tools-OmniBrowser
>> (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
>> Seaside-GemStone-Tools-Production
>> (Seaside-GemStone-Tools-Production-dkh.13)
>> Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
>> Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
>> Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
>> Seaside-HTML5 (Seaside-HTML5-pmm.28)
>> Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
>> Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
>> Seaside-Session (Seaside-Session.gemstone-dkh.158)
>> Seaside-Swazoo (Seaside-Swazoo-pmm.20)
>> Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
>> Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
>> Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
>> Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
>> Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
>> Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
>> Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
>> Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
>> Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
>> Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
>> Seaside-Tests-GemStone-Continuation
>> (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
>> Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
>> Seaside-Tests-GemStone-Development
>> (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
>> Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
>> Seaside-Tests-GemStone-Functional
>> (Seaside-Tests-GemStone-Functional-dkh.12)
>> Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
>> Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
>> Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
>> Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
>> Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
>> Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
>> Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
>> Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
>> Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
>> Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
>> * Seaside-Welcome (Seaside-Welcome-NickAger.40)
>> Seaside-Widgets (Seaside-Widgets-lr.26)
>> Shout-Parsing (Shout-Parsing-NickAger.3)
>> SIXX (SIXX.310-dkh.183)
>> SMTPMail (SMTPMail-dkh.11)
>> SocketStream (SocketStream-PaulDeBruicker.12)
>> * Sport (Sport3.010.v3-dkh.32)
>> * Squeak (Squeak.v3-dkh.309)
>> * STON-Core (STON-Core-dkh.46)
>> Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
>> System-Digital-Signatures (System-Digital-Signatures-dkh.5)
>> Tode-AST-Extensions (Tode-AST-Extensions-dkh.2)
>> Tode-BatchEdit-Tool (Tode-BatchEdit-Tool-dkh.3)
>> Tode-GemStone-Server-Core (Tode-GemStone-Server-Core-dkh.118)
>> Tode-GemStone-Server-Tests (Tode-GemStone-Server-Tests-dkh.5)
>> Tode-Server-31x-GsProcess-Patch (Tode-Server-31x-GsProcess-Patch-dkh.1)
>> Tode-Server-TestTestTools (Tode-Server-TestTestTools-dkh.2)
>> Topez-Common-Core (Topez-Common-Core-dkh.414)
>> Topez-Common-Tests (Topez-Common-Tests-dkh.22)
>> Topez-Server-31x-Core (Topez-Server-31x-Core-dkh.5)
>> Topez-Server-31x-DebugTools (Topez-Server-31x-DebugTools-dkh.19)
>> Topez-Server-31x-Tests (Topez-Server-31x-Tests-dkh.3)
>> Topez-Server-3x-Core (Topez-Server-3x-Core-dkh.2)
>> Topez-Server-3x-DebugTools (Topez-Server-3x-DebugTools-dkh.2)
>> Topez-Server-Core (Topez-Server-Core-dkh.89)
>> Topez-Server-DebugTools (Topez-Server-DebugTools-dkh.151)
>> Topez-Server-ProcessTools (Topez-Server-ProcessTools-dkh.25)
>> Topez-Server-TestDebugTools (Topez-Server-TestDebugTools-dkh.19)
>> Topez-Server-Tests (Topez-Server-Tests-dkh.151)
>> Topez-Server-TestTools (Topez-Server-TestTools-dkh.54)
>> TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
>> TopFeeder-Model (TopFeeder-Model-NickAger.5)
>> TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
>> Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
>> Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
>> Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
>> Utf8Encoding (Utf8Encoding.310-dkh.32)
>> XML-Observable (XML-Observable-JohanBrichau.1)
>> XML-Parser (XML-Parser.g-NorbertHartl.119)
>> XML-Writer (XML-Writer-JAAyer.5)
>> Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
>> Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
>> * Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)
>> '
>>
>> Thanks,
>>         Dario
>>
>>> Dale
>>>
>>> On 03/10/2015 11:06 AM, Dario Trussardi via Glass wrote:
>>>> Ciao,
>>>>
>>>>     I have a devkit tODE stone create with createTodeStone  devkit  
>>>> 3.1.0.6
>>>>
>>>> into it i load:
>>>>
>>>> GsDeployer
>>>>    bulkMigrate: [
>>>>      {#( 'XMLSupport' '1.2.2'
>>>> 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
>>>>     #('Seaside3' '3.0.13'
>>>> 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
>>>>      #('ZincHTTPComponents' '1.1'
>>>> 'http://www.squeaksource.com/ZincHTTPComponents').
>>>>      #('Magritte3' '3.0'
>>>> 'http://www.squeaksource.com/MetacelloRepository').
>>>>      #('Magritte3AddOns' '3.0.0'
>>>> 'http://www.squeaksource.com/MetacelloRepository').
>>>>      #('Pier3' '3.0.0'
>>>> 'http://www.squeaksource.com/MetacelloRepository').
>>>>      #('Pier3AddOns' '3.0.3'
>>>> 'http://www.squeaksource.com/MetacelloRepository')}
>>>>        do: [ :ar |
>>>>          | projectName version repository |
>>>>          projectName := ar at: 1.
>>>>          version := ar at: 2.
>>>>          repository := ar at: 3.
>>>>          Metacello new
>>>>            configuration: projectName;
>>>>            repository: repository;
>>>>            get.
>>>>          Metacello new
>>>>            configuration: projectName;
>>>>            version: version;
>>>>            repository: repository;
>>>>            onUpgrade: [ :ex :existing :new |
>>>>                  existing locked
>>>>                    ifTrue: [ ex disallow ]
>>>>                    ifFalse: [ ex allow ] ];
>>>>            onConflict: [ :ex | ex disallow ];
>>>>            load.
>>>>          Metacello new
>>>>            configuration: projectName;
>>>>            version: version;
>>>>            repository: repository;
>>>>            lock ] ]
>>>>
>>>> and:
>>>>
>>>> GsDeployer bulkMigrate: [
>>>>    Metacello new
>>>>        baseline: 'SIXX';
>>>>        repository: 'github://glassdb/SIXX:master/repository';
>>>>        load ].
>>>>
>>>> A this point the     SixxExamples example2        works fine.
>>>>
>>>>
>>>>
>>>>
>>>>
>>>> Now i can save a sixx file relative to my data application      
>>>> anEnv link     with:
>>>>
>>>>     writeObject: anEnv toFile: aFilename inFolder: aDirectoryPath
>>>>
>>>>     | fileStream sws |
>>>>
>>>>     fileStream := ( FileDirectory on: aDirectoryPath) newFileNamed:
>>>> aFilename.
>>>>
>>>>     sws := SixxWriteStream on: fileStream.
>>>>
>>>>     sws nextPut: anEnv.
>>>>     sws close.
>>>>
>>>>
>>>>
>>>>
>>>>
>>>> After when i do the command:  ^Object readSixxFrom: fileStream
>>>> contents.
>>>>
>>>> to read the sixx file create above the system answer the error:
>>>>
>>>> a SixxXmlParseError occurred (error 2710) - G/S[Scandella3106
>>>> devkit:1]
>>>>
>>>> AbstractException >> _signalWith: (envId 0)
>>>> AbstractException >> signal (envId 0)
>>>> SixxPortableUtil class >> signalException: (envId 0)
>>>> [] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
>>>> AbstractException >> _executeHandler: (envId 0)
>>>> AbstractException >> _signalWith: (envId 0)
>>>> AbstractException >> signal: (envId 0)
>>>> AbstractException class >> signal: (envId 0)
>>>> XMLTokenizer >> parseError: (envId 0)
>>>> XMLTokenizer >> errorExpected: (envId 0)
>>>> XMLTokenizer >> nextLiteral (envId 0)
>>>> XMLTokenizer >> nextPCDataDelimitedBy:putOn: (envId 0)
>>>> [] in  XMLTokenizer >> nextPCData (envId 0)
>>>> XMLNestedStreamWriter >> writeWith: (envId 0)
>>>> XMLTokenizer >> nextPCData (envId 0)
>>>> XMLTokenizer >> nextToken (envId 0)
>>>> XMLParser >> parseToken (envId 0)
>>>> XMLParser >> parseDocument (envId 0)
>>>> SAXHandler >> parseDocument (envId 0)
>>>> XMLDOMParser >> parseDocument (envId 0)
>>>> SAXHandler class >> parseDocumentFrom:useNamespaces:persistentRoot:
>>>> (envId 0)
>>>> XMLDOMParser class >>
>>>> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
>>>> SAXHandler class >> parseDocumentFrom:persistentRoot: (envId 0)
>>>> SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
>>>> [] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
>>>> ExecBlock >> on:do: (envId 0)
>>>> SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
>>>> Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
>>>> Behavior >> readSixxFrom: (envId 0)
>>>>
>>>> Considerations ?
>>>>
>>>> Thanks,
>>>>
>>>>     Dario
>>>>
>>>> P.S.  I have another  3.1.0.6    stone where i have:
>>>>
>>>>     ConfigurationOfGsSIXX project currentVersion >=0.3-c.1
>>>> [ConfigurationOfGsSIXX]
>>>>
>>>>     ConfigurationOfXMLSupport project currentVersion >=1.2.2.1
>>>> [ConfigurationOfXMLSupport]
>>>>
>>>>     Into it  all works fine.
>>>>
>>>>     The sixx file created into it   can reading  into  the devkit  
>>>> tODE stone  without problem
>>>>
>>>>
>>>> _______________________________________________
>>>> Glass mailing list
>>>> [hidden email]
>>>> http://lists.gemtalksystems.com/mailman/listinfo/glass
>>> _______________________________________________
>>> Glass mailing list
>>> [hidden email]
>>> http://lists.gemtalksystems.com/mailman/listinfo/glass
>> _______________________________________________
>> Glass mailing list
>> [hidden email]
>> http://lists.gemtalksystems.com/mailman/listinfo/glass
>


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
Reply | Threaded
Open this post in threaded view
|

Re: [Glass] Sixx problematic

GLASS mailing list
Dale,

        into a clean tODE stone i load:

GsDeployer
  bulkMigrate: [
    {#('XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
        #('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
    #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
    #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
      do: [ :ar |
        | projectName version repository |
        projectName := ar at: 1.
        version := ar at: 2.
        repository := ar at: 3.
        Metacello new
          configuration: projectName;
          repository: repository;
          get.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          onUpgrade: [ :ex :existing :new |
                existing locked
                  ifTrue: [ ex disallow ]
                  ifFalse: [ ex allow ] ];
          onConflict: [ :ex | ex disallow ];
          load.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          lock ] ]

At the end result: ConfigurationOfXMLSupport project currentVersion >=1.3.0 [ConfigurationOfXMLSupport]

It's not strange ?  Because not 1.2.2.1  ?

After i load:

GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: 'github://glassdb/SIXX:master/repository';
      load ].

The SixxExamples example2        don't works.

It erase the error: a SixxXmlParseError occurred (error 2710) -  G/S[Scandella3106 devkit:1]

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
Object >> doesNotUnderstand: (envId 0)
Object >> _doesNotUnderstand:args:envId:reason: (envId 0)
SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)
SixxExamples class >> example2 (envId 0)
Executed Code          
String >> evaluateInContext:symbolList: (envId 0)
JadeServer >> evaluate:inContext: (envId 0)
JadeServer >> printIt:in: (envId 0)
GsNMethod class >> _gsReturnToC (envId 0)

Ciao,
       
        Dario


> Okay after further review I merge XMLSupport 1.2.2.1 into ConfigurationOfXMLSupport-monty.70 and saved a new version of the configuration (ConfigurationOfXMLSupport-dkh.71) and copied it to the appropriate repositories ... so at least we have 1.2.2.1 around for posterity ...
>
> I have not been able to look into the issues with SIXX and XMLSupport 1.3.0 (the new version published by Monty) ... Monty assures me that the tests all pass for GemStone, but I am not sure whether or not the places that are/were dependent upon the older versions of XMLSupport (like SIXX) are impacted by version 1.3.0 or not .... if so then locking and loading XMLSupport 1.2.2.1 should put things right again ...
>
> Dale
>
> On 03/10/2015 03:07 PM, Dale Henrichs wrote:
>> Likely suspects in from working stone package list (XMLSupport ???):
>>
>>  SIXX (SIXX.310-PaulDeBruicker.182)
>>  XML-Observable (XML-Observable-JohanBrichau.1)
>>  XML-Parser (XML-Parser.g-dkh.122)
>>  XML-Writer (XML-Writer-JAAyer.5)
>>
>> and from failing stone package list (XMLSupport 1.2.2):
>>
>>  SIXX (SIXX.310-dkh.183)
>>  XML-Observable (XML-Observable-JohanBrichau.1)
>>  XML-Parser (XML-Parser.g-NorbertHartl.119)
>>  XML-Writer (XML-Writer-JAAyer.5)
>>
>>
>> It's interesting that for the "working stone" you are using XML-Parser.g-dkh.122 and that package version is not in "any of the ConfigurationOfXMLSupport" versions.
>>
>> According to the commit comment XML-Parser.g-dkh.122:
>>   final sent but not implemented for https://github.com/glassdb/glass/issues/39 bugfix?[1]
>>
>>
>> According to a comment in Issue #39 for glass[2], I created version XMLSupprt 1.2.2.1 with a reference to XML-Parser.g-dkh.122, but a quick search through the configurations for XMLSupport did not reveal a 1.2.2.1 version .. until I peeked at http://www.squeaksource.com/MetacelloRepository/ and found ConfigurationOfXMLSupport-dkh.69 with the 1.2.2.1 version
>> ... It turns out that Monty had written a new version of ConfigurationOfXMLSupport-monty.70, but neglected to merge his changes into ConfigurationOfXMLSupport-dkh.69, so 1.2.2.1 was lost ...
>>
>> Sooooo, I've copied ConfigurationOfXMLSupport-dkh.69 to http://seaside.gemstone.com/ss/MetacelloRepository and you should change your load spec for XMLSupport to the following
>>
>>  #( 'XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository')
>>
>> It appears that Mariano's workspace has helped you to get going, but I do believe that 1.2.2.1 is the version of XMLSupprt you should be using, until we can port SIXX (and any other projects that depend upon XMLSupport) to use the newer versions of XMLSupport ...
>>
>> Dale
>>
>> [1] https://github.com/GsDevKit/GsDevKit/issues/39
>> [2] https://github.com/GsDevKit/GsDevKit/issues/39#issuecomment-58772264
>>
>> On 03/10/2015 01:54 PM, Dario Trussardi via Glass wrote:
>>> Dale,
>>>
>>>
>>>> Dario,
>>>>
>>>> You have a stone that works and a stone that does not ... I would like to understand the differences in packages loaded between the two (for example XMLSupport 1.2.2 my not be the correct version to use for SIXX ...)
>>>>
>>>> Use the following to list the packages in each stone:
>>>>
>>>>  | stream |
>>>>  stream := WriteStream on: String new.
>>>>  (MCWorkingCopy allManagers sorted: [ :a :b | a packageName < b packageName ])
>>>>    do: [ :wc |
>>>>      stream
>>>>        nextPutAll: wc description;
>>>>        cr ].
>>>>  stream contents
>>> The stone that works reports:
>>>
>>> 'Announcements (Announcements.v3-dkh.18)
>>> Base-Bootstrap (Base-Bootstrap.v3-dkh.29)
>>> BaselineOfDtrLogin (BaselineOfDtrLogin-DTR.8)
>>> BaselineOfDtrMOL (BaselineOfDtrMOL-DTR.2)
>>> BaselineOfDtrSupport (BaselineOfDtrSupport-DTR.3)
>>> BaselineOfFileTree (BaselineOfFileTree-dkh.4)
>>> BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
>>> BaselineOfMetacello (BaselineOfMetacello-dkh.85)
>>> BaselineOfSIXX (BaselineOfSIXX-dkh.1)
>>> * Bootstrap (Bootstrap.v3-DaleHenrichs.230)
>>> Change-Notification (Change-Notification.v3-dkh.20)
>>> Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
>>> Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-dkh.11)
>>> Collections-Support (Collections-Support.g-dkh.46)
>>> ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.10)
>>> ConfigurationOfDtrSupport (ConfigurationOfDtrSupport-DTR.1)
>>> ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.66)
>>> ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
>>> ConfigurationOfGofer (ConfigurationOfGofer-dkh.44)
>>> ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-DaleHenrichs.21)
>>> ConfigurationOfGrease (ConfigurationOfGrease-dkh.270)
>>> ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
>>> ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
>>> ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
>>> ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
>>> ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.89)
>>> ConfigurationOfGsSIXX (ConfigurationOfGsSIXX-dkh.11)
>>> ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
>>> ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
>>> ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
>>> ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
>>> ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
>>> ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
>>> ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
>>> ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
>>> * ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
>>> ConfigurationOfSeaside3 (ConfigurationOfSeaside3-JohanBrichau.218)
>>> ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
>>> ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
>>> ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
>>> ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
>>> ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.69)
>>> ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
>>> ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
>>> * Core (Core.v3-DaleHenrichs.76)
>>> * Crossfade (Crossfade-pmm.8)
>>> CSSBarGraph (CSSBarGraph-pmm.11)
>>> DTRAlbums (DTRAlbums-DTR.451)
>>> DtrAssociazioni (DtrAssociazioni-DTR.5)
>>> DtrBase (DtrBase-DTR.418)
>>> * DTRCassa (DTRCassa-DTR.21)
>>> DtrConfig (DtrConfig-DTR.412)
>>> DTRConfigGruppi (DTRConfigGruppi-DTR.1)
>>> DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
>>> DTRCore (DTRCore-DTR.417)
>>> DtrCrossfade (DtrCrossfade-DTR.408)
>>> DtrCRP (DtrCRP-DTR.411)
>>> DtrFinanza (DtrFinanza-DTR.417)
>>> DtrGestionale (DtrGestionale-DTR.412)
>>> DtrGoogle (DtrGoogle-DTR.408)
>>> DtrLogin (DtrLogin-DTR.426)
>>> DtrMA (DtrMA-DTR.410)
>>> DtrMagazzino (DtrMagazzino-DTR.412)
>>> DtrMagritteAuto (DtrMagritteAuto-DTR.407)
>>> * DtrMenuOnLine (DtrMenuOnLine-DTR.416)
>>> DTRMetaDb (DTRMetaDb-DTR.5)
>>> * DtrMicroObj (DtrMicroObj-DTR.414)
>>> DtrMRP (DtrMRP-DTR.408)
>>> DTROnlyForOODB (DTROnlyForOODB-DTR.186)
>>> DTRPier (DTRPier-DTR.445)
>>> DtrPrinterTicket (DtrPrinterTicket-DTR.5)
>>> DtrRedu (DtrRedu-DTR.405)
>>> DtrReduPorting (DtrReduPorting-DTR.407)
>>> FastCGI (FastCGI-dkh.33)
>>> FastCGIPool (FastCGIPool-dkh.2)
>>> GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.9)
>>> GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
>>> GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.3)
>>> GemStone-Release-Support (GemStone-Release-Support-dkh.67)
>>> Gofer-Core (Gofer-Core.gemstone-dkh.137)
>>> GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
>>> * GoogleMaps (GoogleMaps-jgf.23)
>>> Grease-Core (Grease-Core-JohanBrichau.94)
>>> Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
>>> Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
>>> Grease-Tests-Core (Grease-Tests-Core-pmm.99)
>>> Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
>>> GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.10)
>>> GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
>>> GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
>>> GsUpgrader-Core (GsUpgrader-Core-dkh.38)
>>> JadeServer (JadeServer-dkh.13)
>>> Javascript-Core (Javascript-Core-pmm.94)
>>> Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
>>> Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
>>> Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
>>> JQuery-Core (JQuery-Core-lr.123)
>>> JQuery-Extensions (JQuery-Extensions-DTR.7)
>>> JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
>>> JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
>>> JQuery-UI (JQuery-UI.gemstone-dkh.81)
>>> JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
>>> JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
>>> JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
>>> JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
>>> Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
>>> Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
>>> Magritte-Json (Magritte-Json-NickAger.18)
>>> Magritte-Model (Magritte-Model-NickAger.431)
>>> * Magritte-Seaside (Magritte-Seaside-NickAger.355)
>>> Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
>>> Metacello-Base (Metacello-Base-dkh.123)
>>> Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
>>> Metacello-Core (Metacello-Core-dkh.806)
>>> Metacello-FileTree (Metacello-FileTree-dkh.36)
>>> Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
>>> Metacello-GitHub (Metacello-GitHub-dkh.44)
>>> Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
>>> Metacello-MC (Metacello-MC-dkh.722)
>>> Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
>>> Metacello-ToolBox (Metacello-ToolBox-dkh.139)
>>> Monticello (Monticello.v3-dkh.456)
>>> * MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.166)
>>> MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
>>> NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
>>> NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
>>> OB-GemStone-Platform (OB-GemStone-Platform-dkh.69)
>>> OB-Metacello (OB-Metacello-dkh.83)
>>> OB-Monticello (OB-Monticello-DaleHenrichs.103)
>>> OB-Standard (OB-Standard.v3-dkh.448)
>>> OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
>>> OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
>>> OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
>>> OB-Tools (OB-Tools.v3-dkh.136)
>>> OmniBrowser (OmniBrowser-DaleHenrichs.447)
>>> PackageInfo-Base (PackageInfo-Base.g-dkh.36)
>>> Pier-Admin (Pier-Admin-NickAger.87)
>>> Pier-Blog (Pier-Blog-NickAger.158)
>>> Pier-Book (Pier-Book.gemstone-NickAger.159)
>>> Pier-Design (Pier-Design-NickAger.12)
>>> Pier-Documents (Pier-Documents-NickAger.29)
>>> Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
>>> Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
>>> Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
>>> Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
>>> Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
>>> Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
>>> Pier-Google (Pier-Google-NickAger.20)
>>> Pier-JQuery (Pier-JQuery-NickAger.13)
>>> Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
>>> Pier-LinkChecker (Pier-LinkChecker-lr.7)
>>> Pier-Model (Pier-Model-NickAger.424)
>>> * Pier-Seaside (Pier-Seaside-NickAger.536)
>>> * Pier-Security (Pier-Security-NickAger.184)
>>> Pier-Shout (Pier-Shout-NickAger.5)
>>> Pier-TagCloud (Pier-TagCloud-NickAger.26)
>>> Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
>>> Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
>>> Prototype-Core (Prototype-Core-lr.25)
>>> Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
>>> Regex-Core (Regex-Core-DaleHenrichs.3)
>>> Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
>>> RSS-Core (RSS-Core-lr.67)
>>> RSS-Examples (RSS-Examples-lr.26)
>>> RSS-Tests-Core (RSS-Tests-Core-lr.30)
>>> * Scriptaculous-Components (Scriptaculous-Components-lr.111)
>>> Scriptaculous-Core (Scriptaculous-Core-pmm.102)
>>> Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
>>> Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
>>> Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
>>> Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
>>> Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
>>> Seaside-Component (Seaside-Component-jok.92)
>>> * Seaside-Core (Seaside-Core.gemstone-dkh.774)
>>> * Seaside-Development (Seaside-Development-pmm.156)
>>> Seaside-Email (Seaside-Email-PaulDeBruicker.24)
>>> Seaside-Environment (Seaside-Environment-NickAger.77)
>>> Seaside-Examples (Seaside-Examples-lr.23)
>>> Seaside-FileSystem (Seaside-FileSystem-pmm.26)
>>> Seaside-Flow (Seaside-Flow-pmm.23)
>>> Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
>>> Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
>>> Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
>>> Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
>>> Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
>>> Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
>>> Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
>>> Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
>>> Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
>>> * Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
>>> Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
>>> Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
>>> Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
>>> Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
>>> Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
>>> Seaside-HTML5 (Seaside-HTML5-pmm.28)
>>> Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
>>> Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
>>> Seaside-Session (Seaside-Session.gemstone-dkh.158)
>>> Seaside-Swazoo (Seaside-Swazoo-pmm.20)
>>> Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
>>> Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
>>> Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
>>> Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
>>> Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
>>> Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
>>> Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
>>> Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
>>> Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
>>> Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
>>> Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
>>> Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
>>> Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
>>> Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
>>> Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
>>> Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
>>> Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
>>> Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
>>> Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
>>> Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
>>> Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
>>> Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
>>> Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
>>> Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
>>> Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
>>> * Seaside-Welcome (Seaside-Welcome-NickAger.40)
>>> Seaside-Widgets (Seaside-Widgets-lr.26)
>>> Shout-Parsing (Shout-Parsing-NickAger.3)
>>> SIXX (SIXX.310-PaulDeBruicker.182)
>>> SMTPMail (SMTPMail-dkh.11)
>>> SocketStream (SocketStream-PaulDeBruicker.12)
>>> Sport (Sport3.010.v3-dkh.29)
>>> * Squeak (Squeak.v3-DaleHenrichs.298)
>>> Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
>>> System-Digital-Signatures (System-Digital-Signatures-dkh.5)
>>> TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
>>> TopFeeder-Model (TopFeeder-Model-NickAger.5)
>>> TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
>>> Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
>>> Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
>>> Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
>>> Utf8Encoding (Utf8Encoding.310-dkh.30)
>>> XML-Observable (XML-Observable-JohanBrichau.1)
>>> XML-Parser (XML-Parser.g-dkh.122)
>>> XML-Writer (XML-Writer-JAAyer.5)
>>> Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
>>> Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
>>> * Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)'
>>>
>>>
>>>
>>>
>>> The stone does not work report:
>>>
>>> 'Announcements (Announcements.v3-dkh.18)
>>> AST-Core (AST-Core-dkh.102)
>>> Base-Bootstrap (Base-Bootstrap.v3-dkh.30)
>>> BaselineOfFileTree (BaselineOfFileTree-dkh.4)
>>> BaselineOfGLASS1 (BaselineOfGLASS1-dkh.43)
>>> BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
>>> BaselineOfMetacello (BaselineOfMetacello-dkh.85)
>>> BaselineOfRB (BaselineOfRB-dkh.5)
>>> BaselineOfSIXX (BaselineOfSIXX-dkh.1)
>>> BaselineOfSton (BaselineOfSton-dkh.1)
>>> BaselineOfTode (BaselineOfTode-dkh.41)
>>> * Bootstrap (Bootstrap.v3-dkh.241)
>>> Change-Notification (Change-Notification.v310-dkh.21)
>>> Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
>>> Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-JohanBrichau.9)
>>> Collections-Support (Collections-Support.g-OttoBehrens.45)
>>> ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.11)
>>> ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.36)
>>> ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
>>> ConfigurationOfGofer (ConfigurationOfGofer-dkh.45)
>>> ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-dkh.22)
>>> ConfigurationOfGrease (ConfigurationOfGrease-dkh.189)
>>> ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
>>> ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
>>> ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
>>> ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
>>> ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.91)
>>> ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
>>> ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
>>> ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
>>> ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
>>> ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
>>> ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
>>> ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
>>> ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
>>> ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
>>> ConfigurationOfSeaside3 (ConfigurationOfSeaside3-dkh.222)
>>> ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
>>> ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
>>> ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
>>> ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
>>> ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-NorbertHartl.64)
>>> ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
>>> ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
>>> * Core (Core.v3-dkh.90)
>>> Core31x (Core31x-dkh.5)
>>> * Crossfade (Crossfade-pmm.8)
>>> CSSBarGraph (CSSBarGraph-pmm.11)
>>> DtrBase (DtrBase-DTR.418)
>>> DTRCassa (DTRCassa-DTR.21)
>>> * DtrConfig (DtrConfig-DTR.412)
>>> DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
>>> DTRCore (DTRCore-DTR.417)
>>> DtrCrossfade (DtrCrossfade-DTR.408)
>>> DtrCRP (DtrCRP-DTR.411)
>>> DtrFinanza (DtrFinanza-DTR.417)
>>> DtrGestionale (DtrGestionale-DTR.412)
>>> DtrGoogle (DtrGoogle-DTR.408)
>>> DtrLogin (DtrLogin-DTR.426)
>>> DtrMA (DtrMA-DTR.410)
>>> DtrMagazzino (DtrMagazzino-DTR.412)
>>> DtrMagritteAuto (DtrMagritteAuto-DTR.407)
>>> DtrMenuOnLine (DtrMenuOnLine-DTR.416)
>>> DTRMetaDb (DTRMetaDb-DTR.5)
>>> DtrMicroObj (DtrMicroObj-DTR.414)
>>> DtrMRP (DtrMRP-DTR.408)
>>> DTROnlyForOODB (DTROnlyForOODB-DTR.186)
>>> DtrPrinterTicket (DtrPrinterTicket-DTR.5)
>>> DtrRedu (DtrRedu-DTR.405)
>>> DtrReduPorting (DtrReduPorting-DTR.408)
>>> FastCGI (FastCGI-dkh.33)
>>> FastCGIPool (FastCGIPool-dkh.2)
>>> GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.12)
>>> GemStone-Compression (GemStone-Compression-dkh.7)
>>> GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
>>> GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.4)
>>> GemStone-Interactions (GemStone-Interactions-dkh.12)
>>> GemStone-Release-Support (GemStone-Release-Support-dkh.67)
>>> * Generated ()
>>> Gofer-Core (Gofer-Core.gemstone-dkh.138)
>>> GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
>>> * GoogleMaps (GoogleMaps-jgf.23)
>>> Grease-Core (Grease-Core-JohanBrichau.94)
>>> Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
>>> Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
>>> Grease-Tests-Core (Grease-Tests-Core-pmm.99)
>>> Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
>>> * GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.20)
>>> GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
>>> GsSqueakCommon-CoreV30 (GsSqueakCommon-CoreV30-dkh.1)
>>> GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
>>> GsUpgrader-Core (GsUpgrader-Core-dkh.38)
>>> JadeServer (JadeServer-dkh.13)
>>> Javascript-Core (Javascript-Core-pmm.94)
>>> Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
>>> Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
>>> Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
>>> JQuery-Core (JQuery-Core-lr.123)
>>> JQuery-Extensions (JQuery-Extensions-DTR.7)
>>> JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
>>> JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
>>> JQuery-UI (JQuery-UI.gemstone-dkh.81)
>>> JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
>>> JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
>>> JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
>>> JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
>>> Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
>>> Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
>>> Magritte-Json (Magritte-Json-NickAger.18)
>>> Magritte-Model (Magritte-Model-NickAger.431)
>>> * Magritte-Seaside (Magritte-Seaside-NickAger.355)
>>> Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
>>> Metacello-Base (Metacello-Base-topa.124)
>>> Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
>>> Metacello-Core (Metacello-Core-dkh.809)
>>> Metacello-FileTree (Metacello-FileTree-dkh.36)
>>> Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
>>> Metacello-GitHub (Metacello-GitHub-dkh.44)
>>> Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
>>> Metacello-MC (Metacello-MC-dkh.726)
>>> Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
>>> Metacello-ToolBox (Metacello-ToolBox-dkh.139)
>>> Monticello (Monticello.v3-dkh.476)
>>> MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.183)
>>> MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
>>> MonticelloGs (MonticelloGs-dkh.2)
>>> NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
>>> NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
>>> OB-GemStone-Platform (OB-GemStone-Platform-dkh.76)
>>> OB-Metacello (OB-Metacello-dkh.83)
>>> OB-Monticello (OB-Monticello-dkh.105)
>>> OB-Standard (OB-Standard.v3-dkh.449)
>>> OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
>>> OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
>>> OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
>>> OB-Tools (OB-Tools.v3-dkh.140)
>>> OmniBrowser (OmniBrowser-DaleHenrichs.447)
>>> PackageInfo-Base (PackageInfo-Base.g-dkh.36)
>>> Pier-Admin (Pier-Admin-NickAger.87)
>>> Pier-Blog (Pier-Blog-NickAger.158)
>>> Pier-Book (Pier-Book.gemstone-NickAger.159)
>>> Pier-Design (Pier-Design-NickAger.12)
>>> Pier-Documents (Pier-Documents-NickAger.29)
>>> Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
>>> Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
>>> Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
>>> Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
>>> Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
>>> Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
>>> Pier-Google (Pier-Google-NickAger.20)
>>> Pier-JQuery (Pier-JQuery-NickAger.13)
>>> Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
>>> Pier-LinkChecker (Pier-LinkChecker-lr.7)
>>> Pier-Model (Pier-Model-NickAger.424)
>>> Pier-Seaside (Pier-Seaside-NickAger.536)
>>> Pier-Security (Pier-Security-NickAger.184)
>>> Pier-Shout (Pier-Shout-NickAger.5)
>>> Pier-TagCloud (Pier-TagCloud-NickAger.26)
>>> Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
>>> Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
>>> Prototype-Core (Prototype-Core-lr.25)
>>> Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
>>> Regex-Core (Regex-Core-DaleHenrichs.3)
>>> Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
>>> RSS-Core (RSS-Core-lr.67)
>>> RSS-Examples (RSS-Examples-lr.26)
>>> RSS-Tests-Core (RSS-Tests-Core-lr.30)
>>> * Scriptaculous-Components (Scriptaculous-Components-lr.111)
>>> Scriptaculous-Core (Scriptaculous-Core-pmm.102)
>>> Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
>>> Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
>>> Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
>>> Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
>>> Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
>>> Seaside-Component (Seaside-Component-jok.92)
>>> * Seaside-Core (Seaside-Core.gemstone-dkh.774)
>>> * Seaside-Development (Seaside-Development-pmm.156)
>>> Seaside-Email (Seaside-Email-PaulDeBruicker.24)
>>> Seaside-Environment (Seaside-Environment-NickAger.77)
>>> Seaside-Examples (Seaside-Examples-lr.23)
>>> Seaside-FileSystem (Seaside-FileSystem-pmm.26)
>>> Seaside-Flow (Seaside-Flow-pmm.23)
>>> Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
>>> Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
>>> Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
>>> Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
>>> Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
>>> Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
>>> Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
>>> Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
>>> Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
>>> * Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
>>> Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
>>> Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
>>> Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
>>> Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
>>> Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
>>> Seaside-HTML5 (Seaside-HTML5-pmm.28)
>>> Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
>>> Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
>>> Seaside-Session (Seaside-Session.gemstone-dkh.158)
>>> Seaside-Swazoo (Seaside-Swazoo-pmm.20)
>>> Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
>>> Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
>>> Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
>>> Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
>>> Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
>>> Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
>>> Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
>>> Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
>>> Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
>>> Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
>>> Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
>>> Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
>>> Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
>>> Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
>>> Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
>>> Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
>>> Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
>>> Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
>>> Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
>>> Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
>>> Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
>>> Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
>>> Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
>>> Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
>>> Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
>>> * Seaside-Welcome (Seaside-Welcome-NickAger.40)
>>> Seaside-Widgets (Seaside-Widgets-lr.26)
>>> Shout-Parsing (Shout-Parsing-NickAger.3)
>>> SIXX (SIXX.310-dkh.183)
>>> SMTPMail (SMTPMail-dkh.11)
>>> SocketStream (SocketStream-PaulDeBruicker.12)
>>> * Sport (Sport3.010.v3-dkh.32)
>>> * Squeak (Squeak.v3-dkh.309)
>>> * STON-Core (STON-Core-dkh.46)
>>> Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
>>> System-Digital-Signatures (System-Digital-Signatures-dkh.5)
>>> Tode-AST-Extensions (Tode-AST-Extensions-dkh.2)
>>> Tode-BatchEdit-Tool (Tode-BatchEdit-Tool-dkh.3)
>>> Tode-GemStone-Server-Core (Tode-GemStone-Server-Core-dkh.118)
>>> Tode-GemStone-Server-Tests (Tode-GemStone-Server-Tests-dkh.5)
>>> Tode-Server-31x-GsProcess-Patch (Tode-Server-31x-GsProcess-Patch-dkh.1)
>>> Tode-Server-TestTestTools (Tode-Server-TestTestTools-dkh.2)
>>> Topez-Common-Core (Topez-Common-Core-dkh.414)
>>> Topez-Common-Tests (Topez-Common-Tests-dkh.22)
>>> Topez-Server-31x-Core (Topez-Server-31x-Core-dkh.5)
>>> Topez-Server-31x-DebugTools (Topez-Server-31x-DebugTools-dkh.19)
>>> Topez-Server-31x-Tests (Topez-Server-31x-Tests-dkh.3)
>>> Topez-Server-3x-Core (Topez-Server-3x-Core-dkh.2)
>>> Topez-Server-3x-DebugTools (Topez-Server-3x-DebugTools-dkh.2)
>>> Topez-Server-Core (Topez-Server-Core-dkh.89)
>>> Topez-Server-DebugTools (Topez-Server-DebugTools-dkh.151)
>>> Topez-Server-ProcessTools (Topez-Server-ProcessTools-dkh.25)
>>> Topez-Server-TestDebugTools (Topez-Server-TestDebugTools-dkh.19)
>>> Topez-Server-Tests (Topez-Server-Tests-dkh.151)
>>> Topez-Server-TestTools (Topez-Server-TestTools-dkh.54)
>>> TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
>>> TopFeeder-Model (TopFeeder-Model-NickAger.5)
>>> TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
>>> Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
>>> Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
>>> Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
>>> Utf8Encoding (Utf8Encoding.310-dkh.32)
>>> XML-Observable (XML-Observable-JohanBrichau.1)
>>> XML-Parser (XML-Parser.g-NorbertHartl.119)
>>> XML-Writer (XML-Writer-JAAyer.5)
>>> Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
>>> Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
>>> * Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)
>>> '
>>>
>>> Thanks,
>>>        Dario
>>>
>>>> Dale
>>>>
>>>> On 03/10/2015 11:06 AM, Dario Trussardi via Glass wrote:
>>>>> Ciao,
>>>>>
>>>>>    I have a devkit tODE stone create with createTodeStone  devkit  3.1.0.6
>>>>>
>>>>> into it i load:
>>>>>
>>>>> GsDeployer
>>>>>   bulkMigrate: [
>>>>>     {#( 'XMLSupport' '1.2.2' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
>>>>>    #('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
>>>>>     #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
>>>>>     #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
>>>>>     #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
>>>>>     #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
>>>>>     #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
>>>>>       do: [ :ar |
>>>>>         | projectName version repository |
>>>>>         projectName := ar at: 1.
>>>>>         version := ar at: 2.
>>>>>         repository := ar at: 3.
>>>>>         Metacello new
>>>>>           configuration: projectName;
>>>>>           repository: repository;
>>>>>           get.
>>>>>         Metacello new
>>>>>           configuration: projectName;
>>>>>           version: version;
>>>>>           repository: repository;
>>>>>           onUpgrade: [ :ex :existing :new |
>>>>>                 existing locked
>>>>>                   ifTrue: [ ex disallow ]
>>>>>                   ifFalse: [ ex allow ] ];
>>>>>           onConflict: [ :ex | ex disallow ];
>>>>>           load.
>>>>>         Metacello new
>>>>>           configuration: projectName;
>>>>>           version: version;
>>>>>           repository: repository;
>>>>>           lock ] ]
>>>>>
>>>>> and:
>>>>>
>>>>> GsDeployer bulkMigrate: [
>>>>>   Metacello new
>>>>>       baseline: 'SIXX';
>>>>>       repository: 'github://glassdb/SIXX:master/repository';
>>>>>       load ].
>>>>>
>>>>> A this point the     SixxExamples example2        works fine.
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> Now i can save a sixx file relative to my data application      anEnv link     with:
>>>>>
>>>>>    writeObject: anEnv toFile: aFilename inFolder: aDirectoryPath
>>>>>
>>>>>    | fileStream sws |
>>>>>
>>>>>    fileStream := ( FileDirectory on: aDirectoryPath) newFileNamed: aFilename.
>>>>>
>>>>>    sws := SixxWriteStream on: fileStream.
>>>>>
>>>>>    sws nextPut: anEnv.
>>>>>    sws close.
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> After when i do the command:  ^Object readSixxFrom: fileStream contents.
>>>>>
>>>>> to read the sixx file create above the system answer the error:
>>>>>
>>>>> a SixxXmlParseError occurred (error 2710) - G/S[Scandella3106 devkit:1]
>>>>>
>>>>> AbstractException >> _signalWith: (envId 0)
>>>>> AbstractException >> signal (envId 0)
>>>>> SixxPortableUtil class >> signalException: (envId 0)
>>>>> [] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
>>>>> AbstractException >> _executeHandler: (envId 0)
>>>>> AbstractException >> _signalWith: (envId 0)
>>>>> AbstractException >> signal: (envId 0)
>>>>> AbstractException class >> signal: (envId 0)
>>>>> XMLTokenizer >> parseError: (envId 0)
>>>>> XMLTokenizer >> errorExpected: (envId 0)
>>>>> XMLTokenizer >> nextLiteral (envId 0)
>>>>> XMLTokenizer >> nextPCDataDelimitedBy:putOn: (envId 0)
>>>>> [] in  XMLTokenizer >> nextPCData (envId 0)
>>>>> XMLNestedStreamWriter >> writeWith: (envId 0)
>>>>> XMLTokenizer >> nextPCData (envId 0)
>>>>> XMLTokenizer >> nextToken (envId 0)
>>>>> XMLParser >> parseToken (envId 0)
>>>>> XMLParser >> parseDocument (envId 0)
>>>>> SAXHandler >> parseDocument (envId 0)
>>>>> XMLDOMParser >> parseDocument (envId 0)
>>>>> SAXHandler class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
>>>>> XMLDOMParser class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
>>>>> SAXHandler class >> parseDocumentFrom:persistentRoot: (envId 0)
>>>>> SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
>>>>> [] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
>>>>> ExecBlock >> on:do: (envId 0)
>>>>> SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
>>>>> Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
>>>>> Behavior >> readSixxFrom: (envId 0)
>>>>>
>>>>> Considerations ?
>>>>>
>>>>> Thanks,
>>>>>
>>>>>    Dario
>>>>>
>>>>> P.S.  I have another  3.1.0.6    stone where i have:
>>>>>
>>>>>    ConfigurationOfGsSIXX project currentVersion >=0.3-c.1 [ConfigurationOfGsSIXX]
>>>>>
>>>>>    ConfigurationOfXMLSupport project currentVersion >=1.2.2.1 [ConfigurationOfXMLSupport]
>>>>>
>>>>>    Into it  all works fine.
>>>>>
>>>>>    The sixx file created into it   can reading  into  the devkit  tODE stone  without problem
>>>>>
>>>>>
>>>>> _______________________________________________
>>>>> Glass mailing list
>>>>> [hidden email]
>>>>> http://lists.gemtalksystems.com/mailman/listinfo/glass
>>>> _______________________________________________
>>>> Glass mailing list
>>>> [hidden email]
>>>> http://lists.gemtalksystems.com/mailman/listinfo/glass
>>> _______________________________________________
>>> Glass mailing list
>>> [hidden email]
>>> http://lists.gemtalksystems.com/mailman/listinfo/glass
>>
>
>
> _______________________________________________
> Glass mailing list
> [hidden email]
> http://lists.gemtalksystems.com/mailman/listinfo/glass


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
Reply | Threaded
Open this post in threaded view
|

Re: [Glass] Sixx problematic

GLASS mailing list
Dario,

I have forgotten to mention that now that you are using The Metacello
scripting api for loading that the #currentVersion message should not be
used either.

The #currentVersion method calculates the version and as I've said in
the past, it sometimes gets it wrong ...

Using the Metacello scripting api, you can print the registration for
XMLSupport

   Metacello registrations
     detect: [ :registration | registration projectName = 'XMLSupport' ].

But....right now we are trying to figure out how to reproduce the
formula for the "stone that works" and I'd like to see the list of
packages that are loaded in the image where SixxExample class>>example2
is failing.

Now before we go too far ... I want to understand the status of
SixxExample class>>example2.

AFAICT, there are three stones:

   1. the "old stone" into which you can load your SIXX file without
error (and appears to be using XMLSupport 1.2.2.1)
   2. the "new stone" that was built by locking XMLSupport 1.2.2 ...
   3. The "new stone 2" that was built by locking XMLSupport 1.2.2.1


Now I'm curious what results you get for SixxExample class>>example2 in
each of those stones.

Another odd thing is that you claimed that Mariano's technique worked
for you and I assume that Mariano's code was running against the "new
stone" with XMLSupport 1.2.2 ... so if XMLSupport 1.2.2 is working for
you I'm not sure why we are worried about XMLSupport 1.2.2.1. I made the
assumption that the old stone was working because of XMLSupport 1.2.2.1
... but I could very easily be wrong ... there were quite a few
differences between the other packages in the two stones ...

Dale


On 03/11/2015 03:09 AM, Dario Trussardi via Glass wrote:

> Dale,
>
> into a clean tODE stone i load:
>
> GsDeployer
>    bulkMigrate: [
>      {#('XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
> #('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
>      #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
>      #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
>      #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
>      #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
>      #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
>        do: [ :ar |
>          | projectName version repository |
>          projectName := ar at: 1.
>          version := ar at: 2.
>          repository := ar at: 3.
>          Metacello new
>            configuration: projectName;
>            repository: repository;
>            get.
>          Metacello new
>            configuration: projectName;
>            version: version;
>            repository: repository;
>            onUpgrade: [ :ex :existing :new |
>                  existing locked
>                    ifTrue: [ ex disallow ]
>                    ifFalse: [ ex allow ] ];
>            onConflict: [ :ex | ex disallow ];
>            load.
>          Metacello new
>            configuration: projectName;
>            version: version;
>            repository: repository;
>            lock ] ]
>
> At the end result: ConfigurationOfXMLSupport project currentVersion >=1.3.0 [ConfigurationOfXMLSupport]
>
> It's not strange ?  Because not 1.2.2.1  ?
>
> After i load:
>
> GsDeployer bulkMigrate: [
>    Metacello new
>        baseline: 'SIXX';
>        repository: 'github://glassdb/SIXX:master/repository';
>        load ].
>
> The SixxExamples example2        don't works.
>
> It erase the error: a SixxXmlParseError occurred (error 2710) -  G/S[Scandella3106 devkit:1]
>
> AbstractException >> _signalWith: (envId 0)
> AbstractException >> signal (envId 0)
> SixxPortableUtil class >> signalException: (envId 0)
> [] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
> AbstractException >> _executeHandler: (envId 0)
> AbstractException >> _signalWith: (envId 0)
> AbstractException >> signal (envId 0)
> Object >> doesNotUnderstand: (envId 0)
> Object >> _doesNotUnderstand:args:envId:reason: (envId 0)
> SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
> [] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
> ExecBlock >> on:do: (envId 0)
> SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
> Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
> Behavior >> readSixxFrom: (envId 0)
> SixxExamples class >> example2 (envId 0)
> Executed Code
> String >> evaluateInContext:symbolList: (envId 0)
> JadeServer >> evaluate:inContext: (envId 0)
> JadeServer >> printIt:in: (envId 0)
> GsNMethod class >> _gsReturnToC (envId 0)
>
> Ciao,
>
> Dario
>
>
>> Okay after further review I merge XMLSupport 1.2.2.1 into ConfigurationOfXMLSupport-monty.70 and saved a new version of the configuration (ConfigurationOfXMLSupport-dkh.71) and copied it to the appropriate repositories ... so at least we have 1.2.2.1 around for posterity ...
>>
>> I have not been able to look into the issues with SIXX and XMLSupport 1.3.0 (the new version published by Monty) ... Monty assures me that the tests all pass for GemStone, but I am not sure whether or not the places that are/were dependent upon the older versions of XMLSupport (like SIXX) are impacted by version 1.3.0 or not .... if so then locking and loading XMLSupport 1.2.2.1 should put things right again ...
>>
>> Dale
>>
>> On 03/10/2015 03:07 PM, Dale Henrichs wrote:
>>> Likely suspects in from working stone package list (XMLSupport ???):
>>>
>>>   SIXX (SIXX.310-PaulDeBruicker.182)
>>>   XML-Observable (XML-Observable-JohanBrichau.1)
>>>   XML-Parser (XML-Parser.g-dkh.122)
>>>   XML-Writer (XML-Writer-JAAyer.5)
>>>
>>> and from failing stone package list (XMLSupport 1.2.2):
>>>
>>>   SIXX (SIXX.310-dkh.183)
>>>   XML-Observable (XML-Observable-JohanBrichau.1)
>>>   XML-Parser (XML-Parser.g-NorbertHartl.119)
>>>   XML-Writer (XML-Writer-JAAyer.5)
>>>
>>>
>>> It's interesting that for the "working stone" you are using XML-Parser.g-dkh.122 and that package version is not in "any of the ConfigurationOfXMLSupport" versions.
>>>
>>> According to the commit comment XML-Parser.g-dkh.122:
>>>    final sent but not implemented for https://github.com/glassdb/glass/issues/39 bugfix?[1]
>>>
>>>
>>> According to a comment in Issue #39 for glass[2], I created version XMLSupprt 1.2.2.1 with a reference to XML-Parser.g-dkh.122, but a quick search through the configurations for XMLSupport did not reveal a 1.2.2.1 version .. until I peeked at http://www.squeaksource.com/MetacelloRepository/ and found ConfigurationOfXMLSupport-dkh.69 with the 1.2.2.1 version
>>> ... It turns out that Monty had written a new version of ConfigurationOfXMLSupport-monty.70, but neglected to merge his changes into ConfigurationOfXMLSupport-dkh.69, so 1.2.2.1 was lost ...
>>>
>>> Sooooo, I've copied ConfigurationOfXMLSupport-dkh.69 to http://seaside.gemstone.com/ss/MetacelloRepository and you should change your load spec for XMLSupport to the following
>>>
>>>   #( 'XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository')
>>>
>>> It appears that Mariano's workspace has helped you to get going, but I do believe that 1.2.2.1 is the version of XMLSupprt you should be using, until we can port SIXX (and any other projects that depend upon XMLSupport) to use the newer versions of XMLSupport ...
>>>
>>> Dale
>>>
>>> [1] https://github.com/GsDevKit/GsDevKit/issues/39
>>> [2] https://github.com/GsDevKit/GsDevKit/issues/39#issuecomment-58772264
>>>
>>> On 03/10/2015 01:54 PM, Dario Trussardi via Glass wrote:
>>>> Dale,
>>>>
>>>>
>>>>> Dario,
>>>>>
>>>>> You have a stone that works and a stone that does not ... I would like to understand the differences in packages loaded between the two (for example XMLSupport 1.2.2 my not be the correct version to use for SIXX ...)
>>>>>
>>>>> Use the following to list the packages in each stone:
>>>>>
>>>>>   | stream |
>>>>>   stream := WriteStream on: String new.
>>>>>   (MCWorkingCopy allManagers sorted: [ :a :b | a packageName < b packageName ])
>>>>>     do: [ :wc |
>>>>>       stream
>>>>>         nextPutAll: wc description;
>>>>>         cr ].
>>>>>   stream contents
>>>> The stone that works reports:
>>>>
>>>> 'Announcements (Announcements.v3-dkh.18)
>>>> Base-Bootstrap (Base-Bootstrap.v3-dkh.29)
>>>> BaselineOfDtrLogin (BaselineOfDtrLogin-DTR.8)
>>>> BaselineOfDtrMOL (BaselineOfDtrMOL-DTR.2)
>>>> BaselineOfDtrSupport (BaselineOfDtrSupport-DTR.3)
>>>> BaselineOfFileTree (BaselineOfFileTree-dkh.4)
>>>> BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
>>>> BaselineOfMetacello (BaselineOfMetacello-dkh.85)
>>>> BaselineOfSIXX (BaselineOfSIXX-dkh.1)
>>>> * Bootstrap (Bootstrap.v3-DaleHenrichs.230)
>>>> Change-Notification (Change-Notification.v3-dkh.20)
>>>> Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
>>>> Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-dkh.11)
>>>> Collections-Support (Collections-Support.g-dkh.46)
>>>> ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.10)
>>>> ConfigurationOfDtrSupport (ConfigurationOfDtrSupport-DTR.1)
>>>> ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.66)
>>>> ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
>>>> ConfigurationOfGofer (ConfigurationOfGofer-dkh.44)
>>>> ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-DaleHenrichs.21)
>>>> ConfigurationOfGrease (ConfigurationOfGrease-dkh.270)
>>>> ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
>>>> ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
>>>> ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
>>>> ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
>>>> ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.89)
>>>> ConfigurationOfGsSIXX (ConfigurationOfGsSIXX-dkh.11)
>>>> ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
>>>> ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
>>>> ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
>>>> ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
>>>> ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
>>>> ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
>>>> ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
>>>> ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
>>>> * ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
>>>> ConfigurationOfSeaside3 (ConfigurationOfSeaside3-JohanBrichau.218)
>>>> ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
>>>> ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
>>>> ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
>>>> ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
>>>> ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.69)
>>>> ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
>>>> ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
>>>> * Core (Core.v3-DaleHenrichs.76)
>>>> * Crossfade (Crossfade-pmm.8)
>>>> CSSBarGraph (CSSBarGraph-pmm.11)
>>>> DTRAlbums (DTRAlbums-DTR.451)
>>>> DtrAssociazioni (DtrAssociazioni-DTR.5)
>>>> DtrBase (DtrBase-DTR.418)
>>>> * DTRCassa (DTRCassa-DTR.21)
>>>> DtrConfig (DtrConfig-DTR.412)
>>>> DTRConfigGruppi (DTRConfigGruppi-DTR.1)
>>>> DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
>>>> DTRCore (DTRCore-DTR.417)
>>>> DtrCrossfade (DtrCrossfade-DTR.408)
>>>> DtrCRP (DtrCRP-DTR.411)
>>>> DtrFinanza (DtrFinanza-DTR.417)
>>>> DtrGestionale (DtrGestionale-DTR.412)
>>>> DtrGoogle (DtrGoogle-DTR.408)
>>>> DtrLogin (DtrLogin-DTR.426)
>>>> DtrMA (DtrMA-DTR.410)
>>>> DtrMagazzino (DtrMagazzino-DTR.412)
>>>> DtrMagritteAuto (DtrMagritteAuto-DTR.407)
>>>> * DtrMenuOnLine (DtrMenuOnLine-DTR.416)
>>>> DTRMetaDb (DTRMetaDb-DTR.5)
>>>> * DtrMicroObj (DtrMicroObj-DTR.414)
>>>> DtrMRP (DtrMRP-DTR.408)
>>>> DTROnlyForOODB (DTROnlyForOODB-DTR.186)
>>>> DTRPier (DTRPier-DTR.445)
>>>> DtrPrinterTicket (DtrPrinterTicket-DTR.5)
>>>> DtrRedu (DtrRedu-DTR.405)
>>>> DtrReduPorting (DtrReduPorting-DTR.407)
>>>> FastCGI (FastCGI-dkh.33)
>>>> FastCGIPool (FastCGIPool-dkh.2)
>>>> GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.9)
>>>> GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
>>>> GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.3)
>>>> GemStone-Release-Support (GemStone-Release-Support-dkh.67)
>>>> Gofer-Core (Gofer-Core.gemstone-dkh.137)
>>>> GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
>>>> * GoogleMaps (GoogleMaps-jgf.23)
>>>> Grease-Core (Grease-Core-JohanBrichau.94)
>>>> Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
>>>> Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
>>>> Grease-Tests-Core (Grease-Tests-Core-pmm.99)
>>>> Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
>>>> GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.10)
>>>> GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
>>>> GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
>>>> GsUpgrader-Core (GsUpgrader-Core-dkh.38)
>>>> JadeServer (JadeServer-dkh.13)
>>>> Javascript-Core (Javascript-Core-pmm.94)
>>>> Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
>>>> Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
>>>> Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
>>>> JQuery-Core (JQuery-Core-lr.123)
>>>> JQuery-Extensions (JQuery-Extensions-DTR.7)
>>>> JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
>>>> JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
>>>> JQuery-UI (JQuery-UI.gemstone-dkh.81)
>>>> JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
>>>> JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
>>>> JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
>>>> JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
>>>> Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
>>>> Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
>>>> Magritte-Json (Magritte-Json-NickAger.18)
>>>> Magritte-Model (Magritte-Model-NickAger.431)
>>>> * Magritte-Seaside (Magritte-Seaside-NickAger.355)
>>>> Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
>>>> Metacello-Base (Metacello-Base-dkh.123)
>>>> Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
>>>> Metacello-Core (Metacello-Core-dkh.806)
>>>> Metacello-FileTree (Metacello-FileTree-dkh.36)
>>>> Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
>>>> Metacello-GitHub (Metacello-GitHub-dkh.44)
>>>> Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
>>>> Metacello-MC (Metacello-MC-dkh.722)
>>>> Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
>>>> Metacello-ToolBox (Metacello-ToolBox-dkh.139)
>>>> Monticello (Monticello.v3-dkh.456)
>>>> * MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.166)
>>>> MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
>>>> NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
>>>> NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
>>>> OB-GemStone-Platform (OB-GemStone-Platform-dkh.69)
>>>> OB-Metacello (OB-Metacello-dkh.83)
>>>> OB-Monticello (OB-Monticello-DaleHenrichs.103)
>>>> OB-Standard (OB-Standard.v3-dkh.448)
>>>> OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
>>>> OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
>>>> OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
>>>> OB-Tools (OB-Tools.v3-dkh.136)
>>>> OmniBrowser (OmniBrowser-DaleHenrichs.447)
>>>> PackageInfo-Base (PackageInfo-Base.g-dkh.36)
>>>> Pier-Admin (Pier-Admin-NickAger.87)
>>>> Pier-Blog (Pier-Blog-NickAger.158)
>>>> Pier-Book (Pier-Book.gemstone-NickAger.159)
>>>> Pier-Design (Pier-Design-NickAger.12)
>>>> Pier-Documents (Pier-Documents-NickAger.29)
>>>> Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
>>>> Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
>>>> Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
>>>> Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
>>>> Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
>>>> Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
>>>> Pier-Google (Pier-Google-NickAger.20)
>>>> Pier-JQuery (Pier-JQuery-NickAger.13)
>>>> Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
>>>> Pier-LinkChecker (Pier-LinkChecker-lr.7)
>>>> Pier-Model (Pier-Model-NickAger.424)
>>>> * Pier-Seaside (Pier-Seaside-NickAger.536)
>>>> * Pier-Security (Pier-Security-NickAger.184)
>>>> Pier-Shout (Pier-Shout-NickAger.5)
>>>> Pier-TagCloud (Pier-TagCloud-NickAger.26)
>>>> Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
>>>> Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
>>>> Prototype-Core (Prototype-Core-lr.25)
>>>> Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
>>>> Regex-Core (Regex-Core-DaleHenrichs.3)
>>>> Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
>>>> RSS-Core (RSS-Core-lr.67)
>>>> RSS-Examples (RSS-Examples-lr.26)
>>>> RSS-Tests-Core (RSS-Tests-Core-lr.30)
>>>> * Scriptaculous-Components (Scriptaculous-Components-lr.111)
>>>> Scriptaculous-Core (Scriptaculous-Core-pmm.102)
>>>> Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
>>>> Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
>>>> Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
>>>> Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
>>>> Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
>>>> Seaside-Component (Seaside-Component-jok.92)
>>>> * Seaside-Core (Seaside-Core.gemstone-dkh.774)
>>>> * Seaside-Development (Seaside-Development-pmm.156)
>>>> Seaside-Email (Seaside-Email-PaulDeBruicker.24)
>>>> Seaside-Environment (Seaside-Environment-NickAger.77)
>>>> Seaside-Examples (Seaside-Examples-lr.23)
>>>> Seaside-FileSystem (Seaside-FileSystem-pmm.26)
>>>> Seaside-Flow (Seaside-Flow-pmm.23)
>>>> Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
>>>> Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
>>>> Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
>>>> Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
>>>> Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
>>>> Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
>>>> Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
>>>> Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
>>>> Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
>>>> * Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
>>>> Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
>>>> Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
>>>> Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
>>>> Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
>>>> Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
>>>> Seaside-HTML5 (Seaside-HTML5-pmm.28)
>>>> Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
>>>> Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
>>>> Seaside-Session (Seaside-Session.gemstone-dkh.158)
>>>> Seaside-Swazoo (Seaside-Swazoo-pmm.20)
>>>> Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
>>>> Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
>>>> Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
>>>> Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
>>>> Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
>>>> Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
>>>> Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
>>>> Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
>>>> Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
>>>> Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
>>>> Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
>>>> Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
>>>> Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
>>>> Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
>>>> Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
>>>> Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
>>>> Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
>>>> Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
>>>> Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
>>>> Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
>>>> Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
>>>> Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
>>>> Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
>>>> Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
>>>> Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
>>>> * Seaside-Welcome (Seaside-Welcome-NickAger.40)
>>>> Seaside-Widgets (Seaside-Widgets-lr.26)
>>>> Shout-Parsing (Shout-Parsing-NickAger.3)
>>>> SIXX (SIXX.310-PaulDeBruicker.182)
>>>> SMTPMail (SMTPMail-dkh.11)
>>>> SocketStream (SocketStream-PaulDeBruicker.12)
>>>> Sport (Sport3.010.v3-dkh.29)
>>>> * Squeak (Squeak.v3-DaleHenrichs.298)
>>>> Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
>>>> System-Digital-Signatures (System-Digital-Signatures-dkh.5)
>>>> TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
>>>> TopFeeder-Model (TopFeeder-Model-NickAger.5)
>>>> TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
>>>> Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
>>>> Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
>>>> Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
>>>> Utf8Encoding (Utf8Encoding.310-dkh.30)
>>>> XML-Observable (XML-Observable-JohanBrichau.1)
>>>> XML-Parser (XML-Parser.g-dkh.122)
>>>> XML-Writer (XML-Writer-JAAyer.5)
>>>> Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
>>>> Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
>>>> * Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)'
>>>>
>>>>
>>>>
>>>>
>>>> The stone does not work report:
>>>>
>>>> 'Announcements (Announcements.v3-dkh.18)
>>>> AST-Core (AST-Core-dkh.102)
>>>> Base-Bootstrap (Base-Bootstrap.v3-dkh.30)
>>>> BaselineOfFileTree (BaselineOfFileTree-dkh.4)
>>>> BaselineOfGLASS1 (BaselineOfGLASS1-dkh.43)
>>>> BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
>>>> BaselineOfMetacello (BaselineOfMetacello-dkh.85)
>>>> BaselineOfRB (BaselineOfRB-dkh.5)
>>>> BaselineOfSIXX (BaselineOfSIXX-dkh.1)
>>>> BaselineOfSton (BaselineOfSton-dkh.1)
>>>> BaselineOfTode (BaselineOfTode-dkh.41)
>>>> * Bootstrap (Bootstrap.v3-dkh.241)
>>>> Change-Notification (Change-Notification.v310-dkh.21)
>>>> Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
>>>> Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-JohanBrichau.9)
>>>> Collections-Support (Collections-Support.g-OttoBehrens.45)
>>>> ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.11)
>>>> ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.36)
>>>> ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
>>>> ConfigurationOfGofer (ConfigurationOfGofer-dkh.45)
>>>> ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-dkh.22)
>>>> ConfigurationOfGrease (ConfigurationOfGrease-dkh.189)
>>>> ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
>>>> ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
>>>> ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
>>>> ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
>>>> ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.91)
>>>> ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
>>>> ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
>>>> ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
>>>> ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
>>>> ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
>>>> ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
>>>> ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
>>>> ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
>>>> ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
>>>> ConfigurationOfSeaside3 (ConfigurationOfSeaside3-dkh.222)
>>>> ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
>>>> ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
>>>> ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
>>>> ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
>>>> ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-NorbertHartl.64)
>>>> ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
>>>> ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
>>>> * Core (Core.v3-dkh.90)
>>>> Core31x (Core31x-dkh.5)
>>>> * Crossfade (Crossfade-pmm.8)
>>>> CSSBarGraph (CSSBarGraph-pmm.11)
>>>> DtrBase (DtrBase-DTR.418)
>>>> DTRCassa (DTRCassa-DTR.21)
>>>> * DtrConfig (DtrConfig-DTR.412)
>>>> DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
>>>> DTRCore (DTRCore-DTR.417)
>>>> DtrCrossfade (DtrCrossfade-DTR.408)
>>>> DtrCRP (DtrCRP-DTR.411)
>>>> DtrFinanza (DtrFinanza-DTR.417)
>>>> DtrGestionale (DtrGestionale-DTR.412)
>>>> DtrGoogle (DtrGoogle-DTR.408)
>>>> DtrLogin (DtrLogin-DTR.426)
>>>> DtrMA (DtrMA-DTR.410)
>>>> DtrMagazzino (DtrMagazzino-DTR.412)
>>>> DtrMagritteAuto (DtrMagritteAuto-DTR.407)
>>>> DtrMenuOnLine (DtrMenuOnLine-DTR.416)
>>>> DTRMetaDb (DTRMetaDb-DTR.5)
>>>> DtrMicroObj (DtrMicroObj-DTR.414)
>>>> DtrMRP (DtrMRP-DTR.408)
>>>> DTROnlyForOODB (DTROnlyForOODB-DTR.186)
>>>> DtrPrinterTicket (DtrPrinterTicket-DTR.5)
>>>> DtrRedu (DtrRedu-DTR.405)
>>>> DtrReduPorting (DtrReduPorting-DTR.408)
>>>> FastCGI (FastCGI-dkh.33)
>>>> FastCGIPool (FastCGIPool-dkh.2)
>>>> GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.12)
>>>> GemStone-Compression (GemStone-Compression-dkh.7)
>>>> GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
>>>> GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.4)
>>>> GemStone-Interactions (GemStone-Interactions-dkh.12)
>>>> GemStone-Release-Support (GemStone-Release-Support-dkh.67)
>>>> * Generated ()
>>>> Gofer-Core (Gofer-Core.gemstone-dkh.138)
>>>> GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
>>>> * GoogleMaps (GoogleMaps-jgf.23)
>>>> Grease-Core (Grease-Core-JohanBrichau.94)
>>>> Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
>>>> Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
>>>> Grease-Tests-Core (Grease-Tests-Core-pmm.99)
>>>> Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
>>>> * GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.20)
>>>> GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
>>>> GsSqueakCommon-CoreV30 (GsSqueakCommon-CoreV30-dkh.1)
>>>> GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
>>>> GsUpgrader-Core (GsUpgrader-Core-dkh.38)
>>>> JadeServer (JadeServer-dkh.13)
>>>> Javascript-Core (Javascript-Core-pmm.94)
>>>> Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
>>>> Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
>>>> Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
>>>> JQuery-Core (JQuery-Core-lr.123)
>>>> JQuery-Extensions (JQuery-Extensions-DTR.7)
>>>> JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
>>>> JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
>>>> JQuery-UI (JQuery-UI.gemstone-dkh.81)
>>>> JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
>>>> JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
>>>> JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
>>>> JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
>>>> Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
>>>> Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
>>>> Magritte-Json (Magritte-Json-NickAger.18)
>>>> Magritte-Model (Magritte-Model-NickAger.431)
>>>> * Magritte-Seaside (Magritte-Seaside-NickAger.355)
>>>> Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
>>>> Metacello-Base (Metacello-Base-topa.124)
>>>> Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
>>>> Metacello-Core (Metacello-Core-dkh.809)
>>>> Metacello-FileTree (Metacello-FileTree-dkh.36)
>>>> Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
>>>> Metacello-GitHub (Metacello-GitHub-dkh.44)
>>>> Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
>>>> Metacello-MC (Metacello-MC-dkh.726)
>>>> Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
>>>> Metacello-ToolBox (Metacello-ToolBox-dkh.139)
>>>> Monticello (Monticello.v3-dkh.476)
>>>> MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.183)
>>>> MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
>>>> MonticelloGs (MonticelloGs-dkh.2)
>>>> NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
>>>> NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
>>>> OB-GemStone-Platform (OB-GemStone-Platform-dkh.76)
>>>> OB-Metacello (OB-Metacello-dkh.83)
>>>> OB-Monticello (OB-Monticello-dkh.105)
>>>> OB-Standard (OB-Standard.v3-dkh.449)
>>>> OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
>>>> OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
>>>> OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
>>>> OB-Tools (OB-Tools.v3-dkh.140)
>>>> OmniBrowser (OmniBrowser-DaleHenrichs.447)
>>>> PackageInfo-Base (PackageInfo-Base.g-dkh.36)
>>>> Pier-Admin (Pier-Admin-NickAger.87)
>>>> Pier-Blog (Pier-Blog-NickAger.158)
>>>> Pier-Book (Pier-Book.gemstone-NickAger.159)
>>>> Pier-Design (Pier-Design-NickAger.12)
>>>> Pier-Documents (Pier-Documents-NickAger.29)
>>>> Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
>>>> Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
>>>> Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
>>>> Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
>>>> Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
>>>> Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
>>>> Pier-Google (Pier-Google-NickAger.20)
>>>> Pier-JQuery (Pier-JQuery-NickAger.13)
>>>> Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
>>>> Pier-LinkChecker (Pier-LinkChecker-lr.7)
>>>> Pier-Model (Pier-Model-NickAger.424)
>>>> Pier-Seaside (Pier-Seaside-NickAger.536)
>>>> Pier-Security (Pier-Security-NickAger.184)
>>>> Pier-Shout (Pier-Shout-NickAger.5)
>>>> Pier-TagCloud (Pier-TagCloud-NickAger.26)
>>>> Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
>>>> Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
>>>> Prototype-Core (Prototype-Core-lr.25)
>>>> Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
>>>> Regex-Core (Regex-Core-DaleHenrichs.3)
>>>> Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
>>>> RSS-Core (RSS-Core-lr.67)
>>>> RSS-Examples (RSS-Examples-lr.26)
>>>> RSS-Tests-Core (RSS-Tests-Core-lr.30)
>>>> * Scriptaculous-Components (Scriptaculous-Components-lr.111)
>>>> Scriptaculous-Core (Scriptaculous-Core-pmm.102)
>>>> Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
>>>> Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
>>>> Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
>>>> Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
>>>> Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
>>>> Seaside-Component (Seaside-Component-jok.92)
>>>> * Seaside-Core (Seaside-Core.gemstone-dkh.774)
>>>> * Seaside-Development (Seaside-Development-pmm.156)
>>>> Seaside-Email (Seaside-Email-PaulDeBruicker.24)
>>>> Seaside-Environment (Seaside-Environment-NickAger.77)
>>>> Seaside-Examples (Seaside-Examples-lr.23)
>>>> Seaside-FileSystem (Seaside-FileSystem-pmm.26)
>>>> Seaside-Flow (Seaside-Flow-pmm.23)
>>>> Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
>>>> Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
>>>> Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
>>>> Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
>>>> Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
>>>> Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
>>>> Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
>>>> Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
>>>> Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
>>>> * Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
>>>> Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
>>>> Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
>>>> Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
>>>> Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
>>>> Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
>>>> Seaside-HTML5 (Seaside-HTML5-pmm.28)
>>>> Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
>>>> Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
>>>> Seaside-Session (Seaside-Session.gemstone-dkh.158)
>>>> Seaside-Swazoo (Seaside-Swazoo-pmm.20)
>>>> Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
>>>> Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
>>>> Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
>>>> Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
>>>> Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
>>>> Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
>>>> Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
>>>> Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
>>>> Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
>>>> Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
>>>> Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
>>>> Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
>>>> Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
>>>> Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
>>>> Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
>>>> Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
>>>> Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
>>>> Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
>>>> Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
>>>> Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
>>>> Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
>>>> Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
>>>> Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
>>>> Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
>>>> Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
>>>> * Seaside-Welcome (Seaside-Welcome-NickAger.40)
>>>> Seaside-Widgets (Seaside-Widgets-lr.26)
>>>> Shout-Parsing (Shout-Parsing-NickAger.3)
>>>> SIXX (SIXX.310-dkh.183)
>>>> SMTPMail (SMTPMail-dkh.11)
>>>> SocketStream (SocketStream-PaulDeBruicker.12)
>>>> * Sport (Sport3.010.v3-dkh.32)
>>>> * Squeak (Squeak.v3-dkh.309)
>>>> * STON-Core (STON-Core-dkh.46)
>>>> Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
>>>> System-Digital-Signatures (System-Digital-Signatures-dkh.5)
>>>> Tode-AST-Extensions (Tode-AST-Extensions-dkh.2)
>>>> Tode-BatchEdit-Tool (Tode-BatchEdit-Tool-dkh.3)
>>>> Tode-GemStone-Server-Core (Tode-GemStone-Server-Core-dkh.118)
>>>> Tode-GemStone-Server-Tests (Tode-GemStone-Server-Tests-dkh.5)
>>>> Tode-Server-31x-GsProcess-Patch (Tode-Server-31x-GsProcess-Patch-dkh.1)
>>>> Tode-Server-TestTestTools (Tode-Server-TestTestTools-dkh.2)
>>>> Topez-Common-Core (Topez-Common-Core-dkh.414)
>>>> Topez-Common-Tests (Topez-Common-Tests-dkh.22)
>>>> Topez-Server-31x-Core (Topez-Server-31x-Core-dkh.5)
>>>> Topez-Server-31x-DebugTools (Topez-Server-31x-DebugTools-dkh.19)
>>>> Topez-Server-31x-Tests (Topez-Server-31x-Tests-dkh.3)
>>>> Topez-Server-3x-Core (Topez-Server-3x-Core-dkh.2)
>>>> Topez-Server-3x-DebugTools (Topez-Server-3x-DebugTools-dkh.2)
>>>> Topez-Server-Core (Topez-Server-Core-dkh.89)
>>>> Topez-Server-DebugTools (Topez-Server-DebugTools-dkh.151)
>>>> Topez-Server-ProcessTools (Topez-Server-ProcessTools-dkh.25)
>>>> Topez-Server-TestDebugTools (Topez-Server-TestDebugTools-dkh.19)
>>>> Topez-Server-Tests (Topez-Server-Tests-dkh.151)
>>>> Topez-Server-TestTools (Topez-Server-TestTools-dkh.54)
>>>> TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
>>>> TopFeeder-Model (TopFeeder-Model-NickAger.5)
>>>> TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
>>>> Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
>>>> Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
>>>> Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
>>>> Utf8Encoding (Utf8Encoding.310-dkh.32)
>>>> XML-Observable (XML-Observable-JohanBrichau.1)
>>>> XML-Parser (XML-Parser.g-NorbertHartl.119)
>>>> XML-Writer (XML-Writer-JAAyer.5)
>>>> Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
>>>> Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
>>>> * Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)
>>>> '
>>>>
>>>> Thanks,
>>>>         Dario
>>>>
>>>>> Dale
>>>>>
>>>>> On 03/10/2015 11:06 AM, Dario Trussardi via Glass wrote:
>>>>>> Ciao,
>>>>>>
>>>>>>     I have a devkit tODE stone create with createTodeStone  devkit  3.1.0.6
>>>>>>
>>>>>> into it i load:
>>>>>>
>>>>>> GsDeployer
>>>>>>    bulkMigrate: [
>>>>>>      {#( 'XMLSupport' '1.2.2' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
>>>>>>     #('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
>>>>>>      #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
>>>>>>      #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
>>>>>>      #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
>>>>>>      #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
>>>>>>      #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
>>>>>>        do: [ :ar |
>>>>>>          | projectName version repository |
>>>>>>          projectName := ar at: 1.
>>>>>>          version := ar at: 2.
>>>>>>          repository := ar at: 3.
>>>>>>          Metacello new
>>>>>>            configuration: projectName;
>>>>>>            repository: repository;
>>>>>>            get.
>>>>>>          Metacello new
>>>>>>            configuration: projectName;
>>>>>>            version: version;
>>>>>>            repository: repository;
>>>>>>            onUpgrade: [ :ex :existing :new |
>>>>>>                  existing locked
>>>>>>                    ifTrue: [ ex disallow ]
>>>>>>                    ifFalse: [ ex allow ] ];
>>>>>>            onConflict: [ :ex | ex disallow ];
>>>>>>            load.
>>>>>>          Metacello new
>>>>>>            configuration: projectName;
>>>>>>            version: version;
>>>>>>            repository: repository;
>>>>>>            lock ] ]
>>>>>>
>>>>>> and:
>>>>>>
>>>>>> GsDeployer bulkMigrate: [
>>>>>>    Metacello new
>>>>>>        baseline: 'SIXX';
>>>>>>        repository: 'github://glassdb/SIXX:master/repository';
>>>>>>        load ].
>>>>>>
>>>>>> A this point the     SixxExamples example2        works fine.
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> Now i can save a sixx file relative to my data application      anEnv link     with:
>>>>>>
>>>>>>     writeObject: anEnv toFile: aFilename inFolder: aDirectoryPath
>>>>>>
>>>>>>     | fileStream sws |
>>>>>>
>>>>>>     fileStream := ( FileDirectory on: aDirectoryPath) newFileNamed: aFilename.
>>>>>>
>>>>>>     sws := SixxWriteStream on: fileStream.
>>>>>>
>>>>>>     sws nextPut: anEnv.
>>>>>>     sws close.
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> After when i do the command:  ^Object readSixxFrom: fileStream contents.
>>>>>>
>>>>>> to read the sixx file create above the system answer the error:
>>>>>>
>>>>>> a SixxXmlParseError occurred (error 2710) - G/S[Scandella3106 devkit:1]
>>>>>>
>>>>>> AbstractException >> _signalWith: (envId 0)
>>>>>> AbstractException >> signal (envId 0)
>>>>>> SixxPortableUtil class >> signalException: (envId 0)
>>>>>> [] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
>>>>>> AbstractException >> _executeHandler: (envId 0)
>>>>>> AbstractException >> _signalWith: (envId 0)
>>>>>> AbstractException >> signal: (envId 0)
>>>>>> AbstractException class >> signal: (envId 0)
>>>>>> XMLTokenizer >> parseError: (envId 0)
>>>>>> XMLTokenizer >> errorExpected: (envId 0)
>>>>>> XMLTokenizer >> nextLiteral (envId 0)
>>>>>> XMLTokenizer >> nextPCDataDelimitedBy:putOn: (envId 0)
>>>>>> [] in  XMLTokenizer >> nextPCData (envId 0)
>>>>>> XMLNestedStreamWriter >> writeWith: (envId 0)
>>>>>> XMLTokenizer >> nextPCData (envId 0)
>>>>>> XMLTokenizer >> nextToken (envId 0)
>>>>>> XMLParser >> parseToken (envId 0)
>>>>>> XMLParser >> parseDocument (envId 0)
>>>>>> SAXHandler >> parseDocument (envId 0)
>>>>>> XMLDOMParser >> parseDocument (envId 0)
>>>>>> SAXHandler class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
>>>>>> XMLDOMParser class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
>>>>>> SAXHandler class >> parseDocumentFrom:persistentRoot: (envId 0)
>>>>>> SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
>>>>>> [] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
>>>>>> ExecBlock >> on:do: (envId 0)
>>>>>> SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
>>>>>> Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
>>>>>> Behavior >> readSixxFrom: (envId 0)
>>>>>>
>>>>>> Considerations ?
>>>>>>
>>>>>> Thanks,
>>>>>>
>>>>>>     Dario
>>>>>>
>>>>>> P.S.  I have another  3.1.0.6    stone where i have:
>>>>>>
>>>>>>     ConfigurationOfGsSIXX project currentVersion >=0.3-c.1 [ConfigurationOfGsSIXX]
>>>>>>
>>>>>>     ConfigurationOfXMLSupport project currentVersion >=1.2.2.1 [ConfigurationOfXMLSupport]
>>>>>>
>>>>>>     Into it  all works fine.
>>>>>>
>>>>>>     The sixx file created into it   can reading  into  the devkit  tODE stone  without problem
>>>>>>
>>>>>>
>>>>>> _______________________________________________
>>>>>> Glass mailing list
>>>>>> [hidden email]
>>>>>> http://lists.gemtalksystems.com/mailman/listinfo/glass
>>>>> _______________________________________________
>>>>> Glass mailing list
>>>>> [hidden email]
>>>>> http://lists.gemtalksystems.com/mailman/listinfo/glass
>>>> _______________________________________________
>>>> Glass mailing list
>>>> [hidden email]
>>>> http://lists.gemtalksystems.com/mailman/listinfo/glass
>>
>> _______________________________________________
>> Glass mailing list
>> [hidden email]
>> http://lists.gemtalksystems.com/mailman/listinfo/glass
>
> _______________________________________________
> Glass mailing list
> [hidden email]
> http://lists.gemtalksystems.com/mailman/listinfo/glass


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
Reply | Threaded
Open this post in threaded view
|

Re: [Glass] Sixx problematic

GLASS mailing list
Dale,

> Dario,
>
> I have forgotten to mention that now that you are using The Metacello scripting api for loading that the #currentVersion message should not be used either.
>
> The #currentVersion method calculates the version and as I've said in the past, it sometimes gets it wrong ...
>
> Using the Metacello scripting api, you can print the registration for XMLSupport
>
>  Metacello registrations
>    detect: [ :registration | registration projectName = 'XMLSupport' ].
>
> But....right now we are trying to figure out how to reproduce the formula for the "stone that works" and I'd like to see the list of packages that are loaded in the image where SixxExample class>>example2 is failing.
>
> Now before we go too far ... I want to understand the status of SixxExample class>>example2.
>
> AFAICT, there are three stones:
>
>  1. the "old stone" into which you can load your SIXX file without error (and appears to be using XMLSupport 1.2.2.1)
>  2. the "new stone" that was built by locking XMLSupport 1.2.2 ...
        For point 2 the system woks right.
>  3. The "new stone 2" that was built by locking XMLSupport 1.2.2.1
        For point 3 the system answer the error as i write into my last e-mail.
        You can test it into a new tODE environment
>
>
> Now I'm curious what results you get for SixxExample class>>example2 in each of those stones.
>
> Another odd thing is that you claimed that Mariano's technique worked for you and I assume that Mariano's code was running against the "new stone" with XMLSupport 1.2.2 ... so if XMLSupport 1.2.2 is working for you I'm not sure why we are worried about XMLSupport 1.2.2.1. I made the assumption that the old stone was working because of XMLSupport 1.2.2.1 ... but I could very easily be wrong ... there were quite a few differences between the other packages in the two stones ...
>

Yes, you have right.
The Mariano's technique works fine.

But you write:

>>>> It appears that Mariano's workspace has helped you to get going, but I do believe that 1.2.2.1 is the version of XMLSupprt you should be using, until we can port SIXX (and any other projects that depend upon XMLSupport) to use the newer versions of XMLSupport ...


and i have doubt about XMLSupport version.

Then saw that Mariano's tecniques works well consider the matter closed, for the moment.

Do you agree?

Ciao, thanks,
       
        Dario

> Dale
>
>
> On 03/11/2015 03:09 AM, Dario Trussardi via Glass wrote:
>> Dale,
>>
>> into a clean tODE stone i load:
>>
>> GsDeployer
>>   bulkMigrate: [
>>     {#('XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
>> #('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
>>     #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
>>     #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
>>     #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
>>     #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
>>     #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
>>       do: [ :ar |
>>         | projectName version repository |
>>         projectName := ar at: 1.
>>         version := ar at: 2.
>>         repository := ar at: 3.
>>         Metacello new
>>           configuration: projectName;
>>           repository: repository;
>>           get.
>>         Metacello new
>>           configuration: projectName;
>>           version: version;
>>           repository: repository;
>>           onUpgrade: [ :ex :existing :new |
>>                 existing locked
>>                   ifTrue: [ ex disallow ]
>>                   ifFalse: [ ex allow ] ];
>>           onConflict: [ :ex | ex disallow ];
>>           load.
>>         Metacello new
>>           configuration: projectName;
>>           version: version;
>>           repository: repository;
>>           lock ] ]
>>
>> At the end result: ConfigurationOfXMLSupport project currentVersion >=1.3.0 [ConfigurationOfXMLSupport]
>>
>> It's not strange ?  Because not 1.2.2.1  ?
>>
>> After i load:
>>
>> GsDeployer bulkMigrate: [
>>   Metacello new
>>       baseline: 'SIXX';
>>       repository: 'github://glassdb/SIXX:master/repository';
>>       load ].
>>
>> The SixxExamples example2        don't works.
>>
>> It erase the error: a SixxXmlParseError occurred (error 2710) -  G/S[Scandella3106 devkit:1]
>>
>> AbstractException >> _signalWith: (envId 0)
>> AbstractException >> signal (envId 0)
>> SixxPortableUtil class >> signalException: (envId 0)
>> [] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
>> AbstractException >> _executeHandler: (envId 0)
>> AbstractException >> _signalWith: (envId 0)
>> AbstractException >> signal (envId 0)
>> Object >> doesNotUnderstand: (envId 0)
>> Object >> _doesNotUnderstand:args:envId:reason: (envId 0)
>> SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
>> [] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
>> ExecBlock >> on:do: (envId 0)
>> SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
>> Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
>> Behavior >> readSixxFrom: (envId 0)
>> SixxExamples class >> example2 (envId 0)
>> Executed Code
>> String >> evaluateInContext:symbolList: (envId 0)
>> JadeServer >> evaluate:inContext: (envId 0)
>> JadeServer >> printIt:in: (envId 0)
>> GsNMethod class >> _gsReturnToC (envId 0)
>>
>> Ciao,
>>
>> Dario
>>
>>
>>> Okay after further review I merge XMLSupport 1.2.2.1 into ConfigurationOfXMLSupport-monty.70 and saved a new version of the configuration (ConfigurationOfXMLSupport-dkh.71) and copied it to the appropriate repositories ... so at least we have 1.2.2.1 around for posterity ...
>>>
>>> I have not been able to look into the issues with SIXX and XMLSupport 1.3.0 (the new version published by Monty) ... Monty assures me that the tests all pass for GemStone, but I am not sure whether or not the places that are/were dependent upon the older versions of XMLSupport (like SIXX) are impacted by version 1.3.0 or not .... if so then locking and loading XMLSupport 1.2.2.1 should put things right again ...
>>>
>>> Dale
>>>
>>> On 03/10/2015 03:07 PM, Dale Henrichs wrote:
>>>> Likely suspects in from working stone package list (XMLSupport ???):
>>>>
>>>>  SIXX (SIXX.310-PaulDeBruicker.182)
>>>>  XML-Observable (XML-Observable-JohanBrichau.1)
>>>>  XML-Parser (XML-Parser.g-dkh.122)
>>>>  XML-Writer (XML-Writer-JAAyer.5)
>>>>
>>>> and from failing stone package list (XMLSupport 1.2.2):
>>>>
>>>>  SIXX (SIXX.310-dkh.183)
>>>>  XML-Observable (XML-Observable-JohanBrichau.1)
>>>>  XML-Parser (XML-Parser.g-NorbertHartl.119)
>>>>  XML-Writer (XML-Writer-JAAyer.5)
>>>>
>>>>
>>>> It's interesting that for the "working stone" you are using XML-Parser.g-dkh.122 and that package version is not in "any of the ConfigurationOfXMLSupport" versions.
>>>>
>>>> According to the commit comment XML-Parser.g-dkh.122:
>>>>   final sent but not implemented for https://github.com/glassdb/glass/issues/39 bugfix?[1]
>>>>
>>>>
>>>> According to a comment in Issue #39 for glass[2], I created version XMLSupprt 1.2.2.1 with a reference to XML-Parser.g-dkh.122, but a quick search through the configurations for XMLSupport did not reveal a 1.2.2.1 version .. until I peeked at http://www.squeaksource.com/MetacelloRepository/ and found ConfigurationOfXMLSupport-dkh.69 with the 1.2.2.1 version
>>>> ... It turns out that Monty had written a new version of ConfigurationOfXMLSupport-monty.70, but neglected to merge his changes into ConfigurationOfXMLSupport-dkh.69, so 1.2.2.1 was lost ...
>>>>
>>>> Sooooo, I've copied ConfigurationOfXMLSupport-dkh.69 to http://seaside.gemstone.com/ss/MetacelloRepository and you should change your load spec for XMLSupport to the following
>>>>
>>>>  #( 'XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository')
>>>>
>>>> It appears that Mariano's workspace has helped you to get going, but I do believe that 1.2.2.1 is the version of XMLSupprt you should be using, until we can port SIXX (and any other projects that depend upon XMLSupport) to use the newer versions of XMLSupport ...
>>>>
>>>> Dale
>>>>
>>>> [1] https://github.com/GsDevKit/GsDevKit/issues/39
>>>> [2] https://github.com/GsDevKit/GsDevKit/issues/39#issuecomment-58772264
>>>>
>>>> On 03/10/2015 01:54 PM, Dario Trussardi via Glass wrote:
>>>>> Dale,
>>>>>
>>>>>
>>>>>> Dario,
>>>>>>
>>>>>> You have a stone that works and a stone that does not ... I would like to understand the differences in packages loaded between the two (for example XMLSupport 1.2.2 my not be the correct version to use for SIXX ...)
>>>>>>
>>>>>> Use the following to list the packages in each stone:
>>>>>>
>>>>>>  | stream |
>>>>>>  stream := WriteStream on: String new.
>>>>>>  (MCWorkingCopy allManagers sorted: [ :a :b | a packageName < b packageName ])
>>>>>>    do: [ :wc |
>>>>>>      stream
>>>>>>        nextPutAll: wc description;
>>>>>>        cr ].
>>>>>>  stream contents
>>>>> The stone that works reports:
>>>>>
>>>>> 'Announcements (Announcements.v3-dkh.18)
>>>>> Base-Bootstrap (Base-Bootstrap.v3-dkh.29)
>>>>> BaselineOfDtrLogin (BaselineOfDtrLogin-DTR.8)
>>>>> BaselineOfDtrMOL (BaselineOfDtrMOL-DTR.2)
>>>>> BaselineOfDtrSupport (BaselineOfDtrSupport-DTR.3)
>>>>> BaselineOfFileTree (BaselineOfFileTree-dkh.4)
>>>>> BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
>>>>> BaselineOfMetacello (BaselineOfMetacello-dkh.85)
>>>>> BaselineOfSIXX (BaselineOfSIXX-dkh.1)
>>>>> * Bootstrap (Bootstrap.v3-DaleHenrichs.230)
>>>>> Change-Notification (Change-Notification.v3-dkh.20)
>>>>> Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
>>>>> Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-dkh.11)
>>>>> Collections-Support (Collections-Support.g-dkh.46)
>>>>> ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.10)
>>>>> ConfigurationOfDtrSupport (ConfigurationOfDtrSupport-DTR.1)
>>>>> ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.66)
>>>>> ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
>>>>> ConfigurationOfGofer (ConfigurationOfGofer-dkh.44)
>>>>> ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-DaleHenrichs.21)
>>>>> ConfigurationOfGrease (ConfigurationOfGrease-dkh.270)
>>>>> ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
>>>>> ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
>>>>> ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
>>>>> ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
>>>>> ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.89)
>>>>> ConfigurationOfGsSIXX (ConfigurationOfGsSIXX-dkh.11)
>>>>> ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
>>>>> ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
>>>>> ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
>>>>> ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
>>>>> ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
>>>>> ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
>>>>> ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
>>>>> ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
>>>>> * ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
>>>>> ConfigurationOfSeaside3 (ConfigurationOfSeaside3-JohanBrichau.218)
>>>>> ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
>>>>> ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
>>>>> ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
>>>>> ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
>>>>> ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.69)
>>>>> ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
>>>>> ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
>>>>> * Core (Core.v3-DaleHenrichs.76)
>>>>> * Crossfade (Crossfade-pmm.8)
>>>>> CSSBarGraph (CSSBarGraph-pmm.11)
>>>>> DTRAlbums (DTRAlbums-DTR.451)
>>>>> DtrAssociazioni (DtrAssociazioni-DTR.5)
>>>>> DtrBase (DtrBase-DTR.418)
>>>>> * DTRCassa (DTRCassa-DTR.21)
>>>>> DtrConfig (DtrConfig-DTR.412)
>>>>> DTRConfigGruppi (DTRConfigGruppi-DTR.1)
>>>>> DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
>>>>> DTRCore (DTRCore-DTR.417)
>>>>> DtrCrossfade (DtrCrossfade-DTR.408)
>>>>> DtrCRP (DtrCRP-DTR.411)
>>>>> DtrFinanza (DtrFinanza-DTR.417)
>>>>> DtrGestionale (DtrGestionale-DTR.412)
>>>>> DtrGoogle (DtrGoogle-DTR.408)
>>>>> DtrLogin (DtrLogin-DTR.426)
>>>>> DtrMA (DtrMA-DTR.410)
>>>>> DtrMagazzino (DtrMagazzino-DTR.412)
>>>>> DtrMagritteAuto (DtrMagritteAuto-DTR.407)
>>>>> * DtrMenuOnLine (DtrMenuOnLine-DTR.416)
>>>>> DTRMetaDb (DTRMetaDb-DTR.5)
>>>>> * DtrMicroObj (DtrMicroObj-DTR.414)
>>>>> DtrMRP (DtrMRP-DTR.408)
>>>>> DTROnlyForOODB (DTROnlyForOODB-DTR.186)
>>>>> DTRPier (DTRPier-DTR.445)
>>>>> DtrPrinterTicket (DtrPrinterTicket-DTR.5)
>>>>> DtrRedu (DtrRedu-DTR.405)
>>>>> DtrReduPorting (DtrReduPorting-DTR.407)
>>>>> FastCGI (FastCGI-dkh.33)
>>>>> FastCGIPool (FastCGIPool-dkh.2)
>>>>> GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.9)
>>>>> GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
>>>>> GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.3)
>>>>> GemStone-Release-Support (GemStone-Release-Support-dkh.67)
>>>>> Gofer-Core (Gofer-Core.gemstone-dkh.137)
>>>>> GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
>>>>> * GoogleMaps (GoogleMaps-jgf.23)
>>>>> Grease-Core (Grease-Core-JohanBrichau.94)
>>>>> Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
>>>>> Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
>>>>> Grease-Tests-Core (Grease-Tests-Core-pmm.99)
>>>>> Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
>>>>> GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.10)
>>>>> GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
>>>>> GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
>>>>> GsUpgrader-Core (GsUpgrader-Core-dkh.38)
>>>>> JadeServer (JadeServer-dkh.13)
>>>>> Javascript-Core (Javascript-Core-pmm.94)
>>>>> Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
>>>>> Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
>>>>> Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
>>>>> JQuery-Core (JQuery-Core-lr.123)
>>>>> JQuery-Extensions (JQuery-Extensions-DTR.7)
>>>>> JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
>>>>> JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
>>>>> JQuery-UI (JQuery-UI.gemstone-dkh.81)
>>>>> JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
>>>>> JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
>>>>> JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
>>>>> JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
>>>>> Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
>>>>> Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
>>>>> Magritte-Json (Magritte-Json-NickAger.18)
>>>>> Magritte-Model (Magritte-Model-NickAger.431)
>>>>> * Magritte-Seaside (Magritte-Seaside-NickAger.355)
>>>>> Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
>>>>> Metacello-Base (Metacello-Base-dkh.123)
>>>>> Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
>>>>> Metacello-Core (Metacello-Core-dkh.806)
>>>>> Metacello-FileTree (Metacello-FileTree-dkh.36)
>>>>> Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
>>>>> Metacello-GitHub (Metacello-GitHub-dkh.44)
>>>>> Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
>>>>> Metacello-MC (Metacello-MC-dkh.722)
>>>>> Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
>>>>> Metacello-ToolBox (Metacello-ToolBox-dkh.139)
>>>>> Monticello (Monticello.v3-dkh.456)
>>>>> * MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.166)
>>>>> MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
>>>>> NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
>>>>> NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
>>>>> OB-GemStone-Platform (OB-GemStone-Platform-dkh.69)
>>>>> OB-Metacello (OB-Metacello-dkh.83)
>>>>> OB-Monticello (OB-Monticello-DaleHenrichs.103)
>>>>> OB-Standard (OB-Standard.v3-dkh.448)
>>>>> OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
>>>>> OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
>>>>> OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
>>>>> OB-Tools (OB-Tools.v3-dkh.136)
>>>>> OmniBrowser (OmniBrowser-DaleHenrichs.447)
>>>>> PackageInfo-Base (PackageInfo-Base.g-dkh.36)
>>>>> Pier-Admin (Pier-Admin-NickAger.87)
>>>>> Pier-Blog (Pier-Blog-NickAger.158)
>>>>> Pier-Book (Pier-Book.gemstone-NickAger.159)
>>>>> Pier-Design (Pier-Design-NickAger.12)
>>>>> Pier-Documents (Pier-Documents-NickAger.29)
>>>>> Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
>>>>> Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
>>>>> Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
>>>>> Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
>>>>> Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
>>>>> Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
>>>>> Pier-Google (Pier-Google-NickAger.20)
>>>>> Pier-JQuery (Pier-JQuery-NickAger.13)
>>>>> Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
>>>>> Pier-LinkChecker (Pier-LinkChecker-lr.7)
>>>>> Pier-Model (Pier-Model-NickAger.424)
>>>>> * Pier-Seaside (Pier-Seaside-NickAger.536)
>>>>> * Pier-Security (Pier-Security-NickAger.184)
>>>>> Pier-Shout (Pier-Shout-NickAger.5)
>>>>> Pier-TagCloud (Pier-TagCloud-NickAger.26)
>>>>> Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
>>>>> Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
>>>>> Prototype-Core (Prototype-Core-lr.25)
>>>>> Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
>>>>> Regex-Core (Regex-Core-DaleHenrichs.3)
>>>>> Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
>>>>> RSS-Core (RSS-Core-lr.67)
>>>>> RSS-Examples (RSS-Examples-lr.26)
>>>>> RSS-Tests-Core (RSS-Tests-Core-lr.30)
>>>>> * Scriptaculous-Components (Scriptaculous-Components-lr.111)
>>>>> Scriptaculous-Core (Scriptaculous-Core-pmm.102)
>>>>> Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
>>>>> Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
>>>>> Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
>>>>> Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
>>>>> Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
>>>>> Seaside-Component (Seaside-Component-jok.92)
>>>>> * Seaside-Core (Seaside-Core.gemstone-dkh.774)
>>>>> * Seaside-Development (Seaside-Development-pmm.156)
>>>>> Seaside-Email (Seaside-Email-PaulDeBruicker.24)
>>>>> Seaside-Environment (Seaside-Environment-NickAger.77)
>>>>> Seaside-Examples (Seaside-Examples-lr.23)
>>>>> Seaside-FileSystem (Seaside-FileSystem-pmm.26)
>>>>> Seaside-Flow (Seaside-Flow-pmm.23)
>>>>> Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
>>>>> Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
>>>>> Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
>>>>> Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
>>>>> Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
>>>>> Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
>>>>> Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
>>>>> Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
>>>>> Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
>>>>> * Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
>>>>> Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
>>>>> Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
>>>>> Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
>>>>> Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
>>>>> Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
>>>>> Seaside-HTML5 (Seaside-HTML5-pmm.28)
>>>>> Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
>>>>> Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
>>>>> Seaside-Session (Seaside-Session.gemstone-dkh.158)
>>>>> Seaside-Swazoo (Seaside-Swazoo-pmm.20)
>>>>> Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
>>>>> Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
>>>>> Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
>>>>> Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
>>>>> Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
>>>>> Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
>>>>> Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
>>>>> Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
>>>>> Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
>>>>> Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
>>>>> Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
>>>>> Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
>>>>> Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
>>>>> Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
>>>>> Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
>>>>> Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
>>>>> Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
>>>>> Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
>>>>> Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
>>>>> Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
>>>>> Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
>>>>> Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
>>>>> Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
>>>>> Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
>>>>> Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
>>>>> * Seaside-Welcome (Seaside-Welcome-NickAger.40)
>>>>> Seaside-Widgets (Seaside-Widgets-lr.26)
>>>>> Shout-Parsing (Shout-Parsing-NickAger.3)
>>>>> SIXX (SIXX.310-PaulDeBruicker.182)
>>>>> SMTPMail (SMTPMail-dkh.11)
>>>>> SocketStream (SocketStream-PaulDeBruicker.12)
>>>>> Sport (Sport3.010.v3-dkh.29)
>>>>> * Squeak (Squeak.v3-DaleHenrichs.298)
>>>>> Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
>>>>> System-Digital-Signatures (System-Digital-Signatures-dkh.5)
>>>>> TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
>>>>> TopFeeder-Model (TopFeeder-Model-NickAger.5)
>>>>> TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
>>>>> Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
>>>>> Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
>>>>> Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
>>>>> Utf8Encoding (Utf8Encoding.310-dkh.30)
>>>>> XML-Observable (XML-Observable-JohanBrichau.1)
>>>>> XML-Parser (XML-Parser.g-dkh.122)
>>>>> XML-Writer (XML-Writer-JAAyer.5)
>>>>> Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
>>>>> Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
>>>>> * Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)'
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> The stone does not work report:
>>>>>
>>>>> 'Announcements (Announcements.v3-dkh.18)
>>>>> AST-Core (AST-Core-dkh.102)
>>>>> Base-Bootstrap (Base-Bootstrap.v3-dkh.30)
>>>>> BaselineOfFileTree (BaselineOfFileTree-dkh.4)
>>>>> BaselineOfGLASS1 (BaselineOfGLASS1-dkh.43)
>>>>> BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
>>>>> BaselineOfMetacello (BaselineOfMetacello-dkh.85)
>>>>> BaselineOfRB (BaselineOfRB-dkh.5)
>>>>> BaselineOfSIXX (BaselineOfSIXX-dkh.1)
>>>>> BaselineOfSton (BaselineOfSton-dkh.1)
>>>>> BaselineOfTode (BaselineOfTode-dkh.41)
>>>>> * Bootstrap (Bootstrap.v3-dkh.241)
>>>>> Change-Notification (Change-Notification.v310-dkh.21)
>>>>> Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
>>>>> Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-JohanBrichau.9)
>>>>> Collections-Support (Collections-Support.g-OttoBehrens.45)
>>>>> ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.11)
>>>>> ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.36)
>>>>> ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
>>>>> ConfigurationOfGofer (ConfigurationOfGofer-dkh.45)
>>>>> ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-dkh.22)
>>>>> ConfigurationOfGrease (ConfigurationOfGrease-dkh.189)
>>>>> ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
>>>>> ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
>>>>> ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
>>>>> ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
>>>>> ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.91)
>>>>> ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
>>>>> ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
>>>>> ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
>>>>> ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
>>>>> ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
>>>>> ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
>>>>> ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
>>>>> ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
>>>>> ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
>>>>> ConfigurationOfSeaside3 (ConfigurationOfSeaside3-dkh.222)
>>>>> ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
>>>>> ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
>>>>> ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
>>>>> ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
>>>>> ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-NorbertHartl.64)
>>>>> ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
>>>>> ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
>>>>> * Core (Core.v3-dkh.90)
>>>>> Core31x (Core31x-dkh.5)
>>>>> * Crossfade (Crossfade-pmm.8)
>>>>> CSSBarGraph (CSSBarGraph-pmm.11)
>>>>> DtrBase (DtrBase-DTR.418)
>>>>> DTRCassa (DTRCassa-DTR.21)
>>>>> * DtrConfig (DtrConfig-DTR.412)
>>>>> DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
>>>>> DTRCore (DTRCore-DTR.417)
>>>>> DtrCrossfade (DtrCrossfade-DTR.408)
>>>>> DtrCRP (DtrCRP-DTR.411)
>>>>> DtrFinanza (DtrFinanza-DTR.417)
>>>>> DtrGestionale (DtrGestionale-DTR.412)
>>>>> DtrGoogle (DtrGoogle-DTR.408)
>>>>> DtrLogin (DtrLogin-DTR.426)
>>>>> DtrMA (DtrMA-DTR.410)
>>>>> DtrMagazzino (DtrMagazzino-DTR.412)
>>>>> DtrMagritteAuto (DtrMagritteAuto-DTR.407)
>>>>> DtrMenuOnLine (DtrMenuOnLine-DTR.416)
>>>>> DTRMetaDb (DTRMetaDb-DTR.5)
>>>>> DtrMicroObj (DtrMicroObj-DTR.414)
>>>>> DtrMRP (DtrMRP-DTR.408)
>>>>> DTROnlyForOODB (DTROnlyForOODB-DTR.186)
>>>>> DtrPrinterTicket (DtrPrinterTicket-DTR.5)
>>>>> DtrRedu (DtrRedu-DTR.405)
>>>>> DtrReduPorting (DtrReduPorting-DTR.408)
>>>>> FastCGI (FastCGI-dkh.33)
>>>>> FastCGIPool (FastCGIPool-dkh.2)
>>>>> GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.12)
>>>>> GemStone-Compression (GemStone-Compression-dkh.7)
>>>>> GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
>>>>> GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.4)
>>>>> GemStone-Interactions (GemStone-Interactions-dkh.12)
>>>>> GemStone-Release-Support (GemStone-Release-Support-dkh.67)
>>>>> * Generated ()
>>>>> Gofer-Core (Gofer-Core.gemstone-dkh.138)
>>>>> GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
>>>>> * GoogleMaps (GoogleMaps-jgf.23)
>>>>> Grease-Core (Grease-Core-JohanBrichau.94)
>>>>> Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
>>>>> Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
>>>>> Grease-Tests-Core (Grease-Tests-Core-pmm.99)
>>>>> Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
>>>>> * GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.20)
>>>>> GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
>>>>> GsSqueakCommon-CoreV30 (GsSqueakCommon-CoreV30-dkh.1)
>>>>> GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
>>>>> GsUpgrader-Core (GsUpgrader-Core-dkh.38)
>>>>> JadeServer (JadeServer-dkh.13)
>>>>> Javascript-Core (Javascript-Core-pmm.94)
>>>>> Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
>>>>> Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
>>>>> Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
>>>>> JQuery-Core (JQuery-Core-lr.123)
>>>>> JQuery-Extensions (JQuery-Extensions-DTR.7)
>>>>> JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
>>>>> JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
>>>>> JQuery-UI (JQuery-UI.gemstone-dkh.81)
>>>>> JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
>>>>> JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
>>>>> JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
>>>>> JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
>>>>> Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
>>>>> Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
>>>>> Magritte-Json (Magritte-Json-NickAger.18)
>>>>> Magritte-Model (Magritte-Model-NickAger.431)
>>>>> * Magritte-Seaside (Magritte-Seaside-NickAger.355)
>>>>> Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
>>>>> Metacello-Base (Metacello-Base-topa.124)
>>>>> Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
>>>>> Metacello-Core (Metacello-Core-dkh.809)
>>>>> Metacello-FileTree (Metacello-FileTree-dkh.36)
>>>>> Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
>>>>> Metacello-GitHub (Metacello-GitHub-dkh.44)
>>>>> Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
>>>>> Metacello-MC (Metacello-MC-dkh.726)
>>>>> Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
>>>>> Metacello-ToolBox (Metacello-ToolBox-dkh.139)
>>>>> Monticello (Monticello.v3-dkh.476)
>>>>> MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.183)
>>>>> MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
>>>>> MonticelloGs (MonticelloGs-dkh.2)
>>>>> NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
>>>>> NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
>>>>> OB-GemStone-Platform (OB-GemStone-Platform-dkh.76)
>>>>> OB-Metacello (OB-Metacello-dkh.83)
>>>>> OB-Monticello (OB-Monticello-dkh.105)
>>>>> OB-Standard (OB-Standard.v3-dkh.449)
>>>>> OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
>>>>> OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
>>>>> OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
>>>>> OB-Tools (OB-Tools.v3-dkh.140)
>>>>> OmniBrowser (OmniBrowser-DaleHenrichs.447)
>>>>> PackageInfo-Base (PackageInfo-Base.g-dkh.36)
>>>>> Pier-Admin (Pier-Admin-NickAger.87)
>>>>> Pier-Blog (Pier-Blog-NickAger.158)
>>>>> Pier-Book (Pier-Book.gemstone-NickAger.159)
>>>>> Pier-Design (Pier-Design-NickAger.12)
>>>>> Pier-Documents (Pier-Documents-NickAger.29)
>>>>> Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
>>>>> Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
>>>>> Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
>>>>> Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
>>>>> Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
>>>>> Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
>>>>> Pier-Google (Pier-Google-NickAger.20)
>>>>> Pier-JQuery (Pier-JQuery-NickAger.13)
>>>>> Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
>>>>> Pier-LinkChecker (Pier-LinkChecker-lr.7)
>>>>> Pier-Model (Pier-Model-NickAger.424)
>>>>> Pier-Seaside (Pier-Seaside-NickAger.536)
>>>>> Pier-Security (Pier-Security-NickAger.184)
>>>>> Pier-Shout (Pier-Shout-NickAger.5)
>>>>> Pier-TagCloud (Pier-TagCloud-NickAger.26)
>>>>> Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
>>>>> Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
>>>>> Prototype-Core (Prototype-Core-lr.25)
>>>>> Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
>>>>> Regex-Core (Regex-Core-DaleHenrichs.3)
>>>>> Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
>>>>> RSS-Core (RSS-Core-lr.67)
>>>>> RSS-Examples (RSS-Examples-lr.26)
>>>>> RSS-Tests-Core (RSS-Tests-Core-lr.30)
>>>>> * Scriptaculous-Components (Scriptaculous-Components-lr.111)
>>>>> Scriptaculous-Core (Scriptaculous-Core-pmm.102)
>>>>> Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
>>>>> Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
>>>>> Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
>>>>> Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
>>>>> Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
>>>>> Seaside-Component (Seaside-Component-jok.92)
>>>>> * Seaside-Core (Seaside-Core.gemstone-dkh.774)
>>>>> * Seaside-Development (Seaside-Development-pmm.156)
>>>>> Seaside-Email (Seaside-Email-PaulDeBruicker.24)
>>>>> Seaside-Environment (Seaside-Environment-NickAger.77)
>>>>> Seaside-Examples (Seaside-Examples-lr.23)
>>>>> Seaside-FileSystem (Seaside-FileSystem-pmm.26)
>>>>> Seaside-Flow (Seaside-Flow-pmm.23)
>>>>> Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
>>>>> Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
>>>>> Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
>>>>> Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
>>>>> Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
>>>>> Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
>>>>> Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
>>>>> Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
>>>>> Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
>>>>> * Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
>>>>> Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
>>>>> Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
>>>>> Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
>>>>> Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
>>>>> Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
>>>>> Seaside-HTML5 (Seaside-HTML5-pmm.28)
>>>>> Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
>>>>> Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
>>>>> Seaside-Session (Seaside-Session.gemstone-dkh.158)
>>>>> Seaside-Swazoo (Seaside-Swazoo-pmm.20)
>>>>> Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
>>>>> Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
>>>>> Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
>>>>> Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
>>>>> Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
>>>>> Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
>>>>> Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
>>>>> Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
>>>>> Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
>>>>> Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
>>>>> Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
>>>>> Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
>>>>> Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
>>>>> Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
>>>>> Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
>>>>> Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
>>>>> Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
>>>>> Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
>>>>> Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
>>>>> Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
>>>>> Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
>>>>> Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
>>>>> Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
>>>>> Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
>>>>> Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
>>>>> * Seaside-Welcome (Seaside-Welcome-NickAger.40)
>>>>> Seaside-Widgets (Seaside-Widgets-lr.26)
>>>>> Shout-Parsing (Shout-Parsing-NickAger.3)
>>>>> SIXX (SIXX.310-dkh.183)
>>>>> SMTPMail (SMTPMail-dkh.11)
>>>>> SocketStream (SocketStream-PaulDeBruicker.12)
>>>>> * Sport (Sport3.010.v3-dkh.32)
>>>>> * Squeak (Squeak.v3-dkh.309)
>>>>> * STON-Core (STON-Core-dkh.46)
>>>>> Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
>>>>> System-Digital-Signatures (System-Digital-Signatures-dkh.5)
>>>>> Tode-AST-Extensions (Tode-AST-Extensions-dkh.2)
>>>>> Tode-BatchEdit-Tool (Tode-BatchEdit-Tool-dkh.3)
>>>>> Tode-GemStone-Server-Core (Tode-GemStone-Server-Core-dkh.118)
>>>>> Tode-GemStone-Server-Tests (Tode-GemStone-Server-Tests-dkh.5)
>>>>> Tode-Server-31x-GsProcess-Patch (Tode-Server-31x-GsProcess-Patch-dkh.1)
>>>>> Tode-Server-TestTestTools (Tode-Server-TestTestTools-dkh.2)
>>>>> Topez-Common-Core (Topez-Common-Core-dkh.414)
>>>>> Topez-Common-Tests (Topez-Common-Tests-dkh.22)
>>>>> Topez-Server-31x-Core (Topez-Server-31x-Core-dkh.5)
>>>>> Topez-Server-31x-DebugTools (Topez-Server-31x-DebugTools-dkh.19)
>>>>> Topez-Server-31x-Tests (Topez-Server-31x-Tests-dkh.3)
>>>>> Topez-Server-3x-Core (Topez-Server-3x-Core-dkh.2)
>>>>> Topez-Server-3x-DebugTools (Topez-Server-3x-DebugTools-dkh.2)
>>>>> Topez-Server-Core (Topez-Server-Core-dkh.89)
>>>>> Topez-Server-DebugTools (Topez-Server-DebugTools-dkh.151)
>>>>> Topez-Server-ProcessTools (Topez-Server-ProcessTools-dkh.25)
>>>>> Topez-Server-TestDebugTools (Topez-Server-TestDebugTools-dkh.19)
>>>>> Topez-Server-Tests (Topez-Server-Tests-dkh.151)
>>>>> Topez-Server-TestTools (Topez-Server-TestTools-dkh.54)
>>>>> TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
>>>>> TopFeeder-Model (TopFeeder-Model-NickAger.5)
>>>>> TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
>>>>> Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
>>>>> Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
>>>>> Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
>>>>> Utf8Encoding (Utf8Encoding.310-dkh.32)
>>>>> XML-Observable (XML-Observable-JohanBrichau.1)
>>>>> XML-Parser (XML-Parser.g-NorbertHartl.119)
>>>>> XML-Writer (XML-Writer-JAAyer.5)
>>>>> Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
>>>>> Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
>>>>> * Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)
>>>>> '
>>>>>
>>>>> Thanks,
>>>>>        Dario
>>>>>
>>>>>> Dale
>>>>>>
>>>>>> On 03/10/2015 11:06 AM, Dario Trussardi via Glass wrote:
>>>>>>> Ciao,
>>>>>>>
>>>>>>>    I have a devkit tODE stone create with createTodeStone  devkit  3.1.0.6
>>>>>>>
>>>>>>> into it i load:
>>>>>>>
>>>>>>> GsDeployer
>>>>>>>   bulkMigrate: [
>>>>>>>     {#( 'XMLSupport' '1.2.2' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
>>>>>>>    #('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
>>>>>>>     #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
>>>>>>>     #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
>>>>>>>     #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
>>>>>>>     #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
>>>>>>>     #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
>>>>>>>       do: [ :ar |
>>>>>>>         | projectName version repository |
>>>>>>>         projectName := ar at: 1.
>>>>>>>         version := ar at: 2.
>>>>>>>         repository := ar at: 3.
>>>>>>>         Metacello new
>>>>>>>           configuration: projectName;
>>>>>>>           repository: repository;
>>>>>>>           get.
>>>>>>>         Metacello new
>>>>>>>           configuration: projectName;
>>>>>>>           version: version;
>>>>>>>           repository: repository;
>>>>>>>           onUpgrade: [ :ex :existing :new |
>>>>>>>                 existing locked
>>>>>>>                   ifTrue: [ ex disallow ]
>>>>>>>                   ifFalse: [ ex allow ] ];
>>>>>>>           onConflict: [ :ex | ex disallow ];
>>>>>>>           load.
>>>>>>>         Metacello new
>>>>>>>           configuration: projectName;
>>>>>>>           version: version;
>>>>>>>           repository: repository;
>>>>>>>           lock ] ]
>>>>>>>
>>>>>>> and:
>>>>>>>
>>>>>>> GsDeployer bulkMigrate: [
>>>>>>>   Metacello new
>>>>>>>       baseline: 'SIXX';
>>>>>>>       repository: 'github://glassdb/SIXX:master/repository';
>>>>>>>       load ].
>>>>>>>
>>>>>>> A this point the     SixxExamples example2        works fine.
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> Now i can save a sixx file relative to my data application      anEnv link     with:
>>>>>>>
>>>>>>>    writeObject: anEnv toFile: aFilename inFolder: aDirectoryPath
>>>>>>>
>>>>>>>    | fileStream sws |
>>>>>>>
>>>>>>>    fileStream := ( FileDirectory on: aDirectoryPath) newFileNamed: aFilename.
>>>>>>>
>>>>>>>    sws := SixxWriteStream on: fileStream.
>>>>>>>
>>>>>>>    sws nextPut: anEnv.
>>>>>>>    sws close.
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> After when i do the command:  ^Object readSixxFrom: fileStream contents.
>>>>>>>
>>>>>>> to read the sixx file create above the system answer the error:
>>>>>>>
>>>>>>> a SixxXmlParseError occurred (error 2710) - G/S[Scandella3106 devkit:1]
>>>>>>>
>>>>>>> AbstractException >> _signalWith: (envId 0)
>>>>>>> AbstractException >> signal (envId 0)
>>>>>>> SixxPortableUtil class >> signalException: (envId 0)
>>>>>>> [] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
>>>>>>> AbstractException >> _executeHandler: (envId 0)
>>>>>>> AbstractException >> _signalWith: (envId 0)
>>>>>>> AbstractException >> signal: (envId 0)
>>>>>>> AbstractException class >> signal: (envId 0)
>>>>>>> XMLTokenizer >> parseError: (envId 0)
>>>>>>> XMLTokenizer >> errorExpected: (envId 0)
>>>>>>> XMLTokenizer >> nextLiteral (envId 0)
>>>>>>> XMLTokenizer >> nextPCDataDelimitedBy:putOn: (envId 0)
>>>>>>> [] in  XMLTokenizer >> nextPCData (envId 0)
>>>>>>> XMLNestedStreamWriter >> writeWith: (envId 0)
>>>>>>> XMLTokenizer >> nextPCData (envId 0)
>>>>>>> XMLTokenizer >> nextToken (envId 0)
>>>>>>> XMLParser >> parseToken (envId 0)
>>>>>>> XMLParser >> parseDocument (envId 0)
>>>>>>> SAXHandler >> parseDocument (envId 0)
>>>>>>> XMLDOMParser >> parseDocument (envId 0)
>>>>>>> SAXHandler class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
>>>>>>> XMLDOMParser class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
>>>>>>> SAXHandler class >> parseDocumentFrom:persistentRoot: (envId 0)
>>>>>>> SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
>>>>>>> [] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
>>>>>>> ExecBlock >> on:do: (envId 0)
>>>>>>> SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
>>>>>>> Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
>>>>>>> Behavior >> readSixxFrom: (envId 0)
>>>>>>>
>>>>>>> Considerations ?
>>>>>>>
>>>>>>> Thanks,
>>>>>>>
>>>>>>>    Dario
>>>>>>>
>>>>>>> P.S.  I have another  3.1.0.6    stone where i have:
>>>>>>>
>>>>>>>    ConfigurationOfGsSIXX project currentVersion >=0.3-c.1 [ConfigurationOfGsSIXX]
>>>>>>>
>>>>>>>    ConfigurationOfXMLSupport project currentVersion >=1.2.2.1 [ConfigurationOfXMLSupport]
>>>>>>>
>>>>>>>    Into it  all works fine.
>>>>>>>
>>>>>>>    The sixx file created into it   can reading  into  the devkit  tODE stone  without problem
>>>>>>>
>>>>>>>
>>>>>>> _______________________________________________
>>>>>>> Glass mailing list
>>>>>>> [hidden email]
>>>>>>> http://lists.gemtalksystems.com/mailman/listinfo/glass
>>>>>> _______________________________________________
>>>>>> Glass mailing list
>>>>>> [hidden email]
>>>>>> http://lists.gemtalksystems.com/mailman/listinfo/glass
>>>>> _______________________________________________
>>>>> Glass mailing list
>>>>> [hidden email]
>>>>> http://lists.gemtalksystems.com/mailman/listinfo/glass
>>>
>>> _______________________________________________
>>> Glass mailing list
>>> [hidden email]
>>> http://lists.gemtalksystems.com/mailman/listinfo/glass
>>
>> _______________________________________________
>> Glass mailing list
>> [hidden email]
>> http://lists.gemtalksystems.com/mailman/listinfo/glass
>
>
> _______________________________________________
> Glass mailing list
> [hidden email]
> http://lists.gemtalksystems.com/mailman/listinfo/glass


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
Reply | Threaded
Open this post in threaded view
|

Re: [Glass] Sixx problematic

GLASS mailing list
Dario,

The important thing is that you are able to get SIXX working ... the
real solution to this problem is to get SIXX ported to the latest
XMLParser implementation (and make sure that all of the projects that
depned upon XML keep flying) ...

Dale

On 03/11/2015 10:09 AM, Dario Trussardi via Glass wrote:

> Dale,
>
>> Dario,
>>
>> I have forgotten to mention that now that you are using The Metacello scripting api for loading that the #currentVersion message should not be used either.
>>
>> The #currentVersion method calculates the version and as I've said in the past, it sometimes gets it wrong ...
>>
>> Using the Metacello scripting api, you can print the registration for XMLSupport
>>
>>   Metacello registrations
>>     detect: [ :registration | registration projectName = 'XMLSupport' ].
>>
>> But....right now we are trying to figure out how to reproduce the formula for the "stone that works" and I'd like to see the list of packages that are loaded in the image where SixxExample class>>example2 is failing.
>>
>> Now before we go too far ... I want to understand the status of SixxExample class>>example2.
>>
>> AFAICT, there are three stones:
>>
>>   1. the "old stone" into which you can load your SIXX file without error (and appears to be using XMLSupport 1.2.2.1)
>>   2. the "new stone" that was built by locking XMLSupport 1.2.2 ...
> For point 2 the system woks right.
>>   3. The "new stone 2" that was built by locking XMLSupport 1.2.2.1
> For point 3 the system answer the error as i write into my last e-mail.
> You can test it into a new tODE environment
>>
>> Now I'm curious what results you get for SixxExample class>>example2 in each of those stones.
>>
>> Another odd thing is that you claimed that Mariano's technique worked for you and I assume that Mariano's code was running against the "new stone" with XMLSupport 1.2.2 ... so if XMLSupport 1.2.2 is working for you I'm not sure why we are worried about XMLSupport 1.2.2.1. I made the assumption that the old stone was working because of XMLSupport 1.2.2.1 ... but I could very easily be wrong ... there were quite a few differences between the other packages in the two stones ...
>>
> Yes, you have right.
> The Mariano's technique works fine.
>
> But you write:
>
>>>>> It appears that Mariano's workspace has helped you to get going, but I do believe that 1.2.2.1 is the version of XMLSupprt you should be using, until we can port SIXX (and any other projects that depend upon XMLSupport) to use the newer versions of XMLSupport ...
>
> and i have doubt about XMLSupport version.
>
> Then saw that Mariano's tecniques works well consider the matter closed, for the moment.
>
> Do you agree?
>
> Ciao, thanks,
>
> Dario
>
>> Dale
>>
>>
>> On 03/11/2015 03:09 AM, Dario Trussardi via Glass wrote:
>>> Dale,
>>>
>>> into a clean tODE stone i load:
>>>
>>> GsDeployer
>>>    bulkMigrate: [
>>>      {#('XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
>>> #('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
>>>      #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
>>>      #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
>>>      #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
>>>      #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
>>>      #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
>>>        do: [ :ar |
>>>          | projectName version repository |
>>>          projectName := ar at: 1.
>>>          version := ar at: 2.
>>>          repository := ar at: 3.
>>>          Metacello new
>>>            configuration: projectName;
>>>            repository: repository;
>>>            get.
>>>          Metacello new
>>>            configuration: projectName;
>>>            version: version;
>>>            repository: repository;
>>>            onUpgrade: [ :ex :existing :new |
>>>                  existing locked
>>>                    ifTrue: [ ex disallow ]
>>>                    ifFalse: [ ex allow ] ];
>>>            onConflict: [ :ex | ex disallow ];
>>>            load.
>>>          Metacello new
>>>            configuration: projectName;
>>>            version: version;
>>>            repository: repository;
>>>            lock ] ]
>>>
>>> At the end result: ConfigurationOfXMLSupport project currentVersion >=1.3.0 [ConfigurationOfXMLSupport]
>>>
>>> It's not strange ?  Because not 1.2.2.1  ?
>>>
>>> After i load:
>>>
>>> GsDeployer bulkMigrate: [
>>>    Metacello new
>>>        baseline: 'SIXX';
>>>        repository: 'github://glassdb/SIXX:master/repository';
>>>        load ].
>>>
>>> The SixxExamples example2        don't works.
>>>
>>> It erase the error: a SixxXmlParseError occurred (error 2710) -  G/S[Scandella3106 devkit:1]
>>>
>>> AbstractException >> _signalWith: (envId 0)
>>> AbstractException >> signal (envId 0)
>>> SixxPortableUtil class >> signalException: (envId 0)
>>> [] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
>>> AbstractException >> _executeHandler: (envId 0)
>>> AbstractException >> _signalWith: (envId 0)
>>> AbstractException >> signal (envId 0)
>>> Object >> doesNotUnderstand: (envId 0)
>>> Object >> _doesNotUnderstand:args:envId:reason: (envId 0)
>>> SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
>>> [] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
>>> ExecBlock >> on:do: (envId 0)
>>> SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
>>> Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
>>> Behavior >> readSixxFrom: (envId 0)
>>> SixxExamples class >> example2 (envId 0)
>>> Executed Code
>>> String >> evaluateInContext:symbolList: (envId 0)
>>> JadeServer >> evaluate:inContext: (envId 0)
>>> JadeServer >> printIt:in: (envId 0)
>>> GsNMethod class >> _gsReturnToC (envId 0)
>>>
>>> Ciao,
>>>
>>> Dario
>>>
>>>
>>>> Okay after further review I merge XMLSupport 1.2.2.1 into ConfigurationOfXMLSupport-monty.70 and saved a new version of the configuration (ConfigurationOfXMLSupport-dkh.71) and copied it to the appropriate repositories ... so at least we have 1.2.2.1 around for posterity ...
>>>>
>>>> I have not been able to look into the issues with SIXX and XMLSupport 1.3.0 (the new version published by Monty) ... Monty assures me that the tests all pass for GemStone, but I am not sure whether or not the places that are/were dependent upon the older versions of XMLSupport (like SIXX) are impacted by version 1.3.0 or not .... if so then locking and loading XMLSupport 1.2.2.1 should put things right again ...
>>>>
>>>> Dale
>>>>
>>>> On 03/10/2015 03:07 PM, Dale Henrichs wrote:
>>>>> Likely suspects in from working stone package list (XMLSupport ???):
>>>>>
>>>>>   SIXX (SIXX.310-PaulDeBruicker.182)
>>>>>   XML-Observable (XML-Observable-JohanBrichau.1)
>>>>>   XML-Parser (XML-Parser.g-dkh.122)
>>>>>   XML-Writer (XML-Writer-JAAyer.5)
>>>>>
>>>>> and from failing stone package list (XMLSupport 1.2.2):
>>>>>
>>>>>   SIXX (SIXX.310-dkh.183)
>>>>>   XML-Observable (XML-Observable-JohanBrichau.1)
>>>>>   XML-Parser (XML-Parser.g-NorbertHartl.119)
>>>>>   XML-Writer (XML-Writer-JAAyer.5)
>>>>>
>>>>>
>>>>> It's interesting that for the "working stone" you are using XML-Parser.g-dkh.122 and that package version is not in "any of the ConfigurationOfXMLSupport" versions.
>>>>>
>>>>> According to the commit comment XML-Parser.g-dkh.122:
>>>>>    final sent but not implemented for https://github.com/glassdb/glass/issues/39 bugfix?[1]
>>>>>
>>>>>
>>>>> According to a comment in Issue #39 for glass[2], I created version XMLSupprt 1.2.2.1 with a reference to XML-Parser.g-dkh.122, but a quick search through the configurations for XMLSupport did not reveal a 1.2.2.1 version .. until I peeked at http://www.squeaksource.com/MetacelloRepository/ and found ConfigurationOfXMLSupport-dkh.69 with the 1.2.2.1 version
>>>>> ... It turns out that Monty had written a new version of ConfigurationOfXMLSupport-monty.70, but neglected to merge his changes into ConfigurationOfXMLSupport-dkh.69, so 1.2.2.1 was lost ...
>>>>>
>>>>> Sooooo, I've copied ConfigurationOfXMLSupport-dkh.69 to http://seaside.gemstone.com/ss/MetacelloRepository and you should change your load spec for XMLSupport to the following
>>>>>
>>>>>   #( 'XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository')
>>>>>
>>>>> It appears that Mariano's workspace has helped you to get going, but I do believe that 1.2.2.1 is the version of XMLSupprt you should be using, until we can port SIXX (and any other projects that depend upon XMLSupport) to use the newer versions of XMLSupport ...
>>>>>
>>>>> Dale
>>>>>
>>>>> [1] https://github.com/GsDevKit/GsDevKit/issues/39
>>>>> [2] https://github.com/GsDevKit/GsDevKit/issues/39#issuecomment-58772264
>>>>>
>>>>> On 03/10/2015 01:54 PM, Dario Trussardi via Glass wrote:
>>>>>> Dale,
>>>>>>
>>>>>>
>>>>>>> Dario,
>>>>>>>
>>>>>>> You have a stone that works and a stone that does not ... I would like to understand the differences in packages loaded between the two (for example XMLSupport 1.2.2 my not be the correct version to use for SIXX ...)
>>>>>>>
>>>>>>> Use the following to list the packages in each stone:
>>>>>>>
>>>>>>>   | stream |
>>>>>>>   stream := WriteStream on: String new.
>>>>>>>   (MCWorkingCopy allManagers sorted: [ :a :b | a packageName < b packageName ])
>>>>>>>     do: [ :wc |
>>>>>>>       stream
>>>>>>>         nextPutAll: wc description;
>>>>>>>         cr ].
>>>>>>>   stream contents
>>>>>> The stone that works reports:
>>>>>>
>>>>>> 'Announcements (Announcements.v3-dkh.18)
>>>>>> Base-Bootstrap (Base-Bootstrap.v3-dkh.29)
>>>>>> BaselineOfDtrLogin (BaselineOfDtrLogin-DTR.8)
>>>>>> BaselineOfDtrMOL (BaselineOfDtrMOL-DTR.2)
>>>>>> BaselineOfDtrSupport (BaselineOfDtrSupport-DTR.3)
>>>>>> BaselineOfFileTree (BaselineOfFileTree-dkh.4)
>>>>>> BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
>>>>>> BaselineOfMetacello (BaselineOfMetacello-dkh.85)
>>>>>> BaselineOfSIXX (BaselineOfSIXX-dkh.1)
>>>>>> * Bootstrap (Bootstrap.v3-DaleHenrichs.230)
>>>>>> Change-Notification (Change-Notification.v3-dkh.20)
>>>>>> Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
>>>>>> Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-dkh.11)
>>>>>> Collections-Support (Collections-Support.g-dkh.46)
>>>>>> ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.10)
>>>>>> ConfigurationOfDtrSupport (ConfigurationOfDtrSupport-DTR.1)
>>>>>> ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.66)
>>>>>> ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
>>>>>> ConfigurationOfGofer (ConfigurationOfGofer-dkh.44)
>>>>>> ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-DaleHenrichs.21)
>>>>>> ConfigurationOfGrease (ConfigurationOfGrease-dkh.270)
>>>>>> ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
>>>>>> ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
>>>>>> ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
>>>>>> ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
>>>>>> ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.89)
>>>>>> ConfigurationOfGsSIXX (ConfigurationOfGsSIXX-dkh.11)
>>>>>> ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
>>>>>> ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
>>>>>> ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
>>>>>> ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
>>>>>> ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
>>>>>> ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
>>>>>> ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
>>>>>> ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
>>>>>> * ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
>>>>>> ConfigurationOfSeaside3 (ConfigurationOfSeaside3-JohanBrichau.218)
>>>>>> ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
>>>>>> ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
>>>>>> ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
>>>>>> ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
>>>>>> ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.69)
>>>>>> ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
>>>>>> ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
>>>>>> * Core (Core.v3-DaleHenrichs.76)
>>>>>> * Crossfade (Crossfade-pmm.8)
>>>>>> CSSBarGraph (CSSBarGraph-pmm.11)
>>>>>> DTRAlbums (DTRAlbums-DTR.451)
>>>>>> DtrAssociazioni (DtrAssociazioni-DTR.5)
>>>>>> DtrBase (DtrBase-DTR.418)
>>>>>> * DTRCassa (DTRCassa-DTR.21)
>>>>>> DtrConfig (DtrConfig-DTR.412)
>>>>>> DTRConfigGruppi (DTRConfigGruppi-DTR.1)
>>>>>> DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
>>>>>> DTRCore (DTRCore-DTR.417)
>>>>>> DtrCrossfade (DtrCrossfade-DTR.408)
>>>>>> DtrCRP (DtrCRP-DTR.411)
>>>>>> DtrFinanza (DtrFinanza-DTR.417)
>>>>>> DtrGestionale (DtrGestionale-DTR.412)
>>>>>> DtrGoogle (DtrGoogle-DTR.408)
>>>>>> DtrLogin (DtrLogin-DTR.426)
>>>>>> DtrMA (DtrMA-DTR.410)
>>>>>> DtrMagazzino (DtrMagazzino-DTR.412)
>>>>>> DtrMagritteAuto (DtrMagritteAuto-DTR.407)
>>>>>> * DtrMenuOnLine (DtrMenuOnLine-DTR.416)
>>>>>> DTRMetaDb (DTRMetaDb-DTR.5)
>>>>>> * DtrMicroObj (DtrMicroObj-DTR.414)
>>>>>> DtrMRP (DtrMRP-DTR.408)
>>>>>> DTROnlyForOODB (DTROnlyForOODB-DTR.186)
>>>>>> DTRPier (DTRPier-DTR.445)
>>>>>> DtrPrinterTicket (DtrPrinterTicket-DTR.5)
>>>>>> DtrRedu (DtrRedu-DTR.405)
>>>>>> DtrReduPorting (DtrReduPorting-DTR.407)
>>>>>> FastCGI (FastCGI-dkh.33)
>>>>>> FastCGIPool (FastCGIPool-dkh.2)
>>>>>> GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.9)
>>>>>> GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
>>>>>> GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.3)
>>>>>> GemStone-Release-Support (GemStone-Release-Support-dkh.67)
>>>>>> Gofer-Core (Gofer-Core.gemstone-dkh.137)
>>>>>> GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
>>>>>> * GoogleMaps (GoogleMaps-jgf.23)
>>>>>> Grease-Core (Grease-Core-JohanBrichau.94)
>>>>>> Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
>>>>>> Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
>>>>>> Grease-Tests-Core (Grease-Tests-Core-pmm.99)
>>>>>> Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
>>>>>> GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.10)
>>>>>> GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
>>>>>> GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
>>>>>> GsUpgrader-Core (GsUpgrader-Core-dkh.38)
>>>>>> JadeServer (JadeServer-dkh.13)
>>>>>> Javascript-Core (Javascript-Core-pmm.94)
>>>>>> Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
>>>>>> Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
>>>>>> Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
>>>>>> JQuery-Core (JQuery-Core-lr.123)
>>>>>> JQuery-Extensions (JQuery-Extensions-DTR.7)
>>>>>> JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
>>>>>> JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
>>>>>> JQuery-UI (JQuery-UI.gemstone-dkh.81)
>>>>>> JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
>>>>>> JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
>>>>>> JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
>>>>>> JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
>>>>>> Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
>>>>>> Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
>>>>>> Magritte-Json (Magritte-Json-NickAger.18)
>>>>>> Magritte-Model (Magritte-Model-NickAger.431)
>>>>>> * Magritte-Seaside (Magritte-Seaside-NickAger.355)
>>>>>> Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
>>>>>> Metacello-Base (Metacello-Base-dkh.123)
>>>>>> Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
>>>>>> Metacello-Core (Metacello-Core-dkh.806)
>>>>>> Metacello-FileTree (Metacello-FileTree-dkh.36)
>>>>>> Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
>>>>>> Metacello-GitHub (Metacello-GitHub-dkh.44)
>>>>>> Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
>>>>>> Metacello-MC (Metacello-MC-dkh.722)
>>>>>> Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
>>>>>> Metacello-ToolBox (Metacello-ToolBox-dkh.139)
>>>>>> Monticello (Monticello.v3-dkh.456)
>>>>>> * MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.166)
>>>>>> MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
>>>>>> NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
>>>>>> NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
>>>>>> OB-GemStone-Platform (OB-GemStone-Platform-dkh.69)
>>>>>> OB-Metacello (OB-Metacello-dkh.83)
>>>>>> OB-Monticello (OB-Monticello-DaleHenrichs.103)
>>>>>> OB-Standard (OB-Standard.v3-dkh.448)
>>>>>> OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
>>>>>> OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
>>>>>> OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
>>>>>> OB-Tools (OB-Tools.v3-dkh.136)
>>>>>> OmniBrowser (OmniBrowser-DaleHenrichs.447)
>>>>>> PackageInfo-Base (PackageInfo-Base.g-dkh.36)
>>>>>> Pier-Admin (Pier-Admin-NickAger.87)
>>>>>> Pier-Blog (Pier-Blog-NickAger.158)
>>>>>> Pier-Book (Pier-Book.gemstone-NickAger.159)
>>>>>> Pier-Design (Pier-Design-NickAger.12)
>>>>>> Pier-Documents (Pier-Documents-NickAger.29)
>>>>>> Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
>>>>>> Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
>>>>>> Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
>>>>>> Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
>>>>>> Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
>>>>>> Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
>>>>>> Pier-Google (Pier-Google-NickAger.20)
>>>>>> Pier-JQuery (Pier-JQuery-NickAger.13)
>>>>>> Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
>>>>>> Pier-LinkChecker (Pier-LinkChecker-lr.7)
>>>>>> Pier-Model (Pier-Model-NickAger.424)
>>>>>> * Pier-Seaside (Pier-Seaside-NickAger.536)
>>>>>> * Pier-Security (Pier-Security-NickAger.184)
>>>>>> Pier-Shout (Pier-Shout-NickAger.5)
>>>>>> Pier-TagCloud (Pier-TagCloud-NickAger.26)
>>>>>> Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
>>>>>> Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
>>>>>> Prototype-Core (Prototype-Core-lr.25)
>>>>>> Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
>>>>>> Regex-Core (Regex-Core-DaleHenrichs.3)
>>>>>> Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
>>>>>> RSS-Core (RSS-Core-lr.67)
>>>>>> RSS-Examples (RSS-Examples-lr.26)
>>>>>> RSS-Tests-Core (RSS-Tests-Core-lr.30)
>>>>>> * Scriptaculous-Components (Scriptaculous-Components-lr.111)
>>>>>> Scriptaculous-Core (Scriptaculous-Core-pmm.102)
>>>>>> Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
>>>>>> Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
>>>>>> Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
>>>>>> Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
>>>>>> Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
>>>>>> Seaside-Component (Seaside-Component-jok.92)
>>>>>> * Seaside-Core (Seaside-Core.gemstone-dkh.774)
>>>>>> * Seaside-Development (Seaside-Development-pmm.156)
>>>>>> Seaside-Email (Seaside-Email-PaulDeBruicker.24)
>>>>>> Seaside-Environment (Seaside-Environment-NickAger.77)
>>>>>> Seaside-Examples (Seaside-Examples-lr.23)
>>>>>> Seaside-FileSystem (Seaside-FileSystem-pmm.26)
>>>>>> Seaside-Flow (Seaside-Flow-pmm.23)
>>>>>> Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
>>>>>> Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
>>>>>> Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
>>>>>> Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
>>>>>> Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
>>>>>> Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
>>>>>> Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
>>>>>> Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
>>>>>> Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
>>>>>> * Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
>>>>>> Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
>>>>>> Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
>>>>>> Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
>>>>>> Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
>>>>>> Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
>>>>>> Seaside-HTML5 (Seaside-HTML5-pmm.28)
>>>>>> Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
>>>>>> Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
>>>>>> Seaside-Session (Seaside-Session.gemstone-dkh.158)
>>>>>> Seaside-Swazoo (Seaside-Swazoo-pmm.20)
>>>>>> Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
>>>>>> Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
>>>>>> Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
>>>>>> Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
>>>>>> Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
>>>>>> Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
>>>>>> Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
>>>>>> Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
>>>>>> Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
>>>>>> Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
>>>>>> Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
>>>>>> Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
>>>>>> Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
>>>>>> Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
>>>>>> Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
>>>>>> Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
>>>>>> Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
>>>>>> Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
>>>>>> Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
>>>>>> Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
>>>>>> Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
>>>>>> Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
>>>>>> Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
>>>>>> Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
>>>>>> Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
>>>>>> * Seaside-Welcome (Seaside-Welcome-NickAger.40)
>>>>>> Seaside-Widgets (Seaside-Widgets-lr.26)
>>>>>> Shout-Parsing (Shout-Parsing-NickAger.3)
>>>>>> SIXX (SIXX.310-PaulDeBruicker.182)
>>>>>> SMTPMail (SMTPMail-dkh.11)
>>>>>> SocketStream (SocketStream-PaulDeBruicker.12)
>>>>>> Sport (Sport3.010.v3-dkh.29)
>>>>>> * Squeak (Squeak.v3-DaleHenrichs.298)
>>>>>> Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
>>>>>> System-Digital-Signatures (System-Digital-Signatures-dkh.5)
>>>>>> TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
>>>>>> TopFeeder-Model (TopFeeder-Model-NickAger.5)
>>>>>> TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
>>>>>> Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
>>>>>> Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
>>>>>> Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
>>>>>> Utf8Encoding (Utf8Encoding.310-dkh.30)
>>>>>> XML-Observable (XML-Observable-JohanBrichau.1)
>>>>>> XML-Parser (XML-Parser.g-dkh.122)
>>>>>> XML-Writer (XML-Writer-JAAyer.5)
>>>>>> Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
>>>>>> Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
>>>>>> * Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)'
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> The stone does not work report:
>>>>>>
>>>>>> 'Announcements (Announcements.v3-dkh.18)
>>>>>> AST-Core (AST-Core-dkh.102)
>>>>>> Base-Bootstrap (Base-Bootstrap.v3-dkh.30)
>>>>>> BaselineOfFileTree (BaselineOfFileTree-dkh.4)
>>>>>> BaselineOfGLASS1 (BaselineOfGLASS1-dkh.43)
>>>>>> BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
>>>>>> BaselineOfMetacello (BaselineOfMetacello-dkh.85)
>>>>>> BaselineOfRB (BaselineOfRB-dkh.5)
>>>>>> BaselineOfSIXX (BaselineOfSIXX-dkh.1)
>>>>>> BaselineOfSton (BaselineOfSton-dkh.1)
>>>>>> BaselineOfTode (BaselineOfTode-dkh.41)
>>>>>> * Bootstrap (Bootstrap.v3-dkh.241)
>>>>>> Change-Notification (Change-Notification.v310-dkh.21)
>>>>>> Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
>>>>>> Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-JohanBrichau.9)
>>>>>> Collections-Support (Collections-Support.g-OttoBehrens.45)
>>>>>> ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.11)
>>>>>> ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.36)
>>>>>> ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
>>>>>> ConfigurationOfGofer (ConfigurationOfGofer-dkh.45)
>>>>>> ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-dkh.22)
>>>>>> ConfigurationOfGrease (ConfigurationOfGrease-dkh.189)
>>>>>> ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
>>>>>> ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
>>>>>> ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
>>>>>> ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
>>>>>> ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.91)
>>>>>> ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
>>>>>> ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
>>>>>> ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
>>>>>> ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
>>>>>> ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
>>>>>> ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
>>>>>> ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
>>>>>> ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
>>>>>> ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
>>>>>> ConfigurationOfSeaside3 (ConfigurationOfSeaside3-dkh.222)
>>>>>> ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
>>>>>> ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
>>>>>> ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
>>>>>> ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
>>>>>> ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-NorbertHartl.64)
>>>>>> ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
>>>>>> ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
>>>>>> * Core (Core.v3-dkh.90)
>>>>>> Core31x (Core31x-dkh.5)
>>>>>> * Crossfade (Crossfade-pmm.8)
>>>>>> CSSBarGraph (CSSBarGraph-pmm.11)
>>>>>> DtrBase (DtrBase-DTR.418)
>>>>>> DTRCassa (DTRCassa-DTR.21)
>>>>>> * DtrConfig (DtrConfig-DTR.412)
>>>>>> DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
>>>>>> DTRCore (DTRCore-DTR.417)
>>>>>> DtrCrossfade (DtrCrossfade-DTR.408)
>>>>>> DtrCRP (DtrCRP-DTR.411)
>>>>>> DtrFinanza (DtrFinanza-DTR.417)
>>>>>> DtrGestionale (DtrGestionale-DTR.412)
>>>>>> DtrGoogle (DtrGoogle-DTR.408)
>>>>>> DtrLogin (DtrLogin-DTR.426)
>>>>>> DtrMA (DtrMA-DTR.410)
>>>>>> DtrMagazzino (DtrMagazzino-DTR.412)
>>>>>> DtrMagritteAuto (DtrMagritteAuto-DTR.407)
>>>>>> DtrMenuOnLine (DtrMenuOnLine-DTR.416)
>>>>>> DTRMetaDb (DTRMetaDb-DTR.5)
>>>>>> DtrMicroObj (DtrMicroObj-DTR.414)
>>>>>> DtrMRP (DtrMRP-DTR.408)
>>>>>> DTROnlyForOODB (DTROnlyForOODB-DTR.186)
>>>>>> DtrPrinterTicket (DtrPrinterTicket-DTR.5)
>>>>>> DtrRedu (DtrRedu-DTR.405)
>>>>>> DtrReduPorting (DtrReduPorting-DTR.408)
>>>>>> FastCGI (FastCGI-dkh.33)
>>>>>> FastCGIPool (FastCGIPool-dkh.2)
>>>>>> GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.12)
>>>>>> GemStone-Compression (GemStone-Compression-dkh.7)
>>>>>> GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
>>>>>> GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.4)
>>>>>> GemStone-Interactions (GemStone-Interactions-dkh.12)
>>>>>> GemStone-Release-Support (GemStone-Release-Support-dkh.67)
>>>>>> * Generated ()
>>>>>> Gofer-Core (Gofer-Core.gemstone-dkh.138)
>>>>>> GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
>>>>>> * GoogleMaps (GoogleMaps-jgf.23)
>>>>>> Grease-Core (Grease-Core-JohanBrichau.94)
>>>>>> Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
>>>>>> Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
>>>>>> Grease-Tests-Core (Grease-Tests-Core-pmm.99)
>>>>>> Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
>>>>>> * GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.20)
>>>>>> GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
>>>>>> GsSqueakCommon-CoreV30 (GsSqueakCommon-CoreV30-dkh.1)
>>>>>> GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
>>>>>> GsUpgrader-Core (GsUpgrader-Core-dkh.38)
>>>>>> JadeServer (JadeServer-dkh.13)
>>>>>> Javascript-Core (Javascript-Core-pmm.94)
>>>>>> Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
>>>>>> Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
>>>>>> Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
>>>>>> JQuery-Core (JQuery-Core-lr.123)
>>>>>> JQuery-Extensions (JQuery-Extensions-DTR.7)
>>>>>> JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
>>>>>> JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
>>>>>> JQuery-UI (JQuery-UI.gemstone-dkh.81)
>>>>>> JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
>>>>>> JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
>>>>>> JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
>>>>>> JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
>>>>>> Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
>>>>>> Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
>>>>>> Magritte-Json (Magritte-Json-NickAger.18)
>>>>>> Magritte-Model (Magritte-Model-NickAger.431)
>>>>>> * Magritte-Seaside (Magritte-Seaside-NickAger.355)
>>>>>> Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
>>>>>> Metacello-Base (Metacello-Base-topa.124)
>>>>>> Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
>>>>>> Metacello-Core (Metacello-Core-dkh.809)
>>>>>> Metacello-FileTree (Metacello-FileTree-dkh.36)
>>>>>> Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
>>>>>> Metacello-GitHub (Metacello-GitHub-dkh.44)
>>>>>> Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
>>>>>> Metacello-MC (Metacello-MC-dkh.726)
>>>>>> Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
>>>>>> Metacello-ToolBox (Metacello-ToolBox-dkh.139)
>>>>>> Monticello (Monticello.v3-dkh.476)
>>>>>> MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.183)
>>>>>> MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
>>>>>> MonticelloGs (MonticelloGs-dkh.2)
>>>>>> NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
>>>>>> NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
>>>>>> OB-GemStone-Platform (OB-GemStone-Platform-dkh.76)
>>>>>> OB-Metacello (OB-Metacello-dkh.83)
>>>>>> OB-Monticello (OB-Monticello-dkh.105)
>>>>>> OB-Standard (OB-Standard.v3-dkh.449)
>>>>>> OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
>>>>>> OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
>>>>>> OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
>>>>>> OB-Tools (OB-Tools.v3-dkh.140)
>>>>>> OmniBrowser (OmniBrowser-DaleHenrichs.447)
>>>>>> PackageInfo-Base (PackageInfo-Base.g-dkh.36)
>>>>>> Pier-Admin (Pier-Admin-NickAger.87)
>>>>>> Pier-Blog (Pier-Blog-NickAger.158)
>>>>>> Pier-Book (Pier-Book.gemstone-NickAger.159)
>>>>>> Pier-Design (Pier-Design-NickAger.12)
>>>>>> Pier-Documents (Pier-Documents-NickAger.29)
>>>>>> Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
>>>>>> Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
>>>>>> Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
>>>>>> Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
>>>>>> Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
>>>>>> Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
>>>>>> Pier-Google (Pier-Google-NickAger.20)
>>>>>> Pier-JQuery (Pier-JQuery-NickAger.13)
>>>>>> Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
>>>>>> Pier-LinkChecker (Pier-LinkChecker-lr.7)
>>>>>> Pier-Model (Pier-Model-NickAger.424)
>>>>>> Pier-Seaside (Pier-Seaside-NickAger.536)
>>>>>> Pier-Security (Pier-Security-NickAger.184)
>>>>>> Pier-Shout (Pier-Shout-NickAger.5)
>>>>>> Pier-TagCloud (Pier-TagCloud-NickAger.26)
>>>>>> Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
>>>>>> Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
>>>>>> Prototype-Core (Prototype-Core-lr.25)
>>>>>> Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
>>>>>> Regex-Core (Regex-Core-DaleHenrichs.3)
>>>>>> Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
>>>>>> RSS-Core (RSS-Core-lr.67)
>>>>>> RSS-Examples (RSS-Examples-lr.26)
>>>>>> RSS-Tests-Core (RSS-Tests-Core-lr.30)
>>>>>> * Scriptaculous-Components (Scriptaculous-Components-lr.111)
>>>>>> Scriptaculous-Core (Scriptaculous-Core-pmm.102)
>>>>>> Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
>>>>>> Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
>>>>>> Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
>>>>>> Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
>>>>>> Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
>>>>>> Seaside-Component (Seaside-Component-jok.92)
>>>>>> * Seaside-Core (Seaside-Core.gemstone-dkh.774)
>>>>>> * Seaside-Development (Seaside-Development-pmm.156)
>>>>>> Seaside-Email (Seaside-Email-PaulDeBruicker.24)
>>>>>> Seaside-Environment (Seaside-Environment-NickAger.77)
>>>>>> Seaside-Examples (Seaside-Examples-lr.23)
>>>>>> Seaside-FileSystem (Seaside-FileSystem-pmm.26)
>>>>>> Seaside-Flow (Seaside-Flow-pmm.23)
>>>>>> Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
>>>>>> Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
>>>>>> Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
>>>>>> Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
>>>>>> Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
>>>>>> Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
>>>>>> Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
>>>>>> Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
>>>>>> Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
>>>>>> * Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
>>>>>> Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
>>>>>> Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
>>>>>> Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
>>>>>> Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
>>>>>> Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
>>>>>> Seaside-HTML5 (Seaside-HTML5-pmm.28)
>>>>>> Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
>>>>>> Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
>>>>>> Seaside-Session (Seaside-Session.gemstone-dkh.158)
>>>>>> Seaside-Swazoo (Seaside-Swazoo-pmm.20)
>>>>>> Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
>>>>>> Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
>>>>>> Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
>>>>>> Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
>>>>>> Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
>>>>>> Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
>>>>>> Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
>>>>>> Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
>>>>>> Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
>>>>>> Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
>>>>>> Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
>>>>>> Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
>>>>>> Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
>>>>>> Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
>>>>>> Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
>>>>>> Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
>>>>>> Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
>>>>>> Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
>>>>>> Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
>>>>>> Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
>>>>>> Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
>>>>>> Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
>>>>>> Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
>>>>>> Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
>>>>>> Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
>>>>>> * Seaside-Welcome (Seaside-Welcome-NickAger.40)
>>>>>> Seaside-Widgets (Seaside-Widgets-lr.26)
>>>>>> Shout-Parsing (Shout-Parsing-NickAger.3)
>>>>>> SIXX (SIXX.310-dkh.183)
>>>>>> SMTPMail (SMTPMail-dkh.11)
>>>>>> SocketStream (SocketStream-PaulDeBruicker.12)
>>>>>> * Sport (Sport3.010.v3-dkh.32)
>>>>>> * Squeak (Squeak.v3-dkh.309)
>>>>>> * STON-Core (STON-Core-dkh.46)
>>>>>> Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
>>>>>> System-Digital-Signatures (System-Digital-Signatures-dkh.5)
>>>>>> Tode-AST-Extensions (Tode-AST-Extensions-dkh.2)
>>>>>> Tode-BatchEdit-Tool (Tode-BatchEdit-Tool-dkh.3)
>>>>>> Tode-GemStone-Server-Core (Tode-GemStone-Server-Core-dkh.118)
>>>>>> Tode-GemStone-Server-Tests (Tode-GemStone-Server-Tests-dkh.5)
>>>>>> Tode-Server-31x-GsProcess-Patch (Tode-Server-31x-GsProcess-Patch-dkh.1)
>>>>>> Tode-Server-TestTestTools (Tode-Server-TestTestTools-dkh.2)
>>>>>> Topez-Common-Core (Topez-Common-Core-dkh.414)
>>>>>> Topez-Common-Tests (Topez-Common-Tests-dkh.22)
>>>>>> Topez-Server-31x-Core (Topez-Server-31x-Core-dkh.5)
>>>>>> Topez-Server-31x-DebugTools (Topez-Server-31x-DebugTools-dkh.19)
>>>>>> Topez-Server-31x-Tests (Topez-Server-31x-Tests-dkh.3)
>>>>>> Topez-Server-3x-Core (Topez-Server-3x-Core-dkh.2)
>>>>>> Topez-Server-3x-DebugTools (Topez-Server-3x-DebugTools-dkh.2)
>>>>>> Topez-Server-Core (Topez-Server-Core-dkh.89)
>>>>>> Topez-Server-DebugTools (Topez-Server-DebugTools-dkh.151)
>>>>>> Topez-Server-ProcessTools (Topez-Server-ProcessTools-dkh.25)
>>>>>> Topez-Server-TestDebugTools (Topez-Server-TestDebugTools-dkh.19)
>>>>>> Topez-Server-Tests (Topez-Server-Tests-dkh.151)
>>>>>> Topez-Server-TestTools (Topez-Server-TestTools-dkh.54)
>>>>>> TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
>>>>>> TopFeeder-Model (TopFeeder-Model-NickAger.5)
>>>>>> TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
>>>>>> Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
>>>>>> Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
>>>>>> Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
>>>>>> Utf8Encoding (Utf8Encoding.310-dkh.32)
>>>>>> XML-Observable (XML-Observable-JohanBrichau.1)
>>>>>> XML-Parser (XML-Parser.g-NorbertHartl.119)
>>>>>> XML-Writer (XML-Writer-JAAyer.5)
>>>>>> Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
>>>>>> Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
>>>>>> * Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)
>>>>>> '
>>>>>>
>>>>>> Thanks,
>>>>>>         Dario
>>>>>>
>>>>>>> Dale
>>>>>>>
>>>>>>> On 03/10/2015 11:06 AM, Dario Trussardi via Glass wrote:
>>>>>>>> Ciao,
>>>>>>>>
>>>>>>>>     I have a devkit tODE stone create with createTodeStone  devkit  3.1.0.6
>>>>>>>>
>>>>>>>> into it i load:
>>>>>>>>
>>>>>>>> GsDeployer
>>>>>>>>    bulkMigrate: [
>>>>>>>>      {#( 'XMLSupport' '1.2.2' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
>>>>>>>>     #('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
>>>>>>>>      #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
>>>>>>>>      #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
>>>>>>>>      #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
>>>>>>>>      #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
>>>>>>>>      #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
>>>>>>>>        do: [ :ar |
>>>>>>>>          | projectName version repository |
>>>>>>>>          projectName := ar at: 1.
>>>>>>>>          version := ar at: 2.
>>>>>>>>          repository := ar at: 3.
>>>>>>>>          Metacello new
>>>>>>>>            configuration: projectName;
>>>>>>>>            repository: repository;
>>>>>>>>            get.
>>>>>>>>          Metacello new
>>>>>>>>            configuration: projectName;
>>>>>>>>            version: version;
>>>>>>>>            repository: repository;
>>>>>>>>            onUpgrade: [ :ex :existing :new |
>>>>>>>>                  existing locked
>>>>>>>>                    ifTrue: [ ex disallow ]
>>>>>>>>                    ifFalse: [ ex allow ] ];
>>>>>>>>            onConflict: [ :ex | ex disallow ];
>>>>>>>>            load.
>>>>>>>>          Metacello new
>>>>>>>>            configuration: projectName;
>>>>>>>>            version: version;
>>>>>>>>            repository: repository;
>>>>>>>>            lock ] ]
>>>>>>>>
>>>>>>>> and:
>>>>>>>>
>>>>>>>> GsDeployer bulkMigrate: [
>>>>>>>>    Metacello new
>>>>>>>>        baseline: 'SIXX';
>>>>>>>>        repository: 'github://glassdb/SIXX:master/repository';
>>>>>>>>        load ].
>>>>>>>>
>>>>>>>> A this point the     SixxExamples example2        works fine.
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> Now i can save a sixx file relative to my data application      anEnv link     with:
>>>>>>>>
>>>>>>>>     writeObject: anEnv toFile: aFilename inFolder: aDirectoryPath
>>>>>>>>
>>>>>>>>     | fileStream sws |
>>>>>>>>
>>>>>>>>     fileStream := ( FileDirectory on: aDirectoryPath) newFileNamed: aFilename.
>>>>>>>>
>>>>>>>>     sws := SixxWriteStream on: fileStream.
>>>>>>>>
>>>>>>>>     sws nextPut: anEnv.
>>>>>>>>     sws close.
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> After when i do the command:  ^Object readSixxFrom: fileStream contents.
>>>>>>>>
>>>>>>>> to read the sixx file create above the system answer the error:
>>>>>>>>
>>>>>>>> a SixxXmlParseError occurred (error 2710) - G/S[Scandella3106 devkit:1]
>>>>>>>>
>>>>>>>> AbstractException >> _signalWith: (envId 0)
>>>>>>>> AbstractException >> signal (envId 0)
>>>>>>>> SixxPortableUtil class >> signalException: (envId 0)
>>>>>>>> [] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
>>>>>>>> AbstractException >> _executeHandler: (envId 0)
>>>>>>>> AbstractException >> _signalWith: (envId 0)
>>>>>>>> AbstractException >> signal: (envId 0)
>>>>>>>> AbstractException class >> signal: (envId 0)
>>>>>>>> XMLTokenizer >> parseError: (envId 0)
>>>>>>>> XMLTokenizer >> errorExpected: (envId 0)
>>>>>>>> XMLTokenizer >> nextLiteral (envId 0)
>>>>>>>> XMLTokenizer >> nextPCDataDelimitedBy:putOn: (envId 0)
>>>>>>>> [] in  XMLTokenizer >> nextPCData (envId 0)
>>>>>>>> XMLNestedStreamWriter >> writeWith: (envId 0)
>>>>>>>> XMLTokenizer >> nextPCData (envId 0)
>>>>>>>> XMLTokenizer >> nextToken (envId 0)
>>>>>>>> XMLParser >> parseToken (envId 0)
>>>>>>>> XMLParser >> parseDocument (envId 0)
>>>>>>>> SAXHandler >> parseDocument (envId 0)
>>>>>>>> XMLDOMParser >> parseDocument (envId 0)
>>>>>>>> SAXHandler class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
>>>>>>>> XMLDOMParser class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
>>>>>>>> SAXHandler class >> parseDocumentFrom:persistentRoot: (envId 0)
>>>>>>>> SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
>>>>>>>> [] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
>>>>>>>> ExecBlock >> on:do: (envId 0)
>>>>>>>> SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
>>>>>>>> Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
>>>>>>>> Behavior >> readSixxFrom: (envId 0)
>>>>>>>>
>>>>>>>> Considerations ?
>>>>>>>>
>>>>>>>> Thanks,
>>>>>>>>
>>>>>>>>     Dario
>>>>>>>>
>>>>>>>> P.S.  I have another  3.1.0.6    stone where i have:
>>>>>>>>
>>>>>>>>     ConfigurationOfGsSIXX project currentVersion >=0.3-c.1 [ConfigurationOfGsSIXX]
>>>>>>>>
>>>>>>>>     ConfigurationOfXMLSupport project currentVersion >=1.2.2.1 [ConfigurationOfXMLSupport]
>>>>>>>>
>>>>>>>>     Into it  all works fine.
>>>>>>>>
>>>>>>>>     The sixx file created into it   can reading  into  the devkit  tODE stone  without problem
>>>>>>>>
>>>>>>>>
>>>>>>>> _______________________________________________
>>>>>>>> Glass mailing list
>>>>>>>> [hidden email]
>>>>>>>> http://lists.gemtalksystems.com/mailman/listinfo/glass
>>>>>>> _______________________________________________
>>>>>>> Glass mailing list
>>>>>>> [hidden email]
>>>>>>> http://lists.gemtalksystems.com/mailman/listinfo/glass
>>>>>> _______________________________________________
>>>>>> Glass mailing list
>>>>>> [hidden email]
>>>>>> http://lists.gemtalksystems.com/mailman/listinfo/glass
>>>> _______________________________________________
>>>> Glass mailing list
>>>> [hidden email]
>>>> http://lists.gemtalksystems.com/mailman/listinfo/glass
>>> _______________________________________________
>>> Glass mailing list
>>> [hidden email]
>>> http://lists.gemtalksystems.com/mailman/listinfo/glass
>>
>> _______________________________________________
>> Glass mailing list
>> [hidden email]
>> http://lists.gemtalksystems.com/mailman/listinfo/glass
>
> _______________________________________________
> Glass mailing list
> [hidden email]
> http://lists.gemtalksystems.com/mailman/listinfo/glass


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
Reply | Threaded
Open this post in threaded view
|

Re: [Glass] Sixx problematic

GLASS mailing list
Ciao,

i'm very sorry, but I have to backtrack because sixx does not wok into a new tODE 3.1.0.6 repository.

I have two tODE 3.1.0.6 environment.

In the first ( the hold ) i have load:


and:

 GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: '<a href="github://glassdb/SIXX:master/repository'">github://glassdb/SIXX:master/repository';
      load ].

Into it the : SixxExamples example2.        works fine,

and the Mariano  serialize and materialize using SIXX, with UTF8 also works fine

This system configurations report:

ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-NorbertHartl.64)
ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
 


In the new second tODE 3.1.0.6 environment i have load:

    { #( 'XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').  

I also test  with XMLSupport' '1.2.2' but with the same error 
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository')}
     
and:

 GsDeployer bulkMigrate: [
   Metacello new
       baseline: 'SIXX';
       repository: '<a href="github://glassdb/SIXX:master/repository'">github://glassdb/SIXX:master/repository';
       load ].

Into it the : SixxExamples example2.      answer the error: a SixxXmlParseError occurred (error 2710)

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
Object >> doesNotUnderstand: (envId 0)
Object >> _doesNotUnderstand:args:envId:reason: (envId 0)
******** SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)
SixxExamples class >> example2 (envId 0)
Executed Code           
String >> evaluateInContext:symbolList: (envId 0)
JadeServer >> evaluate:inContext: (envId 0)
JadeServer >> printIt:in: (envId 0)
GsNMethod class >> _gsReturnToC (envId 0)


and the Mariano  materialize using SIXX, with UTF8 also answer the same error:  a SixxXmlParseError occurred (error 2710)

This system configurations report:

ConfigurationOfXMLParser (ConfigurationOfXMLParser-monty.119) ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.71) ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)


The upper  ****** error is relative to the method: 

parseXml: xmlStringOrStream persistentRoot: persistentArrayOrNil
| stream |
stream := xmlStringOrStream isStream
ifTrue: [xmlStringOrStream]
ifFalse: [ReadStream on: xmlStringOrStream].

^ (XMLDOMParser parseDocumentFrom: stream persistentRoot: persistentArrayOrNil) topElement


Where XMLDOMParser don't implement the method :  parseDocumentFrom: stream persistentRoot: persistentArrayOrNil) 

Does anyone have ideas how manage sixx I/O  into tODE without error ?

Thanks,

Dario

Dario,

The important thing is that you are able to get SIXX working ... the real solution to this problem is to get SIXX ported to the latest XMLParser implementation (and make sure that all of the projects that depned upon XML keep flying) ...

Dale

On 03/11/2015 10:09 AM, Dario Trussardi via Glass wrote:
Dale,

Dario,

I have forgotten to mention that now that you are using The Metacello scripting api for loading that the #currentVersion message should not be used either.

The #currentVersion method calculates the version and as I've said in the past, it sometimes gets it wrong ...

Using the Metacello scripting api, you can print the registration for XMLSupport

 Metacello registrations
   detect: [ :registration | registration projectName = 'XMLSupport' ].

But....right now we are trying to figure out how to reproduce the formula for the "stone that works" and I'd like to see the list of packages that are loaded in the image where SixxExample class>>example2 is failing.

Now before we go too far ... I want to understand the status of SixxExample class>>example2.

AFAICT, there are three stones:

 1. the "old stone" into which you can load your SIXX file without error (and appears to be using XMLSupport 1.2.2.1)
 2. the "new stone" that was built by locking XMLSupport 1.2.2 ...
For point 2 the system woks right.
 3. The "new stone 2" that was built by locking XMLSupport 1.2.2.1
For point 3 the system answer the error as i write into my last e-mail.
You can test it into a new tODE environment

Now I'm curious what results you get for SixxExample class>>example2 in each of those stones.

Another odd thing is that you claimed that Mariano's technique worked for you and I assume that Mariano's code was running against the "new stone" with XMLSupport 1.2.2 ... so if XMLSupport 1.2.2 is working for you I'm not sure why we are worried about XMLSupport 1.2.2.1. I made the assumption that the old stone was working because of XMLSupport 1.2.2.1 ... but I could very easily be wrong ... there were quite a few differences between the other packages in the two stones ...

Yes, you have right.
The Mariano's technique works fine.

But you write:

It appears that Mariano's workspace has helped you to get going, but I do believe that 1.2.2.1 is the version of XMLSupprt you should be using, until we can port SIXX (and any other projects that depend upon XMLSupport) to use the newer versions of XMLSupport ...

and i have doubt about XMLSupport version.

Then saw that Mariano's tecniques works well consider the matter closed, for the moment.

Do you agree?

Ciao, thanks,

Dario

Dale


On 03/11/2015 03:09 AM, Dario Trussardi via Glass wrote:
Dale,

into a clean tODE stone i load:

GsDeployer
  bulkMigrate: [
    {#('XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
#('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
    #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
    #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
      do: [ :ar |
        | projectName version repository |
        projectName := ar at: 1.
        version := ar at: 2.
        repository := ar at: 3.
        Metacello new
          configuration: projectName;
          repository: repository;
          get.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          onUpgrade: [ :ex :existing :new |
                existing locked
                  ifTrue: [ ex disallow ]
                  ifFalse: [ ex allow ] ];
          onConflict: [ :ex | ex disallow ];
          load.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          lock ] ]

At the end result: ConfigurationOfXMLSupport project currentVersion >=1.3.0 [ConfigurationOfXMLSupport]

It's not strange ?  Because not 1.2.2.1  ?

After i load:

GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: '<a href="github://glassdb/SIXX:master/repository'">github://glassdb/SIXX:master/repository';
      load ].

The SixxExamples example2        don't works.

It erase the error: a SixxXmlParseError occurred (error 2710) -  G/S[Scandella3106 devkit:1]

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
Object >> doesNotUnderstand: (envId 0)
Object >> _doesNotUnderstand:args:envId:reason: (envId 0)
SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)
SixxExamples class >> example2 (envId 0)
Executed Code
String >> evaluateInContext:symbolList: (envId 0)
JadeServer >> evaluate:inContext: (envId 0)
JadeServer >> printIt:in: (envId 0)
GsNMethod class >> _gsReturnToC (envId 0)

Ciao,

Dario


Okay after further review I merge XMLSupport 1.2.2.1 into ConfigurationOfXMLSupport-monty.70 and saved a new version of the configuration (ConfigurationOfXMLSupport-dkh.71) and copied it to the appropriate repositories ... so at least we have 1.2.2.1 around for posterity ...

I have not been able to look into the issues with SIXX and XMLSupport 1.3.0 (the new version published by Monty) ... Monty assures me that the tests all pass for GemStone, but I am not sure whether or not the places that are/were dependent upon the older versions of XMLSupport (like SIXX) are impacted by version 1.3.0 or not .... if so then locking and loading XMLSupport 1.2.2.1 should put things right again ...

Dale

On 03/10/2015 03:07 PM, Dale Henrichs wrote:
Likely suspects in from working stone package list (XMLSupport ???):

 SIXX (SIXX.310-PaulDeBruicker.182)
 XML-Observable (XML-Observable-JohanBrichau.1)
 XML-Parser (XML-Parser.g-dkh.122)
 XML-Writer (XML-Writer-JAAyer.5)

and from failing stone package list (XMLSupport 1.2.2):

 SIXX (SIXX.310-dkh.183)
 XML-Observable (XML-Observable-JohanBrichau.1)
 XML-Parser (XML-Parser.g-NorbertHartl.119)
 XML-Writer (XML-Writer-JAAyer.5)


It's interesting that for the "working stone" you are using XML-Parser.g-dkh.122 and that package version is not in "any of the ConfigurationOfXMLSupport" versions.

According to the commit comment XML-Parser.g-dkh.122:
  final sent but not implemented for https://github.com/glassdb/glass/issues/39 bugfix?[1]


According to a comment in Issue #39 for glass[2], I created version XMLSupprt 1.2.2.1 with a reference to XML-Parser.g-dkh.122, but a quick search through the configurations for XMLSupport did not reveal a 1.2.2.1 version .. until I peeked at http://www.squeaksource.com/MetacelloRepository/ and found ConfigurationOfXMLSupport-dkh.69 with the 1.2.2.1 version
... It turns out that Monty had written a new version of ConfigurationOfXMLSupport-monty.70, but neglected to merge his changes into ConfigurationOfXMLSupport-dkh.69, so 1.2.2.1 was lost ...

Sooooo, I've copied ConfigurationOfXMLSupport-dkh.69 to http://seaside.gemstone.com/ss/MetacelloRepository and you should change your load spec for XMLSupport to the following

 #( 'XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository')

It appears that Mariano's workspace has helped you to get going, but I do believe that 1.2.2.1 is the version of XMLSupprt you should be using, until we can port SIXX (and any other projects that depend upon XMLSupport) to use the newer versions of XMLSupport ...

Dale

[1] https://github.com/GsDevKit/GsDevKit/issues/39
[2] https://github.com/GsDevKit/GsDevKit/issues/39#issuecomment-58772264

On 03/10/2015 01:54 PM, Dario Trussardi via Glass wrote:
Dale,


Dario,

You have a stone that works and a stone that does not ... I would like to understand the differences in packages loaded between the two (for example XMLSupport 1.2.2 my not be the correct version to use for SIXX ...)

Use the following to list the packages in each stone:

 | stream |
 stream := WriteStream on: String new.
 (MCWorkingCopy allManagers sorted: [ :a :b | a packageName < b packageName ])
   do: [ :wc |
     stream
       nextPutAll: wc description;
       cr ].
 stream contents
The stone that works reports:

'Announcements (Announcements.v3-dkh.18)
Base-Bootstrap (Base-Bootstrap.v3-dkh.29)
BaselineOfDtrLogin (BaselineOfDtrLogin-DTR.8)
BaselineOfDtrMOL (BaselineOfDtrMOL-DTR.2)
BaselineOfDtrSupport (BaselineOfDtrSupport-DTR.3)
BaselineOfFileTree (BaselineOfFileTree-dkh.4)
BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
BaselineOfMetacello (BaselineOfMetacello-dkh.85)
BaselineOfSIXX (BaselineOfSIXX-dkh.1)
* Bootstrap (Bootstrap.v3-DaleHenrichs.230)
Change-Notification (Change-Notification.v3-dkh.20)
Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-dkh.11)
Collections-Support (Collections-Support.g-dkh.46)
ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.10)
ConfigurationOfDtrSupport (ConfigurationOfDtrSupport-DTR.1)
ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.66)
ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
ConfigurationOfGofer (ConfigurationOfGofer-dkh.44)
ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-DaleHenrichs.21)
ConfigurationOfGrease (ConfigurationOfGrease-dkh.270)
ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.89)
ConfigurationOfGsSIXX (ConfigurationOfGsSIXX-dkh.11)
ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
* ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
ConfigurationOfSeaside3 (ConfigurationOfSeaside3-JohanBrichau.218)
ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.69)
ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
* Core (Core.v3-DaleHenrichs.76)
* Crossfade (Crossfade-pmm.8)
CSSBarGraph (CSSBarGraph-pmm.11)
DTRAlbums (DTRAlbums-DTR.451)
DtrAssociazioni (DtrAssociazioni-DTR.5)
DtrBase (DtrBase-DTR.418)
* DTRCassa (DTRCassa-DTR.21)
DtrConfig (DtrConfig-DTR.412)
DTRConfigGruppi (DTRConfigGruppi-DTR.1)
DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
DTRCore (DTRCore-DTR.417)
DtrCrossfade (DtrCrossfade-DTR.408)
DtrCRP (DtrCRP-DTR.411)
DtrFinanza (DtrFinanza-DTR.417)
DtrGestionale (DtrGestionale-DTR.412)
DtrGoogle (DtrGoogle-DTR.408)
DtrLogin (DtrLogin-DTR.426)
DtrMA (DtrMA-DTR.410)
DtrMagazzino (DtrMagazzino-DTR.412)
DtrMagritteAuto (DtrMagritteAuto-DTR.407)
* DtrMenuOnLine (DtrMenuOnLine-DTR.416)
DTRMetaDb (DTRMetaDb-DTR.5)
* DtrMicroObj (DtrMicroObj-DTR.414)
DtrMRP (DtrMRP-DTR.408)
DTROnlyForOODB (DTROnlyForOODB-DTR.186)
DTRPier (DTRPier-DTR.445)
DtrPrinterTicket (DtrPrinterTicket-DTR.5)
DtrRedu (DtrRedu-DTR.405)
DtrReduPorting (DtrReduPorting-DTR.407)
FastCGI (FastCGI-dkh.33)
FastCGIPool (FastCGIPool-dkh.2)
GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.9)
GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.3)
GemStone-Release-Support (GemStone-Release-Support-dkh.67)
Gofer-Core (Gofer-Core.gemstone-dkh.137)
GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
* GoogleMaps (GoogleMaps-jgf.23)
Grease-Core (Grease-Core-JohanBrichau.94)
Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
Grease-Tests-Core (Grease-Tests-Core-pmm.99)
Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.10)
GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
GsUpgrader-Core (GsUpgrader-Core-dkh.38)
JadeServer (JadeServer-dkh.13)
Javascript-Core (Javascript-Core-pmm.94)
Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
JQuery-Core (JQuery-Core-lr.123)
JQuery-Extensions (JQuery-Extensions-DTR.7)
JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
JQuery-UI (JQuery-UI.gemstone-dkh.81)
JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
Magritte-Json (Magritte-Json-NickAger.18)
Magritte-Model (Magritte-Model-NickAger.431)
* Magritte-Seaside (Magritte-Seaside-NickAger.355)
Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
Metacello-Base (Metacello-Base-dkh.123)
Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
Metacello-Core (Metacello-Core-dkh.806)
Metacello-FileTree (Metacello-FileTree-dkh.36)
Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
Metacello-GitHub (Metacello-GitHub-dkh.44)
Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
Metacello-MC (Metacello-MC-dkh.722)
Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
Metacello-ToolBox (Metacello-ToolBox-dkh.139)
Monticello (Monticello.v3-dkh.456)
* MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.166)
MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
OB-GemStone-Platform (OB-GemStone-Platform-dkh.69)
OB-Metacello (OB-Metacello-dkh.83)
OB-Monticello (OB-Monticello-DaleHenrichs.103)
OB-Standard (OB-Standard.v3-dkh.448)
OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
OB-Tools (OB-Tools.v3-dkh.136)
OmniBrowser (OmniBrowser-DaleHenrichs.447)
PackageInfo-Base (PackageInfo-Base.g-dkh.36)
Pier-Admin (Pier-Admin-NickAger.87)
Pier-Blog (Pier-Blog-NickAger.158)
Pier-Book (Pier-Book.gemstone-NickAger.159)
Pier-Design (Pier-Design-NickAger.12)
Pier-Documents (Pier-Documents-NickAger.29)
Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
Pier-Google (Pier-Google-NickAger.20)
Pier-JQuery (Pier-JQuery-NickAger.13)
Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
Pier-LinkChecker (Pier-LinkChecker-lr.7)
Pier-Model (Pier-Model-NickAger.424)
* Pier-Seaside (Pier-Seaside-NickAger.536)
* Pier-Security (Pier-Security-NickAger.184)
Pier-Shout (Pier-Shout-NickAger.5)
Pier-TagCloud (Pier-TagCloud-NickAger.26)
Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
Prototype-Core (Prototype-Core-lr.25)
Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
Regex-Core (Regex-Core-DaleHenrichs.3)
Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
RSS-Core (RSS-Core-lr.67)
RSS-Examples (RSS-Examples-lr.26)
RSS-Tests-Core (RSS-Tests-Core-lr.30)
* Scriptaculous-Components (Scriptaculous-Components-lr.111)
Scriptaculous-Core (Scriptaculous-Core-pmm.102)
Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
Seaside-Component (Seaside-Component-jok.92)
* Seaside-Core (Seaside-Core.gemstone-dkh.774)
* Seaside-Development (Seaside-Development-pmm.156)
Seaside-Email (Seaside-Email-PaulDeBruicker.24)
Seaside-Environment (Seaside-Environment-NickAger.77)
Seaside-Examples (Seaside-Examples-lr.23)
Seaside-FileSystem (Seaside-FileSystem-pmm.26)
Seaside-Flow (Seaside-Flow-pmm.23)
Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
* Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
Seaside-HTML5 (Seaside-HTML5-pmm.28)
Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
Seaside-Session (Seaside-Session.gemstone-dkh.158)
Seaside-Swazoo (Seaside-Swazoo-pmm.20)
Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
* Seaside-Welcome (Seaside-Welcome-NickAger.40)
Seaside-Widgets (Seaside-Widgets-lr.26)
Shout-Parsing (Shout-Parsing-NickAger.3)
SIXX (SIXX.310-PaulDeBruicker.182)
SMTPMail (SMTPMail-dkh.11)
SocketStream (SocketStream-PaulDeBruicker.12)
Sport (Sport3.010.v3-dkh.29)
* Squeak (Squeak.v3-DaleHenrichs.298)
Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
System-Digital-Signatures (System-Digital-Signatures-dkh.5)
TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
TopFeeder-Model (TopFeeder-Model-NickAger.5)
TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
Utf8Encoding (Utf8Encoding.310-dkh.30)
XML-Observable (XML-Observable-JohanBrichau.1)
XML-Parser (XML-Parser.g-dkh.122)
XML-Writer (XML-Writer-JAAyer.5)
Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
* Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)'




The stone does not work report:

'Announcements (Announcements.v3-dkh.18)
AST-Core (AST-Core-dkh.102)
Base-Bootstrap (Base-Bootstrap.v3-dkh.30)
BaselineOfFileTree (BaselineOfFileTree-dkh.4)
BaselineOfGLASS1 (BaselineOfGLASS1-dkh.43)
BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
BaselineOfMetacello (BaselineOfMetacello-dkh.85)
BaselineOfRB (BaselineOfRB-dkh.5)
BaselineOfSIXX (BaselineOfSIXX-dkh.1)
BaselineOfSton (BaselineOfSton-dkh.1)
BaselineOfTode (BaselineOfTode-dkh.41)
* Bootstrap (Bootstrap.v3-dkh.241)
Change-Notification (Change-Notification.v310-dkh.21)
Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-JohanBrichau.9)
Collections-Support (Collections-Support.g-OttoBehrens.45)
ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.11)
ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.36)
ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
ConfigurationOfGofer (ConfigurationOfGofer-dkh.45)
ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-dkh.22)
ConfigurationOfGrease (ConfigurationOfGrease-dkh.189)
ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.91)
ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
ConfigurationOfSeaside3 (ConfigurationOfSeaside3-dkh.222)
ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-NorbertHartl.64)
ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
* Core (Core.v3-dkh.90)
Core31x (Core31x-dkh.5)
* Crossfade (Crossfade-pmm.8)
CSSBarGraph (CSSBarGraph-pmm.11)
DtrBase (DtrBase-DTR.418)
DTRCassa (DTRCassa-DTR.21)
* DtrConfig (DtrConfig-DTR.412)
DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
DTRCore (DTRCore-DTR.417)
DtrCrossfade (DtrCrossfade-DTR.408)
DtrCRP (DtrCRP-DTR.411)
DtrFinanza (DtrFinanza-DTR.417)
DtrGestionale (DtrGestionale-DTR.412)
DtrGoogle (DtrGoogle-DTR.408)
DtrLogin (DtrLogin-DTR.426)
DtrMA (DtrMA-DTR.410)
DtrMagazzino (DtrMagazzino-DTR.412)
DtrMagritteAuto (DtrMagritteAuto-DTR.407)
DtrMenuOnLine (DtrMenuOnLine-DTR.416)
DTRMetaDb (DTRMetaDb-DTR.5)
DtrMicroObj (DtrMicroObj-DTR.414)
DtrMRP (DtrMRP-DTR.408)
DTROnlyForOODB (DTROnlyForOODB-DTR.186)
DtrPrinterTicket (DtrPrinterTicket-DTR.5)
DtrRedu (DtrRedu-DTR.405)
DtrReduPorting (DtrReduPorting-DTR.408)
FastCGI (FastCGI-dkh.33)
FastCGIPool (FastCGIPool-dkh.2)
GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.12)
GemStone-Compression (GemStone-Compression-dkh.7)
GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.4)
GemStone-Interactions (GemStone-Interactions-dkh.12)
GemStone-Release-Support (GemStone-Release-Support-dkh.67)
* Generated ()
Gofer-Core (Gofer-Core.gemstone-dkh.138)
GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
* GoogleMaps (GoogleMaps-jgf.23)
Grease-Core (Grease-Core-JohanBrichau.94)
Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
Grease-Tests-Core (Grease-Tests-Core-pmm.99)
Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
* GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.20)
GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
GsSqueakCommon-CoreV30 (GsSqueakCommon-CoreV30-dkh.1)
GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
GsUpgrader-Core (GsUpgrader-Core-dkh.38)
JadeServer (JadeServer-dkh.13)
Javascript-Core (Javascript-Core-pmm.94)
Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
JQuery-Core (JQuery-Core-lr.123)
JQuery-Extensions (JQuery-Extensions-DTR.7)
JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
JQuery-UI (JQuery-UI.gemstone-dkh.81)
JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
Magritte-Json (Magritte-Json-NickAger.18)
Magritte-Model (Magritte-Model-NickAger.431)
* Magritte-Seaside (Magritte-Seaside-NickAger.355)
Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
Metacello-Base (Metacello-Base-topa.124)
Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
Metacello-Core (Metacello-Core-dkh.809)
Metacello-FileTree (Metacello-FileTree-dkh.36)
Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
Metacello-GitHub (Metacello-GitHub-dkh.44)
Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
Metacello-MC (Metacello-MC-dkh.726)
Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
Metacello-ToolBox (Metacello-ToolBox-dkh.139)
Monticello (Monticello.v3-dkh.476)
MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.183)
MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
MonticelloGs (MonticelloGs-dkh.2)
NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
OB-GemStone-Platform (OB-GemStone-Platform-dkh.76)
OB-Metacello (OB-Metacello-dkh.83)
OB-Monticello (OB-Monticello-dkh.105)
OB-Standard (OB-Standard.v3-dkh.449)
OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
OB-Tools (OB-Tools.v3-dkh.140)
OmniBrowser (OmniBrowser-DaleHenrichs.447)
PackageInfo-Base (PackageInfo-Base.g-dkh.36)
Pier-Admin (Pier-Admin-NickAger.87)
Pier-Blog (Pier-Blog-NickAger.158)
Pier-Book (Pier-Book.gemstone-NickAger.159)
Pier-Design (Pier-Design-NickAger.12)
Pier-Documents (Pier-Documents-NickAger.29)
Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
Pier-Google (Pier-Google-NickAger.20)
Pier-JQuery (Pier-JQuery-NickAger.13)
Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
Pier-LinkChecker (Pier-LinkChecker-lr.7)
Pier-Model (Pier-Model-NickAger.424)
Pier-Seaside (Pier-Seaside-NickAger.536)
Pier-Security (Pier-Security-NickAger.184)
Pier-Shout (Pier-Shout-NickAger.5)
Pier-TagCloud (Pier-TagCloud-NickAger.26)
Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
Prototype-Core (Prototype-Core-lr.25)
Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
Regex-Core (Regex-Core-DaleHenrichs.3)
Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
RSS-Core (RSS-Core-lr.67)
RSS-Examples (RSS-Examples-lr.26)
RSS-Tests-Core (RSS-Tests-Core-lr.30)
* Scriptaculous-Components (Scriptaculous-Components-lr.111)
Scriptaculous-Core (Scriptaculous-Core-pmm.102)
Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
Seaside-Component (Seaside-Component-jok.92)
* Seaside-Core (Seaside-Core.gemstone-dkh.774)
* Seaside-Development (Seaside-Development-pmm.156)
Seaside-Email (Seaside-Email-PaulDeBruicker.24)
Seaside-Environment (Seaside-Environment-NickAger.77)
Seaside-Examples (Seaside-Examples-lr.23)
Seaside-FileSystem (Seaside-FileSystem-pmm.26)
Seaside-Flow (Seaside-Flow-pmm.23)
Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
* Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
Seaside-HTML5 (Seaside-HTML5-pmm.28)
Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
Seaside-Session (Seaside-Session.gemstone-dkh.158)
Seaside-Swazoo (Seaside-Swazoo-pmm.20)
Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
* Seaside-Welcome (Seaside-Welcome-NickAger.40)
Seaside-Widgets (Seaside-Widgets-lr.26)
Shout-Parsing (Shout-Parsing-NickAger.3)
SIXX (SIXX.310-dkh.183)
SMTPMail (SMTPMail-dkh.11)
SocketStream (SocketStream-PaulDeBruicker.12)
* Sport (Sport3.010.v3-dkh.32)
* Squeak (Squeak.v3-dkh.309)
* STON-Core (STON-Core-dkh.46)
Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
System-Digital-Signatures (System-Digital-Signatures-dkh.5)
Tode-AST-Extensions (Tode-AST-Extensions-dkh.2)
Tode-BatchEdit-Tool (Tode-BatchEdit-Tool-dkh.3)
Tode-GemStone-Server-Core (Tode-GemStone-Server-Core-dkh.118)
Tode-GemStone-Server-Tests (Tode-GemStone-Server-Tests-dkh.5)
Tode-Server-31x-GsProcess-Patch (Tode-Server-31x-GsProcess-Patch-dkh.1)
Tode-Server-TestTestTools (Tode-Server-TestTestTools-dkh.2)
Topez-Common-Core (Topez-Common-Core-dkh.414)
Topez-Common-Tests (Topez-Common-Tests-dkh.22)
Topez-Server-31x-Core (Topez-Server-31x-Core-dkh.5)
Topez-Server-31x-DebugTools (Topez-Server-31x-DebugTools-dkh.19)
Topez-Server-31x-Tests (Topez-Server-31x-Tests-dkh.3)
Topez-Server-3x-Core (Topez-Server-3x-Core-dkh.2)
Topez-Server-3x-DebugTools (Topez-Server-3x-DebugTools-dkh.2)
Topez-Server-Core (Topez-Server-Core-dkh.89)
Topez-Server-DebugTools (Topez-Server-DebugTools-dkh.151)
Topez-Server-ProcessTools (Topez-Server-ProcessTools-dkh.25)
Topez-Server-TestDebugTools (Topez-Server-TestDebugTools-dkh.19)
Topez-Server-Tests (Topez-Server-Tests-dkh.151)
Topez-Server-TestTools (Topez-Server-TestTools-dkh.54)
TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
TopFeeder-Model (TopFeeder-Model-NickAger.5)
TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
Utf8Encoding (Utf8Encoding.310-dkh.32)
XML-Observable (XML-Observable-JohanBrichau.1)
XML-Parser (XML-Parser.g-NorbertHartl.119)
XML-Writer (XML-Writer-JAAyer.5)
Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
* Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)
'

Thanks,
       Dario

Dale

On 03/10/2015 11:06 AM, Dario Trussardi via Glass wrote:
Ciao,

   I have a devkit tODE stone create with createTodeStone  devkit  3.1.0.6

into it i load:

GsDeployer
  bulkMigrate: [
    {#( 'XMLSupport' '1.2.2' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
   #('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
    #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
    #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
      do: [ :ar |
        | projectName version repository |
        projectName := ar at: 1.
        version := ar at: 2.
        repository := ar at: 3.
        Metacello new
          configuration: projectName;
          repository: repository;
          get.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          onUpgrade: [ :ex :existing :new |
                existing locked
                  ifTrue: [ ex disallow ]
                  ifFalse: [ ex allow ] ];
          onConflict: [ :ex | ex disallow ];
          load.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          lock ] ]

and:

GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: '<a href="github://glassdb/SIXX:master/repository'">github://glassdb/SIXX:master/repository';
      load ].

A this point the     SixxExamples example2        works fine.





Now i can save a sixx file relative to my data application      anEnv link     with:

   writeObject: anEnv toFile: aFilename inFolder: aDirectoryPath

   | fileStream sws |

   fileStream := ( FileDirectory on: aDirectoryPath) newFileNamed: aFilename.

   sws := SixxWriteStream on: fileStream.

   sws nextPut: anEnv.
   sws close.





After when i do the command:  ^Object readSixxFrom: fileStream contents.

to read the sixx file create above the system answer the error:

a SixxXmlParseError occurred (error 2710) - G/S[Scandella3106 devkit:1]

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal: (envId 0)
AbstractException class >> signal: (envId 0)
XMLTokenizer >> parseError: (envId 0)
XMLTokenizer >> errorExpected: (envId 0)
XMLTokenizer >> nextLiteral (envId 0)
XMLTokenizer >> nextPCDataDelimitedBy:putOn: (envId 0)
[] in  XMLTokenizer >> nextPCData (envId 0)
XMLNestedStreamWriter >> writeWith: (envId 0)
XMLTokenizer >> nextPCData (envId 0)
XMLTokenizer >> nextToken (envId 0)
XMLParser >> parseToken (envId 0)
XMLParser >> parseDocument (envId 0)
SAXHandler >> parseDocument (envId 0)
XMLDOMParser >> parseDocument (envId 0)
SAXHandler class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
XMLDOMParser class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
SAXHandler class >> parseDocumentFrom:persistentRoot: (envId 0)
SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)

Considerations ?

Thanks,

   Dario

P.S.  I have another  3.1.0.6    stone where i have:

   ConfigurationOfGsSIXX project currentVersion >=0.3-c.1 [ConfigurationOfGsSIXX]

   ConfigurationOfXMLSupport project currentVersion >=1.2.2.1 [ConfigurationOfXMLSupport]

   Into it  all works fine.

   The sixx file created into it   can reading  into  the devkit  tODE stone  without problem


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
Reply | Threaded
Open this post in threaded view
|

Re: [Glass] Sixx problematic

GLASS mailing list
Ciao,

into a clean tODE 3.1.0.6 environment i load directly :

GsDeployer bulkMigrate: [ Metacello new baseline: 'SIXX'; repository: '<a href="github://glassdb/SIXX:master/repository'">github://glassdb/SIXX:master/repository'; load ]. The  SixxExamples example2.     answer the same error.

The system report:

ConfigurationOfXMLParser (ConfigurationOfXMLParser-monty.119) ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.71) ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-monty.73)

If i right remember,  last week,  when i load directly  the sixx,  as above,  the  SixxExamples example2    worked fine.

Thanks,
Dario

 
Ciao,

i'm very sorry, but I have to backtrack because sixx does not wok into a new tODE 3.1.0.6 repository.

I have two tODE 3.1.0.6 environment.

In the first ( the hold ) i have load:


and:

 GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: '<a href="github://glassdb/SIXX:master/repository'">github://glassdb/SIXX:master/repository';
      load ].

Into it the : SixxExamples example2.        works fine,

and the Mariano  serialize and materialize using SIXX, with UTF8 also works fine

This system configurations report:

ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-NorbertHartl.64)
ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
 


In the new second tODE 3.1.0.6 environment i have load:

    { #( 'XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').  

I also test  with XMLSupport' '1.2.2' but with the same error 
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository')}
     
and:

 GsDeployer bulkMigrate: [
   Metacello new
       baseline: 'SIXX';
       repository: '<a href="github://glassdb/SIXX:master/repository'">github://glassdb/SIXX:master/repository';
       load ].

Into it the : SixxExamples example2.      answer the error: a SixxXmlParseError occurred (error 2710)

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
Object >> doesNotUnderstand: (envId 0)
Object >> _doesNotUnderstand:args:envId:reason: (envId 0)
******** SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)
SixxExamples class >> example2 (envId 0)
Executed Code           
String >> evaluateInContext:symbolList: (envId 0)
JadeServer >> evaluate:inContext: (envId 0)
JadeServer >> printIt:in: (envId 0)
GsNMethod class >> _gsReturnToC (envId 0)


and the Mariano  materialize using SIXX, with UTF8 also answer the same error:  a SixxXmlParseError occurred (error 2710)

This system configurations report:

ConfigurationOfXMLParser (ConfigurationOfXMLParser-monty.119) ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.71) ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)


The upper  ****** error is relative to the method: 

parseXml: xmlStringOrStream persistentRoot: persistentArrayOrNil
| stream |
stream := xmlStringOrStream isStream
ifTrue: [xmlStringOrStream]
ifFalse: [ReadStream on: xmlStringOrStream].

^ (XMLDOMParser parseDocumentFrom: stream persistentRoot: persistentArrayOrNil) topElement


Where XMLDOMParser don't implement the method :  parseDocumentFrom: stream persistentRoot: persistentArrayOrNil) 

Does anyone have ideas how manage sixx I/O  into tODE without error ?

Thanks,

Dario

Dario,

The important thing is that you are able to get SIXX working ... the real solution to this problem is to get SIXX ported to the latest XMLParser implementation (and make sure that all of the projects that depned upon XML keep flying) ...

Dale

On 03/11/2015 10:09 AM, Dario Trussardi via Glass wrote:
Dale,

Dario,

I have forgotten to mention that now that you are using The Metacello scripting api for loading that the #currentVersion message should not be used either.

The #currentVersion method calculates the version and as I've said in the past, it sometimes gets it wrong ...

Using the Metacello scripting api, you can print the registration for XMLSupport

 Metacello registrations
   detect: [ :registration | registration projectName = 'XMLSupport' ].

But....right now we are trying to figure out how to reproduce the formula for the "stone that works" and I'd like to see the list of packages that are loaded in the image where SixxExample class>>example2 is failing.

Now before we go too far ... I want to understand the status of SixxExample class>>example2.

AFAICT, there are three stones:

 1. the "old stone" into which you can load your SIXX file without error (and appears to be using XMLSupport 1.2.2.1)
 2. the "new stone" that was built by locking XMLSupport 1.2.2 ...
For point 2 the system woks right.
 3. The "new stone 2" that was built by locking XMLSupport 1.2.2.1
For point 3 the system answer the error as i write into my last e-mail.
You can test it into a new tODE environment

Now I'm curious what results you get for SixxExample class>>example2 in each of those stones.

Another odd thing is that you claimed that Mariano's technique worked for you and I assume that Mariano's code was running against the "new stone" with XMLSupport 1.2.2 ... so if XMLSupport 1.2.2 is working for you I'm not sure why we are worried about XMLSupport 1.2.2.1. I made the assumption that the old stone was working because of XMLSupport 1.2.2.1 ... but I could very easily be wrong ... there were quite a few differences between the other packages in the two stones ...

Yes, you have right.
The Mariano's technique works fine.

But you write:

It appears that Mariano's workspace has helped you to get going, but I do believe that 1.2.2.1 is the version of XMLSupprt you should be using, until we can port SIXX (and any other projects that depend upon XMLSupport) to use the newer versions of XMLSupport ...

and i have doubt about XMLSupport version.

Then saw that Mariano's tecniques works well consider the matter closed, for the moment.

Do you agree?

Ciao, thanks,

Dario

Dale


On 03/11/2015 03:09 AM, Dario Trussardi via Glass wrote:
Dale,

into a clean tODE stone i load:

GsDeployer
  bulkMigrate: [
    {#('XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
#('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
    #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
    #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
      do: [ :ar |
        | projectName version repository |
        projectName := ar at: 1.
        version := ar at: 2.
        repository := ar at: 3.
        Metacello new
          configuration: projectName;
          repository: repository;
          get.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          onUpgrade: [ :ex :existing :new |
                existing locked
                  ifTrue: [ ex disallow ]
                  ifFalse: [ ex allow ] ];
          onConflict: [ :ex | ex disallow ];
          load.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          lock ] ]

At the end result: ConfigurationOfXMLSupport project currentVersion >=1.3.0 [ConfigurationOfXMLSupport]

It's not strange ?  Because not 1.2.2.1  ?

After i load:

GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: '<a href="github://glassdb/SIXX:master/repository'">github://glassdb/SIXX:master/repository';
      load ].

The SixxExamples example2        don't works.

It erase the error: a SixxXmlParseError occurred (error 2710) -  G/S[Scandella3106 devkit:1]

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
Object >> doesNotUnderstand: (envId 0)
Object >> _doesNotUnderstand:args:envId:reason: (envId 0)
SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)
SixxExamples class >> example2 (envId 0)
Executed Code
String >> evaluateInContext:symbolList: (envId 0)
JadeServer >> evaluate:inContext: (envId 0)
JadeServer >> printIt:in: (envId 0)
GsNMethod class >> _gsReturnToC (envId 0)

Ciao,

Dario


Okay after further review I merge XMLSupport 1.2.2.1 into ConfigurationOfXMLSupport-monty.70 and saved a new version of the configuration (ConfigurationOfXMLSupport-dkh.71) and copied it to the appropriate repositories ... so at least we have 1.2.2.1 around for posterity ...

I have not been able to look into the issues with SIXX and XMLSupport 1.3.0 (the new version published by Monty) ... Monty assures me that the tests all pass for GemStone, but I am not sure whether or not the places that are/were dependent upon the older versions of XMLSupport (like SIXX) are impacted by version 1.3.0 or not .... if so then locking and loading XMLSupport 1.2.2.1 should put things right again ...

Dale

On 03/10/2015 03:07 PM, Dale Henrichs wrote:
Likely suspects in from working stone package list (XMLSupport ???):

 SIXX (SIXX.310-PaulDeBruicker.182)
 XML-Observable (XML-Observable-JohanBrichau.1)
 XML-Parser (XML-Parser.g-dkh.122)
 XML-Writer (XML-Writer-JAAyer.5)

and from failing stone package list (XMLSupport 1.2.2):

 SIXX (SIXX.310-dkh.183)
 XML-Observable (XML-Observable-JohanBrichau.1)
 XML-Parser (XML-Parser.g-NorbertHartl.119)
 XML-Writer (XML-Writer-JAAyer.5)


It's interesting that for the "working stone" you are using XML-Parser.g-dkh.122 and that package version is not in "any of the ConfigurationOfXMLSupport" versions.

According to the commit comment XML-Parser.g-dkh.122:
  final sent but not implemented for https://github.com/glassdb/glass/issues/39 bugfix?[1]


According to a comment in Issue #39 for glass[2], I created version XMLSupprt 1.2.2.1 with a reference to XML-Parser.g-dkh.122, but a quick search through the configurations for XMLSupport did not reveal a 1.2.2.1 version .. until I peeked at http://www.squeaksource.com/MetacelloRepository/ and found ConfigurationOfXMLSupport-dkh.69 with the 1.2.2.1 version
... It turns out that Monty had written a new version of ConfigurationOfXMLSupport-monty.70, but neglected to merge his changes into ConfigurationOfXMLSupport-dkh.69, so 1.2.2.1 was lost ...

Sooooo, I've copied ConfigurationOfXMLSupport-dkh.69 to http://seaside.gemstone.com/ss/MetacelloRepository and you should change your load spec for XMLSupport to the following

 #( 'XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository')

It appears that Mariano's workspace has helped you to get going, but I do believe that 1.2.2.1 is the version of XMLSupprt you should be using, until we can port SIXX (and any other projects that depend upon XMLSupport) to use the newer versions of XMLSupport ...

Dale

[1] https://github.com/GsDevKit/GsDevKit/issues/39
[2] https://github.com/GsDevKit/GsDevKit/issues/39#issuecomment-58772264

On 03/10/2015 01:54 PM, Dario Trussardi via Glass wrote:
Dale,


Dario,

You have a stone that works and a stone that does not ... I would like to understand the differences in packages loaded between the two (for example XMLSupport 1.2.2 my not be the correct version to use for SIXX ...)

Use the following to list the packages in each stone:

 | stream |
 stream := WriteStream on: String new.
 (MCWorkingCopy allManagers sorted: [ :a :b | a packageName < b packageName ])
   do: [ :wc |
     stream
       nextPutAll: wc description;
       cr ].
 stream contents
The stone that works reports:

'Announcements (Announcements.v3-dkh.18)
Base-Bootstrap (Base-Bootstrap.v3-dkh.29)
BaselineOfDtrLogin (BaselineOfDtrLogin-DTR.8)
BaselineOfDtrMOL (BaselineOfDtrMOL-DTR.2)
BaselineOfDtrSupport (BaselineOfDtrSupport-DTR.3)
BaselineOfFileTree (BaselineOfFileTree-dkh.4)
BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
BaselineOfMetacello (BaselineOfMetacello-dkh.85)
BaselineOfSIXX (BaselineOfSIXX-dkh.1)
* Bootstrap (Bootstrap.v3-DaleHenrichs.230)
Change-Notification (Change-Notification.v3-dkh.20)
Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-dkh.11)
Collections-Support (Collections-Support.g-dkh.46)
ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.10)
ConfigurationOfDtrSupport (ConfigurationOfDtrSupport-DTR.1)
ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.66)
ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
ConfigurationOfGofer (ConfigurationOfGofer-dkh.44)
ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-DaleHenrichs.21)
ConfigurationOfGrease (ConfigurationOfGrease-dkh.270)
ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.89)
ConfigurationOfGsSIXX (ConfigurationOfGsSIXX-dkh.11)
ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
* ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
ConfigurationOfSeaside3 (ConfigurationOfSeaside3-JohanBrichau.218)
ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.69)
ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
* Core (Core.v3-DaleHenrichs.76)
* Crossfade (Crossfade-pmm.8)
CSSBarGraph (CSSBarGraph-pmm.11)
DTRAlbums (DTRAlbums-DTR.451)
DtrAssociazioni (DtrAssociazioni-DTR.5)
DtrBase (DtrBase-DTR.418)
* DTRCassa (DTRCassa-DTR.21)
DtrConfig (DtrConfig-DTR.412)
DTRConfigGruppi (DTRConfigGruppi-DTR.1)
DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
DTRCore (DTRCore-DTR.417)
DtrCrossfade (DtrCrossfade-DTR.408)
DtrCRP (DtrCRP-DTR.411)
DtrFinanza (DtrFinanza-DTR.417)
DtrGestionale (DtrGestionale-DTR.412)
DtrGoogle (DtrGoogle-DTR.408)
DtrLogin (DtrLogin-DTR.426)
DtrMA (DtrMA-DTR.410)
DtrMagazzino (DtrMagazzino-DTR.412)
DtrMagritteAuto (DtrMagritteAuto-DTR.407)
* DtrMenuOnLine (DtrMenuOnLine-DTR.416)
DTRMetaDb (DTRMetaDb-DTR.5)
* DtrMicroObj (DtrMicroObj-DTR.414)
DtrMRP (DtrMRP-DTR.408)
DTROnlyForOODB (DTROnlyForOODB-DTR.186)
DTRPier (DTRPier-DTR.445)
DtrPrinterTicket (DtrPrinterTicket-DTR.5)
DtrRedu (DtrRedu-DTR.405)
DtrReduPorting (DtrReduPorting-DTR.407)
FastCGI (FastCGI-dkh.33)
FastCGIPool (FastCGIPool-dkh.2)
GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.9)
GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.3)
GemStone-Release-Support (GemStone-Release-Support-dkh.67)
Gofer-Core (Gofer-Core.gemstone-dkh.137)
GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
* GoogleMaps (GoogleMaps-jgf.23)
Grease-Core (Grease-Core-JohanBrichau.94)
Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
Grease-Tests-Core (Grease-Tests-Core-pmm.99)
Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.10)
GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
GsUpgrader-Core (GsUpgrader-Core-dkh.38)
JadeServer (JadeServer-dkh.13)
Javascript-Core (Javascript-Core-pmm.94)
Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
JQuery-Core (JQuery-Core-lr.123)
JQuery-Extensions (JQuery-Extensions-DTR.7)
JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
JQuery-UI (JQuery-UI.gemstone-dkh.81)
JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
Magritte-Json (Magritte-Json-NickAger.18)
Magritte-Model (Magritte-Model-NickAger.431)
* Magritte-Seaside (Magritte-Seaside-NickAger.355)
Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
Metacello-Base (Metacello-Base-dkh.123)
Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
Metacello-Core (Metacello-Core-dkh.806)
Metacello-FileTree (Metacello-FileTree-dkh.36)
Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
Metacello-GitHub (Metacello-GitHub-dkh.44)
Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
Metacello-MC (Metacello-MC-dkh.722)
Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
Metacello-ToolBox (Metacello-ToolBox-dkh.139)
Monticello (Monticello.v3-dkh.456)
* MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.166)
MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
OB-GemStone-Platform (OB-GemStone-Platform-dkh.69)
OB-Metacello (OB-Metacello-dkh.83)
OB-Monticello (OB-Monticello-DaleHenrichs.103)
OB-Standard (OB-Standard.v3-dkh.448)
OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
OB-Tools (OB-Tools.v3-dkh.136)
OmniBrowser (OmniBrowser-DaleHenrichs.447)
PackageInfo-Base (PackageInfo-Base.g-dkh.36)
Pier-Admin (Pier-Admin-NickAger.87)
Pier-Blog (Pier-Blog-NickAger.158)
Pier-Book (Pier-Book.gemstone-NickAger.159)
Pier-Design (Pier-Design-NickAger.12)
Pier-Documents (Pier-Documents-NickAger.29)
Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
Pier-Google (Pier-Google-NickAger.20)
Pier-JQuery (Pier-JQuery-NickAger.13)
Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
Pier-LinkChecker (Pier-LinkChecker-lr.7)
Pier-Model (Pier-Model-NickAger.424)
* Pier-Seaside (Pier-Seaside-NickAger.536)
* Pier-Security (Pier-Security-NickAger.184)
Pier-Shout (Pier-Shout-NickAger.5)
Pier-TagCloud (Pier-TagCloud-NickAger.26)
Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
Prototype-Core (Prototype-Core-lr.25)
Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
Regex-Core (Regex-Core-DaleHenrichs.3)
Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
RSS-Core (RSS-Core-lr.67)
RSS-Examples (RSS-Examples-lr.26)
RSS-Tests-Core (RSS-Tests-Core-lr.30)
* Scriptaculous-Components (Scriptaculous-Components-lr.111)
Scriptaculous-Core (Scriptaculous-Core-pmm.102)
Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
Seaside-Component (Seaside-Component-jok.92)
* Seaside-Core (Seaside-Core.gemstone-dkh.774)
* Seaside-Development (Seaside-Development-pmm.156)
Seaside-Email (Seaside-Email-PaulDeBruicker.24)
Seaside-Environment (Seaside-Environment-NickAger.77)
Seaside-Examples (Seaside-Examples-lr.23)
Seaside-FileSystem (Seaside-FileSystem-pmm.26)
Seaside-Flow (Seaside-Flow-pmm.23)
Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
* Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
Seaside-HTML5 (Seaside-HTML5-pmm.28)
Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
Seaside-Session (Seaside-Session.gemstone-dkh.158)
Seaside-Swazoo (Seaside-Swazoo-pmm.20)
Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
* Seaside-Welcome (Seaside-Welcome-NickAger.40)
Seaside-Widgets (Seaside-Widgets-lr.26)
Shout-Parsing (Shout-Parsing-NickAger.3)
SIXX (SIXX.310-PaulDeBruicker.182)
SMTPMail (SMTPMail-dkh.11)
SocketStream (SocketStream-PaulDeBruicker.12)
Sport (Sport3.010.v3-dkh.29)
* Squeak (Squeak.v3-DaleHenrichs.298)
Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
System-Digital-Signatures (System-Digital-Signatures-dkh.5)
TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
TopFeeder-Model (TopFeeder-Model-NickAger.5)
TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
Utf8Encoding (Utf8Encoding.310-dkh.30)
XML-Observable (XML-Observable-JohanBrichau.1)
XML-Parser (XML-Parser.g-dkh.122)
XML-Writer (XML-Writer-JAAyer.5)
Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
* Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)'




The stone does not work report:

'Announcements (Announcements.v3-dkh.18)
AST-Core (AST-Core-dkh.102)
Base-Bootstrap (Base-Bootstrap.v3-dkh.30)
BaselineOfFileTree (BaselineOfFileTree-dkh.4)
BaselineOfGLASS1 (BaselineOfGLASS1-dkh.43)
BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
BaselineOfMetacello (BaselineOfMetacello-dkh.85)
BaselineOfRB (BaselineOfRB-dkh.5)
BaselineOfSIXX (BaselineOfSIXX-dkh.1)
BaselineOfSton (BaselineOfSton-dkh.1)
BaselineOfTode (BaselineOfTode-dkh.41)
* Bootstrap (Bootstrap.v3-dkh.241)
Change-Notification (Change-Notification.v310-dkh.21)
Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-JohanBrichau.9)
Collections-Support (Collections-Support.g-OttoBehrens.45)
ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.11)
ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.36)
ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
ConfigurationOfGofer (ConfigurationOfGofer-dkh.45)
ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-dkh.22)
ConfigurationOfGrease (ConfigurationOfGrease-dkh.189)
ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.91)
ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
ConfigurationOfSeaside3 (ConfigurationOfSeaside3-dkh.222)
ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-NorbertHartl.64)
ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
* Core (Core.v3-dkh.90)
Core31x (Core31x-dkh.5)
* Crossfade (Crossfade-pmm.8)
CSSBarGraph (CSSBarGraph-pmm.11)
DtrBase (DtrBase-DTR.418)
DTRCassa (DTRCassa-DTR.21)
* DtrConfig (DtrConfig-DTR.412)
DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
DTRCore (DTRCore-DTR.417)
DtrCrossfade (DtrCrossfade-DTR.408)
DtrCRP (DtrCRP-DTR.411)
DtrFinanza (DtrFinanza-DTR.417)
DtrGestionale (DtrGestionale-DTR.412)
DtrGoogle (DtrGoogle-DTR.408)
DtrLogin (DtrLogin-DTR.426)
DtrMA (DtrMA-DTR.410)
DtrMagazzino (DtrMagazzino-DTR.412)
DtrMagritteAuto (DtrMagritteAuto-DTR.407)
DtrMenuOnLine (DtrMenuOnLine-DTR.416)
DTRMetaDb (DTRMetaDb-DTR.5)
DtrMicroObj (DtrMicroObj-DTR.414)
DtrMRP (DtrMRP-DTR.408)
DTROnlyForOODB (DTROnlyForOODB-DTR.186)
DtrPrinterTicket (DtrPrinterTicket-DTR.5)
DtrRedu (DtrRedu-DTR.405)
DtrReduPorting (DtrReduPorting-DTR.408)
FastCGI (FastCGI-dkh.33)
FastCGIPool (FastCGIPool-dkh.2)
GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.12)
GemStone-Compression (GemStone-Compression-dkh.7)
GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.4)
GemStone-Interactions (GemStone-Interactions-dkh.12)
GemStone-Release-Support (GemStone-Release-Support-dkh.67)
* Generated ()
Gofer-Core (Gofer-Core.gemstone-dkh.138)
GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
* GoogleMaps (GoogleMaps-jgf.23)
Grease-Core (Grease-Core-JohanBrichau.94)
Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
Grease-Tests-Core (Grease-Tests-Core-pmm.99)
Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
* GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.20)
GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
GsSqueakCommon-CoreV30 (GsSqueakCommon-CoreV30-dkh.1)
GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
GsUpgrader-Core (GsUpgrader-Core-dkh.38)
JadeServer (JadeServer-dkh.13)
Javascript-Core (Javascript-Core-pmm.94)
Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
JQuery-Core (JQuery-Core-lr.123)
JQuery-Extensions (JQuery-Extensions-DTR.7)
JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
JQuery-UI (JQuery-UI.gemstone-dkh.81)
JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
Magritte-Json (Magritte-Json-NickAger.18)
Magritte-Model (Magritte-Model-NickAger.431)
* Magritte-Seaside (Magritte-Seaside-NickAger.355)
Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
Metacello-Base (Metacello-Base-topa.124)
Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
Metacello-Core (Metacello-Core-dkh.809)
Metacello-FileTree (Metacello-FileTree-dkh.36)
Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
Metacello-GitHub (Metacello-GitHub-dkh.44)
Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
Metacello-MC (Metacello-MC-dkh.726)
Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
Metacello-ToolBox (Metacello-ToolBox-dkh.139)
Monticello (Monticello.v3-dkh.476)
MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.183)
MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
MonticelloGs (MonticelloGs-dkh.2)
NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
OB-GemStone-Platform (OB-GemStone-Platform-dkh.76)
OB-Metacello (OB-Metacello-dkh.83)
OB-Monticello (OB-Monticello-dkh.105)
OB-Standard (OB-Standard.v3-dkh.449)
OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
OB-Tools (OB-Tools.v3-dkh.140)
OmniBrowser (OmniBrowser-DaleHenrichs.447)
PackageInfo-Base (PackageInfo-Base.g-dkh.36)
Pier-Admin (Pier-Admin-NickAger.87)
Pier-Blog (Pier-Blog-NickAger.158)
Pier-Book (Pier-Book.gemstone-NickAger.159)
Pier-Design (Pier-Design-NickAger.12)
Pier-Documents (Pier-Documents-NickAger.29)
Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
Pier-Google (Pier-Google-NickAger.20)
Pier-JQuery (Pier-JQuery-NickAger.13)
Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
Pier-LinkChecker (Pier-LinkChecker-lr.7)
Pier-Model (Pier-Model-NickAger.424)
Pier-Seaside (Pier-Seaside-NickAger.536)
Pier-Security (Pier-Security-NickAger.184)
Pier-Shout (Pier-Shout-NickAger.5)
Pier-TagCloud (Pier-TagCloud-NickAger.26)
Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
Prototype-Core (Prototype-Core-lr.25)
Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
Regex-Core (Regex-Core-DaleHenrichs.3)
Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
RSS-Core (RSS-Core-lr.67)
RSS-Examples (RSS-Examples-lr.26)
RSS-Tests-Core (RSS-Tests-Core-lr.30)
* Scriptaculous-Components (Scriptaculous-Components-lr.111)
Scriptaculous-Core (Scriptaculous-Core-pmm.102)
Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
Seaside-Component (Seaside-Component-jok.92)
* Seaside-Core (Seaside-Core.gemstone-dkh.774)
* Seaside-Development (Seaside-Development-pmm.156)
Seaside-Email (Seaside-Email-PaulDeBruicker.24)
Seaside-Environment (Seaside-Environment-NickAger.77)
Seaside-Examples (Seaside-Examples-lr.23)
Seaside-FileSystem (Seaside-FileSystem-pmm.26)
Seaside-Flow (Seaside-Flow-pmm.23)
Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
* Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
Seaside-HTML5 (Seaside-HTML5-pmm.28)
Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
Seaside-Session (Seaside-Session.gemstone-dkh.158)
Seaside-Swazoo (Seaside-Swazoo-pmm.20)
Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
* Seaside-Welcome (Seaside-Welcome-NickAger.40)
Seaside-Widgets (Seaside-Widgets-lr.26)
Shout-Parsing (Shout-Parsing-NickAger.3)
SIXX (SIXX.310-dkh.183)
SMTPMail (SMTPMail-dkh.11)
SocketStream (SocketStream-PaulDeBruicker.12)
* Sport (Sport3.010.v3-dkh.32)
* Squeak (Squeak.v3-dkh.309)
* STON-Core (STON-Core-dkh.46)
Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
System-Digital-Signatures (System-Digital-Signatures-dkh.5)
Tode-AST-Extensions (Tode-AST-Extensions-dkh.2)
Tode-BatchEdit-Tool (Tode-BatchEdit-Tool-dkh.3)
Tode-GemStone-Server-Core (Tode-GemStone-Server-Core-dkh.118)
Tode-GemStone-Server-Tests (Tode-GemStone-Server-Tests-dkh.5)
Tode-Server-31x-GsProcess-Patch (Tode-Server-31x-GsProcess-Patch-dkh.1)
Tode-Server-TestTestTools (Tode-Server-TestTestTools-dkh.2)
Topez-Common-Core (Topez-Common-Core-dkh.414)
Topez-Common-Tests (Topez-Common-Tests-dkh.22)
Topez-Server-31x-Core (Topez-Server-31x-Core-dkh.5)
Topez-Server-31x-DebugTools (Topez-Server-31x-DebugTools-dkh.19)
Topez-Server-31x-Tests (Topez-Server-31x-Tests-dkh.3)
Topez-Server-3x-Core (Topez-Server-3x-Core-dkh.2)
Topez-Server-3x-DebugTools (Topez-Server-3x-DebugTools-dkh.2)
Topez-Server-Core (Topez-Server-Core-dkh.89)
Topez-Server-DebugTools (Topez-Server-DebugTools-dkh.151)
Topez-Server-ProcessTools (Topez-Server-ProcessTools-dkh.25)
Topez-Server-TestDebugTools (Topez-Server-TestDebugTools-dkh.19)
Topez-Server-Tests (Topez-Server-Tests-dkh.151)
Topez-Server-TestTools (Topez-Server-TestTools-dkh.54)
TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
TopFeeder-Model (TopFeeder-Model-NickAger.5)
TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
Utf8Encoding (Utf8Encoding.310-dkh.32)
XML-Observable (XML-Observable-JohanBrichau.1)
XML-Parser (XML-Parser.g-NorbertHartl.119)
XML-Writer (XML-Writer-JAAyer.5)
Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
* Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)
'

Thanks,
       Dario

Dale

On 03/10/2015 11:06 AM, Dario Trussardi via Glass wrote:
Ciao,

   I have a devkit tODE stone create with createTodeStone  devkit  3.1.0.6

into it i load:

GsDeployer
  bulkMigrate: [
    {#( 'XMLSupport' '1.2.2' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
   #('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
    #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
    #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
      do: [ :ar |
        | projectName version repository |
        projectName := ar at: 1.
        version := ar at: 2.
        repository := ar at: 3.
        Metacello new
          configuration: projectName;
          repository: repository;
          get.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          onUpgrade: [ :ex :existing :new |
                existing locked
                  ifTrue: [ ex disallow ]
                  ifFalse: [ ex allow ] ];
          onConflict: [ :ex | ex disallow ];
          load.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          lock ] ]

and:

GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: '<a href="github://glassdb/SIXX:master/repository'">github://glassdb/SIXX:master/repository';
      load ].

A this point the     SixxExamples example2        works fine.





Now i can save a sixx file relative to my data application      anEnv link     with:

   writeObject: anEnv toFile: aFilename inFolder: aDirectoryPath

   | fileStream sws |

   fileStream := ( FileDirectory on: aDirectoryPath) newFileNamed: aFilename.

   sws := SixxWriteStream on: fileStream.

   sws nextPut: anEnv.
   sws close.





After when i do the command:  ^Object readSixxFrom: fileStream contents.

to read the sixx file create above the system answer the error:

a SixxXmlParseError occurred (error 2710) - G/S[Scandella3106 devkit:1]

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal: (envId 0)
AbstractException class >> signal: (envId 0)
XMLTokenizer >> parseError: (envId 0)
XMLTokenizer >> errorExpected: (envId 0)
XMLTokenizer >> nextLiteral (envId 0)
XMLTokenizer >> nextPCDataDelimitedBy:putOn: (envId 0)
[] in  XMLTokenizer >> nextPCData (envId 0)
XMLNestedStreamWriter >> writeWith: (envId 0)
XMLTokenizer >> nextPCData (envId 0)
XMLTokenizer >> nextToken (envId 0)
XMLParser >> parseToken (envId 0)
XMLParser >> parseDocument (envId 0)
SAXHandler >> parseDocument (envId 0)
XMLDOMParser >> parseDocument (envId 0)
SAXHandler class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
XMLDOMParser class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
SAXHandler class >> parseDocumentFrom:persistentRoot: (envId 0)
SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)

Considerations ?

Thanks,

   Dario

P.S.  I have another  3.1.0.6    stone where i have:

   ConfigurationOfGsSIXX project currentVersion >=0.3-c.1 [ConfigurationOfGsSIXX]

   ConfigurationOfXMLSupport project currentVersion >=1.2.2.1 [ConfigurationOfXMLSupport]

   Into it  all works fine.

   The sixx file created into it   can reading  into  the devkit  tODE stone  without problem


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
Reply | Threaded
Open this post in threaded view
|

Re: [Glass] Sixx problematic

GLASS mailing list
In reply to this post by GLASS mailing list
Dario,

Please send a fresh list of package versions from the working system and failing system ...

Presumably you are again getting the wrong version of the XML project loaded (probably Monty's new version that is known not to work with SIXX) ... but I can only guess ... but this is the same problem that you had the last time we went through this ...

You have changed something in your load script and those changes are causing you to get the wrong version of XML again ... I would again like to see the complete load expression that you are using and the transcript output as well


Again, the real answer is for someone to port SIXX to work with the new XML parser, or revert the changes that Monty made to the XMLSupport configuration and stop trying to load the new XML code with the XMLSupport configuration ... this change seems to be the root cause of the problem and should fix things for you as well ...

But BEFORE making any changes , I'd like to understand what you are doing differently ...

I don't quite understand how you got ConfigurationOfXMLParser-monty.119 loaded in your system ... the transcript output of a complete load and the complete load expression should help me understand this ...

On 03/18/2015 07:54 AM, Dario Trussardi via Glass wrote:
Ciao,

i'm very sorry, but I have to backtrack because sixx does not wok into a new tODE 3.1.0.6 repository.

I have two tODE 3.1.0.6 environment.

In the first ( the hold ) i have load:


and:

 GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository';
      load ].

Into it the : SixxExamples example2.        works fine,

and the Mariano  serialize and materialize using SIXX, with UTF8 also works fine

This system configurations report:

ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-NorbertHartl.64)
ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
 


In the new second tODE 3.1.0.6 environment i have load:

    { #( 'XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').  

I also test  with XMLSupport' '1.2.2' but with the same error 
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository')}
     
and:

 GsDeployer bulkMigrate: [
   Metacello new
       baseline: 'SIXX';
       repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository';
       load ].

Into it the : SixxExamples example2.      answer the error: a SixxXmlParseError occurred (error 2710)

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
Object >> doesNotUnderstand: (envId 0)
Object >> _doesNotUnderstand:args:envId:reason: (envId 0)
******** SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)
SixxExamples class >> example2 (envId 0)
Executed Code           
String >> evaluateInContext:symbolList: (envId 0)
JadeServer >> evaluate:inContext: (envId 0)
JadeServer >> printIt:in: (envId 0)
GsNMethod class >> _gsReturnToC (envId 0)


and the Mariano  materialize using SIXX, with UTF8 also answer the same error:  a SixxXmlParseError occurred (error 2710)

This system configurations report:
ConfigurationOfXMLParser-monty.119
ConfigurationOfXMLParser (ConfigurationOfXMLParser-monty.119) ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.71) ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)


The upper  ****** error is relative to the method: 

parseXml: xmlStringOrStream persistentRoot: persistentArrayOrNil
| stream |
stream := xmlStringOrStream isStream
ifTrue: [xmlStringOrStream]
ifFalse: [ReadStream on: xmlStringOrStream].

^ (XMLDOMParser parseDocumentFrom: stream persistentRoot: persistentArrayOrNil) topElement


Where XMLDOMParser don't implement the method :  parseDocumentFrom: stream persistentRoot: persistentArrayOrNil) 

Does anyone have ideas how manage sixx I/O  into tODE without error ?

Thanks,

Dario

Dario,

The important thing is that you are able to get SIXX working ... the real solution to this problem is to get SIXX ported to the latest XMLParser implementation (and make sure that all of the projects that depned upon XML keep flying) ...

Dale

On 03/11/2015 10:09 AM, Dario Trussardi via Glass wrote:
Dale,

Dario,

I have forgotten to mention that now that you are using The Metacello scripting api for loading that the #currentVersion message should not be used either.

The #currentVersion method calculates the version and as I've said in the past, it sometimes gets it wrong ...

Using the Metacello scripting api, you can print the registration for XMLSupport

 Metacello registrations
   detect: [ :registration | registration projectName = 'XMLSupport' ].

But....right now we are trying to figure out how to reproduce the formula for the "stone that works" and I'd like to see the list of packages that are loaded in the image where SixxExample class>>example2 is failing.

Now before we go too far ... I want to understand the status of SixxExample class>>example2.

AFAICT, there are three stones:

 1. the "old stone" into which you can load your SIXX file without error (and appears to be using XMLSupport 1.2.2.1)
 2. the "new stone" that was built by locking XMLSupport 1.2.2 ...
For point 2 the system woks right.
 3. The "new stone 2" that was built by locking XMLSupport 1.2.2.1
For point 3 the system answer the error as i write into my last e-mail.
You can test it into a new tODE environment

Now I'm curious what results you get for SixxExample class>>example2 in each of those stones.

Another odd thing is that you claimed that Mariano's technique worked for you and I assume that Mariano's code was running against the "new stone" with XMLSupport 1.2.2 ... so if XMLSupport 1.2.2 is working for you I'm not sure why we are worried about XMLSupport 1.2.2.1. I made the assumption that the old stone was working because of XMLSupport 1.2.2.1 ... but I could very easily be wrong ... there were quite a few differences between the other packages in the two stones ...

Yes, you have right.
The Mariano's technique works fine.

But you write:

It appears that Mariano's workspace has helped you to get going, but I do believe that 1.2.2.1 is the version of XMLSupprt you should be using, until we can port SIXX (and any other projects that depend upon XMLSupport) to use the newer versions of XMLSupport ...

and i have doubt about XMLSupport version.

Then saw that Mariano's tecniques works well consider the matter closed, for the moment.

Do you agree?

Ciao, thanks,

Dario

Dale


On 03/11/2015 03:09 AM, Dario Trussardi via Glass wrote:
Dale,

into a clean tODE stone i load:

GsDeployer
  bulkMigrate: [
    {#('XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
#('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
    #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
    #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
      do: [ :ar |
        | projectName version repository |
        projectName := ar at: 1.
        version := ar at: 2.
        repository := ar at: 3.
        Metacello new
          configuration: projectName;
          repository: repository;
          get.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          onUpgrade: [ :ex :existing :new |
                existing locked
                  ifTrue: [ ex disallow ]
                  ifFalse: [ ex allow ] ];
          onConflict: [ :ex | ex disallow ];
          load.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          lock ] ]

At the end result: ConfigurationOfXMLSupport project currentVersion >=1.3.0 [ConfigurationOfXMLSupport]

It's not strange ?  Because not 1.2.2.1  ?

After i load:

GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository';
      load ].

The SixxExamples example2        don't works.

It erase the error: a SixxXmlParseError occurred (error 2710) -  G/S[Scandella3106 devkit:1]

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
Object >> doesNotUnderstand: (envId 0)
Object >> _doesNotUnderstand:args:envId:reason: (envId 0)
SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)
SixxExamples class >> example2 (envId 0)
Executed Code
String >> evaluateInContext:symbolList: (envId 0)
JadeServer >> evaluate:inContext: (envId 0)
JadeServer >> printIt:in: (envId 0)
GsNMethod class >> _gsReturnToC (envId 0)

Ciao,

Dario


Okay after further review I merge XMLSupport 1.2.2.1 into ConfigurationOfXMLSupport-monty.70 and saved a new version of the configuration (ConfigurationOfXMLSupport-dkh.71) and copied it to the appropriate repositories ... so at least we have 1.2.2.1 around for posterity ...

I have not been able to look into the issues with SIXX and XMLSupport 1.3.0 (the new version published by Monty) ... Monty assures me that the tests all pass for GemStone, but I am not sure whether or not the places that are/were dependent upon the older versions of XMLSupport (like SIXX) are impacted by version 1.3.0 or not .... if so then locking and loading XMLSupport 1.2.2.1 should put things right again ...

Dale

On 03/10/2015 03:07 PM, Dale Henrichs wrote:
Likely suspects in from working stone package list (XMLSupport ???):

 SIXX (SIXX.310-PaulDeBruicker.182)
 XML-Observable (XML-Observable-JohanBrichau.1)
 XML-Parser (XML-Parser.g-dkh.122)
 XML-Writer (XML-Writer-JAAyer.5)

and from failing stone package list (XMLSupport 1.2.2):

 SIXX (SIXX.310-dkh.183)
 XML-Observable (XML-Observable-JohanBrichau.1)
 XML-Parser (XML-Parser.g-NorbertHartl.119)
 XML-Writer (XML-Writer-JAAyer.5)


It's interesting that for the "working stone" you are using XML-Parser.g-dkh.122 and that package version is not in "any of the ConfigurationOfXMLSupport" versions.

According to the commit comment XML-Parser.g-dkh.122:
  final sent but not implemented for https://github.com/glassdb/glass/issues/39 bugfix?[1]


According to a comment in Issue #39 for glass[2], I created version XMLSupprt 1.2.2.1 with a reference to XML-Parser.g-dkh.122, but a quick search through the configurations for XMLSupport did not reveal a 1.2.2.1 version .. until I peeked at http://www.squeaksource.com/MetacelloRepository/ and found ConfigurationOfXMLSupport-dkh.69 with the 1.2.2.1 version
... It turns out that Monty had written a new version of ConfigurationOfXMLSupport-monty.70, but neglected to merge his changes into ConfigurationOfXMLSupport-dkh.69, so 1.2.2.1 was lost ...

Sooooo, I've copied ConfigurationOfXMLSupport-dkh.69 to http://seaside.gemstone.com/ss/MetacelloRepository and you should change your load spec for XMLSupport to the following

 #( 'XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository')

It appears that Mariano's workspace has helped you to get going, but I do believe that 1.2.2.1 is the version of XMLSupprt you should be using, until we can port SIXX (and any other projects that depend upon XMLSupport) to use the newer versions of XMLSupport ...

Dale

[1] https://github.com/GsDevKit/GsDevKit/issues/39
[2] https://github.com/GsDevKit/GsDevKit/issues/39#issuecomment-58772264

On 03/10/2015 01:54 PM, Dario Trussardi via Glass wrote:
Dale,


Dario,

You have a stone that works and a stone that does not ... I would like to understand the differences in packages loaded between the two (for example XMLSupport 1.2.2 my not be the correct version to use for SIXX ...)

Use the following to list the packages in each stone:

 | stream |
 stream := WriteStream on: String new.
 (MCWorkingCopy allManagers sorted: [ :a :b | a packageName < b packageName ])
   do: [ :wc |
     stream
       nextPutAll: wc description;
       cr ].
 stream contents
The stone that works reports:

'Announcements (Announcements.v3-dkh.18)
Base-Bootstrap (Base-Bootstrap.v3-dkh.29)
BaselineOfDtrLogin (BaselineOfDtrLogin-DTR.8)
BaselineOfDtrMOL (BaselineOfDtrMOL-DTR.2)
BaselineOfDtrSupport (BaselineOfDtrSupport-DTR.3)
BaselineOfFileTree (BaselineOfFileTree-dkh.4)
BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
BaselineOfMetacello (BaselineOfMetacello-dkh.85)
BaselineOfSIXX (BaselineOfSIXX-dkh.1)
* Bootstrap (Bootstrap.v3-DaleHenrichs.230)
Change-Notification (Change-Notification.v3-dkh.20)
Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-dkh.11)
Collections-Support (Collections-Support.g-dkh.46)
ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.10)
ConfigurationOfDtrSupport (ConfigurationOfDtrSupport-DTR.1)
ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.66)
ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
ConfigurationOfGofer (ConfigurationOfGofer-dkh.44)
ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-DaleHenrichs.21)
ConfigurationOfGrease (ConfigurationOfGrease-dkh.270)
ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.89)
ConfigurationOfGsSIXX (ConfigurationOfGsSIXX-dkh.11)
ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
* ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
ConfigurationOfSeaside3 (ConfigurationOfSeaside3-JohanBrichau.218)
ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.69)
ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
* Core (Core.v3-DaleHenrichs.76)
* Crossfade (Crossfade-pmm.8)
CSSBarGraph (CSSBarGraph-pmm.11)
DTRAlbums (DTRAlbums-DTR.451)
DtrAssociazioni (DtrAssociazioni-DTR.5)
DtrBase (DtrBase-DTR.418)
* DTRCassa (DTRCassa-DTR.21)
DtrConfig (DtrConfig-DTR.412)
DTRConfigGruppi (DTRConfigGruppi-DTR.1)
DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
DTRCore (DTRCore-DTR.417)
DtrCrossfade (DtrCrossfade-DTR.408)
DtrCRP (DtrCRP-DTR.411)
DtrFinanza (DtrFinanza-DTR.417)
DtrGestionale (DtrGestionale-DTR.412)
DtrGoogle (DtrGoogle-DTR.408)
DtrLogin (DtrLogin-DTR.426)
DtrMA (DtrMA-DTR.410)
DtrMagazzino (DtrMagazzino-DTR.412)
DtrMagritteAuto (DtrMagritteAuto-DTR.407)
* DtrMenuOnLine (DtrMenuOnLine-DTR.416)
DTRMetaDb (DTRMetaDb-DTR.5)
* DtrMicroObj (DtrMicroObj-DTR.414)
DtrMRP (DtrMRP-DTR.408)
DTROnlyForOODB (DTROnlyForOODB-DTR.186)
DTRPier (DTRPier-DTR.445)
DtrPrinterTicket (DtrPrinterTicket-DTR.5)
DtrRedu (DtrRedu-DTR.405)
DtrReduPorting (DtrReduPorting-DTR.407)
FastCGI (FastCGI-dkh.33)
FastCGIPool (FastCGIPool-dkh.2)
GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.9)
GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.3)
GemStone-Release-Support (GemStone-Release-Support-dkh.67)
Gofer-Core (Gofer-Core.gemstone-dkh.137)
GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
* GoogleMaps (GoogleMaps-jgf.23)
Grease-Core (Grease-Core-JohanBrichau.94)
Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
Grease-Tests-Core (Grease-Tests-Core-pmm.99)
Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.10)
GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
GsUpgrader-Core (GsUpgrader-Core-dkh.38)
JadeServer (JadeServer-dkh.13)
Javascript-Core (Javascript-Core-pmm.94)
Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
JQuery-Core (JQuery-Core-lr.123)
JQuery-Extensions (JQuery-Extensions-DTR.7)
JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
JQuery-UI (JQuery-UI.gemstone-dkh.81)
JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
Magritte-Json (Magritte-Json-NickAger.18)
Magritte-Model (Magritte-Model-NickAger.431)
* Magritte-Seaside (Magritte-Seaside-NickAger.355)
Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
Metacello-Base (Metacello-Base-dkh.123)
Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
Metacello-Core (Metacello-Core-dkh.806)
Metacello-FileTree (Metacello-FileTree-dkh.36)
Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
Metacello-GitHub (Metacello-GitHub-dkh.44)
Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
Metacello-MC (Metacello-MC-dkh.722)
Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
Metacello-ToolBox (Metacello-ToolBox-dkh.139)
Monticello (Monticello.v3-dkh.456)
* MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.166)
MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
OB-GemStone-Platform (OB-GemStone-Platform-dkh.69)
OB-Metacello (OB-Metacello-dkh.83)
OB-Monticello (OB-Monticello-DaleHenrichs.103)
OB-Standard (OB-Standard.v3-dkh.448)
OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
OB-Tools (OB-Tools.v3-dkh.136)
OmniBrowser (OmniBrowser-DaleHenrichs.447)
PackageInfo-Base (PackageInfo-Base.g-dkh.36)
Pier-Admin (Pier-Admin-NickAger.87)
Pier-Blog (Pier-Blog-NickAger.158)
Pier-Book (Pier-Book.gemstone-NickAger.159)
Pier-Design (Pier-Design-NickAger.12)
Pier-Documents (Pier-Documents-NickAger.29)
Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
Pier-Google (Pier-Google-NickAger.20)
Pier-JQuery (Pier-JQuery-NickAger.13)
Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
Pier-LinkChecker (Pier-LinkChecker-lr.7)
Pier-Model (Pier-Model-NickAger.424)
* Pier-Seaside (Pier-Seaside-NickAger.536)
* Pier-Security (Pier-Security-NickAger.184)
Pier-Shout (Pier-Shout-NickAger.5)
Pier-TagCloud (Pier-TagCloud-NickAger.26)
Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
Prototype-Core (Prototype-Core-lr.25)
Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
Regex-Core (Regex-Core-DaleHenrichs.3)
Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
RSS-Core (RSS-Core-lr.67)
RSS-Examples (RSS-Examples-lr.26)
RSS-Tests-Core (RSS-Tests-Core-lr.30)
* Scriptaculous-Components (Scriptaculous-Components-lr.111)
Scriptaculous-Core (Scriptaculous-Core-pmm.102)
Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
Seaside-Component (Seaside-Component-jok.92)
* Seaside-Core (Seaside-Core.gemstone-dkh.774)
* Seaside-Development (Seaside-Development-pmm.156)
Seaside-Email (Seaside-Email-PaulDeBruicker.24)
Seaside-Environment (Seaside-Environment-NickAger.77)
Seaside-Examples (Seaside-Examples-lr.23)
Seaside-FileSystem (Seaside-FileSystem-pmm.26)
Seaside-Flow (Seaside-Flow-pmm.23)
Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
* Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
Seaside-HTML5 (Seaside-HTML5-pmm.28)
Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
Seaside-Session (Seaside-Session.gemstone-dkh.158)
Seaside-Swazoo (Seaside-Swazoo-pmm.20)
Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
* Seaside-Welcome (Seaside-Welcome-NickAger.40)
Seaside-Widgets (Seaside-Widgets-lr.26)
Shout-Parsing (Shout-Parsing-NickAger.3)
SIXX (SIXX.310-PaulDeBruicker.182)
SMTPMail (SMTPMail-dkh.11)
SocketStream (SocketStream-PaulDeBruicker.12)
Sport (Sport3.010.v3-dkh.29)
* Squeak (Squeak.v3-DaleHenrichs.298)
Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
System-Digital-Signatures (System-Digital-Signatures-dkh.5)
TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
TopFeeder-Model (TopFeeder-Model-NickAger.5)
TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
Utf8Encoding (Utf8Encoding.310-dkh.30)
XML-Observable (XML-Observable-JohanBrichau.1)
XML-Parser (XML-Parser.g-dkh.122)
XML-Writer (XML-Writer-JAAyer.5)
Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
* Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)'




The stone does not work report:

'Announcements (Announcements.v3-dkh.18)
AST-Core (AST-Core-dkh.102)
Base-Bootstrap (Base-Bootstrap.v3-dkh.30)
BaselineOfFileTree (BaselineOfFileTree-dkh.4)
BaselineOfGLASS1 (BaselineOfGLASS1-dkh.43)
BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
BaselineOfMetacello (BaselineOfMetacello-dkh.85)
BaselineOfRB (BaselineOfRB-dkh.5)
BaselineOfSIXX (BaselineOfSIXX-dkh.1)
BaselineOfSton (BaselineOfSton-dkh.1)
BaselineOfTode (BaselineOfTode-dkh.41)
* Bootstrap (Bootstrap.v3-dkh.241)
Change-Notification (Change-Notification.v310-dkh.21)
Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-JohanBrichau.9)
Collections-Support (Collections-Support.g-OttoBehrens.45)
ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.11)
ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.36)
ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
ConfigurationOfGofer (ConfigurationOfGofer-dkh.45)
ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-dkh.22)
ConfigurationOfGrease (ConfigurationOfGrease-dkh.189)
ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.91)
ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
ConfigurationOfSeaside3 (ConfigurationOfSeaside3-dkh.222)
ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-NorbertHartl.64)
ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
* Core (Core.v3-dkh.90)
Core31x (Core31x-dkh.5)
* Crossfade (Crossfade-pmm.8)
CSSBarGraph (CSSBarGraph-pmm.11)
DtrBase (DtrBase-DTR.418)
DTRCassa (DTRCassa-DTR.21)
* DtrConfig (DtrConfig-DTR.412)
DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
DTRCore (DTRCore-DTR.417)
DtrCrossfade (DtrCrossfade-DTR.408)
DtrCRP (DtrCRP-DTR.411)
DtrFinanza (DtrFinanza-DTR.417)
DtrGestionale (DtrGestionale-DTR.412)
DtrGoogle (DtrGoogle-DTR.408)
DtrLogin (DtrLogin-DTR.426)
DtrMA (DtrMA-DTR.410)
DtrMagazzino (DtrMagazzino-DTR.412)
DtrMagritteAuto (DtrMagritteAuto-DTR.407)
DtrMenuOnLine (DtrMenuOnLine-DTR.416)
DTRMetaDb (DTRMetaDb-DTR.5)
DtrMicroObj (DtrMicroObj-DTR.414)
DtrMRP (DtrMRP-DTR.408)
DTROnlyForOODB (DTROnlyForOODB-DTR.186)
DtrPrinterTicket (DtrPrinterTicket-DTR.5)
DtrRedu (DtrRedu-DTR.405)
DtrReduPorting (DtrReduPorting-DTR.408)
FastCGI (FastCGI-dkh.33)
FastCGIPool (FastCGIPool-dkh.2)
GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.12)
GemStone-Compression (GemStone-Compression-dkh.7)
GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.4)
GemStone-Interactions (GemStone-Interactions-dkh.12)
GemStone-Release-Support (GemStone-Release-Support-dkh.67)
* Generated ()
Gofer-Core (Gofer-Core.gemstone-dkh.138)
GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
* GoogleMaps (GoogleMaps-jgf.23)
Grease-Core (Grease-Core-JohanBrichau.94)
Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
Grease-Tests-Core (Grease-Tests-Core-pmm.99)
Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
* GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.20)
GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
GsSqueakCommon-CoreV30 (GsSqueakCommon-CoreV30-dkh.1)
GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
GsUpgrader-Core (GsUpgrader-Core-dkh.38)
JadeServer (JadeServer-dkh.13)
Javascript-Core (Javascript-Core-pmm.94)
Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
JQuery-Core (JQuery-Core-lr.123)
JQuery-Extensions (JQuery-Extensions-DTR.7)
JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
JQuery-UI (JQuery-UI.gemstone-dkh.81)
JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
Magritte-Json (Magritte-Json-NickAger.18)
Magritte-Model (Magritte-Model-NickAger.431)
* Magritte-Seaside (Magritte-Seaside-NickAger.355)
Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
Metacello-Base (Metacello-Base-topa.124)
Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
Metacello-Core (Metacello-Core-dkh.809)
Metacello-FileTree (Metacello-FileTree-dkh.36)
Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
Metacello-GitHub (Metacello-GitHub-dkh.44)
Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
Metacello-MC (Metacello-MC-dkh.726)
Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
Metacello-ToolBox (Metacello-ToolBox-dkh.139)
Monticello (Monticello.v3-dkh.476)
MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.183)
MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
MonticelloGs (MonticelloGs-dkh.2)
NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
OB-GemStone-Platform (OB-GemStone-Platform-dkh.76)
OB-Metacello (OB-Metacello-dkh.83)
OB-Monticello (OB-Monticello-dkh.105)
OB-Standard (OB-Standard.v3-dkh.449)
OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
OB-Tools (OB-Tools.v3-dkh.140)
OmniBrowser (OmniBrowser-DaleHenrichs.447)
PackageInfo-Base (PackageInfo-Base.g-dkh.36)
Pier-Admin (Pier-Admin-NickAger.87)
Pier-Blog (Pier-Blog-NickAger.158)
Pier-Book (Pier-Book.gemstone-NickAger.159)
Pier-Design (Pier-Design-NickAger.12)
Pier-Documents (Pier-Documents-NickAger.29)
Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
Pier-Google (Pier-Google-NickAger.20)
Pier-JQuery (Pier-JQuery-NickAger.13)
Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
Pier-LinkChecker (Pier-LinkChecker-lr.7)
Pier-Model (Pier-Model-NickAger.424)
Pier-Seaside (Pier-Seaside-NickAger.536)
Pier-Security (Pier-Security-NickAger.184)
Pier-Shout (Pier-Shout-NickAger.5)
Pier-TagCloud (Pier-TagCloud-NickAger.26)
Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
Prototype-Core (Prototype-Core-lr.25)
Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
Regex-Core (Regex-Core-DaleHenrichs.3)
Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
RSS-Core (RSS-Core-lr.67)
RSS-Examples (RSS-Examples-lr.26)
RSS-Tests-Core (RSS-Tests-Core-lr.30)
* Scriptaculous-Components (Scriptaculous-Components-lr.111)
Scriptaculous-Core (Scriptaculous-Core-pmm.102)
Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
Seaside-Component (Seaside-Component-jok.92)
* Seaside-Core (Seaside-Core.gemstone-dkh.774)
* Seaside-Development (Seaside-Development-pmm.156)
Seaside-Email (Seaside-Email-PaulDeBruicker.24)
Seaside-Environment (Seaside-Environment-NickAger.77)
Seaside-Examples (Seaside-Examples-lr.23)
Seaside-FileSystem (Seaside-FileSystem-pmm.26)
Seaside-Flow (Seaside-Flow-pmm.23)
Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
* Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
Seaside-HTML5 (Seaside-HTML5-pmm.28)
Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
Seaside-Session (Seaside-Session.gemstone-dkh.158)
Seaside-Swazoo (Seaside-Swazoo-pmm.20)
Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
* Seaside-Welcome (Seaside-Welcome-NickAger.40)
Seaside-Widgets (Seaside-Widgets-lr.26)
Shout-Parsing (Shout-Parsing-NickAger.3)
SIXX (SIXX.310-dkh.183)
SMTPMail (SMTPMail-dkh.11)
SocketStream (SocketStream-PaulDeBruicker.12)
* Sport (Sport3.010.v3-dkh.32)
* Squeak (Squeak.v3-dkh.309)
* STON-Core (STON-Core-dkh.46)
Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
System-Digital-Signatures (System-Digital-Signatures-dkh.5)
Tode-AST-Extensions (Tode-AST-Extensions-dkh.2)
Tode-BatchEdit-Tool (Tode-BatchEdit-Tool-dkh.3)
Tode-GemStone-Server-Core (Tode-GemStone-Server-Core-dkh.118)
Tode-GemStone-Server-Tests (Tode-GemStone-Server-Tests-dkh.5)
Tode-Server-31x-GsProcess-Patch (Tode-Server-31x-GsProcess-Patch-dkh.1)
Tode-Server-TestTestTools (Tode-Server-TestTestTools-dkh.2)
Topez-Common-Core (Topez-Common-Core-dkh.414)
Topez-Common-Tests (Topez-Common-Tests-dkh.22)
Topez-Server-31x-Core (Topez-Server-31x-Core-dkh.5)
Topez-Server-31x-DebugTools (Topez-Server-31x-DebugTools-dkh.19)
Topez-Server-31x-Tests (Topez-Server-31x-Tests-dkh.3)
Topez-Server-3x-Core (Topez-Server-3x-Core-dkh.2)
Topez-Server-3x-DebugTools (Topez-Server-3x-DebugTools-dkh.2)
Topez-Server-Core (Topez-Server-Core-dkh.89)
Topez-Server-DebugTools (Topez-Server-DebugTools-dkh.151)
Topez-Server-ProcessTools (Topez-Server-ProcessTools-dkh.25)
Topez-Server-TestDebugTools (Topez-Server-TestDebugTools-dkh.19)
Topez-Server-Tests (Topez-Server-Tests-dkh.151)
Topez-Server-TestTools (Topez-Server-TestTools-dkh.54)
TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
TopFeeder-Model (TopFeeder-Model-NickAger.5)
TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
Utf8Encoding (Utf8Encoding.310-dkh.32)
XML-Observable (XML-Observable-JohanBrichau.1)
XML-Parser (XML-Parser.g-NorbertHartl.119)
XML-Writer (XML-Writer-JAAyer.5)
Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
* Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)
'

Thanks,
       Dario

Dale

On 03/10/2015 11:06 AM, Dario Trussardi via Glass wrote:
Ciao,

   I have a devkit tODE stone create with createTodeStone  devkit  3.1.0.6

into it i load:

GsDeployer
  bulkMigrate: [
    {#( 'XMLSupport' '1.2.2' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
   #('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
    #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
    #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
      do: [ :ar |
        | projectName version repository |
        projectName := ar at: 1.
        version := ar at: 2.
        repository := ar at: 3.
        Metacello new
          configuration: projectName;
          repository: repository;
          get.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          onUpgrade: [ :ex :existing :new |
                existing locked
                  ifTrue: [ ex disallow ]
                  ifFalse: [ ex allow ] ];
          onConflict: [ :ex | ex disallow ];
          load.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          lock ] ]

and:

GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository';
      load ].

A this point the     SixxExamples example2        works fine.





Now i can save a sixx file relative to my data application      anEnv link     with:

   writeObject: anEnv toFile: aFilename inFolder: aDirectoryPath

   | fileStream sws |

   fileStream := ( FileDirectory on: aDirectoryPath) newFileNamed: aFilename.

   sws := SixxWriteStream on: fileStream.

   sws nextPut: anEnv.
   sws close.





After when i do the command:  ^Object readSixxFrom: fileStream contents.

to read the sixx file create above the system answer the error:

a SixxXmlParseError occurred (error 2710) - G/S[Scandella3106 devkit:1]

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal: (envId 0)
AbstractException class >> signal: (envId 0)
XMLTokenizer >> parseError: (envId 0)
XMLTokenizer >> errorExpected: (envId 0)
XMLTokenizer >> nextLiteral (envId 0)
XMLTokenizer >> nextPCDataDelimitedBy:putOn: (envId 0)
[] in  XMLTokenizer >> nextPCData (envId 0)
XMLNestedStreamWriter >> writeWith: (envId 0)
XMLTokenizer >> nextPCData (envId 0)
XMLTokenizer >> nextToken (envId 0)
XMLParser >> parseToken (envId 0)
XMLParser >> parseDocument (envId 0)
SAXHandler >> parseDocument (envId 0)
XMLDOMParser >> parseDocument (envId 0)
SAXHandler class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
XMLDOMParser class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
SAXHandler class >> parseDocumentFrom:persistentRoot: (envId 0)
SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)

Considerations ?

Thanks,

   Dario

P.S.  I have another  3.1.0.6    stone where i have:

   ConfigurationOfGsSIXX project currentVersion >=0.3-c.1 [ConfigurationOfGsSIXX]

   ConfigurationOfXMLSupport project currentVersion >=1.2.2.1 [ConfigurationOfXMLSupport]

   Into it  all works fine.

   The sixx file created into it   can reading  into  the devkit  tODE stone  without problem


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass



_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
Reply | Threaded
Open this post in threaded view
|

Re: [Glass] Sixx problematic

GLASS mailing list
In reply to this post by GLASS mailing list
Dario,

Have you solved your load problem?

Dale

On 03/18/2015 09:32 AM, Dario Trussardi via Glass wrote:
Ciao,

into a clean tODE 3.1.0.6 environment i load directly :

GsDeployer bulkMigrate: [ Metacello new baseline: 'SIXX'; repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository'; load ]. The  SixxExamples example2.     answer the same error.

The system report:

ConfigurationOfXMLParser (ConfigurationOfXMLParser-monty.119) ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.71) ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-monty.73)

If i right remember,  last week,  when i load directly  the sixx,  as above,  the  SixxExamples example2    worked fine.

Thanks,
Dario

 
Ciao,

i'm very sorry, but I have to backtrack because sixx does not wok into a new tODE 3.1.0.6 repository.

I have two tODE 3.1.0.6 environment.

In the first ( the hold ) i have load:


and:

 GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository';
      load ].

Into it the : SixxExamples example2.        works fine,

and the Mariano  serialize and materialize using SIXX, with UTF8 also works fine

This system configurations report:

ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-NorbertHartl.64)
ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
 


In the new second tODE 3.1.0.6 environment i have load:

    { #( 'XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').  

I also test  with XMLSupport' '1.2.2' but with the same error 
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository')}
     
and:

 GsDeployer bulkMigrate: [
   Metacello new
       baseline: 'SIXX';
       repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository';
       load ].

Into it the : SixxExamples example2.      answer the error: a SixxXmlParseError occurred (error 2710)

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
Object >> doesNotUnderstand: (envId 0)
Object >> _doesNotUnderstand:args:envId:reason: (envId 0)
******** SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)
SixxExamples class >> example2 (envId 0)
Executed Code           
String >> evaluateInContext:symbolList: (envId 0)
JadeServer >> evaluate:inContext: (envId 0)
JadeServer >> printIt:in: (envId 0)
GsNMethod class >> _gsReturnToC (envId 0)


and the Mariano  materialize using SIXX, with UTF8 also answer the same error:  a SixxXmlParseError occurred (error 2710)

This system configurations report:

ConfigurationOfXMLParser (ConfigurationOfXMLParser-monty.119) ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.71) ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)


The upper  ****** error is relative to the method: 

parseXml: xmlStringOrStream persistentRoot: persistentArrayOrNil
| stream |
stream := xmlStringOrStream isStream
ifTrue: [xmlStringOrStream]
ifFalse: [ReadStream on: xmlStringOrStream].

^ (XMLDOMParser parseDocumentFrom: stream persistentRoot: persistentArrayOrNil) topElement


Where XMLDOMParser don't implement the method :  parseDocumentFrom: stream persistentRoot: persistentArrayOrNil) 

Does anyone have ideas how manage sixx I/O  into tODE without error ?

Thanks,

Dario

Dario,

The important thing is that you are able to get SIXX working ... the real solution to this problem is to get SIXX ported to the latest XMLParser implementation (and make sure that all of the projects that depned upon XML keep flying) ...

Dale

On 03/11/2015 10:09 AM, Dario Trussardi via Glass wrote:
Dale,

Dario,

I have forgotten to mention that now that you are using The Metacello scripting api for loading that the #currentVersion message should not be used either.

The #currentVersion method calculates the version and as I've said in the past, it sometimes gets it wrong ...

Using the Metacello scripting api, you can print the registration for XMLSupport

 Metacello registrations
   detect: [ :registration | registration projectName = 'XMLSupport' ].

But....right now we are trying to figure out how to reproduce the formula for the "stone that works" and I'd like to see the list of packages that are loaded in the image where SixxExample class>>example2 is failing.

Now before we go too far ... I want to understand the status of SixxExample class>>example2.

AFAICT, there are three stones:

 1. the "old stone" into which you can load your SIXX file without error (and appears to be using XMLSupport 1.2.2.1)
 2. the "new stone" that was built by locking XMLSupport 1.2.2 ...
For point 2 the system woks right.
 3. The "new stone 2" that was built by locking XMLSupport 1.2.2.1
For point 3 the system answer the error as i write into my last e-mail.
You can test it into a new tODE environment

Now I'm curious what results you get for SixxExample class>>example2 in each of those stones.

Another odd thing is that you claimed that Mariano's technique worked for you and I assume that Mariano's code was running against the "new stone" with XMLSupport 1.2.2 ... so if XMLSupport 1.2.2 is working for you I'm not sure why we are worried about XMLSupport 1.2.2.1. I made the assumption that the old stone was working because of XMLSupport 1.2.2.1 ... but I could very easily be wrong ... there were quite a few differences between the other packages in the two stones ...

Yes, you have right.
The Mariano's technique works fine.

But you write:

It appears that Mariano's workspace has helped you to get going, but I do believe that 1.2.2.1 is the version of XMLSupprt you should be using, until we can port SIXX (and any other projects that depend upon XMLSupport) to use the newer versions of XMLSupport ...

and i have doubt about XMLSupport version.

Then saw that Mariano's tecniques works well consider the matter closed, for the moment.

Do you agree?

Ciao, thanks,

Dario

Dale


On 03/11/2015 03:09 AM, Dario Trussardi via Glass wrote:
Dale,

into a clean tODE stone i load:

GsDeployer
  bulkMigrate: [
    {#('XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
#('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
    #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
    #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
      do: [ :ar |
        | projectName version repository |
        projectName := ar at: 1.
        version := ar at: 2.
        repository := ar at: 3.
        Metacello new
          configuration: projectName;
          repository: repository;
          get.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          onUpgrade: [ :ex :existing :new |
                existing locked
                  ifTrue: [ ex disallow ]
                  ifFalse: [ ex allow ] ];
          onConflict: [ :ex | ex disallow ];
          load.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          lock ] ]

At the end result: ConfigurationOfXMLSupport project currentVersion >=1.3.0 [ConfigurationOfXMLSupport]

It's not strange ?  Because not 1.2.2.1  ?

After i load:

GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository';
      load ].

The SixxExamples example2        don't works.

It erase the error: a SixxXmlParseError occurred (error 2710) -  G/S[Scandella3106 devkit:1]

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
Object >> doesNotUnderstand: (envId 0)
Object >> _doesNotUnderstand:args:envId:reason: (envId 0)
SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)
SixxExamples class >> example2 (envId 0)
Executed Code
String >> evaluateInContext:symbolList: (envId 0)
JadeServer >> evaluate:inContext: (envId 0)
JadeServer >> printIt:in: (envId 0)
GsNMethod class >> _gsReturnToC (envId 0)

Ciao,

Dario


Okay after further review I merge XMLSupport 1.2.2.1 into ConfigurationOfXMLSupport-monty.70 and saved a new version of the configuration (ConfigurationOfXMLSupport-dkh.71) and copied it to the appropriate repositories ... so at least we have 1.2.2.1 around for posterity ...

I have not been able to look into the issues with SIXX and XMLSupport 1.3.0 (the new version published by Monty) ... Monty assures me that the tests all pass for GemStone, but I am not sure whether or not the places that are/were dependent upon the older versions of XMLSupport (like SIXX) are impacted by version 1.3.0 or not .... if so then locking and loading XMLSupport 1.2.2.1 should put things right again ...

Dale

On 03/10/2015 03:07 PM, Dale Henrichs wrote:
Likely suspects in from working stone package list (XMLSupport ???):

 SIXX (SIXX.310-PaulDeBruicker.182)
 XML-Observable (XML-Observable-JohanBrichau.1)
 XML-Parser (XML-Parser.g-dkh.122)
 XML-Writer (XML-Writer-JAAyer.5)

and from failing stone package list (XMLSupport 1.2.2):

 SIXX (SIXX.310-dkh.183)
 XML-Observable (XML-Observable-JohanBrichau.1)
 XML-Parser (XML-Parser.g-NorbertHartl.119)
 XML-Writer (XML-Writer-JAAyer.5)


It's interesting that for the "working stone" you are using XML-Parser.g-dkh.122 and that package version is not in "any of the ConfigurationOfXMLSupport" versions.

According to the commit comment XML-Parser.g-dkh.122:
  final sent but not implemented for https://github.com/glassdb/glass/issues/39 bugfix?[1]


According to a comment in Issue #39 for glass[2], I created version XMLSupprt 1.2.2.1 with a reference to XML-Parser.g-dkh.122, but a quick search through the configurations for XMLSupport did not reveal a 1.2.2.1 version .. until I peeked at http://www.squeaksource.com/MetacelloRepository/ and found ConfigurationOfXMLSupport-dkh.69 with the 1.2.2.1 version
... It turns out that Monty had written a new version of ConfigurationOfXMLSupport-monty.70, but neglected to merge his changes into ConfigurationOfXMLSupport-dkh.69, so 1.2.2.1 was lost ...

Sooooo, I've copied ConfigurationOfXMLSupport-dkh.69 to http://seaside.gemstone.com/ss/MetacelloRepository and you should change your load spec for XMLSupport to the following

 #( 'XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository')

It appears that Mariano's workspace has helped you to get going, but I do believe that 1.2.2.1 is the version of XMLSupprt you should be using, until we can port SIXX (and any other projects that depend upon XMLSupport) to use the newer versions of XMLSupport ...

Dale

[1] https://github.com/GsDevKit/GsDevKit/issues/39
[2] https://github.com/GsDevKit/GsDevKit/issues/39#issuecomment-58772264

On 03/10/2015 01:54 PM, Dario Trussardi via Glass wrote:
Dale,


Dario,

You have a stone that works and a stone that does not ... I would like to understand the differences in packages loaded between the two (for example XMLSupport 1.2.2 my not be the correct version to use for SIXX ...)

Use the following to list the packages in each stone:

 | stream |
 stream := WriteStream on: String new.
 (MCWorkingCopy allManagers sorted: [ :a :b | a packageName < b packageName ])
   do: [ :wc |
     stream
       nextPutAll: wc description;
       cr ].
 stream contents
The stone that works reports:

'Announcements (Announcements.v3-dkh.18)
Base-Bootstrap (Base-Bootstrap.v3-dkh.29)
BaselineOfDtrLogin (BaselineOfDtrLogin-DTR.8)
BaselineOfDtrMOL (BaselineOfDtrMOL-DTR.2)
BaselineOfDtrSupport (BaselineOfDtrSupport-DTR.3)
BaselineOfFileTree (BaselineOfFileTree-dkh.4)
BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
BaselineOfMetacello (BaselineOfMetacello-dkh.85)
BaselineOfSIXX (BaselineOfSIXX-dkh.1)
* Bootstrap (Bootstrap.v3-DaleHenrichs.230)
Change-Notification (Change-Notification.v3-dkh.20)
Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-dkh.11)
Collections-Support (Collections-Support.g-dkh.46)
ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.10)
ConfigurationOfDtrSupport (ConfigurationOfDtrSupport-DTR.1)
ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.66)
ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
ConfigurationOfGofer (ConfigurationOfGofer-dkh.44)
ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-DaleHenrichs.21)
ConfigurationOfGrease (ConfigurationOfGrease-dkh.270)
ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.89)
ConfigurationOfGsSIXX (ConfigurationOfGsSIXX-dkh.11)
ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
* ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
ConfigurationOfSeaside3 (ConfigurationOfSeaside3-JohanBrichau.218)
ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.69)
ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
* Core (Core.v3-DaleHenrichs.76)
* Crossfade (Crossfade-pmm.8)
CSSBarGraph (CSSBarGraph-pmm.11)
DTRAlbums (DTRAlbums-DTR.451)
DtrAssociazioni (DtrAssociazioni-DTR.5)
DtrBase (DtrBase-DTR.418)
* DTRCassa (DTRCassa-DTR.21)
DtrConfig (DtrConfig-DTR.412)
DTRConfigGruppi (DTRConfigGruppi-DTR.1)
DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
DTRCore (DTRCore-DTR.417)
DtrCrossfade (DtrCrossfade-DTR.408)
DtrCRP (DtrCRP-DTR.411)
DtrFinanza (DtrFinanza-DTR.417)
DtrGestionale (DtrGestionale-DTR.412)
DtrGoogle (DtrGoogle-DTR.408)
DtrLogin (DtrLogin-DTR.426)
DtrMA (DtrMA-DTR.410)
DtrMagazzino (DtrMagazzino-DTR.412)
DtrMagritteAuto (DtrMagritteAuto-DTR.407)
* DtrMenuOnLine (DtrMenuOnLine-DTR.416)
DTRMetaDb (DTRMetaDb-DTR.5)
* DtrMicroObj (DtrMicroObj-DTR.414)
DtrMRP (DtrMRP-DTR.408)
DTROnlyForOODB (DTROnlyForOODB-DTR.186)
DTRPier (DTRPier-DTR.445)
DtrPrinterTicket (DtrPrinterTicket-DTR.5)
DtrRedu (DtrRedu-DTR.405)
DtrReduPorting (DtrReduPorting-DTR.407)
FastCGI (FastCGI-dkh.33)
FastCGIPool (FastCGIPool-dkh.2)
GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.9)
GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.3)
GemStone-Release-Support (GemStone-Release-Support-dkh.67)
Gofer-Core (Gofer-Core.gemstone-dkh.137)
GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
* GoogleMaps (GoogleMaps-jgf.23)
Grease-Core (Grease-Core-JohanBrichau.94)
Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
Grease-Tests-Core (Grease-Tests-Core-pmm.99)
Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.10)
GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
GsUpgrader-Core (GsUpgrader-Core-dkh.38)
JadeServer (JadeServer-dkh.13)
Javascript-Core (Javascript-Core-pmm.94)
Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
JQuery-Core (JQuery-Core-lr.123)
JQuery-Extensions (JQuery-Extensions-DTR.7)
JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
JQuery-UI (JQuery-UI.gemstone-dkh.81)
JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
Magritte-Json (Magritte-Json-NickAger.18)
Magritte-Model (Magritte-Model-NickAger.431)
* Magritte-Seaside (Magritte-Seaside-NickAger.355)
Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
Metacello-Base (Metacello-Base-dkh.123)
Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
Metacello-Core (Metacello-Core-dkh.806)
Metacello-FileTree (Metacello-FileTree-dkh.36)
Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
Metacello-GitHub (Metacello-GitHub-dkh.44)
Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
Metacello-MC (Metacello-MC-dkh.722)
Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
Metacello-ToolBox (Metacello-ToolBox-dkh.139)
Monticello (Monticello.v3-dkh.456)
* MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.166)
MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
OB-GemStone-Platform (OB-GemStone-Platform-dkh.69)
OB-Metacello (OB-Metacello-dkh.83)
OB-Monticello (OB-Monticello-DaleHenrichs.103)
OB-Standard (OB-Standard.v3-dkh.448)
OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
OB-Tools (OB-Tools.v3-dkh.136)
OmniBrowser (OmniBrowser-DaleHenrichs.447)
PackageInfo-Base (PackageInfo-Base.g-dkh.36)
Pier-Admin (Pier-Admin-NickAger.87)
Pier-Blog (Pier-Blog-NickAger.158)
Pier-Book (Pier-Book.gemstone-NickAger.159)
Pier-Design (Pier-Design-NickAger.12)
Pier-Documents (Pier-Documents-NickAger.29)
Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
Pier-Google (Pier-Google-NickAger.20)
Pier-JQuery (Pier-JQuery-NickAger.13)
Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
Pier-LinkChecker (Pier-LinkChecker-lr.7)
Pier-Model (Pier-Model-NickAger.424)
* Pier-Seaside (Pier-Seaside-NickAger.536)
* Pier-Security (Pier-Security-NickAger.184)
Pier-Shout (Pier-Shout-NickAger.5)
Pier-TagCloud (Pier-TagCloud-NickAger.26)
Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
Prototype-Core (Prototype-Core-lr.25)
Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
Regex-Core (Regex-Core-DaleHenrichs.3)
Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
RSS-Core (RSS-Core-lr.67)
RSS-Examples (RSS-Examples-lr.26)
RSS-Tests-Core (RSS-Tests-Core-lr.30)
* Scriptaculous-Components (Scriptaculous-Components-lr.111)
Scriptaculous-Core (Scriptaculous-Core-pmm.102)
Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
Seaside-Component (Seaside-Component-jok.92)
* Seaside-Core (Seaside-Core.gemstone-dkh.774)
* Seaside-Development (Seaside-Development-pmm.156)
Seaside-Email (Seaside-Email-PaulDeBruicker.24)
Seaside-Environment (Seaside-Environment-NickAger.77)
Seaside-Examples (Seaside-Examples-lr.23)
Seaside-FileSystem (Seaside-FileSystem-pmm.26)
Seaside-Flow (Seaside-Flow-pmm.23)
Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
* Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
Seaside-HTML5 (Seaside-HTML5-pmm.28)
Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
Seaside-Session (Seaside-Session.gemstone-dkh.158)
Seaside-Swazoo (Seaside-Swazoo-pmm.20)
Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
* Seaside-Welcome (Seaside-Welcome-NickAger.40)
Seaside-Widgets (Seaside-Widgets-lr.26)
Shout-Parsing (Shout-Parsing-NickAger.3)
SIXX (SIXX.310-PaulDeBruicker.182)
SMTPMail (SMTPMail-dkh.11)
SocketStream (SocketStream-PaulDeBruicker.12)
Sport (Sport3.010.v3-dkh.29)
* Squeak (Squeak.v3-DaleHenrichs.298)
Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
System-Digital-Signatures (System-Digital-Signatures-dkh.5)
TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
TopFeeder-Model (TopFeeder-Model-NickAger.5)
TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
Utf8Encoding (Utf8Encoding.310-dkh.30)
XML-Observable (XML-Observable-JohanBrichau.1)
XML-Parser (XML-Parser.g-dkh.122)
XML-Writer (XML-Writer-JAAyer.5)
Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
* Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)'




The stone does not work report:

'Announcements (Announcements.v3-dkh.18)
AST-Core (AST-Core-dkh.102)
Base-Bootstrap (Base-Bootstrap.v3-dkh.30)
BaselineOfFileTree (BaselineOfFileTree-dkh.4)
BaselineOfGLASS1 (BaselineOfGLASS1-dkh.43)
BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
BaselineOfMetacello (BaselineOfMetacello-dkh.85)
BaselineOfRB (BaselineOfRB-dkh.5)
BaselineOfSIXX (BaselineOfSIXX-dkh.1)
BaselineOfSton (BaselineOfSton-dkh.1)
BaselineOfTode (BaselineOfTode-dkh.41)
* Bootstrap (Bootstrap.v3-dkh.241)
Change-Notification (Change-Notification.v310-dkh.21)
Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-JohanBrichau.9)
Collections-Support (Collections-Support.g-OttoBehrens.45)
ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.11)
ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.36)
ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
ConfigurationOfGofer (ConfigurationOfGofer-dkh.45)
ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-dkh.22)
ConfigurationOfGrease (ConfigurationOfGrease-dkh.189)
ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.91)
ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
ConfigurationOfSeaside3 (ConfigurationOfSeaside3-dkh.222)
ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-NorbertHartl.64)
ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
* Core (Core.v3-dkh.90)
Core31x (Core31x-dkh.5)
* Crossfade (Crossfade-pmm.8)
CSSBarGraph (CSSBarGraph-pmm.11)
DtrBase (DtrBase-DTR.418)
DTRCassa (DTRCassa-DTR.21)
* DtrConfig (DtrConfig-DTR.412)
DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
DTRCore (DTRCore-DTR.417)
DtrCrossfade (DtrCrossfade-DTR.408)
DtrCRP (DtrCRP-DTR.411)
DtrFinanza (DtrFinanza-DTR.417)
DtrGestionale (DtrGestionale-DTR.412)
DtrGoogle (DtrGoogle-DTR.408)
DtrLogin (DtrLogin-DTR.426)
DtrMA (DtrMA-DTR.410)
DtrMagazzino (DtrMagazzino-DTR.412)
DtrMagritteAuto (DtrMagritteAuto-DTR.407)
DtrMenuOnLine (DtrMenuOnLine-DTR.416)
DTRMetaDb (DTRMetaDb-DTR.5)
DtrMicroObj (DtrMicroObj-DTR.414)
DtrMRP (DtrMRP-DTR.408)
DTROnlyForOODB (DTROnlyForOODB-DTR.186)
DtrPrinterTicket (DtrPrinterTicket-DTR.5)
DtrRedu (DtrRedu-DTR.405)
DtrReduPorting (DtrReduPorting-DTR.408)
FastCGI (FastCGI-dkh.33)
FastCGIPool (FastCGIPool-dkh.2)
GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.12)
GemStone-Compression (GemStone-Compression-dkh.7)
GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.4)
GemStone-Interactions (GemStone-Interactions-dkh.12)
GemStone-Release-Support (GemStone-Release-Support-dkh.67)
* Generated ()
Gofer-Core (Gofer-Core.gemstone-dkh.138)
GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
* GoogleMaps (GoogleMaps-jgf.23)
Grease-Core (Grease-Core-JohanBrichau.94)
Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
Grease-Tests-Core (Grease-Tests-Core-pmm.99)
Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
* GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.20)
GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
GsSqueakCommon-CoreV30 (GsSqueakCommon-CoreV30-dkh.1)
GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
GsUpgrader-Core (GsUpgrader-Core-dkh.38)
JadeServer (JadeServer-dkh.13)
Javascript-Core (Javascript-Core-pmm.94)
Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
JQuery-Core (JQuery-Core-lr.123)
JQuery-Extensions (JQuery-Extensions-DTR.7)
JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
JQuery-UI (JQuery-UI.gemstone-dkh.81)
JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
Magritte-Json (Magritte-Json-NickAger.18)
Magritte-Model (Magritte-Model-NickAger.431)
* Magritte-Seaside (Magritte-Seaside-NickAger.355)
Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
Metacello-Base (Metacello-Base-topa.124)
Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
Metacello-Core (Metacello-Core-dkh.809)
Metacello-FileTree (Metacello-FileTree-dkh.36)
Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
Metacello-GitHub (Metacello-GitHub-dkh.44)
Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
Metacello-MC (Metacello-MC-dkh.726)
Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
Metacello-ToolBox (Metacello-ToolBox-dkh.139)
Monticello (Monticello.v3-dkh.476)
MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.183)
MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
MonticelloGs (MonticelloGs-dkh.2)
NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
OB-GemStone-Platform (OB-GemStone-Platform-dkh.76)
OB-Metacello (OB-Metacello-dkh.83)
OB-Monticello (OB-Monticello-dkh.105)
OB-Standard (OB-Standard.v3-dkh.449)
OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
OB-Tools (OB-Tools.v3-dkh.140)
OmniBrowser (OmniBrowser-DaleHenrichs.447)
PackageInfo-Base (PackageInfo-Base.g-dkh.36)
Pier-Admin (Pier-Admin-NickAger.87)
Pier-Blog (Pier-Blog-NickAger.158)
Pier-Book (Pier-Book.gemstone-NickAger.159)
Pier-Design (Pier-Design-NickAger.12)
Pier-Documents (Pier-Documents-NickAger.29)
Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
Pier-Google (Pier-Google-NickAger.20)
Pier-JQuery (Pier-JQuery-NickAger.13)
Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
Pier-LinkChecker (Pier-LinkChecker-lr.7)
Pier-Model (Pier-Model-NickAger.424)
Pier-Seaside (Pier-Seaside-NickAger.536)
Pier-Security (Pier-Security-NickAger.184)
Pier-Shout (Pier-Shout-NickAger.5)
Pier-TagCloud (Pier-TagCloud-NickAger.26)
Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
Prototype-Core (Prototype-Core-lr.25)
Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
Regex-Core (Regex-Core-DaleHenrichs.3)
Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
RSS-Core (RSS-Core-lr.67)
RSS-Examples (RSS-Examples-lr.26)
RSS-Tests-Core (RSS-Tests-Core-lr.30)
* Scriptaculous-Components (Scriptaculous-Components-lr.111)
Scriptaculous-Core (Scriptaculous-Core-pmm.102)
Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
Seaside-Component (Seaside-Component-jok.92)
* Seaside-Core (Seaside-Core.gemstone-dkh.774)
* Seaside-Development (Seaside-Development-pmm.156)
Seaside-Email (Seaside-Email-PaulDeBruicker.24)
Seaside-Environment (Seaside-Environment-NickAger.77)
Seaside-Examples (Seaside-Examples-lr.23)
Seaside-FileSystem (Seaside-FileSystem-pmm.26)
Seaside-Flow (Seaside-Flow-pmm.23)
Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
* Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
Seaside-HTML5 (Seaside-HTML5-pmm.28)
Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
Seaside-Session (Seaside-Session.gemstone-dkh.158)
Seaside-Swazoo (Seaside-Swazoo-pmm.20)
Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
* Seaside-Welcome (Seaside-Welcome-NickAger.40)
Seaside-Widgets (Seaside-Widgets-lr.26)
Shout-Parsing (Shout-Parsing-NickAger.3)
SIXX (SIXX.310-dkh.183)
SMTPMail (SMTPMail-dkh.11)
SocketStream (SocketStream-PaulDeBruicker.12)
* Sport (Sport3.010.v3-dkh.32)
* Squeak (Squeak.v3-dkh.309)
* STON-Core (STON-Core-dkh.46)
Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
System-Digital-Signatures (System-Digital-Signatures-dkh.5)
Tode-AST-Extensions (Tode-AST-Extensions-dkh.2)
Tode-BatchEdit-Tool (Tode-BatchEdit-Tool-dkh.3)
Tode-GemStone-Server-Core (Tode-GemStone-Server-Core-dkh.118)
Tode-GemStone-Server-Tests (Tode-GemStone-Server-Tests-dkh.5)
Tode-Server-31x-GsProcess-Patch (Tode-Server-31x-GsProcess-Patch-dkh.1)
Tode-Server-TestTestTools (Tode-Server-TestTestTools-dkh.2)
Topez-Common-Core (Topez-Common-Core-dkh.414)
Topez-Common-Tests (Topez-Common-Tests-dkh.22)
Topez-Server-31x-Core (Topez-Server-31x-Core-dkh.5)
Topez-Server-31x-DebugTools (Topez-Server-31x-DebugTools-dkh.19)
Topez-Server-31x-Tests (Topez-Server-31x-Tests-dkh.3)
Topez-Server-3x-Core (Topez-Server-3x-Core-dkh.2)
Topez-Server-3x-DebugTools (Topez-Server-3x-DebugTools-dkh.2)
Topez-Server-Core (Topez-Server-Core-dkh.89)
Topez-Server-DebugTools (Topez-Server-DebugTools-dkh.151)
Topez-Server-ProcessTools (Topez-Server-ProcessTools-dkh.25)
Topez-Server-TestDebugTools (Topez-Server-TestDebugTools-dkh.19)
Topez-Server-Tests (Topez-Server-Tests-dkh.151)
Topez-Server-TestTools (Topez-Server-TestTools-dkh.54)
TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
TopFeeder-Model (TopFeeder-Model-NickAger.5)
TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
Utf8Encoding (Utf8Encoding.310-dkh.32)
XML-Observable (XML-Observable-JohanBrichau.1)
XML-Parser (XML-Parser.g-NorbertHartl.119)
XML-Writer (XML-Writer-JAAyer.5)
Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
* Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)
'

Thanks,
       Dario

Dale

On 03/10/2015 11:06 AM, Dario Trussardi via Glass wrote:
Ciao,

   I have a devkit tODE stone create with createTodeStone  devkit  3.1.0.6

into it i load:

GsDeployer
  bulkMigrate: [
    {#( 'XMLSupport' '1.2.2' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
   #('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
    #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
    #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
      do: [ :ar |
        | projectName version repository |
        projectName := ar at: 1.
        version := ar at: 2.
        repository := ar at: 3.
        Metacello new
          configuration: projectName;
          repository: repository;
          get.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          onUpgrade: [ :ex :existing :new |
                existing locked
                  ifTrue: [ ex disallow ]
                  ifFalse: [ ex allow ] ];
          onConflict: [ :ex | ex disallow ];
          load.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          lock ] ]

and:

GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository';
      load ].

A this point the     SixxExamples example2        works fine.





Now i can save a sixx file relative to my data application      anEnv link     with:

   writeObject: anEnv toFile: aFilename inFolder: aDirectoryPath

   | fileStream sws |

   fileStream := ( FileDirectory on: aDirectoryPath) newFileNamed: aFilename.

   sws := SixxWriteStream on: fileStream.

   sws nextPut: anEnv.
   sws close.





After when i do the command:  ^Object readSixxFrom: fileStream contents.

to read the sixx file create above the system answer the error:

a SixxXmlParseError occurred (error 2710) - G/S[Scandella3106 devkit:1]

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal: (envId 0)
AbstractException class >> signal: (envId 0)
XMLTokenizer >> parseError: (envId 0)
XMLTokenizer >> errorExpected: (envId 0)
XMLTokenizer >> nextLiteral (envId 0)
XMLTokenizer >> nextPCDataDelimitedBy:putOn: (envId 0)
[] in  XMLTokenizer >> nextPCData (envId 0)
XMLNestedStreamWriter >> writeWith: (envId 0)
XMLTokenizer >> nextPCData (envId 0)
XMLTokenizer >> nextToken (envId 0)
XMLParser >> parseToken (envId 0)
XMLParser >> parseDocument (envId 0)
SAXHandler >> parseDocument (envId 0)
XMLDOMParser >> parseDocument (envId 0)
SAXHandler class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
XMLDOMParser class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
SAXHandler class >> parseDocumentFrom:persistentRoot: (envId 0)
SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)

Considerations ?

Thanks,

   Dario

P.S.  I have another  3.1.0.6    stone where i have:

   ConfigurationOfGsSIXX project currentVersion >=0.3-c.1 [ConfigurationOfGsSIXX]

   ConfigurationOfXMLSupport project currentVersion >=1.2.2.1 [ConfigurationOfXMLSupport]

   Into it  all works fine.

   The sixx file created into it   can reading  into  the devkit  tODE stone  without problem


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass



_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
Reply | Threaded
Open this post in threaded view
|

Re: [Glass] Sixx problematic

GLASS mailing list
Dale,

Dario,

Have you solved your load problem?

No.

with the directly SIXX load i found the error into clean tODE.

Can you replicate it ?

Dario


Dale

On 03/18/2015 09:32 AM, Dario Trussardi via Glass wrote:
Ciao,

into a clean tODE 3.1.0.6 environment i load directly :

GsDeployer bulkMigrate: [ Metacello new baseline: 'SIXX'; repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository'; load ]. The  SixxExamples example2.     answer the same error.

The system report:

ConfigurationOfXMLParser (ConfigurationOfXMLParser-monty.119) ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.71) ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-monty.73)

If i right remember,  last week,  when i load directly  the sixx,  as above,  the  SixxExamples example2    worked fine.

Thanks,
Dario

 
Ciao,

i'm very sorry, but I have to backtrack because sixx does not wok into a new tODE 3.1.0.6 repository.

I have two tODE 3.1.0.6 environment.

In the first ( the hold ) i have load:


and:

 GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository';
      load ].

Into it the : SixxExamples example2.        works fine,

and the Mariano  serialize and materialize using SIXX, with UTF8 also works fine

This system configurations report:

ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-NorbertHartl.64)
ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
 


In the new second tODE 3.1.0.6 environment i have load:

    { #( 'XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').  

I also test  with XMLSupport' '1.2.2' but with the same error 
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository')}
     
and:

 GsDeployer bulkMigrate: [
   Metacello new
       baseline: 'SIXX';
       repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository';
       load ].

Into it the : SixxExamples example2.      answer the error: a SixxXmlParseError occurred (error 2710)

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
Object >> doesNotUnderstand: (envId 0)
Object >> _doesNotUnderstand:args:envId:reason: (envId 0)
******** SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)
SixxExamples class >> example2 (envId 0)
Executed Code           
String >> evaluateInContext:symbolList: (envId 0)
JadeServer >> evaluate:inContext: (envId 0)
JadeServer >> printIt:in: (envId 0)
GsNMethod class >> _gsReturnToC (envId 0)


and the Mariano  materialize using SIXX, with UTF8 also answer the same error:  a SixxXmlParseError occurred (error 2710)

This system configurations report:

ConfigurationOfXMLParser (ConfigurationOfXMLParser-monty.119) ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.71) ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)


The upper  ****** error is relative to the method: 

parseXml: xmlStringOrStream persistentRoot: persistentArrayOrNil
| stream |
stream := xmlStringOrStream isStream
ifTrue: [xmlStringOrStream]
ifFalse: [ReadStream on: xmlStringOrStream].

^ (XMLDOMParser parseDocumentFrom: stream persistentRoot: persistentArrayOrNil) topElement


Where XMLDOMParser don't implement the method :  parseDocumentFrom: stream persistentRoot: persistentArrayOrNil) 

Does anyone have ideas how manage sixx I/O  into tODE without error ?

Thanks,

Dario

Dario,

The important thing is that you are able to get SIXX working ... the real solution to this problem is to get SIXX ported to the latest XMLParser implementation (and make sure that all of the projects that depned upon XML keep flying) ...

Dale

On 03/11/2015 10:09 AM, Dario Trussardi via Glass wrote:
Dale,

Dario,

I have forgotten to mention that now that you are using The Metacello scripting api for loading that the #currentVersion message should not be used either.

The #currentVersion method calculates the version and as I've said in the past, it sometimes gets it wrong ...

Using the Metacello scripting api, you can print the registration for XMLSupport

 Metacello registrations
   detect: [ :registration | registration projectName = 'XMLSupport' ].

But....right now we are trying to figure out how to reproduce the formula for the "stone that works" and I'd like to see the list of packages that are loaded in the image where SixxExample class>>example2 is failing.

Now before we go too far ... I want to understand the status of SixxExample class>>example2.

AFAICT, there are three stones:

 1. the "old stone" into which you can load your SIXX file without error (and appears to be using XMLSupport 1.2.2.1)
 2. the "new stone" that was built by locking XMLSupport 1.2.2 ...
For point 2 the system woks right.
 3. The "new stone 2" that was built by locking XMLSupport 1.2.2.1
For point 3 the system answer the error as i write into my last e-mail.
You can test it into a new tODE environment

Now I'm curious what results you get for SixxExample class>>example2 in each of those stones.

Another odd thing is that you claimed that Mariano's technique worked for you and I assume that Mariano's code was running against the "new stone" with XMLSupport 1.2.2 ... so if XMLSupport 1.2.2 is working for you I'm not sure why we are worried about XMLSupport 1.2.2.1. I made the assumption that the old stone was working because of XMLSupport 1.2.2.1 ... but I could very easily be wrong ... there were quite a few differences between the other packages in the two stones ...

Yes, you have right.
The Mariano's technique works fine.

But you write:

It appears that Mariano's workspace has helped you to get going, but I do believe that 1.2.2.1 is the version of XMLSupprt you should be using, until we can port SIXX (and any other projects that depend upon XMLSupport) to use the newer versions of XMLSupport ...

and i have doubt about XMLSupport version.

Then saw that Mariano's tecniques works well consider the matter closed, for the moment.

Do you agree?

Ciao, thanks,

Dario

Dale


On 03/11/2015 03:09 AM, Dario Trussardi via Glass wrote:
Dale,

into a clean tODE stone i load:

GsDeployer
  bulkMigrate: [
    {#('XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
#('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
    #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
    #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
      do: [ :ar |
        | projectName version repository |
        projectName := ar at: 1.
        version := ar at: 2.
        repository := ar at: 3.
        Metacello new
          configuration: projectName;
          repository: repository;
          get.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          onUpgrade: [ :ex :existing :new |
                existing locked
                  ifTrue: [ ex disallow ]
                  ifFalse: [ ex allow ] ];
          onConflict: [ :ex | ex disallow ];
          load.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          lock ] ]

At the end result: ConfigurationOfXMLSupport project currentVersion >=1.3.0 [ConfigurationOfXMLSupport]

It's not strange ?  Because not 1.2.2.1  ?

After i load:

GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository';
      load ].

The SixxExamples example2        don't works.

It erase the error: a SixxXmlParseError occurred (error 2710) -  G/S[Scandella3106 devkit:1]

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
Object >> doesNotUnderstand: (envId 0)
Object >> _doesNotUnderstand:args:envId:reason: (envId 0)
SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)
SixxExamples class >> example2 (envId 0)
Executed Code
String >> evaluateInContext:symbolList: (envId 0)
JadeServer >> evaluate:inContext: (envId 0)
JadeServer >> printIt:in: (envId 0)
GsNMethod class >> _gsReturnToC (envId 0)

Ciao,

Dario


Okay after further review I merge XMLSupport 1.2.2.1 into ConfigurationOfXMLSupport-monty.70 and saved a new version of the configuration (ConfigurationOfXMLSupport-dkh.71) and copied it to the appropriate repositories ... so at least we have 1.2.2.1 around for posterity ...

I have not been able to look into the issues with SIXX and XMLSupport 1.3.0 (the new version published by Monty) ... Monty assures me that the tests all pass for GemStone, but I am not sure whether or not the places that are/were dependent upon the older versions of XMLSupport (like SIXX) are impacted by version 1.3.0 or not .... if so then locking and loading XMLSupport 1.2.2.1 should put things right again ...

Dale

On 03/10/2015 03:07 PM, Dale Henrichs wrote:
Likely suspects in from working stone package list (XMLSupport ???):

 SIXX (SIXX.310-PaulDeBruicker.182)
 XML-Observable (XML-Observable-JohanBrichau.1)
 XML-Parser (XML-Parser.g-dkh.122)
 XML-Writer (XML-Writer-JAAyer.5)

and from failing stone package list (XMLSupport 1.2.2):

 SIXX (SIXX.310-dkh.183)
 XML-Observable (XML-Observable-JohanBrichau.1)
 XML-Parser (XML-Parser.g-NorbertHartl.119)
 XML-Writer (XML-Writer-JAAyer.5)


It's interesting that for the "working stone" you are using XML-Parser.g-dkh.122 and that package version is not in "any of the ConfigurationOfXMLSupport" versions.

According to the commit comment XML-Parser.g-dkh.122:
  final sent but not implemented for https://github.com/glassdb/glass/issues/39 bugfix?[1]


According to a comment in Issue #39 for glass[2], I created version XMLSupprt 1.2.2.1 with a reference to XML-Parser.g-dkh.122, but a quick search through the configurations for XMLSupport did not reveal a 1.2.2.1 version .. until I peeked at http://www.squeaksource.com/MetacelloRepository/ and found ConfigurationOfXMLSupport-dkh.69 with the 1.2.2.1 version
... It turns out that Monty had written a new version of ConfigurationOfXMLSupport-monty.70, but neglected to merge his changes into ConfigurationOfXMLSupport-dkh.69, so 1.2.2.1 was lost ...

Sooooo, I've copied ConfigurationOfXMLSupport-dkh.69 to http://seaside.gemstone.com/ss/MetacelloRepository and you should change your load spec for XMLSupport to the following

 #( 'XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository')

It appears that Mariano's workspace has helped you to get going, but I do believe that 1.2.2.1 is the version of XMLSupprt you should be using, until we can port SIXX (and any other projects that depend upon XMLSupport) to use the newer versions of XMLSupport ...

Dale

[1] https://github.com/GsDevKit/GsDevKit/issues/39
[2] https://github.com/GsDevKit/GsDevKit/issues/39#issuecomment-58772264

On 03/10/2015 01:54 PM, Dario Trussardi via Glass wrote:
Dale,


Dario,

You have a stone that works and a stone that does not ... I would like to understand the differences in packages loaded between the two (for example XMLSupport 1.2.2 my not be the correct version to use for SIXX ...)

Use the following to list the packages in each stone:

 | stream |
 stream := WriteStream on: String new.
 (MCWorkingCopy allManagers sorted: [ :a :b | a packageName < b packageName ])
   do: [ :wc |
     stream
       nextPutAll: wc description;
       cr ].
 stream contents
The stone that works reports:

'Announcements (Announcements.v3-dkh.18)
Base-Bootstrap (Base-Bootstrap.v3-dkh.29)
BaselineOfDtrLogin (BaselineOfDtrLogin-DTR.8)
BaselineOfDtrMOL (BaselineOfDtrMOL-DTR.2)
BaselineOfDtrSupport (BaselineOfDtrSupport-DTR.3)
BaselineOfFileTree (BaselineOfFileTree-dkh.4)
BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
BaselineOfMetacello (BaselineOfMetacello-dkh.85)
BaselineOfSIXX (BaselineOfSIXX-dkh.1)
* Bootstrap (Bootstrap.v3-DaleHenrichs.230)
Change-Notification (Change-Notification.v3-dkh.20)
Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-dkh.11)
Collections-Support (Collections-Support.g-dkh.46)
ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.10)
ConfigurationOfDtrSupport (ConfigurationOfDtrSupport-DTR.1)
ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.66)
ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
ConfigurationOfGofer (ConfigurationOfGofer-dkh.44)
ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-DaleHenrichs.21)
ConfigurationOfGrease (ConfigurationOfGrease-dkh.270)
ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.89)
ConfigurationOfGsSIXX (ConfigurationOfGsSIXX-dkh.11)
ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
* ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
ConfigurationOfSeaside3 (ConfigurationOfSeaside3-JohanBrichau.218)
ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.69)
ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
* Core (Core.v3-DaleHenrichs.76)
* Crossfade (Crossfade-pmm.8)
CSSBarGraph (CSSBarGraph-pmm.11)
DTRAlbums (DTRAlbums-DTR.451)
DtrAssociazioni (DtrAssociazioni-DTR.5)
DtrBase (DtrBase-DTR.418)
* DTRCassa (DTRCassa-DTR.21)
DtrConfig (DtrConfig-DTR.412)
DTRConfigGruppi (DTRConfigGruppi-DTR.1)
DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
DTRCore (DTRCore-DTR.417)
DtrCrossfade (DtrCrossfade-DTR.408)
DtrCRP (DtrCRP-DTR.411)
DtrFinanza (DtrFinanza-DTR.417)
DtrGestionale (DtrGestionale-DTR.412)
DtrGoogle (DtrGoogle-DTR.408)
DtrLogin (DtrLogin-DTR.426)
DtrMA (DtrMA-DTR.410)
DtrMagazzino (DtrMagazzino-DTR.412)
DtrMagritteAuto (DtrMagritteAuto-DTR.407)
* DtrMenuOnLine (DtrMenuOnLine-DTR.416)
DTRMetaDb (DTRMetaDb-DTR.5)
* DtrMicroObj (DtrMicroObj-DTR.414)
DtrMRP (DtrMRP-DTR.408)
DTROnlyForOODB (DTROnlyForOODB-DTR.186)
DTRPier (DTRPier-DTR.445)
DtrPrinterTicket (DtrPrinterTicket-DTR.5)
DtrRedu (DtrRedu-DTR.405)
DtrReduPorting (DtrReduPorting-DTR.407)
FastCGI (FastCGI-dkh.33)
FastCGIPool (FastCGIPool-dkh.2)
GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.9)
GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.3)
GemStone-Release-Support (GemStone-Release-Support-dkh.67)
Gofer-Core (Gofer-Core.gemstone-dkh.137)
GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
* GoogleMaps (GoogleMaps-jgf.23)
Grease-Core (Grease-Core-JohanBrichau.94)
Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
Grease-Tests-Core (Grease-Tests-Core-pmm.99)
Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.10)
GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
GsUpgrader-Core (GsUpgrader-Core-dkh.38)
JadeServer (JadeServer-dkh.13)
Javascript-Core (Javascript-Core-pmm.94)
Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
JQuery-Core (JQuery-Core-lr.123)
JQuery-Extensions (JQuery-Extensions-DTR.7)
JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
JQuery-UI (JQuery-UI.gemstone-dkh.81)
JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
Magritte-Json (Magritte-Json-NickAger.18)
Magritte-Model (Magritte-Model-NickAger.431)
* Magritte-Seaside (Magritte-Seaside-NickAger.355)
Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
Metacello-Base (Metacello-Base-dkh.123)
Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
Metacello-Core (Metacello-Core-dkh.806)
Metacello-FileTree (Metacello-FileTree-dkh.36)
Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
Metacello-GitHub (Metacello-GitHub-dkh.44)
Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
Metacello-MC (Metacello-MC-dkh.722)
Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
Metacello-ToolBox (Metacello-ToolBox-dkh.139)
Monticello (Monticello.v3-dkh.456)
* MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.166)
MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
OB-GemStone-Platform (OB-GemStone-Platform-dkh.69)
OB-Metacello (OB-Metacello-dkh.83)
OB-Monticello (OB-Monticello-DaleHenrichs.103)
OB-Standard (OB-Standard.v3-dkh.448)
OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
OB-Tools (OB-Tools.v3-dkh.136)
OmniBrowser (OmniBrowser-DaleHenrichs.447)
PackageInfo-Base (PackageInfo-Base.g-dkh.36)
Pier-Admin (Pier-Admin-NickAger.87)
Pier-Blog (Pier-Blog-NickAger.158)
Pier-Book (Pier-Book.gemstone-NickAger.159)
Pier-Design (Pier-Design-NickAger.12)
Pier-Documents (Pier-Documents-NickAger.29)
Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
Pier-Google (Pier-Google-NickAger.20)
Pier-JQuery (Pier-JQuery-NickAger.13)
Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
Pier-LinkChecker (Pier-LinkChecker-lr.7)
Pier-Model (Pier-Model-NickAger.424)
* Pier-Seaside (Pier-Seaside-NickAger.536)
* Pier-Security (Pier-Security-NickAger.184)
Pier-Shout (Pier-Shout-NickAger.5)
Pier-TagCloud (Pier-TagCloud-NickAger.26)
Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
Prototype-Core (Prototype-Core-lr.25)
Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
Regex-Core (Regex-Core-DaleHenrichs.3)
Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
RSS-Core (RSS-Core-lr.67)
RSS-Examples (RSS-Examples-lr.26)
RSS-Tests-Core (RSS-Tests-Core-lr.30)
* Scriptaculous-Components (Scriptaculous-Components-lr.111)
Scriptaculous-Core (Scriptaculous-Core-pmm.102)
Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
Seaside-Component (Seaside-Component-jok.92)
* Seaside-Core (Seaside-Core.gemstone-dkh.774)
* Seaside-Development (Seaside-Development-pmm.156)
Seaside-Email (Seaside-Email-PaulDeBruicker.24)
Seaside-Environment (Seaside-Environment-NickAger.77)
Seaside-Examples (Seaside-Examples-lr.23)
Seaside-FileSystem (Seaside-FileSystem-pmm.26)
Seaside-Flow (Seaside-Flow-pmm.23)
Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
* Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
Seaside-HTML5 (Seaside-HTML5-pmm.28)
Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
Seaside-Session (Seaside-Session.gemstone-dkh.158)
Seaside-Swazoo (Seaside-Swazoo-pmm.20)
Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
* Seaside-Welcome (Seaside-Welcome-NickAger.40)
Seaside-Widgets (Seaside-Widgets-lr.26)
Shout-Parsing (Shout-Parsing-NickAger.3)
SIXX (SIXX.310-PaulDeBruicker.182)
SMTPMail (SMTPMail-dkh.11)
SocketStream (SocketStream-PaulDeBruicker.12)
Sport (Sport3.010.v3-dkh.29)
* Squeak (Squeak.v3-DaleHenrichs.298)
Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
System-Digital-Signatures (System-Digital-Signatures-dkh.5)
TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
TopFeeder-Model (TopFeeder-Model-NickAger.5)
TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
Utf8Encoding (Utf8Encoding.310-dkh.30)
XML-Observable (XML-Observable-JohanBrichau.1)
XML-Parser (XML-Parser.g-dkh.122)
XML-Writer (XML-Writer-JAAyer.5)
Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
* Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)'




The stone does not work report:

'Announcements (Announcements.v3-dkh.18)
AST-Core (AST-Core-dkh.102)
Base-Bootstrap (Base-Bootstrap.v3-dkh.30)
BaselineOfFileTree (BaselineOfFileTree-dkh.4)
BaselineOfGLASS1 (BaselineOfGLASS1-dkh.43)
BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
BaselineOfMetacello (BaselineOfMetacello-dkh.85)
BaselineOfRB (BaselineOfRB-dkh.5)
BaselineOfSIXX (BaselineOfSIXX-dkh.1)
BaselineOfSton (BaselineOfSton-dkh.1)
BaselineOfTode (BaselineOfTode-dkh.41)
* Bootstrap (Bootstrap.v3-dkh.241)
Change-Notification (Change-Notification.v310-dkh.21)
Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-JohanBrichau.9)
Collections-Support (Collections-Support.g-OttoBehrens.45)
ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.11)
ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.36)
ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
ConfigurationOfGofer (ConfigurationOfGofer-dkh.45)
ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-dkh.22)
ConfigurationOfGrease (ConfigurationOfGrease-dkh.189)
ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.91)
ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
ConfigurationOfSeaside3 (ConfigurationOfSeaside3-dkh.222)
ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-NorbertHartl.64)
ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
* Core (Core.v3-dkh.90)
Core31x (Core31x-dkh.5)
* Crossfade (Crossfade-pmm.8)
CSSBarGraph (CSSBarGraph-pmm.11)
DtrBase (DtrBase-DTR.418)
DTRCassa (DTRCassa-DTR.21)
* DtrConfig (DtrConfig-DTR.412)
DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
DTRCore (DTRCore-DTR.417)
DtrCrossfade (DtrCrossfade-DTR.408)
DtrCRP (DtrCRP-DTR.411)
DtrFinanza (DtrFinanza-DTR.417)
DtrGestionale (DtrGestionale-DTR.412)
DtrGoogle (DtrGoogle-DTR.408)
DtrLogin (DtrLogin-DTR.426)
DtrMA (DtrMA-DTR.410)
DtrMagazzino (DtrMagazzino-DTR.412)
DtrMagritteAuto (DtrMagritteAuto-DTR.407)
DtrMenuOnLine (DtrMenuOnLine-DTR.416)
DTRMetaDb (DTRMetaDb-DTR.5)
DtrMicroObj (DtrMicroObj-DTR.414)
DtrMRP (DtrMRP-DTR.408)
DTROnlyForOODB (DTROnlyForOODB-DTR.186)
DtrPrinterTicket (DtrPrinterTicket-DTR.5)
DtrRedu (DtrRedu-DTR.405)
DtrReduPorting (DtrReduPorting-DTR.408)
FastCGI (FastCGI-dkh.33)
FastCGIPool (FastCGIPool-dkh.2)
GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.12)
GemStone-Compression (GemStone-Compression-dkh.7)
GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.4)
GemStone-Interactions (GemStone-Interactions-dkh.12)
GemStone-Release-Support (GemStone-Release-Support-dkh.67)
* Generated ()
Gofer-Core (Gofer-Core.gemstone-dkh.138)
GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
* GoogleMaps (GoogleMaps-jgf.23)
Grease-Core (Grease-Core-JohanBrichau.94)
Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
Grease-Tests-Core (Grease-Tests-Core-pmm.99)
Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
* GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.20)
GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
GsSqueakCommon-CoreV30 (GsSqueakCommon-CoreV30-dkh.1)
GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
GsUpgrader-Core (GsUpgrader-Core-dkh.38)
JadeServer (JadeServer-dkh.13)
Javascript-Core (Javascript-Core-pmm.94)
Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
JQuery-Core (JQuery-Core-lr.123)
JQuery-Extensions (JQuery-Extensions-DTR.7)
JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
JQuery-UI (JQuery-UI.gemstone-dkh.81)
JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
Magritte-Json (Magritte-Json-NickAger.18)
Magritte-Model (Magritte-Model-NickAger.431)
* Magritte-Seaside (Magritte-Seaside-NickAger.355)
Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
Metacello-Base (Metacello-Base-topa.124)
Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
Metacello-Core (Metacello-Core-dkh.809)
Metacello-FileTree (Metacello-FileTree-dkh.36)
Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
Metacello-GitHub (Metacello-GitHub-dkh.44)
Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
Metacello-MC (Metacello-MC-dkh.726)
Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
Metacello-ToolBox (Metacello-ToolBox-dkh.139)
Monticello (Monticello.v3-dkh.476)
MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.183)
MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
MonticelloGs (MonticelloGs-dkh.2)
NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
OB-GemStone-Platform (OB-GemStone-Platform-dkh.76)
OB-Metacello (OB-Metacello-dkh.83)
OB-Monticello (OB-Monticello-dkh.105)
OB-Standard (OB-Standard.v3-dkh.449)
OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
OB-Tools (OB-Tools.v3-dkh.140)
OmniBrowser (OmniBrowser-DaleHenrichs.447)
PackageInfo-Base (PackageInfo-Base.g-dkh.36)
Pier-Admin (Pier-Admin-NickAger.87)
Pier-Blog (Pier-Blog-NickAger.158)
Pier-Book (Pier-Book.gemstone-NickAger.159)
Pier-Design (Pier-Design-NickAger.12)
Pier-Documents (Pier-Documents-NickAger.29)
Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
Pier-Google (Pier-Google-NickAger.20)
Pier-JQuery (Pier-JQuery-NickAger.13)
Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
Pier-LinkChecker (Pier-LinkChecker-lr.7)
Pier-Model (Pier-Model-NickAger.424)
Pier-Seaside (Pier-Seaside-NickAger.536)
Pier-Security (Pier-Security-NickAger.184)
Pier-Shout (Pier-Shout-NickAger.5)
Pier-TagCloud (Pier-TagCloud-NickAger.26)
Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
Prototype-Core (Prototype-Core-lr.25)
Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
Regex-Core (Regex-Core-DaleHenrichs.3)
Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
RSS-Core (RSS-Core-lr.67)
RSS-Examples (RSS-Examples-lr.26)
RSS-Tests-Core (RSS-Tests-Core-lr.30)
* Scriptaculous-Components (Scriptaculous-Components-lr.111)
Scriptaculous-Core (Scriptaculous-Core-pmm.102)
Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
Seaside-Component (Seaside-Component-jok.92)
* Seaside-Core (Seaside-Core.gemstone-dkh.774)
* Seaside-Development (Seaside-Development-pmm.156)
Seaside-Email (Seaside-Email-PaulDeBruicker.24)
Seaside-Environment (Seaside-Environment-NickAger.77)
Seaside-Examples (Seaside-Examples-lr.23)
Seaside-FileSystem (Seaside-FileSystem-pmm.26)
Seaside-Flow (Seaside-Flow-pmm.23)
Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
* Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
Seaside-HTML5 (Seaside-HTML5-pmm.28)
Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
Seaside-Session (Seaside-Session.gemstone-dkh.158)
Seaside-Swazoo (Seaside-Swazoo-pmm.20)
Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
* Seaside-Welcome (Seaside-Welcome-NickAger.40)
Seaside-Widgets (Seaside-Widgets-lr.26)
Shout-Parsing (Shout-Parsing-NickAger.3)
SIXX (SIXX.310-dkh.183)
SMTPMail (SMTPMail-dkh.11)
SocketStream (SocketStream-PaulDeBruicker.12)
* Sport (Sport3.010.v3-dkh.32)
* Squeak (Squeak.v3-dkh.309)
* STON-Core (STON-Core-dkh.46)
Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
System-Digital-Signatures (System-Digital-Signatures-dkh.5)
Tode-AST-Extensions (Tode-AST-Extensions-dkh.2)
Tode-BatchEdit-Tool (Tode-BatchEdit-Tool-dkh.3)
Tode-GemStone-Server-Core (Tode-GemStone-Server-Core-dkh.118)
Tode-GemStone-Server-Tests (Tode-GemStone-Server-Tests-dkh.5)
Tode-Server-31x-GsProcess-Patch (Tode-Server-31x-GsProcess-Patch-dkh.1)
Tode-Server-TestTestTools (Tode-Server-TestTestTools-dkh.2)
Topez-Common-Core (Topez-Common-Core-dkh.414)
Topez-Common-Tests (Topez-Common-Tests-dkh.22)
Topez-Server-31x-Core (Topez-Server-31x-Core-dkh.5)
Topez-Server-31x-DebugTools (Topez-Server-31x-DebugTools-dkh.19)
Topez-Server-31x-Tests (Topez-Server-31x-Tests-dkh.3)
Topez-Server-3x-Core (Topez-Server-3x-Core-dkh.2)
Topez-Server-3x-DebugTools (Topez-Server-3x-DebugTools-dkh.2)
Topez-Server-Core (Topez-Server-Core-dkh.89)
Topez-Server-DebugTools (Topez-Server-DebugTools-dkh.151)
Topez-Server-ProcessTools (Topez-Server-ProcessTools-dkh.25)
Topez-Server-TestDebugTools (Topez-Server-TestDebugTools-dkh.19)
Topez-Server-Tests (Topez-Server-Tests-dkh.151)
Topez-Server-TestTools (Topez-Server-TestTools-dkh.54)
TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
TopFeeder-Model (TopFeeder-Model-NickAger.5)
TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
Utf8Encoding (Utf8Encoding.310-dkh.32)
XML-Observable (XML-Observable-JohanBrichau.1)
XML-Parser (XML-Parser.g-NorbertHartl.119)
XML-Writer (XML-Writer-JAAyer.5)
Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
* Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)
'

Thanks,
       Dario

Dale

On 03/10/2015 11:06 AM, Dario Trussardi via Glass wrote:
Ciao,

   I have a devkit tODE stone create with createTodeStone  devkit  3.1.0.6

into it i load:

GsDeployer
  bulkMigrate: [
    {#( 'XMLSupport' '1.2.2' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
   #('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
    #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
    #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
      do: [ :ar |
        | projectName version repository |
        projectName := ar at: 1.
        version := ar at: 2.
        repository := ar at: 3.
        Metacello new
          configuration: projectName;
          repository: repository;
          get.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          onUpgrade: [ :ex :existing :new |
                existing locked
                  ifTrue: [ ex disallow ]
                  ifFalse: [ ex allow ] ];
          onConflict: [ :ex | ex disallow ];
          load.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          lock ] ]

and:

GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository';
      load ].

A this point the     SixxExamples example2        works fine.





Now i can save a sixx file relative to my data application      anEnv link     with:

   writeObject: anEnv toFile: aFilename inFolder: aDirectoryPath

   | fileStream sws |

   fileStream := ( FileDirectory on: aDirectoryPath) newFileNamed: aFilename.

   sws := SixxWriteStream on: fileStream.

   sws nextPut: anEnv.
   sws close.





After when i do the command:  ^Object readSixxFrom: fileStream contents.

to read the sixx file create above the system answer the error:

a SixxXmlParseError occurred (error 2710) - G/S[Scandella3106 devkit:1]

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal: (envId 0)
AbstractException class >> signal: (envId 0)
XMLTokenizer >> parseError: (envId 0)
XMLTokenizer >> errorExpected: (envId 0)
XMLTokenizer >> nextLiteral (envId 0)
XMLTokenizer >> nextPCDataDelimitedBy:putOn: (envId 0)
[] in  XMLTokenizer >> nextPCData (envId 0)
XMLNestedStreamWriter >> writeWith: (envId 0)
XMLTokenizer >> nextPCData (envId 0)
XMLTokenizer >> nextToken (envId 0)
XMLParser >> parseToken (envId 0)
XMLParser >> parseDocument (envId 0)
SAXHandler >> parseDocument (envId 0)
XMLDOMParser >> parseDocument (envId 0)
SAXHandler class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
XMLDOMParser class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
SAXHandler class >> parseDocumentFrom:persistentRoot: (envId 0)
SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)

Considerations ?

Thanks,

   Dario

P.S.  I have another  3.1.0.6    stone where i have:

   ConfigurationOfGsSIXX project currentVersion >=0.3-c.1 [ConfigurationOfGsSIXX]

   ConfigurationOfXMLSupport project currentVersion >=1.2.2.1 [ConfigurationOfXMLSupport]

   Into it  all works fine.

   The sixx file created into it   can reading  into  the devkit  tODE stone  without problem


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass



_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
Reply | Threaded
Open this post in threaded view
|

Re: [Glass] Sixx problematic

GLASS mailing list
Dale,

  you need more information?

Thanks,

Dario

Dale,

Dario,

Have you solved your load problem?

No.

with the directly SIXX load i found the error into clean tODE.

Can you replicate it ?

Dario


Dale

On 03/18/2015 09:32 AM, Dario Trussardi via Glass wrote:
Ciao,

into a clean tODE 3.1.0.6 environment i load directly :

GsDeployer bulkMigrate: [ Metacello new baseline: 'SIXX'; repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository'; load ]. The  SixxExamples example2.     answer the same error.

The system report:

ConfigurationOfXMLParser (ConfigurationOfXMLParser-monty.119) ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.71) ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-monty.73)

If i right remember,  last week,  when i load directly  the sixx,  as above,  the  SixxExamples example2    worked fine.

Thanks,
Dario

 
Ciao,

i'm very sorry, but I have to backtrack because sixx does not wok into a new tODE 3.1.0.6 repository.

I have two tODE 3.1.0.6 environment.

In the first ( the hold ) i have load:


and:

 GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository';
      load ].

Into it the : SixxExamples example2.        works fine,

and the Mariano  serialize and materialize using SIXX, with UTF8 also works fine

This system configurations report:

ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-NorbertHartl.64)
ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
 


In the new second tODE 3.1.0.6 environment i have load:

    { #( 'XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').  

I also test  with XMLSupport' '1.2.2' but with the same error 
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository')}
     
and:

 GsDeployer bulkMigrate: [
   Metacello new
       baseline: 'SIXX';
       repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository';
       load ].

Into it the : SixxExamples example2.      answer the error: a SixxXmlParseError occurred (error 2710)

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
Object >> doesNotUnderstand: (envId 0)
Object >> _doesNotUnderstand:args:envId:reason: (envId 0)
******** SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)
SixxExamples class >> example2 (envId 0)
Executed Code           
String >> evaluateInContext:symbolList: (envId 0)
JadeServer >> evaluate:inContext: (envId 0)
JadeServer >> printIt:in: (envId 0)
GsNMethod class >> _gsReturnToC (envId 0)


and the Mariano  materialize using SIXX, with UTF8 also answer the same error:  a SixxXmlParseError occurred (error 2710)

This system configurations report:

ConfigurationOfXMLParser (ConfigurationOfXMLParser-monty.119) ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.71) ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)


The upper  ****** error is relative to the method: 

parseXml: xmlStringOrStream persistentRoot: persistentArrayOrNil
| stream |
stream := xmlStringOrStream isStream
ifTrue: [xmlStringOrStream]
ifFalse: [ReadStream on: xmlStringOrStream].

^ (XMLDOMParser parseDocumentFrom: stream persistentRoot: persistentArrayOrNil) topElement


Where XMLDOMParser don't implement the method :  parseDocumentFrom: stream persistentRoot: persistentArrayOrNil) 

Does anyone have ideas how manage sixx I/O  into tODE without error ?

Thanks,

Dario

Dario,

The important thing is that you are able to get SIXX working ... the real solution to this problem is to get SIXX ported to the latest XMLParser implementation (and make sure that all of the projects that depned upon XML keep flying) ...

Dale

On 03/11/2015 10:09 AM, Dario Trussardi via Glass wrote:
Dale,

Dario,

I have forgotten to mention that now that you are using The Metacello scripting api for loading that the #currentVersion message should not be used either.

The #currentVersion method calculates the version and as I've said in the past, it sometimes gets it wrong ...

Using the Metacello scripting api, you can print the registration for XMLSupport

 Metacello registrations
   detect: [ :registration | registration projectName = 'XMLSupport' ].

But....right now we are trying to figure out how to reproduce the formula for the "stone that works" and I'd like to see the list of packages that are loaded in the image where SixxExample class>>example2 is failing.

Now before we go too far ... I want to understand the status of SixxExample class>>example2.

AFAICT, there are three stones:

 1. the "old stone" into which you can load your SIXX file without error (and appears to be using XMLSupport 1.2.2.1)
 2. the "new stone" that was built by locking XMLSupport 1.2.2 ...
For point 2 the system woks right.
 3. The "new stone 2" that was built by locking XMLSupport 1.2.2.1
For point 3 the system answer the error as i write into my last e-mail.
You can test it into a new tODE environment

Now I'm curious what results you get for SixxExample class>>example2 in each of those stones.

Another odd thing is that you claimed that Mariano's technique worked for you and I assume that Mariano's code was running against the "new stone" with XMLSupport 1.2.2 ... so if XMLSupport 1.2.2 is working for you I'm not sure why we are worried about XMLSupport 1.2.2.1. I made the assumption that the old stone was working because of XMLSupport 1.2.2.1 ... but I could very easily be wrong ... there were quite a few differences between the other packages in the two stones ...

Yes, you have right.
The Mariano's technique works fine.

But you write:

It appears that Mariano's workspace has helped you to get going, but I do believe that 1.2.2.1 is the version of XMLSupprt you should be using, until we can port SIXX (and any other projects that depend upon XMLSupport) to use the newer versions of XMLSupport ...

and i have doubt about XMLSupport version.

Then saw that Mariano's tecniques works well consider the matter closed, for the moment.

Do you agree?

Ciao, thanks,

Dario

Dale


On 03/11/2015 03:09 AM, Dario Trussardi via Glass wrote:
Dale,

into a clean tODE stone i load:

GsDeployer
  bulkMigrate: [
    {#('XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
#('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
    #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
    #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
      do: [ :ar |
        | projectName version repository |
        projectName := ar at: 1.
        version := ar at: 2.
        repository := ar at: 3.
        Metacello new
          configuration: projectName;
          repository: repository;
          get.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          onUpgrade: [ :ex :existing :new |
                existing locked
                  ifTrue: [ ex disallow ]
                  ifFalse: [ ex allow ] ];
          onConflict: [ :ex | ex disallow ];
          load.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          lock ] ]

At the end result: ConfigurationOfXMLSupport project currentVersion >=1.3.0 [ConfigurationOfXMLSupport]

It's not strange ?  Because not 1.2.2.1  ?

After i load:

GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository';
      load ].

The SixxExamples example2        don't works.

It erase the error: a SixxXmlParseError occurred (error 2710) -  G/S[Scandella3106 devkit:1]

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
Object >> doesNotUnderstand: (envId 0)
Object >> _doesNotUnderstand:args:envId:reason: (envId 0)
SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)
SixxExamples class >> example2 (envId 0)
Executed Code
String >> evaluateInContext:symbolList: (envId 0)
JadeServer >> evaluate:inContext: (envId 0)
JadeServer >> printIt:in: (envId 0)
GsNMethod class >> _gsReturnToC (envId 0)

Ciao,

Dario


Okay after further review I merge XMLSupport 1.2.2.1 into ConfigurationOfXMLSupport-monty.70 and saved a new version of the configuration (ConfigurationOfXMLSupport-dkh.71) and copied it to the appropriate repositories ... so at least we have 1.2.2.1 around for posterity ...

I have not been able to look into the issues with SIXX and XMLSupport 1.3.0 (the new version published by Monty) ... Monty assures me that the tests all pass for GemStone, but I am not sure whether or not the places that are/were dependent upon the older versions of XMLSupport (like SIXX) are impacted by version 1.3.0 or not .... if so then locking and loading XMLSupport 1.2.2.1 should put things right again ...

Dale

On 03/10/2015 03:07 PM, Dale Henrichs wrote:
Likely suspects in from working stone package list (XMLSupport ???):

 SIXX (SIXX.310-PaulDeBruicker.182)
 XML-Observable (XML-Observable-JohanBrichau.1)
 XML-Parser (XML-Parser.g-dkh.122)
 XML-Writer (XML-Writer-JAAyer.5)

and from failing stone package list (XMLSupport 1.2.2):

 SIXX (SIXX.310-dkh.183)
 XML-Observable (XML-Observable-JohanBrichau.1)
 XML-Parser (XML-Parser.g-NorbertHartl.119)
 XML-Writer (XML-Writer-JAAyer.5)


It's interesting that for the "working stone" you are using XML-Parser.g-dkh.122 and that package version is not in "any of the ConfigurationOfXMLSupport" versions.

According to the commit comment XML-Parser.g-dkh.122:
  final sent but not implemented for https://github.com/glassdb/glass/issues/39 bugfix?[1]


According to a comment in Issue #39 for glass[2], I created version XMLSupprt 1.2.2.1 with a reference to XML-Parser.g-dkh.122, but a quick search through the configurations for XMLSupport did not reveal a 1.2.2.1 version .. until I peeked at http://www.squeaksource.com/MetacelloRepository/ and found ConfigurationOfXMLSupport-dkh.69 with the 1.2.2.1 version
... It turns out that Monty had written a new version of ConfigurationOfXMLSupport-monty.70, but neglected to merge his changes into ConfigurationOfXMLSupport-dkh.69, so 1.2.2.1 was lost ...

Sooooo, I've copied ConfigurationOfXMLSupport-dkh.69 to http://seaside.gemstone.com/ss/MetacelloRepository and you should change your load spec for XMLSupport to the following

 #( 'XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository')

It appears that Mariano's workspace has helped you to get going, but I do believe that 1.2.2.1 is the version of XMLSupprt you should be using, until we can port SIXX (and any other projects that depend upon XMLSupport) to use the newer versions of XMLSupport ...

Dale

[1] https://github.com/GsDevKit/GsDevKit/issues/39
[2] https://github.com/GsDevKit/GsDevKit/issues/39#issuecomment-58772264

On 03/10/2015 01:54 PM, Dario Trussardi via Glass wrote:
Dale,


Dario,

You have a stone that works and a stone that does not ... I would like to understand the differences in packages loaded between the two (for example XMLSupport 1.2.2 my not be the correct version to use for SIXX ...)

Use the following to list the packages in each stone:

 | stream |
 stream := WriteStream on: String new.
 (MCWorkingCopy allManagers sorted: [ :a :b | a packageName < b packageName ])
   do: [ :wc |
     stream
       nextPutAll: wc description;
       cr ].
 stream contents
The stone that works reports:

'Announcements (Announcements.v3-dkh.18)
Base-Bootstrap (Base-Bootstrap.v3-dkh.29)
BaselineOfDtrLogin (BaselineOfDtrLogin-DTR.8)
BaselineOfDtrMOL (BaselineOfDtrMOL-DTR.2)
BaselineOfDtrSupport (BaselineOfDtrSupport-DTR.3)
BaselineOfFileTree (BaselineOfFileTree-dkh.4)
BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
BaselineOfMetacello (BaselineOfMetacello-dkh.85)
BaselineOfSIXX (BaselineOfSIXX-dkh.1)
* Bootstrap (Bootstrap.v3-DaleHenrichs.230)
Change-Notification (Change-Notification.v3-dkh.20)
Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-dkh.11)
Collections-Support (Collections-Support.g-dkh.46)
ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.10)
ConfigurationOfDtrSupport (ConfigurationOfDtrSupport-DTR.1)
ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.66)
ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
ConfigurationOfGofer (ConfigurationOfGofer-dkh.44)
ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-DaleHenrichs.21)
ConfigurationOfGrease (ConfigurationOfGrease-dkh.270)
ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.89)
ConfigurationOfGsSIXX (ConfigurationOfGsSIXX-dkh.11)
ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
* ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
ConfigurationOfSeaside3 (ConfigurationOfSeaside3-JohanBrichau.218)
ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.69)
ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
* Core (Core.v3-DaleHenrichs.76)
* Crossfade (Crossfade-pmm.8)
CSSBarGraph (CSSBarGraph-pmm.11)
DTRAlbums (DTRAlbums-DTR.451)
DtrAssociazioni (DtrAssociazioni-DTR.5)
DtrBase (DtrBase-DTR.418)
* DTRCassa (DTRCassa-DTR.21)
DtrConfig (DtrConfig-DTR.412)
DTRConfigGruppi (DTRConfigGruppi-DTR.1)
DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
DTRCore (DTRCore-DTR.417)
DtrCrossfade (DtrCrossfade-DTR.408)
DtrCRP (DtrCRP-DTR.411)
DtrFinanza (DtrFinanza-DTR.417)
DtrGestionale (DtrGestionale-DTR.412)
DtrGoogle (DtrGoogle-DTR.408)
DtrLogin (DtrLogin-DTR.426)
DtrMA (DtrMA-DTR.410)
DtrMagazzino (DtrMagazzino-DTR.412)
DtrMagritteAuto (DtrMagritteAuto-DTR.407)
* DtrMenuOnLine (DtrMenuOnLine-DTR.416)
DTRMetaDb (DTRMetaDb-DTR.5)
* DtrMicroObj (DtrMicroObj-DTR.414)
DtrMRP (DtrMRP-DTR.408)
DTROnlyForOODB (DTROnlyForOODB-DTR.186)
DTRPier (DTRPier-DTR.445)
DtrPrinterTicket (DtrPrinterTicket-DTR.5)
DtrRedu (DtrRedu-DTR.405)
DtrReduPorting (DtrReduPorting-DTR.407)
FastCGI (FastCGI-dkh.33)
FastCGIPool (FastCGIPool-dkh.2)
GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.9)
GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.3)
GemStone-Release-Support (GemStone-Release-Support-dkh.67)
Gofer-Core (Gofer-Core.gemstone-dkh.137)
GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
* GoogleMaps (GoogleMaps-jgf.23)
Grease-Core (Grease-Core-JohanBrichau.94)
Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
Grease-Tests-Core (Grease-Tests-Core-pmm.99)
Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.10)
GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
GsUpgrader-Core (GsUpgrader-Core-dkh.38)
JadeServer (JadeServer-dkh.13)
Javascript-Core (Javascript-Core-pmm.94)
Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
JQuery-Core (JQuery-Core-lr.123)
JQuery-Extensions (JQuery-Extensions-DTR.7)
JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
JQuery-UI (JQuery-UI.gemstone-dkh.81)
JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
Magritte-Json (Magritte-Json-NickAger.18)
Magritte-Model (Magritte-Model-NickAger.431)
* Magritte-Seaside (Magritte-Seaside-NickAger.355)
Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
Metacello-Base (Metacello-Base-dkh.123)
Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
Metacello-Core (Metacello-Core-dkh.806)
Metacello-FileTree (Metacello-FileTree-dkh.36)
Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
Metacello-GitHub (Metacello-GitHub-dkh.44)
Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
Metacello-MC (Metacello-MC-dkh.722)
Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
Metacello-ToolBox (Metacello-ToolBox-dkh.139)
Monticello (Monticello.v3-dkh.456)
* MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.166)
MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
OB-GemStone-Platform (OB-GemStone-Platform-dkh.69)
OB-Metacello (OB-Metacello-dkh.83)
OB-Monticello (OB-Monticello-DaleHenrichs.103)
OB-Standard (OB-Standard.v3-dkh.448)
OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
OB-Tools (OB-Tools.v3-dkh.136)
OmniBrowser (OmniBrowser-DaleHenrichs.447)
PackageInfo-Base (PackageInfo-Base.g-dkh.36)
Pier-Admin (Pier-Admin-NickAger.87)
Pier-Blog (Pier-Blog-NickAger.158)
Pier-Book (Pier-Book.gemstone-NickAger.159)
Pier-Design (Pier-Design-NickAger.12)
Pier-Documents (Pier-Documents-NickAger.29)
Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
Pier-Google (Pier-Google-NickAger.20)
Pier-JQuery (Pier-JQuery-NickAger.13)
Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
Pier-LinkChecker (Pier-LinkChecker-lr.7)
Pier-Model (Pier-Model-NickAger.424)
* Pier-Seaside (Pier-Seaside-NickAger.536)
* Pier-Security (Pier-Security-NickAger.184)
Pier-Shout (Pier-Shout-NickAger.5)
Pier-TagCloud (Pier-TagCloud-NickAger.26)
Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
Prototype-Core (Prototype-Core-lr.25)
Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
Regex-Core (Regex-Core-DaleHenrichs.3)
Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
RSS-Core (RSS-Core-lr.67)
RSS-Examples (RSS-Examples-lr.26)
RSS-Tests-Core (RSS-Tests-Core-lr.30)
* Scriptaculous-Components (Scriptaculous-Components-lr.111)
Scriptaculous-Core (Scriptaculous-Core-pmm.102)
Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
Seaside-Component (Seaside-Component-jok.92)
* Seaside-Core (Seaside-Core.gemstone-dkh.774)
* Seaside-Development (Seaside-Development-pmm.156)
Seaside-Email (Seaside-Email-PaulDeBruicker.24)
Seaside-Environment (Seaside-Environment-NickAger.77)
Seaside-Examples (Seaside-Examples-lr.23)
Seaside-FileSystem (Seaside-FileSystem-pmm.26)
Seaside-Flow (Seaside-Flow-pmm.23)
Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
* Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
Seaside-HTML5 (Seaside-HTML5-pmm.28)
Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
Seaside-Session (Seaside-Session.gemstone-dkh.158)
Seaside-Swazoo (Seaside-Swazoo-pmm.20)
Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
* Seaside-Welcome (Seaside-Welcome-NickAger.40)
Seaside-Widgets (Seaside-Widgets-lr.26)
Shout-Parsing (Shout-Parsing-NickAger.3)
SIXX (SIXX.310-PaulDeBruicker.182)
SMTPMail (SMTPMail-dkh.11)
SocketStream (SocketStream-PaulDeBruicker.12)
Sport (Sport3.010.v3-dkh.29)
* Squeak (Squeak.v3-DaleHenrichs.298)
Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
System-Digital-Signatures (System-Digital-Signatures-dkh.5)
TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
TopFeeder-Model (TopFeeder-Model-NickAger.5)
TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
Utf8Encoding (Utf8Encoding.310-dkh.30)
XML-Observable (XML-Observable-JohanBrichau.1)
XML-Parser (XML-Parser.g-dkh.122)
XML-Writer (XML-Writer-JAAyer.5)
Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
* Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)'




The stone does not work report:

'Announcements (Announcements.v3-dkh.18)
AST-Core (AST-Core-dkh.102)
Base-Bootstrap (Base-Bootstrap.v3-dkh.30)
BaselineOfFileTree (BaselineOfFileTree-dkh.4)
BaselineOfGLASS1 (BaselineOfGLASS1-dkh.43)
BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
BaselineOfMetacello (BaselineOfMetacello-dkh.85)
BaselineOfRB (BaselineOfRB-dkh.5)
BaselineOfSIXX (BaselineOfSIXX-dkh.1)
BaselineOfSton (BaselineOfSton-dkh.1)
BaselineOfTode (BaselineOfTode-dkh.41)
* Bootstrap (Bootstrap.v3-dkh.241)
Change-Notification (Change-Notification.v310-dkh.21)
Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-JohanBrichau.9)
Collections-Support (Collections-Support.g-OttoBehrens.45)
ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.11)
ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.36)
ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
ConfigurationOfGofer (ConfigurationOfGofer-dkh.45)
ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-dkh.22)
ConfigurationOfGrease (ConfigurationOfGrease-dkh.189)
ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.91)
ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
ConfigurationOfSeaside3 (ConfigurationOfSeaside3-dkh.222)
ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-NorbertHartl.64)
ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
* Core (Core.v3-dkh.90)
Core31x (Core31x-dkh.5)
* Crossfade (Crossfade-pmm.8)
CSSBarGraph (CSSBarGraph-pmm.11)
DtrBase (DtrBase-DTR.418)
DTRCassa (DTRCassa-DTR.21)
* DtrConfig (DtrConfig-DTR.412)
DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
DTRCore (DTRCore-DTR.417)
DtrCrossfade (DtrCrossfade-DTR.408)
DtrCRP (DtrCRP-DTR.411)
DtrFinanza (DtrFinanza-DTR.417)
DtrGestionale (DtrGestionale-DTR.412)
DtrGoogle (DtrGoogle-DTR.408)
DtrLogin (DtrLogin-DTR.426)
DtrMA (DtrMA-DTR.410)
DtrMagazzino (DtrMagazzino-DTR.412)
DtrMagritteAuto (DtrMagritteAuto-DTR.407)
DtrMenuOnLine (DtrMenuOnLine-DTR.416)
DTRMetaDb (DTRMetaDb-DTR.5)
DtrMicroObj (DtrMicroObj-DTR.414)
DtrMRP (DtrMRP-DTR.408)
DTROnlyForOODB (DTROnlyForOODB-DTR.186)
DtrPrinterTicket (DtrPrinterTicket-DTR.5)
DtrRedu (DtrRedu-DTR.405)
DtrReduPorting (DtrReduPorting-DTR.408)
FastCGI (FastCGI-dkh.33)
FastCGIPool (FastCGIPool-dkh.2)
GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.12)
GemStone-Compression (GemStone-Compression-dkh.7)
GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.4)
GemStone-Interactions (GemStone-Interactions-dkh.12)
GemStone-Release-Support (GemStone-Release-Support-dkh.67)
* Generated ()
Gofer-Core (Gofer-Core.gemstone-dkh.138)
GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
* GoogleMaps (GoogleMaps-jgf.23)
Grease-Core (Grease-Core-JohanBrichau.94)
Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
Grease-Tests-Core (Grease-Tests-Core-pmm.99)
Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
* GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.20)
GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
GsSqueakCommon-CoreV30 (GsSqueakCommon-CoreV30-dkh.1)
GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
GsUpgrader-Core (GsUpgrader-Core-dkh.38)
JadeServer (JadeServer-dkh.13)
Javascript-Core (Javascript-Core-pmm.94)
Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
JQuery-Core (JQuery-Core-lr.123)
JQuery-Extensions (JQuery-Extensions-DTR.7)
JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
JQuery-UI (JQuery-UI.gemstone-dkh.81)
JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
Magritte-Json (Magritte-Json-NickAger.18)
Magritte-Model (Magritte-Model-NickAger.431)
* Magritte-Seaside (Magritte-Seaside-NickAger.355)
Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
Metacello-Base (Metacello-Base-topa.124)
Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
Metacello-Core (Metacello-Core-dkh.809)
Metacello-FileTree (Metacello-FileTree-dkh.36)
Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
Metacello-GitHub (Metacello-GitHub-dkh.44)
Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
Metacello-MC (Metacello-MC-dkh.726)
Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
Metacello-ToolBox (Metacello-ToolBox-dkh.139)
Monticello (Monticello.v3-dkh.476)
MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.183)
MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
MonticelloGs (MonticelloGs-dkh.2)
NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
OB-GemStone-Platform (OB-GemStone-Platform-dkh.76)
OB-Metacello (OB-Metacello-dkh.83)
OB-Monticello (OB-Monticello-dkh.105)
OB-Standard (OB-Standard.v3-dkh.449)
OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
OB-Tools (OB-Tools.v3-dkh.140)
OmniBrowser (OmniBrowser-DaleHenrichs.447)
PackageInfo-Base (PackageInfo-Base.g-dkh.36)
Pier-Admin (Pier-Admin-NickAger.87)
Pier-Blog (Pier-Blog-NickAger.158)
Pier-Book (Pier-Book.gemstone-NickAger.159)
Pier-Design (Pier-Design-NickAger.12)
Pier-Documents (Pier-Documents-NickAger.29)
Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
Pier-Google (Pier-Google-NickAger.20)
Pier-JQuery (Pier-JQuery-NickAger.13)
Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
Pier-LinkChecker (Pier-LinkChecker-lr.7)
Pier-Model (Pier-Model-NickAger.424)
Pier-Seaside (Pier-Seaside-NickAger.536)
Pier-Security (Pier-Security-NickAger.184)
Pier-Shout (Pier-Shout-NickAger.5)
Pier-TagCloud (Pier-TagCloud-NickAger.26)
Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
Prototype-Core (Prototype-Core-lr.25)
Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
Regex-Core (Regex-Core-DaleHenrichs.3)
Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
RSS-Core (RSS-Core-lr.67)
RSS-Examples (RSS-Examples-lr.26)
RSS-Tests-Core (RSS-Tests-Core-lr.30)
* Scriptaculous-Components (Scriptaculous-Components-lr.111)
Scriptaculous-Core (Scriptaculous-Core-pmm.102)
Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
Seaside-Component (Seaside-Component-jok.92)
* Seaside-Core (Seaside-Core.gemstone-dkh.774)
* Seaside-Development (Seaside-Development-pmm.156)
Seaside-Email (Seaside-Email-PaulDeBruicker.24)
Seaside-Environment (Seaside-Environment-NickAger.77)
Seaside-Examples (Seaside-Examples-lr.23)
Seaside-FileSystem (Seaside-FileSystem-pmm.26)
Seaside-Flow (Seaside-Flow-pmm.23)
Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
* Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
Seaside-HTML5 (Seaside-HTML5-pmm.28)
Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
Seaside-Session (Seaside-Session.gemstone-dkh.158)
Seaside-Swazoo (Seaside-Swazoo-pmm.20)
Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
* Seaside-Welcome (Seaside-Welcome-NickAger.40)
Seaside-Widgets (Seaside-Widgets-lr.26)
Shout-Parsing (Shout-Parsing-NickAger.3)
SIXX (SIXX.310-dkh.183)
SMTPMail (SMTPMail-dkh.11)
SocketStream (SocketStream-PaulDeBruicker.12)
* Sport (Sport3.010.v3-dkh.32)
* Squeak (Squeak.v3-dkh.309)
* STON-Core (STON-Core-dkh.46)
Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
System-Digital-Signatures (System-Digital-Signatures-dkh.5)
Tode-AST-Extensions (Tode-AST-Extensions-dkh.2)
Tode-BatchEdit-Tool (Tode-BatchEdit-Tool-dkh.3)
Tode-GemStone-Server-Core (Tode-GemStone-Server-Core-dkh.118)
Tode-GemStone-Server-Tests (Tode-GemStone-Server-Tests-dkh.5)
Tode-Server-31x-GsProcess-Patch (Tode-Server-31x-GsProcess-Patch-dkh.1)
Tode-Server-TestTestTools (Tode-Server-TestTestTools-dkh.2)
Topez-Common-Core (Topez-Common-Core-dkh.414)
Topez-Common-Tests (Topez-Common-Tests-dkh.22)
Topez-Server-31x-Core (Topez-Server-31x-Core-dkh.5)
Topez-Server-31x-DebugTools (Topez-Server-31x-DebugTools-dkh.19)
Topez-Server-31x-Tests (Topez-Server-31x-Tests-dkh.3)
Topez-Server-3x-Core (Topez-Server-3x-Core-dkh.2)
Topez-Server-3x-DebugTools (Topez-Server-3x-DebugTools-dkh.2)
Topez-Server-Core (Topez-Server-Core-dkh.89)
Topez-Server-DebugTools (Topez-Server-DebugTools-dkh.151)
Topez-Server-ProcessTools (Topez-Server-ProcessTools-dkh.25)
Topez-Server-TestDebugTools (Topez-Server-TestDebugTools-dkh.19)
Topez-Server-Tests (Topez-Server-Tests-dkh.151)
Topez-Server-TestTools (Topez-Server-TestTools-dkh.54)
TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
TopFeeder-Model (TopFeeder-Model-NickAger.5)
TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
Utf8Encoding (Utf8Encoding.310-dkh.32)
XML-Observable (XML-Observable-JohanBrichau.1)
XML-Parser (XML-Parser.g-NorbertHartl.119)
XML-Writer (XML-Writer-JAAyer.5)
Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
* Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)
'

Thanks,
       Dario

Dale

On 03/10/2015 11:06 AM, Dario Trussardi via Glass wrote:
Ciao,

   I have a devkit tODE stone create with createTodeStone  devkit  3.1.0.6

into it i load:

GsDeployer
  bulkMigrate: [
    {#( 'XMLSupport' '1.2.2' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
   #('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
    #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
    #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
      do: [ :ar |
        | projectName version repository |
        projectName := ar at: 1.
        version := ar at: 2.
        repository := ar at: 3.
        Metacello new
          configuration: projectName;
          repository: repository;
          get.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          onUpgrade: [ :ex :existing :new |
                existing locked
                  ifTrue: [ ex disallow ]
                  ifFalse: [ ex allow ] ];
          onConflict: [ :ex | ex disallow ];
          load.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          lock ] ]

and:

GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository';
      load ].

A this point the     SixxExamples example2        works fine.





Now i can save a sixx file relative to my data application      anEnv link     with:

   writeObject: anEnv toFile: aFilename inFolder: aDirectoryPath

   | fileStream sws |

   fileStream := ( FileDirectory on: aDirectoryPath) newFileNamed: aFilename.

   sws := SixxWriteStream on: fileStream.

   sws nextPut: anEnv.
   sws close.





After when i do the command:  ^Object readSixxFrom: fileStream contents.

to read the sixx file create above the system answer the error:

a SixxXmlParseError occurred (error 2710) - G/S[Scandella3106 devkit:1]

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal: (envId 0)
AbstractException class >> signal: (envId 0)
XMLTokenizer >> parseError: (envId 0)
XMLTokenizer >> errorExpected: (envId 0)
XMLTokenizer >> nextLiteral (envId 0)
XMLTokenizer >> nextPCDataDelimitedBy:putOn: (envId 0)
[] in  XMLTokenizer >> nextPCData (envId 0)
XMLNestedStreamWriter >> writeWith: (envId 0)
XMLTokenizer >> nextPCData (envId 0)
XMLTokenizer >> nextToken (envId 0)
XMLParser >> parseToken (envId 0)
XMLParser >> parseDocument (envId 0)
SAXHandler >> parseDocument (envId 0)
XMLDOMParser >> parseDocument (envId 0)
SAXHandler class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
XMLDOMParser class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
SAXHandler class >> parseDocumentFrom:persistentRoot: (envId 0)
SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)

Considerations ?

Thanks,

   Dario

P.S.  I have another  3.1.0.6    stone where i have:

   ConfigurationOfGsSIXX project currentVersion >=0.3-c.1 [ConfigurationOfGsSIXX]

   ConfigurationOfXMLSupport project currentVersion >=1.2.2.1 [ConfigurationOfXMLSupport]

   Into it  all works fine.

   The sixx file created into it   can reading  into  the devkit  tODE stone  without problem


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass



_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
Reply | Threaded
Open this post in threaded view
|

Re: [Glass] Sixx problematic

GLASS mailing list
In reply to this post by GLASS mailing list
Dario,

I need to know pretty much exactly what you do when you load .. in my previous email, I asked for packages lists and transcripts fo loads ...

Once I see that information I can start looking into trying to reproduce problems ...

Again, before we get too far ... I am under the impression that you had

  1. a "really old stone" that SIXX worked correctly in.
  2. a "one week old stone" that SIXX worked correctly in.
  3. a "day old stone" that SIXX does not work correctly in ...

I also believe that you have changed your load script betwee 2 and 3 ...

If you are trying to tell me that the "one week old stone" is not working then you need to try to be as clear as possible with your detailed information ...

Dale

On 03/18/2015 09:52 AM, Dario Trussardi via Glass wrote:
Dale,

Dario,

Have you solved your load problem?

No.

with the directly SIXX load i found the error into clean tODE.

Can you replicate it ?

Dario


Dale

On 03/18/2015 09:32 AM, Dario Trussardi via Glass wrote:
Ciao,

into a clean tODE 3.1.0.6 environment i load directly :

GsDeployer bulkMigrate: [ Metacello new baseline: 'SIXX'; repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository'; load ]. The  SixxExamples example2.     answer the same error.

The system report:

ConfigurationOfXMLParser (ConfigurationOfXMLParser-monty.119) ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.71) ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-monty.73)

If i right remember,  last week,  when i load directly  the sixx,  as above,  the  SixxExamples example2    worked fine.

Thanks,
Dario

 
Ciao,

i'm very sorry, but I have to backtrack because sixx does not wok into a new tODE 3.1.0.6 repository.

I have two tODE 3.1.0.6 environment.

In the first ( the hold ) i have load:


and:

 GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository';
      load ].

Into it the : SixxExamples example2.        works fine,

and the Mariano  serialize and materialize using SIXX, with UTF8 also works fine

This system configurations report:

ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-NorbertHartl.64)
ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
 


In the new second tODE 3.1.0.6 environment i have load:

    { #( 'XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').  

I also test  with XMLSupport' '1.2.2' but with the same error 
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository')}
     
and:

 GsDeployer bulkMigrate: [
   Metacello new
       baseline: 'SIXX';
       repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository';
       load ].

Into it the : SixxExamples example2.      answer the error: a SixxXmlParseError occurred (error 2710)

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
Object >> doesNotUnderstand: (envId 0)
Object >> _doesNotUnderstand:args:envId:reason: (envId 0)
******** SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)
SixxExamples class >> example2 (envId 0)
Executed Code           
String >> evaluateInContext:symbolList: (envId 0)
JadeServer >> evaluate:inContext: (envId 0)
JadeServer >> printIt:in: (envId 0)
GsNMethod class >> _gsReturnToC (envId 0)


and the Mariano  materialize using SIXX, with UTF8 also answer the same error:  a SixxXmlParseError occurred (error 2710)

This system configurations report:

ConfigurationOfXMLParser (ConfigurationOfXMLParser-monty.119) ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.71) ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)


The upper  ****** error is relative to the method: 

parseXml: xmlStringOrStream persistentRoot: persistentArrayOrNil
| stream |
stream := xmlStringOrStream isStream
ifTrue: [xmlStringOrStream]
ifFalse: [ReadStream on: xmlStringOrStream].

^ (XMLDOMParser parseDocumentFrom: stream persistentRoot: persistentArrayOrNil) topElement


Where XMLDOMParser don't implement the method :  parseDocumentFrom: stream persistentRoot: persistentArrayOrNil) 

Does anyone have ideas how manage sixx I/O  into tODE without error ?

Thanks,

Dario

Dario,

The important thing is that you are able to get SIXX working ... the real solution to this problem is to get SIXX ported to the latest XMLParser implementation (and make sure that all of the projects that depned upon XML keep flying) ...

Dale

On 03/11/2015 10:09 AM, Dario Trussardi via Glass wrote:
Dale,

Dario,

I have forgotten to mention that now that you are using The Metacello scripting api for loading that the #currentVersion message should not be used either.

The #currentVersion method calculates the version and as I've said in the past, it sometimes gets it wrong ...

Using the Metacello scripting api, you can print the registration for XMLSupport

 Metacello registrations
   detect: [ :registration | registration projectName = 'XMLSupport' ].

But....right now we are trying to figure out how to reproduce the formula for the "stone that works" and I'd like to see the list of packages that are loaded in the image where SixxExample class>>example2 is failing.

Now before we go too far ... I want to understand the status of SixxExample class>>example2.

AFAICT, there are three stones:

 1. the "old stone" into which you can load your SIXX file without error (and appears to be using XMLSupport 1.2.2.1)
 2. the "new stone" that was built by locking XMLSupport 1.2.2 ...
For point 2 the system woks right.
 3. The "new stone 2" that was built by locking XMLSupport 1.2.2.1
For point 3 the system answer the error as i write into my last e-mail.
You can test it into a new tODE environment

Now I'm curious what results you get for SixxExample class>>example2 in each of those stones.

Another odd thing is that you claimed that Mariano's technique worked for you and I assume that Mariano's code was running against the "new stone" with XMLSupport 1.2.2 ... so if XMLSupport 1.2.2 is working for you I'm not sure why we are worried about XMLSupport 1.2.2.1. I made the assumption that the old stone was working because of XMLSupport 1.2.2.1 ... but I could very easily be wrong ... there were quite a few differences between the other packages in the two stones ...

Yes, you have right.
The Mariano's technique works fine.

But you write:

It appears that Mariano's workspace has helped you to get going, but I do believe that 1.2.2.1 is the version of XMLSupprt you should be using, until we can port SIXX (and any other projects that depend upon XMLSupport) to use the newer versions of XMLSupport ...

and i have doubt about XMLSupport version.

Then saw that Mariano's tecniques works well consider the matter closed, for the moment.

Do you agree?

Ciao, thanks,

Dario

Dale


On 03/11/2015 03:09 AM, Dario Trussardi via Glass wrote:
Dale,

into a clean tODE stone i load:

GsDeployer
  bulkMigrate: [
    {#('XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
#('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
    #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
    #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
      do: [ :ar |
        | projectName version repository |
        projectName := ar at: 1.
        version := ar at: 2.
        repository := ar at: 3.
        Metacello new
          configuration: projectName;
          repository: repository;
          get.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          onUpgrade: [ :ex :existing :new |
                existing locked
                  ifTrue: [ ex disallow ]
                  ifFalse: [ ex allow ] ];
          onConflict: [ :ex | ex disallow ];
          load.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          lock ] ]

At the end result: ConfigurationOfXMLSupport project currentVersion >=1.3.0 [ConfigurationOfXMLSupport]

It's not strange ?  Because not 1.2.2.1  ?

After i load:

GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository';
      load ].

The SixxExamples example2        don't works.

It erase the error: a SixxXmlParseError occurred (error 2710) -  G/S[Scandella3106 devkit:1]

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
Object >> doesNotUnderstand: (envId 0)
Object >> _doesNotUnderstand:args:envId:reason: (envId 0)
SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)
SixxExamples class >> example2 (envId 0)
Executed Code
String >> evaluateInContext:symbolList: (envId 0)
JadeServer >> evaluate:inContext: (envId 0)
JadeServer >> printIt:in: (envId 0)
GsNMethod class >> _gsReturnToC (envId 0)

Ciao,

Dario


Okay after further review I merge XMLSupport 1.2.2.1 into ConfigurationOfXMLSupport-monty.70 and saved a new version of the configuration (ConfigurationOfXMLSupport-dkh.71) and copied it to the appropriate repositories ... so at least we have 1.2.2.1 around for posterity ...

I have not been able to look into the issues with SIXX and XMLSupport 1.3.0 (the new version published by Monty) ... Monty assures me that the tests all pass for GemStone, but I am not sure whether or not the places that are/were dependent upon the older versions of XMLSupport (like SIXX) are impacted by version 1.3.0 or not .... if so then locking and loading XMLSupport 1.2.2.1 should put things right again ...

Dale

On 03/10/2015 03:07 PM, Dale Henrichs wrote:
Likely suspects in from working stone package list (XMLSupport ???):

 SIXX (SIXX.310-PaulDeBruicker.182)
 XML-Observable (XML-Observable-JohanBrichau.1)
 XML-Parser (XML-Parser.g-dkh.122)
 XML-Writer (XML-Writer-JAAyer.5)

and from failing stone package list (XMLSupport 1.2.2):

 SIXX (SIXX.310-dkh.183)
 XML-Observable (XML-Observable-JohanBrichau.1)
 XML-Parser (XML-Parser.g-NorbertHartl.119)
 XML-Writer (XML-Writer-JAAyer.5)


It's interesting that for the "working stone" you are using XML-Parser.g-dkh.122 and that package version is not in "any of the ConfigurationOfXMLSupport" versions.

According to the commit comment XML-Parser.g-dkh.122:
  final sent but not implemented for https://github.com/glassdb/glass/issues/39 bugfix?[1]


According to a comment in Issue #39 for glass[2], I created version XMLSupprt 1.2.2.1 with a reference to XML-Parser.g-dkh.122, but a quick search through the configurations for XMLSupport did not reveal a 1.2.2.1 version .. until I peeked at http://www.squeaksource.com/MetacelloRepository/ and found ConfigurationOfXMLSupport-dkh.69 with the 1.2.2.1 version
... It turns out that Monty had written a new version of ConfigurationOfXMLSupport-monty.70, but neglected to merge his changes into ConfigurationOfXMLSupport-dkh.69, so 1.2.2.1 was lost ...

Sooooo, I've copied ConfigurationOfXMLSupport-dkh.69 to http://seaside.gemstone.com/ss/MetacelloRepository and you should change your load spec for XMLSupport to the following

 #( 'XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository')

It appears that Mariano's workspace has helped you to get going, but I do believe that 1.2.2.1 is the version of XMLSupprt you should be using, until we can port SIXX (and any other projects that depend upon XMLSupport) to use the newer versions of XMLSupport ...

Dale

[1] https://github.com/GsDevKit/GsDevKit/issues/39
[2] https://github.com/GsDevKit/GsDevKit/issues/39#issuecomment-58772264

On 03/10/2015 01:54 PM, Dario Trussardi via Glass wrote:
Dale,


Dario,

You have a stone that works and a stone that does not ... I would like to understand the differences in packages loaded between the two (for example XMLSupport 1.2.2 my not be the correct version to use for SIXX ...)

Use the following to list the packages in each stone:

 | stream |
 stream := WriteStream on: String new.
 (MCWorkingCopy allManagers sorted: [ :a :b | a packageName < b packageName ])
   do: [ :wc |
     stream
       nextPutAll: wc description;
       cr ].
 stream contents
The stone that works reports:

'Announcements (Announcements.v3-dkh.18)
Base-Bootstrap (Base-Bootstrap.v3-dkh.29)
BaselineOfDtrLogin (BaselineOfDtrLogin-DTR.8)
BaselineOfDtrMOL (BaselineOfDtrMOL-DTR.2)
BaselineOfDtrSupport (BaselineOfDtrSupport-DTR.3)
BaselineOfFileTree (BaselineOfFileTree-dkh.4)
BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
BaselineOfMetacello (BaselineOfMetacello-dkh.85)
BaselineOfSIXX (BaselineOfSIXX-dkh.1)
* Bootstrap (Bootstrap.v3-DaleHenrichs.230)
Change-Notification (Change-Notification.v3-dkh.20)
Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-dkh.11)
Collections-Support (Collections-Support.g-dkh.46)
ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.10)
ConfigurationOfDtrSupport (ConfigurationOfDtrSupport-DTR.1)
ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.66)
ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
ConfigurationOfGofer (ConfigurationOfGofer-dkh.44)
ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-DaleHenrichs.21)
ConfigurationOfGrease (ConfigurationOfGrease-dkh.270)
ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.89)
ConfigurationOfGsSIXX (ConfigurationOfGsSIXX-dkh.11)
ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
* ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
ConfigurationOfSeaside3 (ConfigurationOfSeaside3-JohanBrichau.218)
ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.69)
ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
* Core (Core.v3-DaleHenrichs.76)
* Crossfade (Crossfade-pmm.8)
CSSBarGraph (CSSBarGraph-pmm.11)
DTRAlbums (DTRAlbums-DTR.451)
DtrAssociazioni (DtrAssociazioni-DTR.5)
DtrBase (DtrBase-DTR.418)
* DTRCassa (DTRCassa-DTR.21)
DtrConfig (DtrConfig-DTR.412)
DTRConfigGruppi (DTRConfigGruppi-DTR.1)
DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
DTRCore (DTRCore-DTR.417)
DtrCrossfade (DtrCrossfade-DTR.408)
DtrCRP (DtrCRP-DTR.411)
DtrFinanza (DtrFinanza-DTR.417)
DtrGestionale (DtrGestionale-DTR.412)
DtrGoogle (DtrGoogle-DTR.408)
DtrLogin (DtrLogin-DTR.426)
DtrMA (DtrMA-DTR.410)
DtrMagazzino (DtrMagazzino-DTR.412)
DtrMagritteAuto (DtrMagritteAuto-DTR.407)
* DtrMenuOnLine (DtrMenuOnLine-DTR.416)
DTRMetaDb (DTRMetaDb-DTR.5)
* DtrMicroObj (DtrMicroObj-DTR.414)
DtrMRP (DtrMRP-DTR.408)
DTROnlyForOODB (DTROnlyForOODB-DTR.186)
DTRPier (DTRPier-DTR.445)
DtrPrinterTicket (DtrPrinterTicket-DTR.5)
DtrRedu (DtrRedu-DTR.405)
DtrReduPorting (DtrReduPorting-DTR.407)
FastCGI (FastCGI-dkh.33)
FastCGIPool (FastCGIPool-dkh.2)
GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.9)
GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.3)
GemStone-Release-Support (GemStone-Release-Support-dkh.67)
Gofer-Core (Gofer-Core.gemstone-dkh.137)
GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
* GoogleMaps (GoogleMaps-jgf.23)
Grease-Core (Grease-Core-JohanBrichau.94)
Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
Grease-Tests-Core (Grease-Tests-Core-pmm.99)
Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.10)
GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
GsUpgrader-Core (GsUpgrader-Core-dkh.38)
JadeServer (JadeServer-dkh.13)
Javascript-Core (Javascript-Core-pmm.94)
Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
JQuery-Core (JQuery-Core-lr.123)
JQuery-Extensions (JQuery-Extensions-DTR.7)
JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
JQuery-UI (JQuery-UI.gemstone-dkh.81)
JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
Magritte-Json (Magritte-Json-NickAger.18)
Magritte-Model (Magritte-Model-NickAger.431)
* Magritte-Seaside (Magritte-Seaside-NickAger.355)
Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
Metacello-Base (Metacello-Base-dkh.123)
Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
Metacello-Core (Metacello-Core-dkh.806)
Metacello-FileTree (Metacello-FileTree-dkh.36)
Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
Metacello-GitHub (Metacello-GitHub-dkh.44)
Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
Metacello-MC (Metacello-MC-dkh.722)
Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
Metacello-ToolBox (Metacello-ToolBox-dkh.139)
Monticello (Monticello.v3-dkh.456)
* MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.166)
MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
OB-GemStone-Platform (OB-GemStone-Platform-dkh.69)
OB-Metacello (OB-Metacello-dkh.83)
OB-Monticello (OB-Monticello-DaleHenrichs.103)
OB-Standard (OB-Standard.v3-dkh.448)
OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
OB-Tools (OB-Tools.v3-dkh.136)
OmniBrowser (OmniBrowser-DaleHenrichs.447)
PackageInfo-Base (PackageInfo-Base.g-dkh.36)
Pier-Admin (Pier-Admin-NickAger.87)
Pier-Blog (Pier-Blog-NickAger.158)
Pier-Book (Pier-Book.gemstone-NickAger.159)
Pier-Design (Pier-Design-NickAger.12)
Pier-Documents (Pier-Documents-NickAger.29)
Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
Pier-Google (Pier-Google-NickAger.20)
Pier-JQuery (Pier-JQuery-NickAger.13)
Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
Pier-LinkChecker (Pier-LinkChecker-lr.7)
Pier-Model (Pier-Model-NickAger.424)
* Pier-Seaside (Pier-Seaside-NickAger.536)
* Pier-Security (Pier-Security-NickAger.184)
Pier-Shout (Pier-Shout-NickAger.5)
Pier-TagCloud (Pier-TagCloud-NickAger.26)
Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
Prototype-Core (Prototype-Core-lr.25)
Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
Regex-Core (Regex-Core-DaleHenrichs.3)
Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
RSS-Core (RSS-Core-lr.67)
RSS-Examples (RSS-Examples-lr.26)
RSS-Tests-Core (RSS-Tests-Core-lr.30)
* Scriptaculous-Components (Scriptaculous-Components-lr.111)
Scriptaculous-Core (Scriptaculous-Core-pmm.102)
Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
Seaside-Component (Seaside-Component-jok.92)
* Seaside-Core (Seaside-Core.gemstone-dkh.774)
* Seaside-Development (Seaside-Development-pmm.156)
Seaside-Email (Seaside-Email-PaulDeBruicker.24)
Seaside-Environment (Seaside-Environment-NickAger.77)
Seaside-Examples (Seaside-Examples-lr.23)
Seaside-FileSystem (Seaside-FileSystem-pmm.26)
Seaside-Flow (Seaside-Flow-pmm.23)
Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
* Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
Seaside-HTML5 (Seaside-HTML5-pmm.28)
Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
Seaside-Session (Seaside-Session.gemstone-dkh.158)
Seaside-Swazoo (Seaside-Swazoo-pmm.20)
Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
* Seaside-Welcome (Seaside-Welcome-NickAger.40)
Seaside-Widgets (Seaside-Widgets-lr.26)
Shout-Parsing (Shout-Parsing-NickAger.3)
SIXX (SIXX.310-PaulDeBruicker.182)
SMTPMail (SMTPMail-dkh.11)
SocketStream (SocketStream-PaulDeBruicker.12)
Sport (Sport3.010.v3-dkh.29)
* Squeak (Squeak.v3-DaleHenrichs.298)
Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
System-Digital-Signatures (System-Digital-Signatures-dkh.5)
TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
TopFeeder-Model (TopFeeder-Model-NickAger.5)
TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
Utf8Encoding (Utf8Encoding.310-dkh.30)
XML-Observable (XML-Observable-JohanBrichau.1)
XML-Parser (XML-Parser.g-dkh.122)
XML-Writer (XML-Writer-JAAyer.5)
Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
* Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)'




The stone does not work report:

'Announcements (Announcements.v3-dkh.18)
AST-Core (AST-Core-dkh.102)
Base-Bootstrap (Base-Bootstrap.v3-dkh.30)
BaselineOfFileTree (BaselineOfFileTree-dkh.4)
BaselineOfGLASS1 (BaselineOfGLASS1-dkh.43)
BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
BaselineOfMetacello (BaselineOfMetacello-dkh.85)
BaselineOfRB (BaselineOfRB-dkh.5)
BaselineOfSIXX (BaselineOfSIXX-dkh.1)
BaselineOfSton (BaselineOfSton-dkh.1)
BaselineOfTode (BaselineOfTode-dkh.41)
* Bootstrap (Bootstrap.v3-dkh.241)
Change-Notification (Change-Notification.v310-dkh.21)
Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-JohanBrichau.9)
Collections-Support (Collections-Support.g-OttoBehrens.45)
ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.11)
ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.36)
ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
ConfigurationOfGofer (ConfigurationOfGofer-dkh.45)
ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-dkh.22)
ConfigurationOfGrease (ConfigurationOfGrease-dkh.189)
ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.91)
ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
ConfigurationOfSeaside3 (ConfigurationOfSeaside3-dkh.222)
ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-NorbertHartl.64)
ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
* Core (Core.v3-dkh.90)
Core31x (Core31x-dkh.5)
* Crossfade (Crossfade-pmm.8)
CSSBarGraph (CSSBarGraph-pmm.11)
DtrBase (DtrBase-DTR.418)
DTRCassa (DTRCassa-DTR.21)
* DtrConfig (DtrConfig-DTR.412)
DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
DTRCore (DTRCore-DTR.417)
DtrCrossfade (DtrCrossfade-DTR.408)
DtrCRP (DtrCRP-DTR.411)
DtrFinanza (DtrFinanza-DTR.417)
DtrGestionale (DtrGestionale-DTR.412)
DtrGoogle (DtrGoogle-DTR.408)
DtrLogin (DtrLogin-DTR.426)
DtrMA (DtrMA-DTR.410)
DtrMagazzino (DtrMagazzino-DTR.412)
DtrMagritteAuto (DtrMagritteAuto-DTR.407)
DtrMenuOnLine (DtrMenuOnLine-DTR.416)
DTRMetaDb (DTRMetaDb-DTR.5)
DtrMicroObj (DtrMicroObj-DTR.414)
DtrMRP (DtrMRP-DTR.408)
DTROnlyForOODB (DTROnlyForOODB-DTR.186)
DtrPrinterTicket (DtrPrinterTicket-DTR.5)
DtrRedu (DtrRedu-DTR.405)
DtrReduPorting (DtrReduPorting-DTR.408)
FastCGI (FastCGI-dkh.33)
FastCGIPool (FastCGIPool-dkh.2)
GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.12)
GemStone-Compression (GemStone-Compression-dkh.7)
GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.4)
GemStone-Interactions (GemStone-Interactions-dkh.12)
GemStone-Release-Support (GemStone-Release-Support-dkh.67)
* Generated ()
Gofer-Core (Gofer-Core.gemstone-dkh.138)
GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
* GoogleMaps (GoogleMaps-jgf.23)
Grease-Core (Grease-Core-JohanBrichau.94)
Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
Grease-Tests-Core (Grease-Tests-Core-pmm.99)
Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
* GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.20)
GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
GsSqueakCommon-CoreV30 (GsSqueakCommon-CoreV30-dkh.1)
GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
GsUpgrader-Core (GsUpgrader-Core-dkh.38)
JadeServer (JadeServer-dkh.13)
Javascript-Core (Javascript-Core-pmm.94)
Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
JQuery-Core (JQuery-Core-lr.123)
JQuery-Extensions (JQuery-Extensions-DTR.7)
JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
JQuery-UI (JQuery-UI.gemstone-dkh.81)
JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
Magritte-Json (Magritte-Json-NickAger.18)
Magritte-Model (Magritte-Model-NickAger.431)
* Magritte-Seaside (Magritte-Seaside-NickAger.355)
Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
Metacello-Base (Metacello-Base-topa.124)
Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
Metacello-Core (Metacello-Core-dkh.809)
Metacello-FileTree (Metacello-FileTree-dkh.36)
Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
Metacello-GitHub (Metacello-GitHub-dkh.44)
Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
Metacello-MC (Metacello-MC-dkh.726)
Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
Metacello-ToolBox (Metacello-ToolBox-dkh.139)
Monticello (Monticello.v3-dkh.476)
MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.183)
MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
MonticelloGs (MonticelloGs-dkh.2)
NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
OB-GemStone-Platform (OB-GemStone-Platform-dkh.76)
OB-Metacello (OB-Metacello-dkh.83)
OB-Monticello (OB-Monticello-dkh.105)
OB-Standard (OB-Standard.v3-dkh.449)
OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
OB-Tools (OB-Tools.v3-dkh.140)
OmniBrowser (OmniBrowser-DaleHenrichs.447)
PackageInfo-Base (PackageInfo-Base.g-dkh.36)
Pier-Admin (Pier-Admin-NickAger.87)
Pier-Blog (Pier-Blog-NickAger.158)
Pier-Book (Pier-Book.gemstone-NickAger.159)
Pier-Design (Pier-Design-NickAger.12)
Pier-Documents (Pier-Documents-NickAger.29)
Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
Pier-Google (Pier-Google-NickAger.20)
Pier-JQuery (Pier-JQuery-NickAger.13)
Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
Pier-LinkChecker (Pier-LinkChecker-lr.7)
Pier-Model (Pier-Model-NickAger.424)
Pier-Seaside (Pier-Seaside-NickAger.536)
Pier-Security (Pier-Security-NickAger.184)
Pier-Shout (Pier-Shout-NickAger.5)
Pier-TagCloud (Pier-TagCloud-NickAger.26)
Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
Prototype-Core (Prototype-Core-lr.25)
Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
Regex-Core (Regex-Core-DaleHenrichs.3)
Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
RSS-Core (RSS-Core-lr.67)
RSS-Examples (RSS-Examples-lr.26)
RSS-Tests-Core (RSS-Tests-Core-lr.30)
* Scriptaculous-Components (Scriptaculous-Components-lr.111)
Scriptaculous-Core (Scriptaculous-Core-pmm.102)
Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
Seaside-Component (Seaside-Component-jok.92)
* Seaside-Core (Seaside-Core.gemstone-dkh.774)
* Seaside-Development (Seaside-Development-pmm.156)
Seaside-Email (Seaside-Email-PaulDeBruicker.24)
Seaside-Environment (Seaside-Environment-NickAger.77)
Seaside-Examples (Seaside-Examples-lr.23)
Seaside-FileSystem (Seaside-FileSystem-pmm.26)
Seaside-Flow (Seaside-Flow-pmm.23)
Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
* Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
Seaside-HTML5 (Seaside-HTML5-pmm.28)
Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
Seaside-Session (Seaside-Session.gemstone-dkh.158)
Seaside-Swazoo (Seaside-Swazoo-pmm.20)
Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
* Seaside-Welcome (Seaside-Welcome-NickAger.40)
Seaside-Widgets (Seaside-Widgets-lr.26)
Shout-Parsing (Shout-Parsing-NickAger.3)
SIXX (SIXX.310-dkh.183)
SMTPMail (SMTPMail-dkh.11)
SocketStream (SocketStream-PaulDeBruicker.12)
* Sport (Sport3.010.v3-dkh.32)
* Squeak (Squeak.v3-dkh.309)
* STON-Core (STON-Core-dkh.46)
Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
System-Digital-Signatures (System-Digital-Signatures-dkh.5)
Tode-AST-Extensions (Tode-AST-Extensions-dkh.2)
Tode-BatchEdit-Tool (Tode-BatchEdit-Tool-dkh.3)
Tode-GemStone-Server-Core (Tode-GemStone-Server-Core-dkh.118)
Tode-GemStone-Server-Tests (Tode-GemStone-Server-Tests-dkh.5)
Tode-Server-31x-GsProcess-Patch (Tode-Server-31x-GsProcess-Patch-dkh.1)
Tode-Server-TestTestTools (Tode-Server-TestTestTools-dkh.2)
Topez-Common-Core (Topez-Common-Core-dkh.414)
Topez-Common-Tests (Topez-Common-Tests-dkh.22)
Topez-Server-31x-Core (Topez-Server-31x-Core-dkh.5)
Topez-Server-31x-DebugTools (Topez-Server-31x-DebugTools-dkh.19)
Topez-Server-31x-Tests (Topez-Server-31x-Tests-dkh.3)
Topez-Server-3x-Core (Topez-Server-3x-Core-dkh.2)
Topez-Server-3x-DebugTools (Topez-Server-3x-DebugTools-dkh.2)
Topez-Server-Core (Topez-Server-Core-dkh.89)
Topez-Server-DebugTools (Topez-Server-DebugTools-dkh.151)
Topez-Server-ProcessTools (Topez-Server-ProcessTools-dkh.25)
Topez-Server-TestDebugTools (Topez-Server-TestDebugTools-dkh.19)
Topez-Server-Tests (Topez-Server-Tests-dkh.151)
Topez-Server-TestTools (Topez-Server-TestTools-dkh.54)
TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
TopFeeder-Model (TopFeeder-Model-NickAger.5)
TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
Utf8Encoding (Utf8Encoding.310-dkh.32)
XML-Observable (XML-Observable-JohanBrichau.1)
XML-Parser (XML-Parser.g-NorbertHartl.119)
XML-Writer (XML-Writer-JAAyer.5)
Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
* Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)
'

Thanks,
       Dario

Dale

On 03/10/2015 11:06 AM, Dario Trussardi via Glass wrote:
Ciao,

   I have a devkit tODE stone create with createTodeStone  devkit  3.1.0.6

into it i load:

GsDeployer
  bulkMigrate: [
    {#( 'XMLSupport' '1.2.2' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
   #('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
    #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
    #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
      do: [ :ar |
        | projectName version repository |
        projectName := ar at: 1.
        version := ar at: 2.
        repository := ar at: 3.
        Metacello new
          configuration: projectName;
          repository: repository;
          get.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          onUpgrade: [ :ex :existing :new |
                existing locked
                  ifTrue: [ ex disallow ]
                  ifFalse: [ ex allow ] ];
          onConflict: [ :ex | ex disallow ];
          load.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          lock ] ]

and:

GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository';
      load ].

A this point the     SixxExamples example2        works fine.





Now i can save a sixx file relative to my data application      anEnv link     with:

   writeObject: anEnv toFile: aFilename inFolder: aDirectoryPath

   | fileStream sws |

   fileStream := ( FileDirectory on: aDirectoryPath) newFileNamed: aFilename.

   sws := SixxWriteStream on: fileStream.

   sws nextPut: anEnv.
   sws close.





After when i do the command:  ^Object readSixxFrom: fileStream contents.

to read the sixx file create above the system answer the error:

a SixxXmlParseError occurred (error 2710) - G/S[Scandella3106 devkit:1]

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal: (envId 0)
AbstractException class >> signal: (envId 0)
XMLTokenizer >> parseError: (envId 0)
XMLTokenizer >> errorExpected: (envId 0)
XMLTokenizer >> nextLiteral (envId 0)
XMLTokenizer >> nextPCDataDelimitedBy:putOn: (envId 0)
[] in  XMLTokenizer >> nextPCData (envId 0)
XMLNestedStreamWriter >> writeWith: (envId 0)
XMLTokenizer >> nextPCData (envId 0)
XMLTokenizer >> nextToken (envId 0)
XMLParser >> parseToken (envId 0)
XMLParser >> parseDocument (envId 0)
SAXHandler >> parseDocument (envId 0)
XMLDOMParser >> parseDocument (envId 0)
SAXHandler class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
XMLDOMParser class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
SAXHandler class >> parseDocumentFrom:persistentRoot: (envId 0)
SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)

Considerations ?

Thanks,

   Dario

P.S.  I have another  3.1.0.6    stone where i have:

   ConfigurationOfGsSIXX project currentVersion >=0.3-c.1 [ConfigurationOfGsSIXX]

   ConfigurationOfXMLSupport project currentVersion >=1.2.2.1 [ConfigurationOfXMLSupport]

   Into it  all works fine.

   The sixx file created into it   can reading  into  the devkit  tODE stone  without problem


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass



_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass



_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
Reply | Threaded
Open this post in threaded view
|

Re: [Glass] Sixx problematic

GLASS mailing list
Dale,

into a clean tODE 3.1.0.6  i load only :

GsDeployer bulkMigrate: [
Metacello new
baseline: 'SIXX'; repository: '<a href="github://glassdb/SIXX:master/repository'">github://glassdb/SIXX:master/repository'; version: '1.2.2'; load ].
No other things.

And the  SixxExamples example2     don't works.

I think it load the wrong XML package as you write.

Now i go out the office, later i send you more information.

Thanks,

Dario

Dario,

I need to know pretty much exactly what you do when you load .. in my previous email, I asked for packages lists and transcripts fo loads ...

Once I see that information I can start looking into trying to reproduce problems ...

Again, before we get too far ... I am under the impression that you had

  1. a "really old stone" that SIXX worked correctly in.
  2. a "one week old stone" that SIXX worked correctly in.
  3. a "day old stone" that SIXX does not work correctly in ...

I also believe that you have changed your load script betwee 2 and 3 ...

If you are trying to tell me that the "one week old stone" is not working then you need to try to be as clear as possible with your detailed information ...

Dale

On 03/18/2015 09:52 AM, Dario Trussardi via Glass wrote:
Dale,

Dario,

Have you solved your load problem?

No.

with the directly SIXX load i found the error into clean tODE.

Can you replicate it ?

Dario


Dale

On 03/18/2015 09:32 AM, Dario Trussardi via Glass wrote:
Ciao,

into a clean tODE 3.1.0.6 environment i load directly :

GsDeployer bulkMigrate: [ Metacello new baseline: 'SIXX'; repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository'; load ]. The  SixxExamples example2.     answer the same error.

The system report:

ConfigurationOfXMLParser (ConfigurationOfXMLParser-monty.119) ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.71) ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-monty.73)

If i right remember,  last week,  when i load directly  the sixx,  as above,  the  SixxExamples example2    worked fine.

Thanks,
Dario

 
Ciao,

i'm very sorry, but I have to backtrack because sixx does not wok into a new tODE 3.1.0.6 repository.

I have two tODE 3.1.0.6 environment.

In the first ( the hold ) i have load:


and:

 GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository';
      load ].

Into it the : SixxExamples example2.        works fine,

and the Mariano  serialize and materialize using SIXX, with UTF8 also works fine

This system configurations report:

ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-NorbertHartl.64)
ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
 


In the new second tODE 3.1.0.6 environment i have load:

    { #( 'XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').  

I also test  with XMLSupport' '1.2.2' but with the same error 
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository')}
     
and:

 GsDeployer bulkMigrate: [
   Metacello new
       baseline: 'SIXX';
       repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository';
       load ].

Into it the : SixxExamples example2.      answer the error: a SixxXmlParseError occurred (error 2710)

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
Object >> doesNotUnderstand: (envId 0)
Object >> _doesNotUnderstand:args:envId:reason: (envId 0)
******** SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)
SixxExamples class >> example2 (envId 0)
Executed Code           
String >> evaluateInContext:symbolList: (envId 0)
JadeServer >> evaluate:inContext: (envId 0)
JadeServer >> printIt:in: (envId 0)
GsNMethod class >> _gsReturnToC (envId 0)


and the Mariano  materialize using SIXX, with UTF8 also answer the same error:  a SixxXmlParseError occurred (error 2710)

This system configurations report:

ConfigurationOfXMLParser (ConfigurationOfXMLParser-monty.119) ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.71) ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)


The upper  ****** error is relative to the method: 

parseXml: xmlStringOrStream persistentRoot: persistentArrayOrNil
| stream |
stream := xmlStringOrStream isStream
ifTrue: [xmlStringOrStream]
ifFalse: [ReadStream on: xmlStringOrStream].

^ (XMLDOMParser parseDocumentFrom: stream persistentRoot: persistentArrayOrNil) topElement


Where XMLDOMParser don't implement the method :  parseDocumentFrom: stream persistentRoot: persistentArrayOrNil) 

Does anyone have ideas how manage sixx I/O  into tODE without error ?

Thanks,

Dario

Dario,

The important thing is that you are able to get SIXX working ... the real solution to this problem is to get SIXX ported to the latest XMLParser implementation (and make sure that all of the projects that depned upon XML keep flying) ...

Dale

On 03/11/2015 10:09 AM, Dario Trussardi via Glass wrote:
Dale,

Dario,

I have forgotten to mention that now that you are using The Metacello scripting api for loading that the #currentVersion message should not be used either.

The #currentVersion method calculates the version and as I've said in the past, it sometimes gets it wrong ...

Using the Metacello scripting api, you can print the registration for XMLSupport

 Metacello registrations
   detect: [ :registration | registration projectName = 'XMLSupport' ].

But....right now we are trying to figure out how to reproduce the formula for the "stone that works" and I'd like to see the list of packages that are loaded in the image where SixxExample class>>example2 is failing.

Now before we go too far ... I want to understand the status of SixxExample class>>example2.

AFAICT, there are three stones:

 1. the "old stone" into which you can load your SIXX file without error (and appears to be using XMLSupport 1.2.2.1)
 2. the "new stone" that was built by locking XMLSupport 1.2.2 ...
For point 2 the system woks right.
 3. The "new stone 2" that was built by locking XMLSupport 1.2.2.1
For point 3 the system answer the error as i write into my last e-mail.
You can test it into a new tODE environment

Now I'm curious what results you get for SixxExample class>>example2 in each of those stones.

Another odd thing is that you claimed that Mariano's technique worked for you and I assume that Mariano's code was running against the "new stone" with XMLSupport 1.2.2 ... so if XMLSupport 1.2.2 is working for you I'm not sure why we are worried about XMLSupport 1.2.2.1. I made the assumption that the old stone was working because of XMLSupport 1.2.2.1 ... but I could very easily be wrong ... there were quite a few differences between the other packages in the two stones ...

Yes, you have right.
The Mariano's technique works fine.

But you write:

It appears that Mariano's workspace has helped you to get going, but I do believe that 1.2.2.1 is the version of XMLSupprt you should be using, until we can port SIXX (and any other projects that depend upon XMLSupport) to use the newer versions of XMLSupport ...

and i have doubt about XMLSupport version.

Then saw that Mariano's tecniques works well consider the matter closed, for the moment.

Do you agree?

Ciao, thanks,

Dario

Dale


On 03/11/2015 03:09 AM, Dario Trussardi via Glass wrote:
Dale,

into a clean tODE stone i load:

GsDeployer
  bulkMigrate: [
    {#('XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
#('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
    #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
    #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
      do: [ :ar |
        | projectName version repository |
        projectName := ar at: 1.
        version := ar at: 2.
        repository := ar at: 3.
        Metacello new
          configuration: projectName;
          repository: repository;
          get.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          onUpgrade: [ :ex :existing :new |
                existing locked
                  ifTrue: [ ex disallow ]
                  ifFalse: [ ex allow ] ];
          onConflict: [ :ex | ex disallow ];
          load.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          lock ] ]

At the end result: ConfigurationOfXMLSupport project currentVersion >=1.3.0 [ConfigurationOfXMLSupport]

It's not strange ?  Because not 1.2.2.1  ?

After i load:

GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository';
      load ].

The SixxExamples example2        don't works.

It erase the error: a SixxXmlParseError occurred (error 2710) -  G/S[Scandella3106 devkit:1]

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
Object >> doesNotUnderstand: (envId 0)
Object >> _doesNotUnderstand:args:envId:reason: (envId 0)
SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)
SixxExamples class >> example2 (envId 0)
Executed Code
String >> evaluateInContext:symbolList: (envId 0)
JadeServer >> evaluate:inContext: (envId 0)
JadeServer >> printIt:in: (envId 0)
GsNMethod class >> _gsReturnToC (envId 0)

Ciao,

Dario


Okay after further review I merge XMLSupport 1.2.2.1 into ConfigurationOfXMLSupport-monty.70 and saved a new version of the configuration (ConfigurationOfXMLSupport-dkh.71) and copied it to the appropriate repositories ... so at least we have 1.2.2.1 around for posterity ...

I have not been able to look into the issues with SIXX and XMLSupport 1.3.0 (the new version published by Monty) ... Monty assures me that the tests all pass for GemStone, but I am not sure whether or not the places that are/were dependent upon the older versions of XMLSupport (like SIXX) are impacted by version 1.3.0 or not .... if so then locking and loading XMLSupport 1.2.2.1 should put things right again ...

Dale

On 03/10/2015 03:07 PM, Dale Henrichs wrote:
Likely suspects in from working stone package list (XMLSupport ???):

 SIXX (SIXX.310-PaulDeBruicker.182)
 XML-Observable (XML-Observable-JohanBrichau.1)
 XML-Parser (XML-Parser.g-dkh.122)
 XML-Writer (XML-Writer-JAAyer.5)

and from failing stone package list (XMLSupport 1.2.2):

 SIXX (SIXX.310-dkh.183)
 XML-Observable (XML-Observable-JohanBrichau.1)
 XML-Parser (XML-Parser.g-NorbertHartl.119)
 XML-Writer (XML-Writer-JAAyer.5)


It's interesting that for the "working stone" you are using XML-Parser.g-dkh.122 and that package version is not in "any of the ConfigurationOfXMLSupport" versions.

According to the commit comment XML-Parser.g-dkh.122:
  final sent but not implemented for https://github.com/glassdb/glass/issues/39 bugfix?[1]


According to a comment in Issue #39 for glass[2], I created version XMLSupprt 1.2.2.1 with a reference to XML-Parser.g-dkh.122, but a quick search through the configurations for XMLSupport did not reveal a 1.2.2.1 version .. until I peeked at http://www.squeaksource.com/MetacelloRepository/ and found ConfigurationOfXMLSupport-dkh.69 with the 1.2.2.1 version
... It turns out that Monty had written a new version of ConfigurationOfXMLSupport-monty.70, but neglected to merge his changes into ConfigurationOfXMLSupport-dkh.69, so 1.2.2.1 was lost ...

Sooooo, I've copied ConfigurationOfXMLSupport-dkh.69 to http://seaside.gemstone.com/ss/MetacelloRepository and you should change your load spec for XMLSupport to the following

 #( 'XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository')

It appears that Mariano's workspace has helped you to get going, but I do believe that 1.2.2.1 is the version of XMLSupprt you should be using, until we can port SIXX (and any other projects that depend upon XMLSupport) to use the newer versions of XMLSupport ...

Dale

[1] https://github.com/GsDevKit/GsDevKit/issues/39
[2] https://github.com/GsDevKit/GsDevKit/issues/39#issuecomment-58772264

On 03/10/2015 01:54 PM, Dario Trussardi via Glass wrote:
Dale,


Dario,

You have a stone that works and a stone that does not ... I would like to understand the differences in packages loaded between the two (for example XMLSupport 1.2.2 my not be the correct version to use for SIXX ...)

Use the following to list the packages in each stone:

 | stream |
 stream := WriteStream on: String new.
 (MCWorkingCopy allManagers sorted: [ :a :b | a packageName < b packageName ])
   do: [ :wc |
     stream
       nextPutAll: wc description;
       cr ].
 stream contents
The stone that works reports:

'Announcements (Announcements.v3-dkh.18)
Base-Bootstrap (Base-Bootstrap.v3-dkh.29)
BaselineOfDtrLogin (BaselineOfDtrLogin-DTR.8)
BaselineOfDtrMOL (BaselineOfDtrMOL-DTR.2)
BaselineOfDtrSupport (BaselineOfDtrSupport-DTR.3)
BaselineOfFileTree (BaselineOfFileTree-dkh.4)
BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
BaselineOfMetacello (BaselineOfMetacello-dkh.85)
BaselineOfSIXX (BaselineOfSIXX-dkh.1)
* Bootstrap (Bootstrap.v3-DaleHenrichs.230)
Change-Notification (Change-Notification.v3-dkh.20)
Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-dkh.11)
Collections-Support (Collections-Support.g-dkh.46)
ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.10)
ConfigurationOfDtrSupport (ConfigurationOfDtrSupport-DTR.1)
ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.66)
ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
ConfigurationOfGofer (ConfigurationOfGofer-dkh.44)
ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-DaleHenrichs.21)
ConfigurationOfGrease (ConfigurationOfGrease-dkh.270)
ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.89)
ConfigurationOfGsSIXX (ConfigurationOfGsSIXX-dkh.11)
ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
* ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
ConfigurationOfSeaside3 (ConfigurationOfSeaside3-JohanBrichau.218)
ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.69)
ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
* Core (Core.v3-DaleHenrichs.76)
* Crossfade (Crossfade-pmm.8)
CSSBarGraph (CSSBarGraph-pmm.11)
DTRAlbums (DTRAlbums-DTR.451)
DtrAssociazioni (DtrAssociazioni-DTR.5)
DtrBase (DtrBase-DTR.418)
* DTRCassa (DTRCassa-DTR.21)
DtrConfig (DtrConfig-DTR.412)
DTRConfigGruppi (DTRConfigGruppi-DTR.1)
DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
DTRCore (DTRCore-DTR.417)
DtrCrossfade (DtrCrossfade-DTR.408)
DtrCRP (DtrCRP-DTR.411)
DtrFinanza (DtrFinanza-DTR.417)
DtrGestionale (DtrGestionale-DTR.412)
DtrGoogle (DtrGoogle-DTR.408)
DtrLogin (DtrLogin-DTR.426)
DtrMA (DtrMA-DTR.410)
DtrMagazzino (DtrMagazzino-DTR.412)
DtrMagritteAuto (DtrMagritteAuto-DTR.407)
* DtrMenuOnLine (DtrMenuOnLine-DTR.416)
DTRMetaDb (DTRMetaDb-DTR.5)
* DtrMicroObj (DtrMicroObj-DTR.414)
DtrMRP (DtrMRP-DTR.408)
DTROnlyForOODB (DTROnlyForOODB-DTR.186)
DTRPier (DTRPier-DTR.445)
DtrPrinterTicket (DtrPrinterTicket-DTR.5)
DtrRedu (DtrRedu-DTR.405)
DtrReduPorting (DtrReduPorting-DTR.407)
FastCGI (FastCGI-dkh.33)
FastCGIPool (FastCGIPool-dkh.2)
GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.9)
GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.3)
GemStone-Release-Support (GemStone-Release-Support-dkh.67)
Gofer-Core (Gofer-Core.gemstone-dkh.137)
GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
* GoogleMaps (GoogleMaps-jgf.23)
Grease-Core (Grease-Core-JohanBrichau.94)
Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
Grease-Tests-Core (Grease-Tests-Core-pmm.99)
Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.10)
GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
GsUpgrader-Core (GsUpgrader-Core-dkh.38)
JadeServer (JadeServer-dkh.13)
Javascript-Core (Javascript-Core-pmm.94)
Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
JQuery-Core (JQuery-Core-lr.123)
JQuery-Extensions (JQuery-Extensions-DTR.7)
JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
JQuery-UI (JQuery-UI.gemstone-dkh.81)
JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
Magritte-Json (Magritte-Json-NickAger.18)
Magritte-Model (Magritte-Model-NickAger.431)
* Magritte-Seaside (Magritte-Seaside-NickAger.355)
Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
Metacello-Base (Metacello-Base-dkh.123)
Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
Metacello-Core (Metacello-Core-dkh.806)
Metacello-FileTree (Metacello-FileTree-dkh.36)
Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
Metacello-GitHub (Metacello-GitHub-dkh.44)
Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
Metacello-MC (Metacello-MC-dkh.722)
Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
Metacello-ToolBox (Metacello-ToolBox-dkh.139)
Monticello (Monticello.v3-dkh.456)
* MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.166)
MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
OB-GemStone-Platform (OB-GemStone-Platform-dkh.69)
OB-Metacello (OB-Metacello-dkh.83)
OB-Monticello (OB-Monticello-DaleHenrichs.103)
OB-Standard (OB-Standard.v3-dkh.448)
OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
OB-Tools (OB-Tools.v3-dkh.136)
OmniBrowser (OmniBrowser-DaleHenrichs.447)
PackageInfo-Base (PackageInfo-Base.g-dkh.36)
Pier-Admin (Pier-Admin-NickAger.87)
Pier-Blog (Pier-Blog-NickAger.158)
Pier-Book (Pier-Book.gemstone-NickAger.159)
Pier-Design (Pier-Design-NickAger.12)
Pier-Documents (Pier-Documents-NickAger.29)
Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
Pier-Google (Pier-Google-NickAger.20)
Pier-JQuery (Pier-JQuery-NickAger.13)
Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
Pier-LinkChecker (Pier-LinkChecker-lr.7)
Pier-Model (Pier-Model-NickAger.424)
* Pier-Seaside (Pier-Seaside-NickAger.536)
* Pier-Security (Pier-Security-NickAger.184)
Pier-Shout (Pier-Shout-NickAger.5)
Pier-TagCloud (Pier-TagCloud-NickAger.26)
Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
Prototype-Core (Prototype-Core-lr.25)
Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
Regex-Core (Regex-Core-DaleHenrichs.3)
Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
RSS-Core (RSS-Core-lr.67)
RSS-Examples (RSS-Examples-lr.26)
RSS-Tests-Core (RSS-Tests-Core-lr.30)
* Scriptaculous-Components (Scriptaculous-Components-lr.111)
Scriptaculous-Core (Scriptaculous-Core-pmm.102)
Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
Seaside-Component (Seaside-Component-jok.92)
* Seaside-Core (Seaside-Core.gemstone-dkh.774)
* Seaside-Development (Seaside-Development-pmm.156)
Seaside-Email (Seaside-Email-PaulDeBruicker.24)
Seaside-Environment (Seaside-Environment-NickAger.77)
Seaside-Examples (Seaside-Examples-lr.23)
Seaside-FileSystem (Seaside-FileSystem-pmm.26)
Seaside-Flow (Seaside-Flow-pmm.23)
Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
* Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
Seaside-HTML5 (Seaside-HTML5-pmm.28)
Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
Seaside-Session (Seaside-Session.gemstone-dkh.158)
Seaside-Swazoo (Seaside-Swazoo-pmm.20)
Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
* Seaside-Welcome (Seaside-Welcome-NickAger.40)
Seaside-Widgets (Seaside-Widgets-lr.26)
Shout-Parsing (Shout-Parsing-NickAger.3)
SIXX (SIXX.310-PaulDeBruicker.182)
SMTPMail (SMTPMail-dkh.11)
SocketStream (SocketStream-PaulDeBruicker.12)
Sport (Sport3.010.v3-dkh.29)
* Squeak (Squeak.v3-DaleHenrichs.298)
Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
System-Digital-Signatures (System-Digital-Signatures-dkh.5)
TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
TopFeeder-Model (TopFeeder-Model-NickAger.5)
TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
Utf8Encoding (Utf8Encoding.310-dkh.30)
XML-Observable (XML-Observable-JohanBrichau.1)
XML-Parser (XML-Parser.g-dkh.122)
XML-Writer (XML-Writer-JAAyer.5)
Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
* Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)'




The stone does not work report:

'Announcements (Announcements.v3-dkh.18)
AST-Core (AST-Core-dkh.102)
Base-Bootstrap (Base-Bootstrap.v3-dkh.30)
BaselineOfFileTree (BaselineOfFileTree-dkh.4)
BaselineOfGLASS1 (BaselineOfGLASS1-dkh.43)
BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
BaselineOfMetacello (BaselineOfMetacello-dkh.85)
BaselineOfRB (BaselineOfRB-dkh.5)
BaselineOfSIXX (BaselineOfSIXX-dkh.1)
BaselineOfSton (BaselineOfSton-dkh.1)
BaselineOfTode (BaselineOfTode-dkh.41)
* Bootstrap (Bootstrap.v3-dkh.241)
Change-Notification (Change-Notification.v310-dkh.21)
Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-JohanBrichau.9)
Collections-Support (Collections-Support.g-OttoBehrens.45)
ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.11)
ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.36)
ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
ConfigurationOfGofer (ConfigurationOfGofer-dkh.45)
ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-dkh.22)
ConfigurationOfGrease (ConfigurationOfGrease-dkh.189)
ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.91)
ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
ConfigurationOfSeaside3 (ConfigurationOfSeaside3-dkh.222)
ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-NorbertHartl.64)
ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
* Core (Core.v3-dkh.90)
Core31x (Core31x-dkh.5)
* Crossfade (Crossfade-pmm.8)
CSSBarGraph (CSSBarGraph-pmm.11)
DtrBase (DtrBase-DTR.418)
DTRCassa (DTRCassa-DTR.21)
* DtrConfig (DtrConfig-DTR.412)
DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
DTRCore (DTRCore-DTR.417)
DtrCrossfade (DtrCrossfade-DTR.408)
DtrCRP (DtrCRP-DTR.411)
DtrFinanza (DtrFinanza-DTR.417)
DtrGestionale (DtrGestionale-DTR.412)
DtrGoogle (DtrGoogle-DTR.408)
DtrLogin (DtrLogin-DTR.426)
DtrMA (DtrMA-DTR.410)
DtrMagazzino (DtrMagazzino-DTR.412)
DtrMagritteAuto (DtrMagritteAuto-DTR.407)
DtrMenuOnLine (DtrMenuOnLine-DTR.416)
DTRMetaDb (DTRMetaDb-DTR.5)
DtrMicroObj (DtrMicroObj-DTR.414)
DtrMRP (DtrMRP-DTR.408)
DTROnlyForOODB (DTROnlyForOODB-DTR.186)
DtrPrinterTicket (DtrPrinterTicket-DTR.5)
DtrRedu (DtrRedu-DTR.405)
DtrReduPorting (DtrReduPorting-DTR.408)
FastCGI (FastCGI-dkh.33)
FastCGIPool (FastCGIPool-dkh.2)
GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.12)
GemStone-Compression (GemStone-Compression-dkh.7)
GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.4)
GemStone-Interactions (GemStone-Interactions-dkh.12)
GemStone-Release-Support (GemStone-Release-Support-dkh.67)
* Generated ()
Gofer-Core (Gofer-Core.gemstone-dkh.138)
GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
* GoogleMaps (GoogleMaps-jgf.23)
Grease-Core (Grease-Core-JohanBrichau.94)
Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
Grease-Tests-Core (Grease-Tests-Core-pmm.99)
Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
* GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.20)
GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
GsSqueakCommon-CoreV30 (GsSqueakCommon-CoreV30-dkh.1)
GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
GsUpgrader-Core (GsUpgrader-Core-dkh.38)
JadeServer (JadeServer-dkh.13)
Javascript-Core (Javascript-Core-pmm.94)
Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
JQuery-Core (JQuery-Core-lr.123)
JQuery-Extensions (JQuery-Extensions-DTR.7)
JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
JQuery-UI (JQuery-UI.gemstone-dkh.81)
JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
Magritte-Json (Magritte-Json-NickAger.18)
Magritte-Model (Magritte-Model-NickAger.431)
* Magritte-Seaside (Magritte-Seaside-NickAger.355)
Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
Metacello-Base (Metacello-Base-topa.124)
Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
Metacello-Core (Metacello-Core-dkh.809)
Metacello-FileTree (Metacello-FileTree-dkh.36)
Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
Metacello-GitHub (Metacello-GitHub-dkh.44)
Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
Metacello-MC (Metacello-MC-dkh.726)
Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
Metacello-ToolBox (Metacello-ToolBox-dkh.139)
Monticello (Monticello.v3-dkh.476)
MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.183)
MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
MonticelloGs (MonticelloGs-dkh.2)
NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
OB-GemStone-Platform (OB-GemStone-Platform-dkh.76)
OB-Metacello (OB-Metacello-dkh.83)
OB-Monticello (OB-Monticello-dkh.105)
OB-Standard (OB-Standard.v3-dkh.449)
OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
OB-Tools (OB-Tools.v3-dkh.140)
OmniBrowser (OmniBrowser-DaleHenrichs.447)
PackageInfo-Base (PackageInfo-Base.g-dkh.36)
Pier-Admin (Pier-Admin-NickAger.87)
Pier-Blog (Pier-Blog-NickAger.158)
Pier-Book (Pier-Book.gemstone-NickAger.159)
Pier-Design (Pier-Design-NickAger.12)
Pier-Documents (Pier-Documents-NickAger.29)
Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
Pier-Google (Pier-Google-NickAger.20)
Pier-JQuery (Pier-JQuery-NickAger.13)
Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
Pier-LinkChecker (Pier-LinkChecker-lr.7)
Pier-Model (Pier-Model-NickAger.424)
Pier-Seaside (Pier-Seaside-NickAger.536)
Pier-Security (Pier-Security-NickAger.184)
Pier-Shout (Pier-Shout-NickAger.5)
Pier-TagCloud (Pier-TagCloud-NickAger.26)
Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
Prototype-Core (Prototype-Core-lr.25)
Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
Regex-Core (Regex-Core-DaleHenrichs.3)
Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
RSS-Core (RSS-Core-lr.67)
RSS-Examples (RSS-Examples-lr.26)
RSS-Tests-Core (RSS-Tests-Core-lr.30)
* Scriptaculous-Components (Scriptaculous-Components-lr.111)
Scriptaculous-Core (Scriptaculous-Core-pmm.102)
Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
Seaside-Component (Seaside-Component-jok.92)
* Seaside-Core (Seaside-Core.gemstone-dkh.774)
* Seaside-Development (Seaside-Development-pmm.156)
Seaside-Email (Seaside-Email-PaulDeBruicker.24)
Seaside-Environment (Seaside-Environment-NickAger.77)
Seaside-Examples (Seaside-Examples-lr.23)
Seaside-FileSystem (Seaside-FileSystem-pmm.26)
Seaside-Flow (Seaside-Flow-pmm.23)
Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
* Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
Seaside-HTML5 (Seaside-HTML5-pmm.28)
Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
Seaside-Session (Seaside-Session.gemstone-dkh.158)
Seaside-Swazoo (Seaside-Swazoo-pmm.20)
Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
* Seaside-Welcome (Seaside-Welcome-NickAger.40)
Seaside-Widgets (Seaside-Widgets-lr.26)
Shout-Parsing (Shout-Parsing-NickAger.3)
SIXX (SIXX.310-dkh.183)
SMTPMail (SMTPMail-dkh.11)
SocketStream (SocketStream-PaulDeBruicker.12)
* Sport (Sport3.010.v3-dkh.32)
* Squeak (Squeak.v3-dkh.309)
* STON-Core (STON-Core-dkh.46)
Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
System-Digital-Signatures (System-Digital-Signatures-dkh.5)
Tode-AST-Extensions (Tode-AST-Extensions-dkh.2)
Tode-BatchEdit-Tool (Tode-BatchEdit-Tool-dkh.3)
Tode-GemStone-Server-Core (Tode-GemStone-Server-Core-dkh.118)
Tode-GemStone-Server-Tests (Tode-GemStone-Server-Tests-dkh.5)
Tode-Server-31x-GsProcess-Patch (Tode-Server-31x-GsProcess-Patch-dkh.1)
Tode-Server-TestTestTools (Tode-Server-TestTestTools-dkh.2)
Topez-Common-Core (Topez-Common-Core-dkh.414)
Topez-Common-Tests (Topez-Common-Tests-dkh.22)
Topez-Server-31x-Core (Topez-Server-31x-Core-dkh.5)
Topez-Server-31x-DebugTools (Topez-Server-31x-DebugTools-dkh.19)
Topez-Server-31x-Tests (Topez-Server-31x-Tests-dkh.3)
Topez-Server-3x-Core (Topez-Server-3x-Core-dkh.2)
Topez-Server-3x-DebugTools (Topez-Server-3x-DebugTools-dkh.2)
Topez-Server-Core (Topez-Server-Core-dkh.89)
Topez-Server-DebugTools (Topez-Server-DebugTools-dkh.151)
Topez-Server-ProcessTools (Topez-Server-ProcessTools-dkh.25)
Topez-Server-TestDebugTools (Topez-Server-TestDebugTools-dkh.19)
Topez-Server-Tests (Topez-Server-Tests-dkh.151)
Topez-Server-TestTools (Topez-Server-TestTools-dkh.54)
TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
TopFeeder-Model (TopFeeder-Model-NickAger.5)
TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
Utf8Encoding (Utf8Encoding.310-dkh.32)
XML-Observable (XML-Observable-JohanBrichau.1)
XML-Parser (XML-Parser.g-NorbertHartl.119)
XML-Writer (XML-Writer-JAAyer.5)
Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
* Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)
'

Thanks,
       Dario

Dale

On 03/10/2015 11:06 AM, Dario Trussardi via Glass wrote:
Ciao,

   I have a devkit tODE stone create with createTodeStone  devkit  3.1.0.6

into it i load:

GsDeployer
  bulkMigrate: [
    {#( 'XMLSupport' '1.2.2' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
   #('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
    #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
    #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
      do: [ :ar |
        | projectName version repository |
        projectName := ar at: 1.
        version := ar at: 2.
        repository := ar at: 3.
        Metacello new
          configuration: projectName;
          repository: repository;
          get.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          onUpgrade: [ :ex :existing :new |
                existing locked
                  ifTrue: [ ex disallow ]
                  ifFalse: [ ex allow ] ];
          onConflict: [ :ex | ex disallow ];
          load.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          lock ] ]

and:

GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository';
      load ].

A this point the     SixxExamples example2        works fine.





Now i can save a sixx file relative to my data application      anEnv link     with:

   writeObject: anEnv toFile: aFilename inFolder: aDirectoryPath

   | fileStream sws |

   fileStream := ( FileDirectory on: aDirectoryPath) newFileNamed: aFilename.

   sws := SixxWriteStream on: fileStream.

   sws nextPut: anEnv.
   sws close.





After when i do the command:  ^Object readSixxFrom: fileStream contents.

to read the sixx file create above the system answer the error:

a SixxXmlParseError occurred (error 2710) - G/S[Scandella3106 devkit:1]

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal: (envId 0)
AbstractException class >> signal: (envId 0)
XMLTokenizer >> parseError: (envId 0)
XMLTokenizer >> errorExpected: (envId 0)
XMLTokenizer >> nextLiteral (envId 0)
XMLTokenizer >> nextPCDataDelimitedBy:putOn: (envId 0)
[] in  XMLTokenizer >> nextPCData (envId 0)
XMLNestedStreamWriter >> writeWith: (envId 0)
XMLTokenizer >> nextPCData (envId 0)
XMLTokenizer >> nextToken (envId 0)
XMLParser >> parseToken (envId 0)
XMLParser >> parseDocument (envId 0)
SAXHandler >> parseDocument (envId 0)
XMLDOMParser >> parseDocument (envId 0)
SAXHandler class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
XMLDOMParser class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
SAXHandler class >> parseDocumentFrom:persistentRoot: (envId 0)
SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)

Considerations ?

Thanks,

   Dario

P.S.  I have another  3.1.0.6    stone where i have:

   ConfigurationOfGsSIXX project currentVersion >=0.3-c.1 [ConfigurationOfGsSIXX]

   ConfigurationOfXMLSupport project currentVersion >=1.2.2.1 [ConfigurationOfXMLSupport]

   Into it  all works fine.

   The sixx file created into it   can reading  into  the devkit  tODE stone  without problem


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass



_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass



_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
Reply | Threaded
Open this post in threaded view
|

Re: [Glass] Sixx problematic

GLASS mailing list
Okay ... I can check that out easily enough ... I thought you were loading a bunch of other things again...

Dale
On 03/18/2015 11:06 AM, Dario Trussardi via Glass wrote:
Dale,

into a clean tODE 3.1.0.6  i load only :

GsDeployer bulkMigrate: [
Metacello new
baseline: 'SIXX'; repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository'; version: '1.2.2'; load ].
No other things.

And the  SixxExamples example2     don't works.

I think it load the wrong XML package as you write.

Now i go out the office, later i send you more information.

Thanks,

Dario

Dario,

I need to know pretty much exactly what you do when you load .. in my previous email, I asked for packages lists and transcripts fo loads ...

Once I see that information I can start looking into trying to reproduce problems ...

Again, before we get too far ... I am under the impression that you had

  1. a "really old stone" that SIXX worked correctly in.
  2. a "one week old stone" that SIXX worked correctly in.
  3. a "day old stone" that SIXX does not work correctly in ...

I also believe that you have changed your load script betwee 2 and 3 ...

If you are trying to tell me that the "one week old stone" is not working then you need to try to be as clear as possible with your detailed information ...

Dale

On 03/18/2015 09:52 AM, Dario Trussardi via Glass wrote:
Dale,

Dario,

Have you solved your load problem?

No.

with the directly SIXX load i found the error into clean tODE.

Can you replicate it ?

Dario


Dale

On 03/18/2015 09:32 AM, Dario Trussardi via Glass wrote:
Ciao,

into a clean tODE 3.1.0.6 environment i load directly :

GsDeployer bulkMigrate: [ Metacello new baseline: 'SIXX'; repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository'; load ]. The  SixxExamples example2.     answer the same error.

The system report:

ConfigurationOfXMLParser (ConfigurationOfXMLParser-monty.119) ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.71) ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-monty.73)

If i right remember,  last week,  when i load directly  the sixx,  as above,  the  SixxExamples example2    worked fine.

Thanks,
Dario

 
Ciao,

i'm very sorry, but I have to backtrack because sixx does not wok into a new tODE 3.1.0.6 repository.

I have two tODE 3.1.0.6 environment.

In the first ( the hold ) i have load:


and:

 GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository';
      load ].

Into it the : SixxExamples example2.        works fine,

and the Mariano  serialize and materialize using SIXX, with UTF8 also works fine

This system configurations report:

ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-NorbertHartl.64)
ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
 


In the new second tODE 3.1.0.6 environment i have load:

    { #( 'XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').  

I also test  with XMLSupport' '1.2.2' but with the same error 
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository')}
     
and:

 GsDeployer bulkMigrate: [
   Metacello new
       baseline: 'SIXX';
       repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository';
       load ].

Into it the : SixxExamples example2.      answer the error: a SixxXmlParseError occurred (error 2710)

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
Object >> doesNotUnderstand: (envId 0)
Object >> _doesNotUnderstand:args:envId:reason: (envId 0)
******** SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)
SixxExamples class >> example2 (envId 0)
Executed Code           
String >> evaluateInContext:symbolList: (envId 0)
JadeServer >> evaluate:inContext: (envId 0)
JadeServer >> printIt:in: (envId 0)
GsNMethod class >> _gsReturnToC (envId 0)


and the Mariano  materialize using SIXX, with UTF8 also answer the same error:  a SixxXmlParseError occurred (error 2710)

This system configurations report:

ConfigurationOfXMLParser (ConfigurationOfXMLParser-monty.119) ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.71) ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)


The upper  ****** error is relative to the method: 

parseXml: xmlStringOrStream persistentRoot: persistentArrayOrNil
| stream |
stream := xmlStringOrStream isStream
ifTrue: [xmlStringOrStream]
ifFalse: [ReadStream on: xmlStringOrStream].

^ (XMLDOMParser parseDocumentFrom: stream persistentRoot: persistentArrayOrNil) topElement


Where XMLDOMParser don't implement the method :  parseDocumentFrom: stream persistentRoot: persistentArrayOrNil) 

Does anyone have ideas how manage sixx I/O  into tODE without error ?

Thanks,

Dario

Dario,

The important thing is that you are able to get SIXX working ... the real solution to this problem is to get SIXX ported to the latest XMLParser implementation (and make sure that all of the projects that depned upon XML keep flying) ...

Dale

On 03/11/2015 10:09 AM, Dario Trussardi via Glass wrote:
Dale,

Dario,

I have forgotten to mention that now that you are using The Metacello scripting api for loading that the #currentVersion message should not be used either.

The #currentVersion method calculates the version and as I've said in the past, it sometimes gets it wrong ...

Using the Metacello scripting api, you can print the registration for XMLSupport

 Metacello registrations
   detect: [ :registration | registration projectName = 'XMLSupport' ].

But....right now we are trying to figure out how to reproduce the formula for the "stone that works" and I'd like to see the list of packages that are loaded in the image where SixxExample class>>example2 is failing.

Now before we go too far ... I want to understand the status of SixxExample class>>example2.

AFAICT, there are three stones:

 1. the "old stone" into which you can load your SIXX file without error (and appears to be using XMLSupport 1.2.2.1)
 2. the "new stone" that was built by locking XMLSupport 1.2.2 ...
For point 2 the system woks right.
 3. The "new stone 2" that was built by locking XMLSupport 1.2.2.1
For point 3 the system answer the error as i write into my last e-mail.
You can test it into a new tODE environment

Now I'm curious what results you get for SixxExample class>>example2 in each of those stones.

Another odd thing is that you claimed that Mariano's technique worked for you and I assume that Mariano's code was running against the "new stone" with XMLSupport 1.2.2 ... so if XMLSupport 1.2.2 is working for you I'm not sure why we are worried about XMLSupport 1.2.2.1. I made the assumption that the old stone was working because of XMLSupport 1.2.2.1 ... but I could very easily be wrong ... there were quite a few differences between the other packages in the two stones ...

Yes, you have right.
The Mariano's technique works fine.

But you write:

It appears that Mariano's workspace has helped you to get going, but I do believe that 1.2.2.1 is the version of XMLSupprt you should be using, until we can port SIXX (and any other projects that depend upon XMLSupport) to use the newer versions of XMLSupport ...

and i have doubt about XMLSupport version.

Then saw that Mariano's tecniques works well consider the matter closed, for the moment.

Do you agree?

Ciao, thanks,

Dario

Dale


On 03/11/2015 03:09 AM, Dario Trussardi via Glass wrote:
Dale,

into a clean tODE stone i load:

GsDeployer
  bulkMigrate: [
    {#('XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
#('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
    #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
    #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
      do: [ :ar |
        | projectName version repository |
        projectName := ar at: 1.
        version := ar at: 2.
        repository := ar at: 3.
        Metacello new
          configuration: projectName;
          repository: repository;
          get.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          onUpgrade: [ :ex :existing :new |
                existing locked
                  ifTrue: [ ex disallow ]
                  ifFalse: [ ex allow ] ];
          onConflict: [ :ex | ex disallow ];
          load.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          lock ] ]

At the end result: ConfigurationOfXMLSupport project currentVersion >=1.3.0 [ConfigurationOfXMLSupport]

It's not strange ?  Because not 1.2.2.1  ?

After i load:

GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository';
      load ].

The SixxExamples example2        don't works.

It erase the error: a SixxXmlParseError occurred (error 2710) -  G/S[Scandella3106 devkit:1]

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
Object >> doesNotUnderstand: (envId 0)
Object >> _doesNotUnderstand:args:envId:reason: (envId 0)
SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)
SixxExamples class >> example2 (envId 0)
Executed Code
String >> evaluateInContext:symbolList: (envId 0)
JadeServer >> evaluate:inContext: (envId 0)
JadeServer >> printIt:in: (envId 0)
GsNMethod class >> _gsReturnToC (envId 0)

Ciao,

Dario


Okay after further review I merge XMLSupport 1.2.2.1 into ConfigurationOfXMLSupport-monty.70 and saved a new version of the configuration (ConfigurationOfXMLSupport-dkh.71) and copied it to the appropriate repositories ... so at least we have 1.2.2.1 around for posterity ...

I have not been able to look into the issues with SIXX and XMLSupport 1.3.0 (the new version published by Monty) ... Monty assures me that the tests all pass for GemStone, but I am not sure whether or not the places that are/were dependent upon the older versions of XMLSupport (like SIXX) are impacted by version 1.3.0 or not .... if so then locking and loading XMLSupport 1.2.2.1 should put things right again ...

Dale

On 03/10/2015 03:07 PM, Dale Henrichs wrote:
Likely suspects in from working stone package list (XMLSupport ???):

 SIXX (SIXX.310-PaulDeBruicker.182)
 XML-Observable (XML-Observable-JohanBrichau.1)
 XML-Parser (XML-Parser.g-dkh.122)
 XML-Writer (XML-Writer-JAAyer.5)

and from failing stone package list (XMLSupport 1.2.2):

 SIXX (SIXX.310-dkh.183)
 XML-Observable (XML-Observable-JohanBrichau.1)
 XML-Parser (XML-Parser.g-NorbertHartl.119)
 XML-Writer (XML-Writer-JAAyer.5)


It's interesting that for the "working stone" you are using XML-Parser.g-dkh.122 and that package version is not in "any of the ConfigurationOfXMLSupport" versions.

According to the commit comment XML-Parser.g-dkh.122:
  final sent but not implemented for https://github.com/glassdb/glass/issues/39 bugfix?[1]


According to a comment in Issue #39 for glass[2], I created version XMLSupprt 1.2.2.1 with a reference to XML-Parser.g-dkh.122, but a quick search through the configurations for XMLSupport did not reveal a 1.2.2.1 version .. until I peeked at http://www.squeaksource.com/MetacelloRepository/ and found ConfigurationOfXMLSupport-dkh.69 with the 1.2.2.1 version
... It turns out that Monty had written a new version of ConfigurationOfXMLSupport-monty.70, but neglected to merge his changes into ConfigurationOfXMLSupport-dkh.69, so 1.2.2.1 was lost ...

Sooooo, I've copied ConfigurationOfXMLSupport-dkh.69 to http://seaside.gemstone.com/ss/MetacelloRepository and you should change your load spec for XMLSupport to the following

 #( 'XMLSupport' '1.2.2.1' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository')

It appears that Mariano's workspace has helped you to get going, but I do believe that 1.2.2.1 is the version of XMLSupprt you should be using, until we can port SIXX (and any other projects that depend upon XMLSupport) to use the newer versions of XMLSupport ...

Dale

[1] https://github.com/GsDevKit/GsDevKit/issues/39
[2] https://github.com/GsDevKit/GsDevKit/issues/39#issuecomment-58772264

On 03/10/2015 01:54 PM, Dario Trussardi via Glass wrote:
Dale,


Dario,

You have a stone that works and a stone that does not ... I would like to understand the differences in packages loaded between the two (for example XMLSupport 1.2.2 my not be the correct version to use for SIXX ...)

Use the following to list the packages in each stone:

 | stream |
 stream := WriteStream on: String new.
 (MCWorkingCopy allManagers sorted: [ :a :b | a packageName < b packageName ])
   do: [ :wc |
     stream
       nextPutAll: wc description;
       cr ].
 stream contents
The stone that works reports:

'Announcements (Announcements.v3-dkh.18)
Base-Bootstrap (Base-Bootstrap.v3-dkh.29)
BaselineOfDtrLogin (BaselineOfDtrLogin-DTR.8)
BaselineOfDtrMOL (BaselineOfDtrMOL-DTR.2)
BaselineOfDtrSupport (BaselineOfDtrSupport-DTR.3)
BaselineOfFileTree (BaselineOfFileTree-dkh.4)
BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
BaselineOfMetacello (BaselineOfMetacello-dkh.85)
BaselineOfSIXX (BaselineOfSIXX-dkh.1)
* Bootstrap (Bootstrap.v3-DaleHenrichs.230)
Change-Notification (Change-Notification.v3-dkh.20)
Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-dkh.11)
Collections-Support (Collections-Support.g-dkh.46)
ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.10)
ConfigurationOfDtrSupport (ConfigurationOfDtrSupport-DTR.1)
ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.66)
ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
ConfigurationOfGofer (ConfigurationOfGofer-dkh.44)
ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-DaleHenrichs.21)
ConfigurationOfGrease (ConfigurationOfGrease-dkh.270)
ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.89)
ConfigurationOfGsSIXX (ConfigurationOfGsSIXX-dkh.11)
ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
* ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
ConfigurationOfSeaside3 (ConfigurationOfSeaside3-JohanBrichau.218)
ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-dkh.69)
ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
* Core (Core.v3-DaleHenrichs.76)
* Crossfade (Crossfade-pmm.8)
CSSBarGraph (CSSBarGraph-pmm.11)
DTRAlbums (DTRAlbums-DTR.451)
DtrAssociazioni (DtrAssociazioni-DTR.5)
DtrBase (DtrBase-DTR.418)
* DTRCassa (DTRCassa-DTR.21)
DtrConfig (DtrConfig-DTR.412)
DTRConfigGruppi (DTRConfigGruppi-DTR.1)
DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
DTRCore (DTRCore-DTR.417)
DtrCrossfade (DtrCrossfade-DTR.408)
DtrCRP (DtrCRP-DTR.411)
DtrFinanza (DtrFinanza-DTR.417)
DtrGestionale (DtrGestionale-DTR.412)
DtrGoogle (DtrGoogle-DTR.408)
DtrLogin (DtrLogin-DTR.426)
DtrMA (DtrMA-DTR.410)
DtrMagazzino (DtrMagazzino-DTR.412)
DtrMagritteAuto (DtrMagritteAuto-DTR.407)
* DtrMenuOnLine (DtrMenuOnLine-DTR.416)
DTRMetaDb (DTRMetaDb-DTR.5)
* DtrMicroObj (DtrMicroObj-DTR.414)
DtrMRP (DtrMRP-DTR.408)
DTROnlyForOODB (DTROnlyForOODB-DTR.186)
DTRPier (DTRPier-DTR.445)
DtrPrinterTicket (DtrPrinterTicket-DTR.5)
DtrRedu (DtrRedu-DTR.405)
DtrReduPorting (DtrReduPorting-DTR.407)
FastCGI (FastCGI-dkh.33)
FastCGIPool (FastCGIPool-dkh.2)
GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.9)
GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.3)
GemStone-Release-Support (GemStone-Release-Support-dkh.67)
Gofer-Core (Gofer-Core.gemstone-dkh.137)
GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
* GoogleMaps (GoogleMaps-jgf.23)
Grease-Core (Grease-Core-JohanBrichau.94)
Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
Grease-Tests-Core (Grease-Tests-Core-pmm.99)
Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.10)
GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
GsUpgrader-Core (GsUpgrader-Core-dkh.38)
JadeServer (JadeServer-dkh.13)
Javascript-Core (Javascript-Core-pmm.94)
Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
JQuery-Core (JQuery-Core-lr.123)
JQuery-Extensions (JQuery-Extensions-DTR.7)
JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
JQuery-UI (JQuery-UI.gemstone-dkh.81)
JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
Magritte-Json (Magritte-Json-NickAger.18)
Magritte-Model (Magritte-Model-NickAger.431)
* Magritte-Seaside (Magritte-Seaside-NickAger.355)
Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
Metacello-Base (Metacello-Base-dkh.123)
Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
Metacello-Core (Metacello-Core-dkh.806)
Metacello-FileTree (Metacello-FileTree-dkh.36)
Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
Metacello-GitHub (Metacello-GitHub-dkh.44)
Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
Metacello-MC (Metacello-MC-dkh.722)
Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
Metacello-ToolBox (Metacello-ToolBox-dkh.139)
Monticello (Monticello.v3-dkh.456)
* MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.166)
MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
OB-GemStone-Platform (OB-GemStone-Platform-dkh.69)
OB-Metacello (OB-Metacello-dkh.83)
OB-Monticello (OB-Monticello-DaleHenrichs.103)
OB-Standard (OB-Standard.v3-dkh.448)
OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
OB-Tools (OB-Tools.v3-dkh.136)
OmniBrowser (OmniBrowser-DaleHenrichs.447)
PackageInfo-Base (PackageInfo-Base.g-dkh.36)
Pier-Admin (Pier-Admin-NickAger.87)
Pier-Blog (Pier-Blog-NickAger.158)
Pier-Book (Pier-Book.gemstone-NickAger.159)
Pier-Design (Pier-Design-NickAger.12)
Pier-Documents (Pier-Documents-NickAger.29)
Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
Pier-Google (Pier-Google-NickAger.20)
Pier-JQuery (Pier-JQuery-NickAger.13)
Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
Pier-LinkChecker (Pier-LinkChecker-lr.7)
Pier-Model (Pier-Model-NickAger.424)
* Pier-Seaside (Pier-Seaside-NickAger.536)
* Pier-Security (Pier-Security-NickAger.184)
Pier-Shout (Pier-Shout-NickAger.5)
Pier-TagCloud (Pier-TagCloud-NickAger.26)
Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
Prototype-Core (Prototype-Core-lr.25)
Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
Regex-Core (Regex-Core-DaleHenrichs.3)
Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
RSS-Core (RSS-Core-lr.67)
RSS-Examples (RSS-Examples-lr.26)
RSS-Tests-Core (RSS-Tests-Core-lr.30)
* Scriptaculous-Components (Scriptaculous-Components-lr.111)
Scriptaculous-Core (Scriptaculous-Core-pmm.102)
Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
Seaside-Component (Seaside-Component-jok.92)
* Seaside-Core (Seaside-Core.gemstone-dkh.774)
* Seaside-Development (Seaside-Development-pmm.156)
Seaside-Email (Seaside-Email-PaulDeBruicker.24)
Seaside-Environment (Seaside-Environment-NickAger.77)
Seaside-Examples (Seaside-Examples-lr.23)
Seaside-FileSystem (Seaside-FileSystem-pmm.26)
Seaside-Flow (Seaside-Flow-pmm.23)
Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
* Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
Seaside-HTML5 (Seaside-HTML5-pmm.28)
Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
Seaside-Session (Seaside-Session.gemstone-dkh.158)
Seaside-Swazoo (Seaside-Swazoo-pmm.20)
Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
* Seaside-Welcome (Seaside-Welcome-NickAger.40)
Seaside-Widgets (Seaside-Widgets-lr.26)
Shout-Parsing (Shout-Parsing-NickAger.3)
SIXX (SIXX.310-PaulDeBruicker.182)
SMTPMail (SMTPMail-dkh.11)
SocketStream (SocketStream-PaulDeBruicker.12)
Sport (Sport3.010.v3-dkh.29)
* Squeak (Squeak.v3-DaleHenrichs.298)
Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
System-Digital-Signatures (System-Digital-Signatures-dkh.5)
TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
TopFeeder-Model (TopFeeder-Model-NickAger.5)
TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
Utf8Encoding (Utf8Encoding.310-dkh.30)
XML-Observable (XML-Observable-JohanBrichau.1)
XML-Parser (XML-Parser.g-dkh.122)
XML-Writer (XML-Writer-JAAyer.5)
Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
* Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)'




The stone does not work report:

'Announcements (Announcements.v3-dkh.18)
AST-Core (AST-Core-dkh.102)
Base-Bootstrap (Base-Bootstrap.v3-dkh.30)
BaselineOfFileTree (BaselineOfFileTree-dkh.4)
BaselineOfGLASS1 (BaselineOfGLASS1-dkh.43)
BaselineOfGrease (BaselineOfGrease-JohanBrichau.7)
BaselineOfMetacello (BaselineOfMetacello-dkh.85)
BaselineOfRB (BaselineOfRB-dkh.5)
BaselineOfSIXX (BaselineOfSIXX-dkh.1)
BaselineOfSton (BaselineOfSton-dkh.1)
BaselineOfTode (BaselineOfTode-dkh.41)
* Bootstrap (Bootstrap.v3-dkh.241)
Change-Notification (Change-Notification.v310-dkh.21)
Collections-BitmapCharacterSet (Collections-BitmapCharacterSet-JAA.5)
Collections-OrderPreservingDictionary (Collections-OrderPreservingDictionary.g-JohanBrichau.9)
Collections-Support (Collections-Support.g-OttoBehrens.45)
ConfigurationOfDtrBase (ConfigurationOfDtrBase-DTR.11)
ConfigurationOfFileTree (ConfigurationOfFileTree-dkh.36)
ConfigurationOfGLASS (ConfigurationOfGLASS-dkh.250)
ConfigurationOfGofer (ConfigurationOfGofer-dkh.45)
ConfigurationOfGoferProjectLoader (ConfigurationOfGoferProjectLoader-dkh.22)
ConfigurationOfGrease (ConfigurationOfGrease-dkh.189)
ConfigurationOfGsCore (ConfigurationOfGsCore-dkh.297)
ConfigurationOfGsFastCGI (ConfigurationOfGsFastCGI-dkh.18)
ConfigurationOfGsMisc (ConfigurationOfGsMisc-dkh.116)
ConfigurationOfGsMonticello (ConfigurationOfGsMonticello-dkh.173)
ConfigurationOfGsOB (ConfigurationOfGsOB-dkh.91)
ConfigurationOfGsSqueakCommon (ConfigurationOfGsSqueakCommon-dkh.25)
ConfigurationOfJQueryWidgetBox (ConfigurationOfJQueryWidgetBox-PaulDeBruicker.69)
ConfigurationOfMagritte3 (ConfigurationOfMagritte3-EstebanLorenzano.64)
ConfigurationOfMagritte3AddOns (ConfigurationOfMagritte3AddOns-NickAger.23)
ConfigurationOfMetacello (ConfigurationOfMetacello-dkh.800)
ConfigurationOfMetacelloPreview (ConfigurationOfMetacelloPreview-dkh.54)
ConfigurationOfNAFileUpload (ConfigurationOfNAFileUpload-StephanEggermont.6)
ConfigurationOfPier3 (ConfigurationOfPier3-TudorGirba.19)
ConfigurationOfPier3AddOns (ConfigurationOfPier3AddOns-BrucePrior.62)
ConfigurationOfSeaside3 (ConfigurationOfSeaside3-dkh.222)
ConfigurationOfSeaside30 (ConfigurationOfSeaside30-PaulDeBruicker.397)
ConfigurationOfSwazoo2 (ConfigurationOfSwazoo2-JohanBrichau.58)
ConfigurationOfTopFeeder (ConfigurationOfTopFeeder-NickAger.15)
ConfigurationOfTwitterBootstrap (ConfigurationOfTwitterBootstrap-DiegoLont.16)
ConfigurationOfXMLSupport (ConfigurationOfXMLSupport-NorbertHartl.64)
ConfigurationOfXMLWriter (ConfigurationOfXMLWriter-dkh.23)
ConfigurationOfZincHTTPComponents (ConfigurationOfZincHTTPComponents-SvenVanCaekenberghe.50)
* Core (Core.v3-dkh.90)
Core31x (Core31x-dkh.5)
* Crossfade (Crossfade-pmm.8)
CSSBarGraph (CSSBarGraph-pmm.11)
DtrBase (DtrBase-DTR.418)
DTRCassa (DTRCassa-DTR.21)
* DtrConfig (DtrConfig-DTR.412)
DtrConfigMenuOnLine (DtrConfigMenuOnLine-DTR.4)
DTRCore (DTRCore-DTR.417)
DtrCrossfade (DtrCrossfade-DTR.408)
DtrCRP (DtrCRP-DTR.411)
DtrFinanza (DtrFinanza-DTR.417)
DtrGestionale (DtrGestionale-DTR.412)
DtrGoogle (DtrGoogle-DTR.408)
DtrLogin (DtrLogin-DTR.426)
DtrMA (DtrMA-DTR.410)
DtrMagazzino (DtrMagazzino-DTR.412)
DtrMagritteAuto (DtrMagritteAuto-DTR.407)
DtrMenuOnLine (DtrMenuOnLine-DTR.416)
DTRMetaDb (DTRMetaDb-DTR.5)
DtrMicroObj (DtrMicroObj-DTR.414)
DtrMRP (DtrMRP-DTR.408)
DTROnlyForOODB (DTROnlyForOODB-DTR.186)
DtrPrinterTicket (DtrPrinterTicket-DTR.5)
DtrRedu (DtrRedu-DTR.405)
DtrReduPorting (DtrReduPorting-DTR.408)
FastCGI (FastCGI-dkh.33)
FastCGIPool (FastCGIPool-dkh.2)
GemStone-ANSI-Streams (GemStone-ANSI-Streams-dkh.12)
GemStone-Compression (GemStone-Compression-dkh.7)
GemStone-Deployment (GemStone-Deployment.v310-dkh.26)
GemStone-Indexing-Extensions (GemStone-Indexing-Extensions-dkh.4)
GemStone-Interactions (GemStone-Interactions-dkh.12)
GemStone-Release-Support (GemStone-Release-Support-dkh.67)
* Generated ()
Gofer-Core (Gofer-Core.gemstone-dkh.138)
GoferProjectLoader (GoferProjectLoader-DaleHenrichs.25)
* GoogleMaps (GoogleMaps-jgf.23)
Grease-Core (Grease-Core-JohanBrichau.94)
Grease-GemStone-Core (Grease-GemStone-Core-JohanBrichau.55)
Grease-GemStone300-Core (Grease-GemStone300-Core-JohanBrichau.5)
Grease-Tests-Core (Grease-Tests-Core-pmm.99)
Grease-Tests-GemStone-Core (Grease-Tests-GemStone-Core-dkh.14)
* GsSqueakCommon-Core (GsSqueakCommon-Core-dkh.20)
GsSqueakCommon-Core.3x (GsSqueakCommon-Core.3x-dkh.4)
GsSqueakCommon-CoreV30 (GsSqueakCommon-CoreV30-dkh.1)
GsSqueakCommon-Tests (GsSqueakCommon-Tests-dkh.2)
GsUpgrader-Core (GsUpgrader-Core-dkh.38)
JadeServer (JadeServer-dkh.13)
Javascript-Core (Javascript-Core-pmm.94)
Javascript-GemStone-Core (Javascript-GemStone-Core-DaleHenrichs.4)
Javascript-Jasmine (Javascript-Jasmine-NickAger.2)
Javascript-Tests-Core (Javascript-Tests-Core-pmm.68)
JQuery-Core (JQuery-Core-lr.123)
JQuery-Extensions (JQuery-Extensions-DTR.7)
JQuery-Tests-Core (JQuery-Tests-Core-NickAger.132)
JQuery-Tests-UI (JQuery-Tests-UI-pmm.82)
JQuery-UI (JQuery-UI.gemstone-dkh.81)
JQWidgetBox-Core (JQWidgetBox-Core-tbn.2)
JQWidgetBox-FormExample-Core (JQWidgetBox-FormExample-Core-tbn.2)
JQWidgetBox-JSTree-Core (JQWidgetBox-JSTree-Core-NickAger.17)
JQWidgetBox-UILayout-Core (JQWidgetBox-UILayout-Core-obi.2)
Magritte-GemStone-Model (Magritte-GemStone-Model-NickAger.3)
Magritte-GemStone-Seaside (Magritte-GemStone-Seaside-DaleHenrichs.2)
Magritte-Json (Magritte-Json-NickAger.18)
Magritte-Model (Magritte-Model-NickAger.431)
* Magritte-Seaside (Magritte-Seaside-NickAger.355)
Magritte-XMLBinding (Magritte-XMLBinding-NickAger.85)
Metacello-Base (Metacello-Base-topa.124)
Metacello-Bitbucket (Metacello-Bitbucket-dkh.5)
Metacello-Core (Metacello-Core-dkh.809)
Metacello-FileTree (Metacello-FileTree-dkh.36)
Metacello-GitBasedRepository (Metacello-GitBasedRepository-dkh.13)
Metacello-GitHub (Metacello-GitHub-dkh.44)
Metacello-GS3x-Platform (Metacello-GS3x-Platform-dkh.1)
Metacello-MC (Metacello-MC-dkh.726)
Metacello-Platform (Metacello-Platform.gemstone-dkh.56)
Metacello-ToolBox (Metacello-ToolBox-dkh.139)
Monticello (Monticello.v3-dkh.476)
MonticelloFileTree-Core (MonticelloFileTree-Core-dkh.183)
MonticelloFileTree-FileDirectory-Utilities (MonticelloFileTree-FileDirectory-Utilities-dkh.15)
MonticelloGs (MonticelloGs-dkh.2)
NAFileUpload-Base (NAFileUpload-Base-PaulDeBruicker.13)
NAFileUpload-Component (NAFileUpload-Component-NickAger.49)
OB-GemStone-Platform (OB-GemStone-Platform-dkh.76)
OB-Metacello (OB-Metacello-dkh.83)
OB-Monticello (OB-Monticello-dkh.105)
OB-Standard (OB-Standard.v3-dkh.449)
OB-SUnitGUI (OB-SUnitGUI.g-dkh.61)
OB-SUnitIntegration (OB-SUnitIntegration-dkh.10)
OB-SymbolListBrowser (OB-SymbolListBrowser-DaleHenrichs.4)
OB-Tools (OB-Tools.v3-dkh.140)
OmniBrowser (OmniBrowser-DaleHenrichs.447)
PackageInfo-Base (PackageInfo-Base.g-dkh.36)
Pier-Admin (Pier-Admin-NickAger.87)
Pier-Blog (Pier-Blog-NickAger.158)
Pier-Book (Pier-Book.gemstone-NickAger.159)
Pier-Design (Pier-Design-NickAger.12)
Pier-Documents (Pier-Documents-NickAger.29)
Pier-EditorEnh (Pier-EditorEnh-NickAger.62)
Pier-Exporter-Code (Pier-Exporter-Code-TudorGirba.53)
Pier-FileUpload-Common-Wysiwyg (Pier-FileUpload-Common-Wysiwyg-NickAger.8)
Pier-FileUpload-Wysiwyg (Pier-FileUpload-Wysiwyg-NickAger.6)
Pier-GemStone-Model (Pier-GemStone-Model-NickAger.4)
Pier-GemStone-Seaside (Pier-GemStone-Seaside-DaleHenrichs.1)
Pier-Google (Pier-Google-NickAger.20)
Pier-JQuery (Pier-JQuery-NickAger.13)
Pier-Kernel-Distributions (Pier-Kernel-Distributions-NickAger.52)
Pier-LinkChecker (Pier-LinkChecker-lr.7)
Pier-Model (Pier-Model-NickAger.424)
Pier-Seaside (Pier-Seaside-NickAger.536)
Pier-Security (Pier-Security-NickAger.184)
Pier-Shout (Pier-Shout-NickAger.5)
Pier-TagCloud (Pier-TagCloud-NickAger.26)
Pier-Tests-Wysiwyg (Pier-Tests-Wysiwyg-NickAger.17)
Pier-Wysiwyg (Pier-Wysiwyg-NickAger.83)
Prototype-Core (Prototype-Core-lr.25)
Prototype-Tests-Core (Prototype-Tests-Core-lr.13)
Regex-Core (Regex-Core-DaleHenrichs.3)
Regex-Tests-Core (Regex-Tests-Core-DaleHenrichs.5)
RSS-Core (RSS-Core-lr.67)
RSS-Examples (RSS-Examples-lr.26)
RSS-Tests-Core (RSS-Tests-Core-lr.30)
* Scriptaculous-Components (Scriptaculous-Components-lr.111)
Scriptaculous-Core (Scriptaculous-Core-pmm.102)
Scriptaculous-Tests-Components (Scriptaculous-Tests-Components-lr.39)
Scriptaculous-Tests-Core (Scriptaculous-Tests-Core-pmm.61)
Seaside-Adaptors-FastCGI (Seaside-Adaptors-FastCGI-dkh.26)
Seaside-Adaptors-Swazoo (Seaside-Adaptors-Swazoo-pmm.42)
Seaside-Canvas (Seaside-Canvas.gemstone-dkh.119)
Seaside-Component (Seaside-Component-jok.92)
* Seaside-Core (Seaside-Core.gemstone-dkh.774)
* Seaside-Development (Seaside-Development-pmm.156)
Seaside-Email (Seaside-Email-PaulDeBruicker.24)
Seaside-Environment (Seaside-Environment-NickAger.77)
Seaside-Examples (Seaside-Examples-lr.23)
Seaside-FileSystem (Seaside-FileSystem-pmm.26)
Seaside-Flow (Seaside-Flow-pmm.23)
Seaside-GemStone-Adaptors-Swazoo (Seaside-GemStone-Adaptors-Swazoo-dkh.5)
Seaside-GemStone-Basic-Development (Seaside-GemStone-Basic-Development-NickAger.25)
Seaside-GemStone-Continuation (Seaside-GemStone-Continuation-DaleHenrichs.20)
Seaside-GemStone-Core (Seaside-GemStone-Core-dkh.63)
Seaside-GemStone-Development (Seaside-GemStone-Development-dkh.27)
Seaside-GemStone-Email (Seaside-GemStone-Email-topa.13)
Seaside-GemStone-Environment (Seaside-GemStone-Environment-dkh.12)
Seaside-GemStone-Flow (Seaside-GemStone-Flow.310-dkh.12)
Seaside-GemStone-ServiceTask (Seaside-GemStone-ServiceTask-NickAger.20)
* Seaside-GemStone-Session (Seaside-GemStone-Session-DaleHenrichs.3)
Seaside-GemStone-Tools-OmniBrowser (Seaside-GemStone-Tools-OmniBrowser-DaleHenrichs.4)
Seaside-GemStone-Tools-Production (Seaside-GemStone-Tools-Production-dkh.13)
Seaside-GemStone-Tools-Web (Seaside-GemStone-Tools-Web-DaleHenrichs.4)
Seaside-GemStone-Welcome (Seaside-GemStone-Welcome-DaleHenrichs.1)
Seaside-GemStone300-Core (Seaside-GemStone300-Core-DaleHenrichs.4)
Seaside-HTML5 (Seaside-HTML5-pmm.28)
Seaside-InternetExplorer (Seaside-InternetExplorer-pmm.7)
Seaside-RenderLoop (Seaside-RenderLoop.gemstone-dkh.74)
Seaside-Session (Seaside-Session.gemstone-dkh.158)
Seaside-Swazoo (Seaside-Swazoo-pmm.20)
Seaside-Tests-Canvas (Seaside-Tests-Canvas-pmm.59)
Seaside-Tests-Component (Seaside-Tests-Component-jok.33)
Seaside-Tests-Core (Seaside-Tests-Core-pmm.259)
Seaside-Tests-Development (Seaside-Tests-Development-pmm.43)
Seaside-Tests-Email (Seaside-Tests-Email-dkh.19)
Seaside-Tests-Environment (Seaside-Tests-Environment-lr.27)
Seaside-Tests-Examples (Seaside-Tests-Examples-lr.9)
Seaside-Tests-FileSystem (Seaside-Tests-FileSystem-lr.13)
Seaside-Tests-Flow (Seaside-Tests-Flow-dkh.34)
Seaside-Tests-Functional (Seaside-Tests-Functional-pmm.142)
Seaside-Tests-GemStone-Continuation (Seaside-Tests-GemStone-Continuation-DaleHenrichs.12)
Seaside-Tests-GemStone-Core (Seaside-Tests-GemStone-Core-dkh.15)
Seaside-Tests-GemStone-Development (Seaside-Tests-GemStone-Development-DaleHenrichs.4)
Seaside-Tests-GemStone-Flow (Seaside-Tests-GemStone-Flow-dkh.4)
Seaside-Tests-GemStone-Functional (Seaside-Tests-GemStone-Functional-dkh.12)
Seaside-Tests-HTML5 (Seaside-Tests-HTML5-pmm.28)
Seaside-Tests-InternetExplorer (Seaside-Tests-InternetExplorer-lr.9)
Seaside-Tests-RenderLoop (Seaside-Tests-RenderLoop.gemstone-dkh.13)
Seaside-Tests-Session (Seaside-Tests-Session-lr.49)
Seaside-Tests-Tools-Web (Seaside-Tests-Tools-Web-lr.18)
Seaside-Tests-UTF8 (Seaside-Tests-UTF8-lr.10)
Seaside-Tests-Welcome (Seaside-Tests-Welcome-lr.6)
Seaside-Tools-Core (Seaside-Tools-Core-lr.19)
Seaside-Tools-OmniBrowser (Seaside-Tools-OmniBrowser-lr.25)
Seaside-Tools-Web (Seaside-Tools-Web-NickAger.113)
* Seaside-Welcome (Seaside-Welcome-NickAger.40)
Seaside-Widgets (Seaside-Widgets-lr.26)
Shout-Parsing (Shout-Parsing-NickAger.3)
SIXX (SIXX.310-dkh.183)
SMTPMail (SMTPMail-dkh.11)
SocketStream (SocketStream-PaulDeBruicker.12)
* Sport (Sport3.010.v3-dkh.32)
* Squeak (Squeak.v3-dkh.309)
* STON-Core (STON-Core-dkh.46)
Swazoo (Swazoo-2.2.gemstone-DataCurator.34)
System-Digital-Signatures (System-Digital-Signatures-dkh.5)
Tode-AST-Extensions (Tode-AST-Extensions-dkh.2)
Tode-BatchEdit-Tool (Tode-BatchEdit-Tool-dkh.3)
Tode-GemStone-Server-Core (Tode-GemStone-Server-Core-dkh.118)
Tode-GemStone-Server-Tests (Tode-GemStone-Server-Tests-dkh.5)
Tode-Server-31x-GsProcess-Patch (Tode-Server-31x-GsProcess-Patch-dkh.1)
Tode-Server-TestTestTools (Tode-Server-TestTestTools-dkh.2)
Topez-Common-Core (Topez-Common-Core-dkh.414)
Topez-Common-Tests (Topez-Common-Tests-dkh.22)
Topez-Server-31x-Core (Topez-Server-31x-Core-dkh.5)
Topez-Server-31x-DebugTools (Topez-Server-31x-DebugTools-dkh.19)
Topez-Server-31x-Tests (Topez-Server-31x-Tests-dkh.3)
Topez-Server-3x-Core (Topez-Server-3x-Core-dkh.2)
Topez-Server-3x-DebugTools (Topez-Server-3x-DebugTools-dkh.2)
Topez-Server-Core (Topez-Server-Core-dkh.89)
Topez-Server-DebugTools (Topez-Server-DebugTools-dkh.151)
Topez-Server-ProcessTools (Topez-Server-ProcessTools-dkh.25)
Topez-Server-TestDebugTools (Topez-Server-TestDebugTools-dkh.19)
Topez-Server-Tests (Topez-Server-Tests-dkh.151)
Topez-Server-TestTools (Topez-Server-TestTools-dkh.54)
TopFeeder-Magritte (TopFeeder-Magritte-NickAger.2)
TopFeeder-Model (TopFeeder-Model-NickAger.5)
TopFeeder-Pier-Widgets (TopFeeder-Pier-Widgets-NickAger.2)
Twitter-Bootstrap-Libraries (Twitter-Bootstrap-Libraries-topa.4)
Twitter-Bootstrap-Magritte (Twitter-Bootstrap-Magritte-topa.11)
Twitter-Bootstrap-Seaside (Twitter-Bootstrap-Seaside-topa.10)
Utf8Encoding (Utf8Encoding.310-dkh.32)
XML-Observable (XML-Observable-JohanBrichau.1)
XML-Parser (XML-Parser.g-NorbertHartl.119)
XML-Writer (XML-Writer-JAAyer.5)
Zinc-Gemstone (Zinc-Gemstone-PaulDeBruicker.14)
Zinc-GemstonePreliminary (Zinc-GemstonePreliminary-PaulDeBruicker.2)
* Zinc-HTTP (Zinc-HTTP-SvenVanCaekenberghe.162)
'

Thanks,
       Dario

Dale

On 03/10/2015 11:06 AM, Dario Trussardi via Glass wrote:
Ciao,

   I have a devkit tODE stone create with createTodeStone  devkit  3.1.0.6

into it i load:

GsDeployer
  bulkMigrate: [
    {#( 'XMLSupport' '1.2.2' 'http://seaside.gemtalksystems.com/ss/MetacelloRepository').
   #('Seaside3' '3.0.13' 'http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main').
    #('ZincHTTPComponents' '1.1' 'http://www.squeaksource.com/ZincHTTPComponents').
    #('Magritte3' '3.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Magritte3AddOns' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3' '3.0.0' 'http://www.squeaksource.com/MetacelloRepository').
    #('Pier3AddOns' '3.0.3' 'http://www.squeaksource.com/MetacelloRepository')}
      do: [ :ar |
        | projectName version repository |
        projectName := ar at: 1.
        version := ar at: 2.
        repository := ar at: 3.
        Metacello new
          configuration: projectName;
          repository: repository;
          get.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          onUpgrade: [ :ex :existing :new |
                existing locked
                  ifTrue: [ ex disallow ]
                  ifFalse: [ ex allow ] ];
          onConflict: [ :ex | ex disallow ];
          load.
        Metacello new
          configuration: projectName;
          version: version;
          repository: repository;
          lock ] ]

and:

GsDeployer bulkMigrate: [
  Metacello new
      baseline: 'SIXX';
      repository: '<a moz-do-not-send="true" href="github://glassdb/SIXX:master/repository%27">github://glassdb/SIXX:master/repository';
      load ].

A this point the     SixxExamples example2        works fine.





Now i can save a sixx file relative to my data application      anEnv link     with:

   writeObject: anEnv toFile: aFilename inFolder: aDirectoryPath

   | fileStream sws |

   fileStream := ( FileDirectory on: aDirectoryPath) newFileNamed: aFilename.

   sws := SixxWriteStream on: fileStream.

   sws nextPut: anEnv.
   sws close.





After when i do the command:  ^Object readSixxFrom: fileStream contents.

to read the sixx file create above the system answer the error:

a SixxXmlParseError occurred (error 2710) - G/S[Scandella3106 devkit:1]

AbstractException >> _signalWith: (envId 0)
AbstractException >> signal (envId 0)
SixxPortableUtil class >> signalException: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
AbstractException >> _executeHandler: (envId 0)
AbstractException >> _signalWith: (envId 0)
AbstractException >> signal: (envId 0)
AbstractException class >> signal: (envId 0)
XMLTokenizer >> parseError: (envId 0)
XMLTokenizer >> errorExpected: (envId 0)
XMLTokenizer >> nextLiteral (envId 0)
XMLTokenizer >> nextPCDataDelimitedBy:putOn: (envId 0)
[] in  XMLTokenizer >> nextPCData (envId 0)
XMLNestedStreamWriter >> writeWith: (envId 0)
XMLTokenizer >> nextPCData (envId 0)
XMLTokenizer >> nextToken (envId 0)
XMLParser >> parseToken (envId 0)
XMLParser >> parseDocument (envId 0)
SAXHandler >> parseDocument (envId 0)
XMLDOMParser >> parseDocument (envId 0)
SAXHandler class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
XMLDOMParser class >> parseDocumentFrom:useNamespaces:persistentRoot: (envId 0)
SAXHandler class >> parseDocumentFrom:persistentRoot: (envId 0)
SixxYaxoXmlParserAdapter class >> parseXml:persistentRoot: (envId 0)
[] in  SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
ExecBlock >> on:do: (envId 0)
SixxXmlUtil class >> parseXml:persistentRoot: (envId 0)
Behavior >> readSixxFrom:context:persistentRoot: (envId 0)
Behavior >> readSixxFrom: (envId 0)

Considerations ?

Thanks,

   Dario

P.S.  I have another  3.1.0.6    stone where i have:

   ConfigurationOfGsSIXX project currentVersion >=0.3-c.1 [ConfigurationOfGsSIXX]

   ConfigurationOfXMLSupport project currentVersion >=1.2.2.1 [ConfigurationOfXMLSupport]

   Into it  all works fine.

   The sixx file created into it   can reading  into  the devkit  tODE stone  without problem


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass



_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass



_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass



_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass


_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
12