[ANN] Simple FogBugz Search tool in Pharo

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

[ANN] Simple FogBugz Search tool in Pharo

Torsten Bergmann
Hi,

played with the JSON API of Pharo FogBugz issue tracker with the outcome of
another little Pharo tool that lets you:

 - login to FogBugz from Pharo
 - enter a string and search for according issues
 - open a browser on a selected issue in the result list (works on Linux and Win so far)

The project repo is at:

   http://www.smalltalkhub.com/#!/~TorstenBergmann/FogBugz

One can use the client also directly:

|client|
client := FogBugzClient loginUser: '[hidden email]' password: 'secret'.
(client query: 'UFFI') inspect.
client logout

You can download the tool in latest Pharo 5 (50660 or later) from catalog
or by opening the Spotter and entering "FogBugz", wait and hitting ENTER.

Attached is a screenshot.

Enjoy
T.

fogbugzbrowser.png (132K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: [ANN] Simple FogBugz Search tool in Pharo

Ben Coman
Looks cool.  Now to ask for more ;)
Something like this would be nice to have integrated into Pharo, plus
listing and filtering on For Review status, and showing and loading
slices.

cheers -ben

On Fri, Mar 25, 2016 at 8:08 AM, Torsten Bergmann <[hidden email]> wrote:

> Hi,
>
> played with the JSON API of Pharo FogBugz issue tracker with the outcome of
> another little Pharo tool that lets you:
>
>  - login to FogBugz from Pharo
>  - enter a string and search for according issues
>  - open a browser on a selected issue in the result list (works on Linux and Win so far)
>
> The project repo is at:
>
>    http://www.smalltalkhub.com/#!/~TorstenBergmann/FogBugz
>
> One can use the client also directly:
>
> |client|
> client := FogBugzClient loginUser: '[hidden email]' password: 'secret'.
> (client query: 'UFFI') inspect.
> client logout
>
> You can download the tool in latest Pharo 5 (50660 or later) from catalog
> or by opening the Spotter and entering "FogBugz", wait and hitting ENTER.
>
> Attached is a screenshot.
>
> Enjoy
> T.

Reply | Threaded
Open this post in threaded view
|

Re: [ANN] Simple FogBugz Search tool in Pharo

stepharo
In reply to this post by Torsten Bergmann
I have to try because I get so many time lost in fogbugz :)


Le 25/3/16 01:08, Torsten Bergmann a écrit :

> Hi,
>
> played with the JSON API of Pharo FogBugz issue tracker with the outcome of
> another little Pharo tool that lets you:
>
>   - login to FogBugz from Pharo
>   - enter a string and search for according issues
>   - open a browser on a selected issue in the result list (works on Linux and Win so far)
>
> The project repo is at:
>
>     http://www.smalltalkhub.com/#!/~TorstenBergmann/FogBugz
>
> One can use the client also directly:
>
> |client|
> client := FogBugzClient loginUser: '[hidden email]' password: 'secret'.
> (client query: 'UFFI') inspect.
> client logout
>
> You can download the tool in latest Pharo 5 (50660 or later) from catalog
> or by opening the Spotter and entering "FogBugz", wait and hitting ENTER.
>
> Attached is a screenshot.
>
> Enjoy
> T.