[7.7] Loading Aragon-Widgets causes dialog prompt

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

[7.7] Loading Aragon-Widgets causes dialog prompt

Boris Popov, DeepCove Labs (SNN)

1. Start clean visual.im

2. Load StoreForPostgreSQL

3. Load Aragon-Widgets

4. Attached dialog pops up (Do you want to add Root.Smalltalk.EnhancedGroupBoxSpec to the previously unchanged package, System-Name Spaces? OK to continue?)

 

Note, this does not happen in clean visual.im without Store loaded.

 

Regards,

 

-Boris

 

--

DeepCove Labs Ltd.

+1 (604) 689-0322

4th floor, 595 Howe Street

Vancouver, British Columbia

Canada V6C 2T5

http://tinyurl.com/r7uw4

 

PacNet Services (Europe) Ltd.

+353 (0)61 714-360

Shannon Airport House, SFZ

County Clare, Ireland

http://tinyurl.com/y952amr

 

CONFIDENTIALITY NOTICE

 

This email is intended only for the persons named in the message header. Unless otherwise indicated, it contains information that is private and confidential. If you have received it in error, please notify the sender and delete the entire message including any attachments.

 

Thank you.

 


_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc

77a.png (27K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: [7.7] Loading Aragon-Widgets causes dialog prompt

Samuel S. Shuster-2
Boris:

> 1. Start clean visual.im
> 2. Load StoreForPostgreSQL
> 3. Load Aragon-Widgets
> 4. Attached dialog pops up (Do you want to add Root.Smalltalk.EnhancedGroupBoxSpec to the previously unchanged package, System-Name Spaces? OK to continue?)
>  
> Note, this does not happen in clean visual.im without Store loaded.

This is expected behavior.

When Store is loaded, there is a setting on the "Default Package" setting page:  "Warn before updating an unchanged package"

By default this is turned on. Turning this setting off will avoid this notice.

                                And So It Goes
                                     Sames
______________________________________________________________________

Samuel S. Shuster [|]
VisualWorks Engineering, Store Project
Smalltalk Enables Success -- What Are YOU Using?





_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: [7.7] Loading Aragon-Widgets causes dialog prompt

Boris Popov, DeepCove Labs (SNN)
In reply to this post by Boris Popov, DeepCove Labs (SNN)
Re: [vwnc] [7.7] Loading Aragon-Widgets causes dialog prompt

Is this a normal behaviour for a package like this though? I hadn't looked in depth at what it was trying to do the System-Namespaces, but it seemed to me like it shouldn't have been attempting to modify an existing package to start with?

-Boris (via BlackBerry)

----- Original Message -----
From: Samuel S. Shuster <[hidden email]>
To: Boris Popov, DeepCove Labs (YVR)
Cc: [hidden email] <[hidden email]>
Sent: Sat Feb 13 15:10:05 2010
Subject: Re: [vwnc] [7.7] Loading Aragon-Widgets causes dialog prompt

Boris:

> 1. Start clean visual.im
> 2. Load StoreForPostgreSQL
> 3. Load Aragon-Widgets
> 4. Attached dialog pops up (Do you want to add Root.Smalltalk.EnhancedGroupBoxSpec to the previously unchanged package, System-Name Spaces? OK to continue?)

> Note, this does not happen in clean visual.im without Store loaded.

This is expected behavior.

When Store is loaded, there is a setting on the "Default Package" setting page:  "Warn before updating an unchanged package"

By default this is turned on. Turning this setting off will avoid this notice.

                                And So It Goes
                                     Sames
______________________________________________________________________

Samuel S. Shuster [|]
VisualWorks Engineering, Store Project
Smalltalk Enables Success -- What Are YOU Using?





_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: [7.7] Loading Aragon-Widgets causes dialog prompt

kobetic
In reply to this post by Boris Popov, DeepCove Labs (SNN)
I suspect the package has an Undeclared. When something loads with an Undeclared the package where the Undeclared lands is the one that owns the Undeclared namespace, i.e. System-Namespaces. Arguably Undeclareds should be put into the package which caused it, but fixing that might require messing with the Compiler API. A less complicated solution might be to throw Undeclareds into (none).

"Boris Popov, DeepCove Labs (YVR)"<[hidden email]> wrote:

> Date: February 13, 2010 6:12:10 PM
> From: "Boris Popov, DeepCove Labs (YVR)"<[hidden email]>
> To: <[hidden email]>
> Cc: [hidden email]
> Subject: Re: [vwnc] [7.7] Loading Aragon-Widgets causes dialog prompt
>
> Is this a normal behaviour for a package like this though? I hadn't looked in depth at what it was trying to do the System-Namespaces, but it seemed to me like it shouldn't have been attempting to modify an existing package to start with?
>
> -Boris (via BlackBerry)
>
> ----- Original Message -----
> From: Samuel S. Shuster <[hidden email]>
> To: Boris Popov, DeepCove Labs (YVR)
> Cc: [hidden email] <[hidden email]>
> Sent: Sat Feb 13 15:10:05 2010
> Subject: Re: [vwnc] [7.7] Loading Aragon-Widgets causes dialog prompt
>
> Boris:
>
> > 1. Start clean visual.im
> > 2. Load StoreForPostgreSQL
> > 3. Load Aragon-Widgets
> > 4. Attached dialog pops up (Do you want to add Root.Smalltalk.EnhancedGroupBoxSpec to the previously unchanged package, System-Name Spaces? OK to continue?)
> >  
> > Note, this does not happen in clean visual.im without Store loaded.
>
> This is expected behavior.
>
> When Store is loaded, there is a setting on the "Default Package" setting page:  "Warn before updating an unchanged package"
>
> By default this is turned on. Turning this setting off will avoid this notice.
>
>                                 And So It Goes
>                                      Sames
> ______________________________________________________________________
>
> Samuel S. Shuster [|]
> VisualWorks Engineering, Store Project
> Smalltalk Enables Success -- What Are YOU Using?
>
>
>
>
>
> _______________________________________________
> 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
Reply | Threaded
Open this post in threaded view
|

Re: [7.7] Loading Aragon-Widgets causes dialog prompt

Boris Popov, DeepCove Labs (SNN)
In reply to this post by Boris Popov, DeepCove Labs (SNN)
Re: [vwnc] [7.7] Loading Aragon-Widgets causes dialog prompt

Ah, that might be it. So any global undeclareds will end up in system-namespaces marking it dirty? I'll double check on Monday, but it'd be nice if they went elsewhere, like (none) or same package...

-Boris (via BlackBerry)

----- Original Message -----
From: [hidden email] <[hidden email]>
To: Boris Popov, DeepCove Labs (YVR)
Cc: [hidden email] <[hidden email]>; [hidden email] <[hidden email]>
Sent: Sat Feb 13 15:45:27 2010
Subject: Re: [vwnc] [7.7] Loading Aragon-Widgets causes dialog prompt

I suspect the package has an Undeclared. When something loads with an Undeclared the package where the Undeclared lands is the one that owns the Undeclared namespace, i.e. System-Namespaces. Arguably Undeclareds should be put into the package which caused it, but fixing that might require messing with the Compiler API. A less complicated solution might be to throw Undeclareds into (none).

"Boris Popov, DeepCove Labs (YVR)"<[hidden email]> wrote:
> Date: February 13, 2010 6:12:10 PM
> From: "Boris Popov, DeepCove Labs (YVR)"<[hidden email]>
> To: <[hidden email]>
> Cc: [hidden email]
> Subject: Re: [vwnc] [7.7] Loading Aragon-Widgets causes dialog prompt
>
> Is this a normal behaviour for a package like this though? I hadn't looked in depth at what it was trying to do the System-Namespaces, but it seemed to me like it shouldn't have been attempting to modify an existing package to start with?
>
> -Boris (via BlackBerry)
>
> ----- Original Message -----
> From: Samuel S. Shuster <[hidden email]>
> To: Boris Popov, DeepCove Labs (YVR)
> Cc: [hidden email] <[hidden email]>
> Sent: Sat Feb 13 15:10:05 2010
> Subject: Re: [vwnc] [7.7] Loading Aragon-Widgets causes dialog prompt
>
> Boris:
>
> > 1. Start clean visual.im
> > 2. Load StoreForPostgreSQL
> > 3. Load Aragon-Widgets
> > 4. Attached dialog pops up (Do you want to add Root.Smalltalk.EnhancedGroupBoxSpec to the previously unchanged package, System-Name Spaces? OK to continue?)
> > 
> > Note, this does not happen in clean visual.im without Store loaded.
>
> This is expected behavior.
>
> When Store is loaded, there is a setting on the "Default Package" setting page:  "Warn before updating an unchanged package"
>
> By default this is turned on. Turning this setting off will avoid this notice.
>
>                                 And So It Goes
>                                      Sames
> ______________________________________________________________________
>
> Samuel S. Shuster [|]
> VisualWorks Engineering, Store Project
> Smalltalk Enables Success -- What Are YOU Using?
>
>
>
>
>
> _______________________________________________
> 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
Reply | Threaded
Open this post in threaded view
|

Re: [7.7] Loading Aragon-Widgets causes dialog prompt

Georg Heeg
In reply to this post by kobetic
Martin,

In my humble opinion Undeclareds are undeclared. That means their
definitions should never put into any package. They should just vanish when
they are not needed anymore. Additionally they should never resolve. Under
normal circumstances Undeclareds are temporal declarations until the
definition is loaded. Under abnormal circumstances Undeclareds are bugs.

The name space Undeclared is just a helper place to identify that two
different variables with the same name refer to the same binding. This was
necessary in the times before name spaces and References were introduced.

Georg

Georg Heeg eK, Dortmund und Köthen, HR Dortmund A 12812
Tel. +49-3496-214328, Fax +49-3496-214712

> -----Ursprüngliche Nachricht-----
> Von: [hidden email] [mailto:[hidden email]] Im
> Auftrag von [hidden email]
> Gesendet: Sonntag, 14. Februar 2010 00:45
> An: Boris Popov, DeepCove Labs (YVR)
> Cc: [hidden email]; [hidden email]
> Betreff: Re: [vwnc] [7.7] Loading Aragon-Widgets causes dialog prompt
>
> I suspect the package has an Undeclared. When something loads with an
> Undeclared the package where the Undeclared lands is the one that owns the
> Undeclared namespace, i.e. System-Namespaces. Arguably Undeclareds
> should be put into the package which caused it, but fixing that might
require
> messing with the Compiler API. A less complicated solution might be to
throw

> Undeclareds into (none).
>
> "Boris Popov, DeepCove Labs (YVR)"<[hidden email]> wrote:
> > Date: February 13, 2010 6:12:10 PM
> > From: "Boris Popov, DeepCove Labs (YVR)"<[hidden email]>
> > To: <[hidden email]>
> > Cc: [hidden email]
> > Subject: Re: [vwnc] [7.7] Loading Aragon-Widgets causes dialog prompt
> >
> > Is this a normal behaviour for a package like this though? I hadn't
looked in

> depth at what it was trying to do the System-Namespaces, but it seemed to
> me like it shouldn't have been attempting to modify an existing package to
> start with?
> >
> > -Boris (via BlackBerry)
> >
> > ----- Original Message -----
> > From: Samuel S. Shuster <[hidden email]>
> > To: Boris Popov, DeepCove Labs (YVR)
> > Cc: [hidden email] <[hidden email]>
> > Sent: Sat Feb 13 15:10:05 2010
> > Subject: Re: [vwnc] [7.7] Loading Aragon-Widgets causes dialog prompt
> >
> > Boris:
> >
> > > 1. Start clean visual.im
> > > 2. Load StoreForPostgreSQL
> > > 3. Load Aragon-Widgets
> > > 4. Attached dialog pops up (Do you want to add
> > > Root.Smalltalk.EnhancedGroupBoxSpec to the previously unchanged
> > > package, System-Name Spaces? OK to continue?)
> > >
> > > Note, this does not happen in clean visual.im without Store loaded.
> >
> > This is expected behavior.
> >
> > When Store is loaded, there is a setting on the "Default Package"
setting
> page:  "Warn before updating an unchanged package"
> >
> > By default this is turned on. Turning this setting off will avoid this
notice.

> >
> >                                 And So It Goes
> >                                      Sames
> >
> _______________________________________________________________
> _______
> >
> > Samuel S. Shuster [|]
> > VisualWorks Engineering, Store Project Smalltalk Enables Success --
> > What Are YOU Using?
> >
> >
> >
> >
> >
> > _______________________________________________
> > 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