[Pharo-users] SIXX in Pharo 4.0?

2015-08-23 Thread H. Hirzel
Hello

I experience a load problem of SIXX * in Pharo 4.0.

https://github.com/mumez/SIXX/issues/2

The complaint is that a class

 ContextPart

is not found. Any suggestions/hints how to proceed?

Regards

Hannes

-
* Smalltalk Instance eXchange in XML
https://github.com/mumez/SIXX
http://www.mars.dti.ne.jp/~umejava/smalltalk/sixx/index.html



Re: [Pharo-users] issue with large file path on windows

2015-08-23 Thread Nicolai Hess
And If you want to review the changes:

https://github.com/nicolaihess/pharo-vm/compare/master...nicolaihess:win-long-filename


2015-08-23 13:44 GMT+02:00 Nicolai Hess :

> For those who had problems with pharo on windows and github based
> repositories,
> I built a windows vm with support for long paths:
>
>
> https://drive.google.com/file/d/0B8yEahnuIem2bmxwdzJuUXFxVGM/view?usp=sharing
>
>
> For browsing directories with large paths (FileList or Inspect),
> you may need one additional change in the image (But I am not really sure
> about that) :
>
> DiskStore>>initialize
> super initialize.
> maxFileNameLength := Smalltalk vm maxFilenameLength ifNil: [ 32767 ].
>
>
> please test and give feedback.
>
> This wasn't as easy as I thought, and I had to make some more changes
> for the file permissions (the stat-functions don't work for files with
> long paths).
> Please test other file/folder operations.
>
>
> nicolai
>
>
>
>


Re: [Pharo-users] [Pharo-dev] issue with large file path on windows

2015-08-23 Thread Thierry Goubier

Le 23/08/2015 14:28, Tudor Girba a écrit :

This is great news!

I had tons of problems last year with that and I did not know what to do
about this.


A possible solution would have been to rewrite a bit the filetree 
support so that it could load packages directly from the zip archive 
downloaded from github, instead of unpackaging it to disk.


But... pushing for the windows vm so that it would use the right API is 
a lot better :)


Thanks Nicolai,

Thierry


Doru

On Sun, Aug 23, 2015 at 1:44 PM, Nicolai Hess mailto:nicolaih...@web.de>> wrote:

For those who had problems with pharo on windows and github based
repositories,
I built a windows vm with support for long paths:


https://drive.google.com/file/d/0B8yEahnuIem2bmxwdzJuUXFxVGM/view?usp=sharing


For browsing directories with large paths (FileList or Inspect),
you may need one additional change in the image (But I am not really
sure about that) :

DiskStore>>initialize
 super initialize.
 maxFileNameLength := Smalltalk vm maxFilenameLength ifNil: [
32767 ].


please test and give feedback.

This wasn't as easy as I thought, and I had to make some more changes
for the file permissions (the stat-functions don't work for files
with long paths).
Please test other file/folder operations.


nicolai






--
www.tudorgirba.com 

"Every thing has its own flow"





Re: [Pharo-users] [Pharo-dev] issue with large file path on windows

2015-08-23 Thread Tudor Girba
This is great news!

I had tons of problems last year with that and I did not know what to do
about this.

Doru

On Sun, Aug 23, 2015 at 1:44 PM, Nicolai Hess  wrote:

> For those who had problems with pharo on windows and github based
> repositories,
> I built a windows vm with support for long paths:
>
>
> https://drive.google.com/file/d/0B8yEahnuIem2bmxwdzJuUXFxVGM/view?usp=sharing
>
>
> For browsing directories with large paths (FileList or Inspect),
> you may need one additional change in the image (But I am not really sure
> about that) :
>
> DiskStore>>initialize
> super initialize.
> maxFileNameLength := Smalltalk vm maxFilenameLength ifNil: [ 32767 ].
>
>
> please test and give feedback.
>
> This wasn't as easy as I thought, and I had to make some more changes
> for the file permissions (the stat-functions don't work for files with
> long paths).
> Please test other file/folder operations.
>
>
> nicolai
>
>
>
>


-- 
www.tudorgirba.com

"Every thing has its own flow"


[Pharo-users] issue with large file path on windows

2015-08-23 Thread Nicolai Hess
For those who had problems with pharo on windows and github based
repositories,
I built a windows vm with support for long paths:

https://drive.google.com/file/d/0B8yEahnuIem2bmxwdzJuUXFxVGM/view?usp=sharing


For browsing directories with large paths (FileList or Inspect),
you may need one additional change in the image (But I am not really sure
about that) :

DiskStore>>initialize
super initialize.
maxFileNameLength := Smalltalk vm maxFilenameLength ifNil: [ 32767 ].


please test and give feedback.

This wasn't as easy as I thought, and I had to make some more changes
for the file permissions (the stat-functions don't work for files with long
paths).
Please test other file/folder operations.


nicolai