[Pharo-users] Can GitHubcello be used against BitBucket?

2016-07-21 Thread Sean Glazier
Hi, The git repository they are setting up is using Bitbucket part of the JIRA toolsets. Or do I need to publish to GitHub and the import? Is there a Monticello tool for publishing directly to the bitbucket git repository? Forgive my ignorance in this. I have looked over dale slideshow on the

Re: [Pharo-users] Can GitHubcello be used against BitBucket?

2016-07-21 Thread Yuriy Tymchuk
Hi, to my knowledge GitHubcello[1] is my project for loading filetree projects from GitHub via Spotter. Are you asking about it, or there is something else with the same name? Cheers. Uko [1]: https://github.com/Uko/GitHubcello > On 21 Jul 2016, at 21:16, Sean Glazier

Re: [Pharo-users] Can GitHubcello be used against BitBucket?

2016-07-21 Thread Sean Glazier
Yes bit bucket is the JIRA tools repo manager and you can create git repositories there. I am wondering if I can publish directly to it or have to first publish to GitHub and then import or pull my changes into bitbucket that does have an import feature for GitHub Kind Regards, Sean Glazier

[Pharo-users] System Browser "Implementors of..." drill down?

2016-07-21 Thread Norbert Fortelny
Something I have not figured out how to do easily in the Pharo system browser: I am looking at a method and want to see how a message that is used in this method is implemented. In other Smalltalks (e.g. Cincoms) I use the menu item "Implementors of..." and get a list of all the messages that are

Re: [Pharo-users] System Browser "Implementors of..." drill down?

2016-07-21 Thread Henrik Nergaard
This can be achieved by selecting the message/class from the text area and either right clicking and using the menu->submenu "Code search..." or you can use the shortcuts: meta+m for implementors, meta+n for senders, and meta+shift+n for references of it. There is also a shortcut (meta+space)

Re: [Pharo-users] An Implementation of JSON Web Tokens

2016-07-21 Thread Sven Van Caekenberghe
> On 21 Jul 2016, at 18:00, Sean Glazier wrote: > > Hi, > > Thank you so much. did you use it in a seaside widget as well? if so could I > see it? If this is a dumb question please forgive me. I will also see if I > need additional code and will update it as well as

Re: [Pharo-users] System Browser "Implementors of..." drill down?

2016-07-21 Thread Mariano Martinez Peck
On Thu, Jul 21, 2016 at 4:03 PM, Henrik Nergaard wrote: > This can be achieved by selecting the message/class from the text area and > either right clicking and using the menu->submenu "Code search..." or you > can use the shortcuts: meta+m for implementors, meta+n for

[Pharo-users] in Nautilus, clicking a pane with few items in it changed in Pharo 5

2016-07-21 Thread PAUL DEBRUICKER
In Pharo 4 if e.g. the method pane had 3 methods, the bottom method would be selected when clicking in the empty region at the bottom of the pane. In Pharo 5 nothing is selected. I prefer the old behavior because then I could use my arrow keys to begin navigating the pane. Is there a way

Re: [Pharo-users] System Browser "Implementors of..." drill down?

2016-07-21 Thread Norbert Fortelny
Thanks! -- View this message in context: http://forum.world.st/System-Browser-Implementors-of-drill-down-tp4907380p4907417.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] An Implementation of JSON Web Tokens

2016-07-21 Thread Cédrick Béler
Thanks too. I may find that useful (I didn’t know JWT) ! Cheers, Cédrik

[Pharo-users] Customizing GTSpotter

2016-07-21 Thread Dimitris Chloupis
I want customize GTSpotter so when it's called upon a specific morph has a different behavior. Because I will be building a node system I want to search only through nodes and sort them to categories. In essence I will be building a visual coding language very similar to Unreal's Blueprints. Can

Re: [Pharo-users] Customizing GTSpotter

2016-07-21 Thread Nicolai Hess
Hi Dimitris, I don't know what you mean with "called upon a specific morph", but you can use Spotter to do "local" searches. For example, inspecting an array or a Morph or CompiledMethod and look at the "Search"-Icon (upper right corner). It will open a Spotter window for this object. It lets you

[Pharo-users] An Implementation of JSON Web Tokens

2016-07-21 Thread Sven Van Caekenberghe
Hi, Sean Glazier (who has trouble subscribing to the mailing lists, in CC) is looking for an implementation of JSON Web Tokens (https://tools.ietf.org/html/rfc7519). Is there anyone who can help him ? He is doing his first Pharo project coming from VW, and of course he has time constraints.

Re: [Pharo-users] Customizing GTSpotter

2016-07-21 Thread Dimitris Chloupis
Yes sorry I need to be more specific . What I am trying to create is a visual programming language for Pharo and Blender inspired by Unreal's Blueprint language here is how it looks http://s11.postimg.org/5lum5o2cj/French_BP.jpg The nice thing about Blueprint besides being a full blown

Re: [Pharo-users] Customizing GTSpotter

2016-07-21 Thread Dimitris Chloupis
oops , i copy pasted the same link two times :D second link is this https://cdn2.unrealengine.com/blog/screen1-624x295-1027286209.png On Thu, Jul 21, 2016 at 12:41 PM Dimitris Chloupis wrote: > Yes sorry I need to be more specific . > > What I am trying to create is a

Re: [Pharo-users] An Implementation of JSON Web Tokens

2016-07-21 Thread Sven Van Caekenberghe
Great, thanks Norbert ! > On 21 Jul 2016, at 12:04, Norbert Hartl wrote: > > I uploaded an old implementation of mine. It is not fully implemented but > usable for the easy case. > > http://smalltalkhub.com/#!/~NorbertHartl/JSONWebToken > > Hope it helps, > > Norbert >

Re: [Pharo-users] An Implementation of JSON Web Tokens

2016-07-21 Thread Norbert Hartl
I uploaded an old implementation of mine. It is not fully implemented but usable for the easy case. http://smalltalkhub.com/#!/~NorbertHartl/JSONWebToken Hope it helps, Norbert > Am 21.07.2016 um 10:04 schrieb Sven Van Caekenberghe

Re: [Pharo-users] Seamless

2016-07-21 Thread Denis Kudriashov
Hi. Try stable version which I announced today. In my tests saving images works fine. On image snapshot all connection are closed. Then they will lazily reopen by demand. 2016-06-19 23:31 GMT+02:00 francescoagati : > No i was using and old version finded in your

Re: [Pharo-users] An Implementation of JSON Web Tokens

2016-07-21 Thread Sean Glazier
Hi, Thank you so much. did you use it in a seaside widget as well? if so could I see it? If this is a dumb question please forgive me. I will also see if I need additional code and will update it as well as corresponding tests. I have been working balls to the walls cause we have little time to