Author reset at each image startup issue 1134

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

Author reset at each image startup issue 1134

Miguel Cobá
Issue 1134: Repeated Author Initials Inquiry

Confirmed.

Tracked down to

ProjectLauncher>>startUp
        World ifNotNil: [World install].
        Author fullName: ''.
        ^self startUpAfterLogin.

That is invoked on image startUp by

AutoStart>>startUp: resuming

that itself uses the class var InstalledLaunchers that contains:

ProjectLauncher.

So at each image startup the fullName is reset to ''.

What should we do. What is the purpouse of ProjectLauncher startUp.

The versions windows of ProjectLauncher>>startUp shows:

markus.denker 8/18/2008 21:35 ProjectLauncher startUp {running}

Should the line:

Author fullName: ''.

be deleted from ProjectLauncher startUp

or should ProjectLauncher be deleted from InstalledLaunchers on
AutoStart?
--
Miguel Cobá
http://miguel.leugim.com.mx


_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: Author reset at each image startup issue 1134

johnmci
Frankly we should consider if the ProjectLauncher stuff should run at  
all at startup
Go look at what it does then consider
        AutoStart deinstall.
and decide if Pharo users/developers need all that to run everytime  
they start the image.

If you do, then why you should manually configure it, a perference  
perhaps, because
likely you are the 1% that has special needs.


On 8-Sep-09, at 2:32 PM, Miguel Enrique Cobá Martinez wrote:

> Issue 1134: Repeated Author Initials Inquiry
>
> Confirmed.
>
> Tracked down to
>
> ProjectLauncher>>startUp
> World ifNotNil: [World install].
> Author fullName: ''.
> ^self startUpAfterLogin.
>
> That is invoked on image startUp by
>
> AutoStart>>startUp: resuming
>
> that itself uses the class var InstalledLaunchers that contains:
>
> ProjectLauncher.
>
> So at each image startup the fullName is reset to ''.
>
> What should we do. What is the purpouse of ProjectLauncher startUp.
>
> The versions windows of ProjectLauncher>>startUp shows:
>
> markus.denker 8/18/2008 21:35 ProjectLauncher startUp {running}
>
> Should the line:
>
> Author fullName: ''.
>
> be deleted from ProjectLauncher startUp
>
> or should ProjectLauncher be deleted from InstalledLaunchers on
> AutoStart?
> --
> Miguel Cobá
> http://miguel.leugim.com.mx
>
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

--
=
=
=
========================================================================
John M. McIntosh <[hidden email]>   Twitter:  
squeaker68882
Corporate Smalltalk Consulting Ltd.  http://www.smalltalkconsulting.com
=
=
=
========================================================================





_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: Author reset at each image startup issue 1134

Stéphane Ducasse
john
is not not that calss that load .st from the command line?
I have to check.

Stef

On Sep 8, 2009, at 3:40 PM, John M McIntosh wrote:

> Frankly we should consider if the ProjectLauncher stuff should run at
> all at startup
> Go look at what it does then consider
> AutoStart deinstall.
> and decide if Pharo users/developers need all that to run everytime
> they start the image.
>
> If you do, then why you should manually configure it, a perference
> perhaps, because
> likely you are the 1% that has special needs.
>
>
> On 8-Sep-09, at 2:32 PM, Miguel Enrique Cobá Martinez wrote:
>
>> Issue 1134: Repeated Author Initials Inquiry
>>
>> Confirmed.
>>
>> Tracked down to
>>
>> ProjectLauncher>>startUp
>> World ifNotNil: [World install].
>> Author fullName: ''.
>> ^self startUpAfterLogin.
>>
>> That is invoked on image startUp by
>>
>> AutoStart>>startUp: resuming
>>
>> that itself uses the class var InstalledLaunchers that contains:
>>
>> ProjectLauncher.
>>
>> So at each image startup the fullName is reset to ''.
>>
>> What should we do. What is the purpouse of ProjectLauncher startUp.
>>
>> The versions windows of ProjectLauncher>>startUp shows:
>>
>> markus.denker 8/18/2008 21:35 ProjectLauncher startUp {running}
>>
>> Should the line:
>>
>> Author fullName: ''.
>>
>> be deleted from ProjectLauncher startUp
>>
>> or should ProjectLauncher be deleted from InstalledLaunchers on
>> AutoStart?
>> --  
>> Miguel Cobá
>> http://miguel.leugim.com.mx
>>
>>
>> _______________________________________________
>> Pharo-project mailing list
>> [hidden email]
>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
> --
> =
> =
> =
> =
> =
> ======================================================================
> John M. McIntosh <[hidden email]>   Twitter:
> squeaker68882
> Corporate Smalltalk Consulting Ltd.  http://
> www.smalltalkconsulting.com
> =
> =
> =
> =
> =
> ======================================================================
>
>
>
>
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: Author reset at each image startup issue 1134

Gary Chambers-4
In reply to this post by johnmci
We always turn off the Projectlauncher start up in order to get (some)
sanity on command-line options (still need an extra "-" to bypass though).

Regards, Gary

----- Original Message -----
From: "John M McIntosh" <[hidden email]>
To: <[hidden email]>
Sent: Tuesday, September 08, 2009 2:40 PM
Subject: Re: [Pharo-project] Author reset at each image startup issue 1134


Frankly we should consider if the ProjectLauncher stuff should run at
all at startup
Go look at what it does then consider
AutoStart deinstall.
and decide if Pharo users/developers need all that to run everytime
they start the image.

If you do, then why you should manually configure it, a perference
perhaps, because
likely you are the 1% that has special needs.


On 8-Sep-09, at 2:32 PM, Miguel Enrique Cobá Martinez wrote:

> Issue 1134: Repeated Author Initials Inquiry
>
> Confirmed.
>
> Tracked down to
>
> ProjectLauncher>>startUp
> World ifNotNil: [World install].
> Author fullName: ''.
> ^self startUpAfterLogin.
>
> That is invoked on image startUp by
>
> AutoStart>>startUp: resuming
>
> that itself uses the class var InstalledLaunchers that contains:
>
> ProjectLauncher.
>
> So at each image startup the fullName is reset to ''.
>
> What should we do. What is the purpouse of ProjectLauncher startUp.
>
> The versions windows of ProjectLauncher>>startUp shows:
>
> markus.denker 8/18/2008 21:35 ProjectLauncher startUp {running}
>
> Should the line:
>
> Author fullName: ''.
>
> be deleted from ProjectLauncher startUp
>
> or should ProjectLauncher be deleted from InstalledLaunchers on
> AutoStart?
> --
> Miguel Cobá
> http://miguel.leugim.com.mx
>
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

--
=
=
=
========================================================================
John M. McIntosh <[hidden email]>   Twitter:
squeaker68882
Corporate Smalltalk Consulting Ltd.  http://www.smalltalkconsulting.com
=
=
=
========================================================================





_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project 


_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project