Re: [Pharo-users] Gitfiletree unstable on Windows

2015-04-14 Thread Jan Blizničenko
Sorry for replying after so much time...

What inteface is it? Is there any way I could help to find source of the
problem?

Jan


Thierry Goubier wrote
 Hi Jan,
 
 there is a chance the problem is in the interface GitFileTree uses to 
 call git on windows.
 
 Thierry
 
 Le 31/03/2015 17:53, Jan B. a écrit :
 This way it loads, but unfortunately VM crashes anyway.


 Jigyasa Grover wrote
 Hey Jan

 Try this:
  Metacello new
baseline: 'FileTree';
repository:
 'filetree:///C:/Users/User/Pharo/../dalehenrich-filetree-7f998e5/repository';
load: 'Git'
 

 Put in the path to the repository folder.





 --
 View this message in context:
 http://forum.world.st/Gitfiletree-unstable-on-Windows-tp4816354p4816405.html
 Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.








--
View this message in context: 
http://forum.world.st/Gitfiletree-unstable-on-Windows-tp4816354p4819490.html
Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.



Re: [Pharo-users] Gitfiletree unstable on Windows

2015-04-14 Thread Thierry Goubier
Hi Jan,

It's ProcessWrapper. It uses a dll called ProcessWrapperPlugin.dll
(downloaded when you install ProcessWrapper). I'm not sure where is the
source code.

Thierry

2015-04-14 12:25 GMT+02:00 Jan Blizničenko blizn...@fit.cvut.cz:

 Sorry for replying after so much time...

 What inteface is it? Is there any way I could help to find source of the
 problem?

 Jan


 Thierry Goubier wrote
  Hi Jan,
 
  there is a chance the problem is in the interface GitFileTree uses to
  call git on windows.
 
  Thierry
 
  Le 31/03/2015 17:53, Jan B. a écrit :
  This way it loads, but unfortunately VM crashes anyway.
 
 
  Jigyasa Grover wrote
  Hey Jan
 
  Try this:
   Metacello new
 baseline: 'FileTree';
 repository:
 
 'filetree:///C:/Users/User/Pharo/../dalehenrich-filetree-7f998e5/repository';
 load: 'Git'
  
 
  Put in the path to the repository folder.
 
 
 
 
 
  --
  View this message in context:
 
 http://forum.world.st/Gitfiletree-unstable-on-Windows-tp4816354p4816405.html
  Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.
 
 
 





 --
 View this message in context:
 http://forum.world.st/Gitfiletree-unstable-on-Windows-tp4816354p4819490.html
 Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.




Re: [Pharo-users] Gitfiletree unstable on Windows

2015-03-31 Thread Peter Uhnák

 Metacello new
   baseline: 'FileTree';
   repository: 'github://dalehenrich/filetree:pharo4.0_dev/repository';
   load: 'Git' 

I thought that you needed to have GitFileTree loaded to have github:// and
Git support. Is that false? Does that mean that github:// (bitbucket://)
doesn't use git at all?

Peter


Re: [Pharo-users] Gitfiletree unstable on Windows

2015-03-31 Thread Jigyasa Grover
Hey Jan

Try this:
 Metacello new
  baseline: 'FileTree';
  repository:
'filetree:///C:/Users/User/Pharo/../dalehenrich-filetree-7f998e5/repository';
  load: 'Git'


Put in the path to the repository folder.



--
View this message in context: 
http://forum.world.st/Gitfiletree-unstable-on-Windows-tp4816354p4816378.html
Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.



Re: [Pharo-users] Gitfiletree unstable on Windows

2015-03-31 Thread Christophe Demarey

Le 31 mars 2015 à 16:29, Peter Uhnák a écrit :

 Metacello new
   baseline: 'FileTree';
   repository: 'github://dalehenrich/filetree:pharo4.0_dev/repository';
   load: 'Git' 
 I thought that you needed to have GitFileTree loaded to have github:// and 
 Git support. Is that false? Does that mean that github:// (bitbucket://) 
 doesn't use git at all?

right. It downloads a zip file with all sources from github and then a simple 
filetree repository is available.

Christophe.



smime.p7s
Description: S/MIME cryptographic signature


Re: [Pharo-users] Gitfiletree unstable on Windows

2015-03-31 Thread Jigyasa Grover
Yes Jan.
Using GitFileTree in Windows is quite a task.

On Thierry's suggestion, I had tried the following and it worked.

An alternative solution is to load directly from github, with:

Metacello new
  baseline: 'FileTree';
  repository: 'github://dalehenrich/filetree:pharo4.0_dev/repository';
  load: 'Git' 

Try this if it helps :)




--
View this message in context: 
http://forum.world.st/Gitfiletree-unstable-on-Windows-tp4816354p4816362.html
Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.



Re: [Pharo-users] Gitfiletree unstable on Windows

2015-03-31 Thread Jan B.
This way it loads, but unfortunately VM crashes anyway.


Jigyasa Grover wrote
 Hey Jan
 
 Try this:
  Metacello new
   baseline: 'FileTree';
   repository:
 'filetree:///C:/Users/User/Pharo/../dalehenrich-filetree-7f998e5/repository';
   load: 'Git'
 
 
 Put in the path to the repository folder.





--
View this message in context: 
http://forum.world.st/Gitfiletree-unstable-on-Windows-tp4816354p4816405.html
Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.



Re: [Pharo-users] Gitfiletree unstable on Windows

2015-03-31 Thread Thierry Goubier

Hi Jan,

there is a chance the problem is in the interface GitFileTree uses to 
call git on windows.


Thierry

Le 31/03/2015 17:53, Jan B. a écrit :

This way it loads, but unfortunately VM crashes anyway.


Jigyasa Grover wrote

Hey Jan

Try this:
 Metacello new
   baseline: 'FileTree';
   repository:
'filetree:///C:/Users/User/Pharo/../dalehenrich-filetree-7f998e5/repository';
   load: 'Git'


Put in the path to the repository folder.






--
View this message in context: 
http://forum.world.st/Gitfiletree-unstable-on-Windows-tp4816354p4816405.html
Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.








Re: [Pharo-users] Gitfiletree unstable on Windows

2015-03-31 Thread Thierry Goubier

Le 31/03/2015 16:43, Jan B. a écrit :

Hi and thanks for the tip, but it doesn't work for me. Running this command
results in following exception:
FileDoesNotExist: File @
C:\Users\User\Pharo\images\DC-40588\github-cache\dalehenrich\filetree\pharo4.0_dev\dalehenrich-filetree-7f998e5\repository\MonticelloFileTree-Git.package\monticello.meta\version


Nicolai Hess said the issue is with the path length with the API used in 
the pharo VM on Windows


Short of modifying the windows Pharo VM, a solution would be for 
filetree to read directly the repository from the github zip archive 
(without unzipping that archive). The code to do that is in gitfiletree 
in fact ;)


There is also a filesystem-like layer for archives somewhere inside 
Pharo, but, I do believe it doesn't work (I'm sure I tried it... and if 
I'm not using it, there is a good reason).


Thierry


Jan


Jigyasa Grover wrote

Yes Jan.
Using GitFileTree in Windows is quite a task.

On Thierry's suggestion, I had tried the following and it worked.

An alternative solution is to load directly from github, with:

Metacello new
   baseline: 'FileTree';
   repository: 'github://dalehenrich/filetree:pharo4.0_dev/repository';
   load: 'Git' 

Try this if it helps :)






--
View this message in context: 
http://forum.world.st/Gitfiletree-unstable-on-Windows-tp4816354p4816371.html
Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.








Re: [Pharo-users] Gitfiletree unstable on Windows

2015-03-31 Thread Jan B.
Hi and thanks for the tip, but it doesn't work for me. Running this command
results in following exception:
FileDoesNotExist: File @
C:\Users\User\Pharo\images\DC-40588\github-cache\dalehenrich\filetree\pharo4.0_dev\dalehenrich-filetree-7f998e5\repository\MonticelloFileTree-Git.package\monticello.meta\version

Jan


Jigyasa Grover wrote
 Yes Jan.
 Using GitFileTree in Windows is quite a task.
 
 On Thierry's suggestion, I had tried the following and it worked.
 
 An alternative solution is to load directly from github, with:
 
 Metacello new
   baseline: 'FileTree';
   repository: 'github://dalehenrich/filetree:pharo4.0_dev/repository';
   load: 'Git' 
 
 Try this if it helps :)





--
View this message in context: 
http://forum.world.st/Gitfiletree-unstable-on-Windows-tp4816354p4816371.html
Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.