Hi Guys,
-- Sorry for the long title but it pretty much says it all. When in the packer save instructions screen is there any way to have it default to NOT save when the instructions haven't changed? I all too often have to package many apps (20 ish). Every thing is setup and the instructions seldom change (almost never) so I would like to not have to click the two radio buttons to not save the instructions. Is there something I can do to change this? Can Instantiations change it? Any ideas? Lou You received this message because you are subscribed to the Google Groups "VA Smalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To post to this group, send email to [hidden email]. Visit this group at http://groups.google.com/group/va-smalltalk. For more options, visit https://groups.google.com/d/optout. |
Weird. The only time it ever prompts me to save is if I have made a change. Otherwise, I just "Next" my way past it.
-- *Steve* On Wednesday, February 4, 2015 at 4:07:50 PM UTC-5, Louis LaBrunda wrote:
You received this message because you are subscribed to the Google Groups "VA Smalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To post to this group, send email to [hidden email]. Visit this group at http://groups.google.com/group/va-smalltalk. For more options, visit https://groups.google.com/d/optout. |
Administrator
|
In reply to this post by Louis LaBrunda
On Wednesday, February 4, 2015 at 1:07:50 PM UTC-8, Louis LaBrunda wrote:
--
It's been a while since I have done any automated packaging, but I recall we built our packaged images without the GUI (only having it open if there were errors). You can build from a Smalltalk expression. If you need an example, I don't have one with me, but I think I can easily track one down at home. You received this message because you are subscribed to the Google Groups "VA Smalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To post to this group, send email to [hidden email]. Visit this group at http://groups.google.com/group/va-smalltalk. For more options, visit https://groups.google.com/d/optout. |
In reply to this post by Steven LaFavor
same here, you usually just click on next. Even if there are changes, you dont have to save.
One idea: do you package from a saved image that already has chenged rules? maybe thee changes are months or years old.... Btw: you should consider automating your builds.... Joachim -- You received this message because you are subscribed to the Google Groups "VA Smalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To post to this group, send email to [hidden email]. Visit this group at http://groups.google.com/group/va-smalltalk. For more options, visit https://groups.google.com/d/optout. |
Administrator
|
In reply to this post by Richard Sargent
On Wednesday, February 4, 2015 at 2:48:16 PM UTC-8, Richard Sargent wrote:
The following file out is a slightly editted copy of the code I used to automate building a packaged image for a system. I had it hooked up to a Transcript menu, so I could build the system's packaged image whenever I wanted. The same approach could be used to automate the build from a batch script (via abt.cnf, for example).
You received this message because you are subscribed to the Google Groups "VA Smalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To post to this group, send email to [hidden email]. Visit this group at http://groups.google.com/group/va-smalltalk. For more options, visit https://groups.google.com/d/optout. |
Hi Everyone,
-- Thanks for the replies. I have long thought about automating the packaging, I just haven't ever gotten around to it. Now that Richard has given me a place to start (thanks Richard) I will see what I can do. Lou On Thursday, February 5, 2015 at 11:36:24 AM UTC-5, Richard Sargent wrote: On Wednesday, February 4, 2015 at 2:48:16 PM UTC-8, Richard Sargent wrote: You received this message because you are subscribed to the Google Groups "VA Smalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To post to this group, send email to [hidden email]. Visit this group at http://groups.google.com/group/va-smalltalk. For more options, visit https://groups.google.com/d/optout. |
Hi Guys, I decided to get around the problem of being asked to save the packing instructions every time (it still asks) by automating the build. Mostly these are builds of XD images. So I reproduced the steps that would occur with a manual build in the code below. It isn't everything but I wanted to give those who are interested some idea of what I used. I extended AbtXDSingleImagePackagingInstructions on the class side with #buildXDImageAndPackageIt and a few other methods. To use it I added a few other methods to the sub classes of AbtXDSingleImagePackagingInstructions that hold the packaging instructions. So pretty much everything needed to package an image is in one spot. I also added a menu item, to the pop up menu we see when we right click a class in the "VisualAge Organizer", that runs the packaging when I right click on the main class of the project. This works great for the way I work. It doesn't seem to be the kind of thing I can share on VAStGoodies but I am willing to share or answer questions if anyone is interested. Lou
You received this message because you are subscribed to the Google Groups "VA Smalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To post to this group, send email to [hidden email]. Visit this group at http://groups.google.com/group/va-smalltalk. For more options, visit https://groups.google.com/d/optout. |
Lou,
-- all I can say is: Wow! I did a lot of automation for "normal" packaging, but gave up several times trying to do automated loading into passive images and packaging a runtime from it. Seems like I now have all that's needed right here before my fingertips. Thanks a ton for sharing Am Montag, 16. Februar 2015 19:50:19 UTC+1 schrieb Louis LaBrunda:
You received this message because you are subscribed to the Google Groups "VA Smalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To post to this group, send email to [hidden email]. Visit this group at http://groups.google.com/group/va-smalltalk. For more options, visit https://groups.google.com/d/optout. |
Hey Joachim,
-- On Tuesday, February 17, 2015 at 8:44:40 AM UTC-5, Joachim Tuchel wrote:
Thanks for the kind praise.
My pleasure. I have attached a zip of the full extension to AbtXDSingleImagePackagingInstructions and one of my packaging instructions which is a sub class of it. The packaging instructions have what you normally see in packaging instructions when you save them. There are also a few methods called by the extension to AbtXDSingleImagePackagingInstructions that will show you what you need to add to your packaging instructions. I haven't included the code to add the menu item nor my extended packaging instructions code that does the zipping but I will if you want it I will post it. In the mean time you can comment out the last few lines of #buildXDImageAndPackageIt. Lou You received this message because you are subscribed to the Google Groups "VA Smalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To post to this group, send email to [hidden email]. Visit this group at http://groups.google.com/group/va-smalltalk. For more options, visit https://groups.google.com/d/optout. AbtXDSingleImagePackagingInstructions.Zip (5K) Download Attachment |
Free forum by Nabble | Edit this page |