Re: [Pharo-project] [ANN] NBOpenGL update

2013-01-05 Thread Dan Corneanu
Hello,
I have loaded the latest NBOpenGL into  Pharo 1.4 but when I try
GLTTRenderingDemo new openInWorld.
I get a
SmallInteger(Object)doesNotUnderstand: #|

What am I missing/doing wrong?

Best regards,
Dan.

P.S.
There is also a typo in:
NBMacGLContextDriver  supportsCurrentPlatform
NativeBoostConstants mac32PlaformId I think it should be
NativeBoostConstants mac32PlatformId



On Fri, Apr 6, 2012 at 3:31 PM, Igor Stasenko siguc...@gmail.com wrote:

 Hi there,

 for those, who interested, i updated a NBOpenGL configuration.

 Changes are:

  - updated GL API to most recent available (taken directly from opengl
 specs). Now there is about 300 more methods to explore :)
  - finally dealt with win32 support code and made it working again
  - fixed the GLX function prefix , which should be 'glX' not 'glx'

 To load it in 1.4 use:

 Gofer new
   squeaksource: 'NBOpenGL';
   package: 'ConfigurationOfNBOpenGL';
   load.


 and then

 (ConfigurationOfNBOpenGL project version: '1.0.2') load

 I did not tested the update thoroughly.. so i would appreciate if
 people will try it out and tell how it goes.


 --
 Best regards,
 Igor Stasenko.




Re: [Pharo-project] [ANN] NBOpenGL update

2013-01-05 Thread Dan Corneanu
Ok, I have fixed those problems but now I stumbled on other problems.
If I load the latest version
ConfigurationOfNBOpenGL project lastVersion load.
When I try to run the demo I get a SubscriptOutOfBounds:2083 exception at
NBOpenGLAPIBaseemitCall: generator:

If I load version 1.0.2
(ConfigurationOfNBOpenGL project version: '1.0.2') load.
and try the demo I get
'Error: Frame buffer is incomplete: GL_FRAMEBUFFER_UNSUPPORTED'
in
NBGLFrameBuffercheckStatus

By the way, I am on a windows machine.


On Sat, Jan 5, 2013 at 9:34 PM, Igor Stasenko siguc...@gmail.com wrote:

 On 5 January 2013 11:29, Dan Corneanu dan.corne...@gmail.com wrote:
  Hello,
  I have loaded the latest NBOpenGL into  Pharo 1.4 but when I try
  GLTTRenderingDemo new openInWorld.
  I get a
  SmallInteger(Object)doesNotUnderstand: #|
 
  What am I missing/doing wrong?
 
 this is an extension method, which looks like i missed when splitting
 package..
 it is synonym for #bitOr:

  Best regards,
  Dan.
 
  P.S.
  There is also a typo in:
  NBMacGLContextDriver  supportsCurrentPlatform
  NativeBoostConstants mac32PlaformId I think it should be
  NativeBoostConstants mac32PlatformId
 
 yes.
 Should fix it :)

 
 
  On Fri, Apr 6, 2012 at 3:31 PM, Igor Stasenko siguc...@gmail.com
 wrote:
 
  Hi there,
 
  for those, who interested, i updated a NBOpenGL configuration.
 
  Changes are:
 
   - updated GL API to most recent available (taken directly from opengl
  specs). Now there is about 300 more methods to explore :)
   - finally dealt with win32 support code and made it working again
   - fixed the GLX function prefix , which should be 'glX' not 'glx'
 
  To load it in 1.4 use:
 
  Gofer new
squeaksource: 'NBOpenGL';
package: 'ConfigurationOfNBOpenGL';
load.
 
 
  and then
 
  (ConfigurationOfNBOpenGL project version: '1.0.2') load
 
  I did not tested the update thoroughly.. so i would appreciate if
  people will try it out and tell how it goes.
 
 
  --
  Best regards,
  Igor Stasenko.
 
 



 --
 Best regards,
 Igor Stasenko.




Re: [Pharo-project] [ANN] NBOpenGL update

2013-01-05 Thread Dan Corneanu
thx, for the help. I finally got it working after I have updated my display
driver.



On Sat, Jan 5, 2013 at 11:17 PM, Igor Stasenko siguc...@gmail.com wrote:

 On 5 January 2013 21:41, Dan Corneanu dan.corne...@gmail.com wrote:
  Ok, I have fixed those problems but now I stumbled on other problems.
  If I load the latest version
  ConfigurationOfNBOpenGL project lastVersion load.
  When I try to run the demo I get a SubscriptOutOfBounds:2083 exception at
  NBOpenGLAPIBaseemitCall: generator:
 
 this looks strange. there should be no out of bound indexes by
 construction,
 since during automatic code generation,  every unique GL function has
 assigned number and NBOpenGLAPIBase creates
 a variable-size object to hold all of them.

  If I load version 1.0.2
  (ConfigurationOfNBOpenGL project version: '1.0.2') load.
  and try the demo I get
  'Error: Frame buffer is incomplete: GL_FRAMEBUFFER_UNSUPPORTED'
  in

 this message says for itself.
 sounds like your video driver does not supports the framebuffer in
 configuration which
 i intended to use.

  NBGLFrameBuffercheckStatus
 
  By the way, I am on a windows machine.
 
 
  On Sat, Jan 5, 2013 at 9:34 PM, Igor Stasenko siguc...@gmail.com
 wrote:
 
  On 5 January 2013 11:29, Dan Corneanu dan.corne...@gmail.com wrote:
   Hello,
   I have loaded the latest NBOpenGL into  Pharo 1.4 but when I try
   GLTTRenderingDemo new openInWorld.
   I get a
   SmallInteger(Object)doesNotUnderstand: #|
  
   What am I missing/doing wrong?
  
  this is an extension method, which looks like i missed when splitting
  package..
  it is synonym for #bitOr:
 
   Best regards,
   Dan.
  
   P.S.
   There is also a typo in:
   NBMacGLContextDriver  supportsCurrentPlatform
   NativeBoostConstants mac32PlaformId I think it should be
   NativeBoostConstants mac32PlatformId
  
  yes.
  Should fix it :)
 
  
  
   On Fri, Apr 6, 2012 at 3:31 PM, Igor Stasenko siguc...@gmail.com
   wrote:
  
   Hi there,
  
   for those, who interested, i updated a NBOpenGL configuration.
  
   Changes are:
  
- updated GL API to most recent available (taken directly from
 opengl
   specs). Now there is about 300 more methods to explore :)
- finally dealt with win32 support code and made it working again
- fixed the GLX function prefix , which should be 'glX' not 'glx'
  
   To load it in 1.4 use:
  
   Gofer new
 squeaksource: 'NBOpenGL';
 package: 'ConfigurationOfNBOpenGL';
 load.
  
  
   and then
  
   (ConfigurationOfNBOpenGL project version: '1.0.2') load
  
   I did not tested the update thoroughly.. so i would appreciate if
   people will try it out and tell how it goes.
  
  
   --
   Best regards,
   Igor Stasenko.
  
  
 
 
 
  --
  Best regards,
  Igor Stasenko.
 
 



 --
 Best regards,
 Igor Stasenko.




Re: [Pharo-project] GSoC: ARM jitter for Squeak VM

2012-11-24 Thread Dan Corneanu
Bruce O'Neel bruce.oneel@... writes:

 
 Hi,
 
 The CogVM runs fine on my Android ARM phone, so, there can't
 be some giant problem with CogVM on ARM.
 
 http://code.google.com/p/squeakvm-tablet/wiki/JenkinsBuilds
 
 cheers

As far as I know, both of them have no JIT support. 
Indeed the VM can be compiled for ARM, I already did that. 
Nevertheless, I am interested in seeing JIT for ARM.

Best regards,
Dan.




Re: [Pharo-project] Pharo 2.0 on Raspberry Pi ?

2012-11-24 Thread Dan Corneanu
 On 23 Nov 2012, at 13:57, Sven Van Caekenberghe sven@... wrote:
 
  Hi,
  
  Does anyone know how to make Pharo 2.0 run on a Raspberry Pi ?
  

The out of the box VM is rather old. I have recompiled the stack VM from the 
latest source tarball http://www.squeakvm.org/unix/release/Squeak-4.10.2.2614-
src.tar.gz and it seems the Pharo 1.4 image is happy with it. 

As soon as I get back I'll test the 2.0 image too and keep you posted.





Re: [Pharo-project] Pharo 2.0 on Raspberry Pi ?

2012-11-24 Thread Dan Corneanu
did you have a look into build/CMakeFiles ? there is an error and an output
log maybe you find some useful information there.
Did you install the dev libs for OpenGL?

sudo apt-get install libgl1-mesa-dev libglu1-mesa-dev

keep me posted, Dan.


On Sat, Nov 24, 2012 at 5:56 PM, Sven Van Caekenberghe s...@stfx.eu wrote:

 Hi Dan,

 On 24 Nov 2012, at 14:15, Sven Van Caekenberghe s...@stfx.eu wrote:

  On 24 Nov 2012, at 11:44, Dan Corneanu dan.corne...@gmail.com wrote:
 
  The out of the box VM is rather old. I have recompiled the stack VM
 from the
  latest source tarball
 http://www.squeakvm.org/unix/release/Squeak-4.10.2.2614-
  src.tar.gz and it seems the Pharo 1.4 image is happy with it.
 
  Thanks, Dan, I will have a look at building the VM from that archive.

 Following the standard instructions (no config customization), I managed
 to build a vm !

 For some reason, no X11 support was built, but I now have

 -rwxr-xr-x  1 pi pi   9349 Nov 24 14:15 so.vm-display-null
 -rwxr-xr-x  1 pi pi   6278 Nov 24 14:15 so.vm-sound-null
 -rwxr-xr-x  1 pi pi 894438 Nov 24 14:15 squeakvm

 and I can run headless Pharo 1.4 doing HTTP and stuff.

 I guess I'll have to study the build process and options a bit more.

 I would like to have at least X11 support, but reducing the builtin
 plugins to have a smaller executable interests me too.

 Thanks again for the help.

 Sven

 --
 Sven Van Caekenberghe
 http://stfx.eu
 Smalltalk is the Red Pill





Re: [Pharo-project] Pharo 2.0 on Raspberry Pi ?

2012-11-24 Thread Dan Corneanu

  The out of the box VM is rather old. I have recompiled the stack VM from
 the
  latest source tarball
 http://www.squeakvm.org/unix/release/Squeak-4.10.2.2614-
  src.tar.gz and it seems the Pharo 1.4 image is happy with it.

 Just a clarification of terminology - this is the standard interpreter VM,
 as opposed to a stack VM that provides the additional object memory and
 interpreter features required for the Cog jit on platforms that support it.

 Dave

 Yes, you are right. Sorry for the confusion I have created.


Re: [Pharo-project] GSoC: ARM jitter for Squeak VM

2012-11-23 Thread Dan Corneanu
Hi,
I would really like to have a CogVM for ARM. I am a rookie in this field but I 
own a raspberry pi and would love to help in any way possible to move this 
forward. Testing maybe ?





Re: [Pharo-project] OldSocket removal

2008-11-13 Thread Dan Corneanu
I'll have a look.

On Wed, Nov 12, 2008 at 10:32 AM, Damien Cassou [EMAIL PROTECTED] wrote:
 Hi Dan,

 On Sat, Oct 25, 2008 at 8:36 PM, Dan Corneanu [EMAIL PROTECTED] wrote:
 I've played with the change sets from
 http://www.smalltalkconsulting.com/html/OTNotes4.html.
 I've made some changes to the tests, to fit the current Socket and
 NetNameResolver implementations. If it is of any help, I can put up a
 mcz so others can have a look to the code.

 John released a new changeset:
 http://code.google.com/p/pharo/issues/detail?id=275. However, unit
 tests does not run due to missing NetNameResolver
 classinitializeNetworkIfFail:. I think you removed that method.
 Could you please check the changeset, make the necessary changes,
 verify that all unit tests run and commit to PharoInbox?

 Also, please update the issue on google code according to what you do.

 Bye


 --
 Damien Cassou
 http://damiencassou.seasidehosting.st

 ___
 Pharo-project mailing list
 Pharo-project@lists.gforge.inria.fr
 http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


___
Pharo-project mailing list
Pharo-project@lists.gforge.inria.fr
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


Re: [Pharo-project] Pharo 1.0 release plan

2008-11-04 Thread Dan Corneanu
 ok, then, let's take Pharo-Core and Pharo.
+1

___
Pharo-project mailing list
Pharo-project@lists.gforge.inria.fr
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


Re: [Pharo-project] OldSocket removal

2008-10-25 Thread Dan Corneanu
I have uploaded Network-DanCorneanu.50.mcz to pharoInbox. It fixes
what I think it was a copy-paste error in SocketdiscardReceivedData.

___
Pharo-project mailing list
Pharo-project@lists.gforge.inria.fr
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


Re: [Pharo-project] We will not accept any changes using initials anymore

2008-10-25 Thread Dan Corneanu
On Sat, Oct 25, 2008 at 8:08 PM, Stéphane Ducasse
[EMAIL PROTECTED] wrote:
 ascii only no space


Maybe we should state that too on page
http://code.google.com/p/pharo/wiki/HowToContribute

___
Pharo-project mailing list
Pharo-project@lists.gforge.inria.fr
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


Re: [Pharo-project] OldSocket removal

2008-10-25 Thread Dan Corneanu
On Sat, Oct 25, 2008 at 10:45 PM, Stéphane Ducasse
[EMAIL PROTECTED] wrote:
 I would really that other get a chances to review what you are doing.
 So I will harvest up to dc 49 and after wait that you get some other eyes to
 check what you are doing.
 Ok?

Sure.
Had I been directed sooner to PharoTaskForces, I would have not messed
up the PharoInbox and OB repositories.

Regarding the license agreement:
I'll send a signed copy.

Regarding the socket tests:
Maybe it's better to wait for John to upload the code to a monticello
repository. After all I have just filled the changesets in my image
and fixed some constants.

___
Pharo-project mailing list
Pharo-project@lists.gforge.inria.fr
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


Re: [Pharo-project] OB annotation icons

2008-10-22 Thread Dan Corneanu
Wouldn't be enough for deprecated methods to just use a strikethrough
font style?

___
Pharo-project mailing list
Pharo-project@lists.gforge.inria.fr
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


Re: [Pharo-project] OldSocket removal

2008-10-22 Thread Dan Corneanu
On Tue, Oct 21, 2008 at 4:17 PM, Dan Corneanu [EMAIL PROTECTED] wrote:
 While playing with the OldSocket classclientServerTestUDP method I
 found out that a call to SocketdiscardReceivedData is blocking and
 this is not what happened with OldSocketdiscardReceivedData. An
 extra test for available data is missing.

I have a very small fix and test for the error mentioned above.
Is it OK to upload new versions of Network and NetworkTests to PharoInbox ?

___
Pharo-project mailing list
Pharo-project@lists.gforge.inria.fr
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


[Pharo-project] OB annotation icons

2008-10-21 Thread Dan Corneanu
Does OB have any icon associated with deprecated methods?

___
Pharo-project mailing list
Pharo-project@lists.gforge.inria.fr
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


Re: [Pharo-project] OldSocket removal

2008-10-21 Thread Dan Corneanu
Among the methods in the examples category of OldSocket class, only
clientServerTestUDP and clientServerTestUDP2 can be run without human
intervention. So, only these two are candidates for unit tests, though
I do not see what would be a valid assert for them.

Would it be OK to move the other methods to Socket class and test(by
hand) that all of them are still working ?

On Tue, Oct 21, 2008 at 10:14 AM, Damien Cassou [EMAIL PROTECTED] wrote:
 I've started working on OldSocket removal:
 http://code.google.com/p/pharo/issues/detail?id=275. I need someone to
 review my first changes.

 --
 Damien Cassou
 Peter von der Ahé: «I'm beginning to see why Gilad wished us good
 luck». (http://blogs.sun.com/ahe/entry/override_snafu)

 ___
 Pharo-project mailing list
 Pharo-project@lists.gforge.inria.fr
 http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project



___
Pharo-project mailing list
Pharo-project@lists.gforge.inria.fr
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


Re: [Pharo-project] Re: Universe Browser - search

2008-10-21 Thread Dan Corneanu
I have uploaded SLICE-UniverseSearchFix-Dan Corneanu.2.mcz to
http://source.wiresong.ca/ob.
I hope it was the right thing to do.

___
Pharo-project mailing list
Pharo-project@lists.gforge.inria.fr
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


Re: [Pharo-project] Re: Universe Browser - search

2008-10-20 Thread Dan Corneanu
Here is a change set with the proper fix for the issue.
Do you think it is possible that someone reviews it before you include
it in the image?
This time I think I got it right. I've also added 2 unit tests.
Nevertheless, I would be more confident if someone reviews it :)

P.S.
Do you think it would be better to make a Monticello SLICE and publish
it to PharoInbox SqueakSource repository?


Univers Search Fix.3.cs
Description: Binary data
___
Pharo-project mailing list
Pharo-project@lists.gforge.inria.fr
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


Re: [Pharo-project] Re: Universe Browser - search

2008-10-20 Thread Dan Corneanu
On Mon, Oct 20, 2008 at 10:09 PM, Damien Cassou [EMAIL PROTECTED] wrote:
 On Mon, Oct 20, 2008 at 8:57 PM, Dan Corneanu [EMAIL PROTECTED] wrote:
 Here is a change set with the proper fix for the issue.

 What was the problem with the other one?


If you search for a package whose category is already selected, the UI
will not be properly updated.

Other subclasses of OBNode implement a domain related
ancestrySelector, like isDescendantOfClass: or
isDescendantOfClassCat:. So, I have also implemented methods
isDescendantOfUniverse:, isDescendantOfCategory:and
isDescendantOfPackage:.

P.S.
Even the last changeset has a flaw, the method OBColumnPanelhopTo:
aNode should use
column refreshAndSignal: true instead column refreshAnd or else the
right most panel in the browser will not be properly updated.

___
Pharo-project mailing list
Pharo-project@lists.gforge.inria.fr
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


Re: [Pharo-project] New pharo dev

2008-10-18 Thread Dan Corneanu
Searching in OB Browser does not work.
Method OBEnrichedMercuryQuery classselectClassForQuery: rawQuery sends
startsWith: to a ByteString. It should be beginsWith:

I suppose this is the result of a refactoring or something.

On Fri, Oct 17, 2008 at 5:15 PM, Damien Cassou [EMAIL PROTECTED] wrote:
 New pharo-dev available at http://code.google.com/p/pharo/wiki/Downloads?tm=2.

 It only contains the package you want
 (http://code.google.com/p/pharo/wiki/Packages).

 --
 Damien Cassou
 Peter von der Ahé: «I'm beginning to see why Gilad wished us good
 luck». (http://blogs.sun.com/ahe/entry/override_snafu)

 ___
 Pharo-project mailing list
 Pharo-project@lists.gforge.inria.fr
 http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project



___
Pharo-project mailing list
Pharo-project@lists.gforge.inria.fr
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


Re: [Pharo-project] Re: Universe Browser - search

2008-10-14 Thread Dan Corneanu
I use pharo0.1-10082dev08.10.1
You are right, it works for the dev image with no updates.
If I load the latest code updates it does not work anymore.

World - Pharo - Update code from server

On Sun, Oct 12, 2008 at 1:48 PM, Damien Cassou [EMAIL PROTECTED] wrote:
 On Fri, Oct 10, 2008 at 10:38 PM, Dan Corneanu [EMAIL PROTECTED] wrote:
 but completion is not working in the dev image :) Has the
 shortcut changed? I use CTRL-Space.

 It should work. What image are you using exactly? I use TAB instead of
 CTRL-Space, but both should work.


 --
 Damien Cassou
 Peter von der Ahé: «I'm beginning to see why Gilad wished us good
 luck». (http://blogs.sun.com/ahe/entry/override_snafu)

 ___
 Pharo-project mailing list
 Pharo-project@lists.gforge.inria.fr
 http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project



___
Pharo-project mailing list
Pharo-project@lists.gforge.inria.fr
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


Re: [Pharo-project] Re: Universe Browser - search

2008-10-14 Thread Dan Corneanu
I've put up a small change set with fixes as suggested in
http://bugs.squeak.org/view.php?id=6798.

I have tested the change set in pharo0.1-10082dev08.10.1 and it works OK.
A comment on the OBNodeisDescendentOf: method would have spared me a
lot of effort.
I had a hard time finding out that self isDescendentOf: self should return true.

Best regards,
Dan Corneanu.


Univers Search Fix.1.cs
Description: Binary data
___
Pharo-project mailing list
Pharo-project@lists.gforge.inria.fr
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


Re: [Pharo-project] Re: Universe Browser - search

2008-10-10 Thread Dan Corneanu
I would too, but completion is not working in the dev image :) Has the
shortcut changed? I use CTRL-Space.

On Tue, Oct 7, 2008 at 11:40 AM, Simon Kirk [EMAIL PROTECTED] wrote:
 Sorry Damian: I would, but I'm afraid I don't understand what the fix
 actually is as described in that mantis bug.

 Cheers,
 Simon

 On 7 Oct 2008, at 06:44, Damien Cassou wrote:

 On Mon, Oct 6, 2008 at 9:40 PM, Dan Corneanu [EMAIL PROTECTED]
 wrote:

 It has a search, but the last time I tried it it didn't actually find
 anything for any given string (perhaps I just had a bad experience)

 Neither did I :)

 Would you mind trying the following fix and tell me if it works?
 http://bugs.squeak.org/view.php?id=6798

 --
 Damien Cassou
 Peter von der Ahé: «I'm beginning to see why Gilad wished us good
 luck». (http://blogs.sun.com/ahe/entry/override_snafu)
 ___
 Pharo-project mailing list
 Pharo-project@lists.gforge.inria.fr
 http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project



 **
 This email is from Pinesoft Limited. Its contents are confidential to the
 intended recipient(s) at the email address(es) to which it has been
 addressed. It may not be disclosed to or used by anyone other than the
 addressee(s), nor may it be copied in anyway. If received in error, please
 contact the sender, then delete it from your system. Although this email and
 attachments are believed to be free of virus, or any other defect which
 might affect any computer or IT system into which they are received and
 opened, it is the responsibility of the recipient to ensure that they are
 virus free and no responsibility is accepted by Pinesoft for any loss or
 damage arising in any way from receipt or use thereof.
 ***


 Pinesoft Limited are registered in England, Registered number: 2914825.
 Registered office: 266-268 High Street, Waltham Cross, Herts, EN8 7EA

 ___
 Pharo-project mailing list
 Pharo-project@lists.gforge.inria.fr
 http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


___
Pharo-project mailing list
Pharo-project@lists.gforge.inria.fr
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


Re: [Pharo-project] Re: Universe Browser - search

2008-10-06 Thread Dan Corneanu
On Fri, Oct 3, 2008 at 10:44 AM, Simon Kirk [EMAIL PROTECTED] wrote:
 It has a search, but the last time I tried it it didn't actually find
 anything for any given string (perhaps I just had a bad experience)

Neither did I :)

___
Pharo-project mailing list
Pharo-project@lists.gforge.inria.fr
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


[Pharo-project] Re: Universe Browser - search

2008-10-02 Thread Dan Corneanu
Just made an update and seen the Univers Browser (enhanced). It seems
to have what I wanted :)

On Thu, Oct 2, 2008 at 11:46 PM, Dan Corneanu [EMAIL PROTECTED] wrote:
 Hi,
 I know it is not decided yet what will pharo use for loading code, but
 I would really appreciate a search button in the Univers Browser.
 I always find myself lost in the tree.


___
Pharo-project mailing list
Pharo-project@lists.gforge.inria.fr
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


[Pharo-project] SqueakMap Packae Loader - nil object

2008-09-29 Thread Dan Corneanu
Hi,
there is an exception when trying to open SqueakMap Package Loader in
the latest pharo/pharo-dev images with the latests updates.
The object instance variable of SMSqueakMap is nil.
I'm not sure if I should have put an issue on the tracker or not.

Best regards,
Dan Corneanu.

___
Pharo-project mailing list
Pharo-project@lists.gforge.inria.fr
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project