Hello everybody,
for our project we intend to have nightly builds of our application, generated from clean images. Our plan is to create an image that will, after start up, simply load code from the store and execute that code. Now, my question is if there is some documentation on the Store API somewhere out there. Unfortunately all documents under http://www.cincomsmalltalk.com/CincomSmalltalkWiki/DOWNLOAD/DOCS appear to be broken. Thanks, Konstantin _______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
This is the doc link:
http://www.cincomsmalltalk.com/documentation/ James Robertson Cincom Smalltalk Product Evangelist http://www.cincomsmalltalk.com/blog/blogView Talk Small and Carry a Big Class Library On Nov 24, 2009, at 9:45 AM, Konstantin Haase wrote: > Hello everybody, > > for our project we intend to have nightly builds of our application, generated from clean images. Our plan is to create an image that will, after start up, simply load code from the store and execute that code. Now, my question is if there is some documentation on the Store API somewhere out there. Unfortunately all documents under http://www.cincomsmalltalk.com/CincomSmalltalkWiki/DOWNLOAD/DOCS appear to be broken. > > Thanks, > Konstantin > _______________________________________________ > vwnc mailing list > [hidden email] > http://lists.cs.uiuc.edu/mailman/listinfo/vwnc > _______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
In reply to this post by Konstantin Haase
Try http://www.cincomsmalltalk.com/documentation/ for the docs.
There's no programmatic api doc'ed, though, unfortunately. Never been well-defined. Bruce ----- Original Message ----- From: "Konstantin Haase" <[hidden email]> To: <[hidden email]> Sent: Tuesday, November 24, 2009 6:45 AM Subject: [vwnc] Store API > Hello everybody, > > for our project we intend to have nightly builds of our application, > generated from clean images. Our plan is to create an image that will, > after start up, simply load code from the store and execute that code. > Now, my question is if there is some documentation on the Store API > somewhere out there. Unfortunately all documents under > http://www.cincomsmalltalk.com/CincomSmalltalkWiki/DOWNLOAD/DOCS appear to > be broken. > > Thanks, > Konstantin > _______________________________________________ > vwnc mailing list > [hidden email] > http://lists.cs.uiuc.edu/mailman/listinfo/vwnc _______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
Bruce is correct, but you can use it programmatically (and people do). Have a look at this build script screencast - it uses Store programmatically to load packages and bundles
http://www.cincomsmalltalk.com/blog/blogView?showComments=true&printTitle=Smalltalk_Daily_3/18/09:_Picking_a_Specific_Version_in_a_Script&entry=3414816056 James Robertson Cincom Smalltalk Product Evangelist http://www.cincomsmalltalk.com/blog/blogView Talk Small and Carry a Big Class Library On Nov 24, 2009, at 10:20 AM, Bruce Boyer wrote: > Try http://www.cincomsmalltalk.com/documentation/ for the docs. > > There's no programmatic api doc'ed, though, unfortunately. Never been > well-defined. > > Bruce > > ----- Original Message ----- > From: "Konstantin Haase" <[hidden email]> > To: <[hidden email]> > Sent: Tuesday, November 24, 2009 6:45 AM > Subject: [vwnc] Store API > > >> Hello everybody, >> >> for our project we intend to have nightly builds of our application, >> generated from clean images. Our plan is to create an image that will, >> after start up, simply load code from the store and execute that code. >> Now, my question is if there is some documentation on the Store API >> somewhere out there. Unfortunately all documents under >> http://www.cincomsmalltalk.com/CincomSmalltalkWiki/DOWNLOAD/DOCS appear to >> be broken. >> >> Thanks, >> Konstantin >> _______________________________________________ >> vwnc mailing list >> [hidden email] >> http://lists.cs.uiuc.edu/mailman/listinfo/vwnc > > _______________________________________________ > vwnc mailing list > [hidden email] > http://lists.cs.uiuc.edu/mailman/listinfo/vwnc > _______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
In reply to this post by Konstantin Haase
On Tue, Nov 24, 2009 at 10:45 PM, Konstantin Haase
<[hidden email]> wrote: > Hello everybody, > > for our project we intend to have nightly builds of our application, generated from clean images. Our plan is to create an image that will, after start up, simply load code from the store and execute that code. Now, my question is if there is some documentation on the Store API somewhere out there. Unfortunately all documents under http://www.cincomsmalltalk.com/CincomSmalltalkWiki/DOWNLOAD/DOCS appear to be broken. May be: (Store.Bundle newestVersionWithName: 'yourBundleNameHere') loadSrc. HTH. Best Regards, Jim G _______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
Thanks everybody for the help.
On Nov 24, 2009, at 17:02 , Jim Guo wrote: > On Tue, Nov 24, 2009 at 10:45 PM, Konstantin Haase > <[hidden email]> wrote: >> Hello everybody, >> >> for our project we intend to have nightly builds of our application, generated from clean images. Our plan is to create an image that will, after start up, simply load code from the store and execute that code. Now, my question is if there is some documentation on the Store API somewhere out there. Unfortunately all documents under http://www.cincomsmalltalk.com/CincomSmalltalkWiki/DOWNLOAD/DOCS appear to be broken. > > May be: > > (Store.Bundle newestVersionWithName: 'yourBundleNameHere') loadSrc. > > > HTH. > > > Best Regards, > > Jim G That should do the trick. Konstantin _______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
In reply to this post by Konstantin Haase
We also do automated builds from Store. We have one image that looks
for a new version of the project bundle in Store. When it discovers a new version it starts a Cincom base "visual.im" image with a script. The script loads the project bundle, and creates a runtime image. After the image is built we do some of the other steps required to push the new build to a server. We added some extensions to the runtime packager to get this working. If you need more details, I could assist you. Runar Jordahl _______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
Free forum by Nabble | Edit this page |