[izpack-users] Fix for Automatic Installation ProcessPanel

Miraodb miraodb at hotmail.com
Tue Jun 13 11:07:41 CEST 2006


Hi Pander,

The latest stable release is downloadable from either izpack website at :
http://www.izforge.com/izpack/index.php?page=download

Or from berlios at http://developer.berlios.de/projects/izpack/

If you need to have the latest updates (in development) you can grab the
latest version from svn using your svn client. Details on how to acheive
that are explained at :
http://developer.berlios.de/svn/?group_id=1408

Release 3.9 should come anytime soon as we introduced lately a bunch of new
features and bug fix.
The list of changes is in Versions.txt at the root of the repo.

I personally suggest for you to use the stable release if you only need to
use it as a user and the svn checkout if you need to develop your own stuffs
in it.

Cheers,
Fabrice

----- Original Message ----- 
From: "Pander" <pander at users.sourceforge.net>
To: <izpack-users at berlios.de>
Sent: Tuesday, June 13, 2006 10:58 AM
Subject: Re: [izpack-users] Fix for Automatic Installation ProcessPanel


> Hi all,
>
> What is the best place to get the latest stable release, is that the
> link on the site or better to use the CVS version where things get fixed
> as the issue below? Are there any releases planned anyway? does IzPack
> have a roadmap for this?
>
> Thanks,
>
> Pander
>
>
> On Tue, 2006-06-13 at 09:03 +0200, Miraodb wrote:
> > Hi David,
> >
> > You're completely right about the fact that it's wrong to have
> > ProcessPanelAutomationPanel.
> > It should indeed be ProcessPanelAutomationHelper.
> > We merged to svn repo a few days ago and i checked the build.xml which
is
> > fine. You can just do an update from it or change it locally on your
system.
> >
> > If you could do a brand new checkout from svn it would give you the
latest
> > version of everything (beside what you might have added obviously !).
> >
> > I also noticed a while back but never had time to fiw it, that during an
> > automated installation (which i DO use :-) ), the shortcuts aren't
created !
> > I never really understood why. Any idea ????
> >
> > Cheers,
> > Fabrice
> > ----- Original Message ----- 
> > From: "David Ferrero" <david.ferrero at zion.com>
> > To: <izpack-developers at lists.berlios.de>
> > Cc: <izpack-users at berlios.de>
> > Sent: Monday, June 12, 2006 11:08 PM
> > Subject: [izpack-users] Fix for Automatic Installation ProcessPanel
> >
> >
> > > FYI:
> > >
> > > in the 3.8.0 build.xml I pulled from CVS last week I found this:
> > >          <build-panel name="ProcessPanel">
> > >              <include name="com/izforge/izpack/panels/
> > > ProcessPanel.java" />
> > >              <include name="com/izforge/izpack/panels/
> > > ProcessPanelAutomationPanel.java" />
> > >          </build-panel>
> > >
> > > ProcessPanelAutomationPanel.java doesn't exist...
> > >
> > > I think it should be:
> > >          <build-panel name="ProcessPanel">
> > >              <include name="com/izforge/izpack/panels/
> > > ProcessPanel.java" />
> > >              <include name="com/izforge/izpack/panels/
> > > ProcessPanelAutomationHelper.java" />
> > >          </build-panel>
> > >
> > > Using CVS log and diff, I pinpointed the error was introduced in
> > > build.xml commit 1.94 back in May 2005.
> > > cvs diff -u -r 1.93 -r 1.94 build.xml
> > >
> > > -  $Id: build.xml,v 1.93 2005/05/01 21:37:53 mchenryc Exp $
> > > +  $Id: build.xml,v 1.94 2005/05/02 06:17:16 mchenryc Exp $
> > > ..
> > >           <build-panel name="ProcessPanel">
> > >               <include name="com/izforge/izpack/panels/
> > > ProcessPanel.java"/>
> > > +            <include name="com/izforge/izpack/panels/
> > > ProcessPanelAutomationPanel.java"/>
> > >           </build-panel>
> > >
> > >
> > > This was preventing the Automated installer from running my Process
> > > jobs...
> > > Am I the only one doing ProcessPanel in the Automated installer?
> > > Seems like it's been broke over a year now...
> > >
> > > Any comments are welcome...
> > >
> > >
> > > Regards,
> > > David
> > >
> > > PS:
> > >
> > > Here's my local change as shown below:
> > >
> > > cvs diff -u build.xml
> > > Index: build.xml
> > > ===================================================================
> > > RCS file: /cvsroot/izpack/izpack-src/src/build.xml,v
> > > retrieving revision 1.129
> > > diff -u -u -r1.129 build.xml
> > > --- build.xml   8 Apr 2006 10:34:13 -0000       1.129
> > > +++ build.xml   12 Jun 2006 20:46:00 -0000
> > > @@ -607,7 +607,7 @@
> > >           </build-panel>
> > >           <build-panel name="ProcessPanel">
> > >               <include name="com/izforge/izpack/panels/
> > > ProcessPanel.java" />
> > > -            <include name="com/izforge/izpack/panels/
> > > ProcessPanelAutomationPanel.java" />
> > > +            <include name="com/izforge/izpack/panels/
> > > ProcessPanelAutomationHelper.java" />
> > >           </build-panel>
> > >           <build-panel name="SudoPanel">
> > >               <include name="com/izforge/izpack/panels/
> > > SudoPanel.java" />
> > >
> > >
> > > On Jun 9, 2006, at 3:06 AM, Miraodb wrote:
> > >
> > > > Hi David,
> > > >
> > > > I have the process panel in an automated install and it works fine.
> > > > Could you post your config files please. We'll check it out.
> > > >
> > > > Cheers,
> > > > Fabrice
> > > >
> > > > ----- Original Message -----
> > > > From: "David Ferrero" <david.ferrero at zion.com>
> > > > To: <izpack-users at berlios.de>
> > > > Sent: Thursday, June 08, 2006 10:07 PM
> > > > Subject: Re: [izpack-users] automatic installation doesn't run
> > > > process panel
> > > > ?
> > > >
> > > >
> > > >> Hi Folks:
> > > >>
> > > >> I never saw an answer to this problem from January 2005. Does this
> > > >> mean that process panel doesn't run for automated installations?
How
> > > >> can this be solved?
> > > >>
> > > >> - David
> > >
> > >
> >
> > _______________________________________________
> > izpack-users mailing list
> > izpack-users at lists.berlios.de
> > http://lists.berlios.de/mailman/listinfo/izpack-users
>
> _______________________________________________
> izpack-users mailing list
> izpack-users at lists.berlios.de
> http://lists.berlios.de/mailman/listinfo/izpack-users
>




More information about the izpack-users mailing list