[Trac] Re: Firefox Plugin for Trac

2009-08-31 Thread RJOllos

On Aug 17, 1:58 pm, ijayasin ijaya...@gmail.com wrote:
 Are there any Firefox plugins for Trac? Ideally I would like to create
 new tickets from within Trac for a project. Viewing a list of existing
 tickets and being able to edit them would also be nice. Any
 suggestions would be much appreciated.

I came across an interesting posting on StackOverflow (1), regarding
the use of the SQLite plugin for Firefox to access Trac.

http://stackoverflow.com/questions/876747/is-there-a-way-to-run-trac-offline/983725#983725
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: Firefox Plugin for Trac

2009-08-31 Thread Olemis Lang

On Fri, Aug 21, 2009 at 12:34 AM, Indika Jayasingheijaya...@gmail.com wrote:

 @davidnicol: Thanks for the quick response! Actually that is exactly
 how I use Trac at the moment, having it sit in a separate tab.

 There are a couple of reasons why I wanted to know whether there were
 any  Trac plugins:
 a) I frequently find myself adding Trac tickets with screen shots of a
 couple of web applications I'm working on attached to the ticket.
 b) I am planning to write a Firefox plugin that would take much of the
 pain from that process.
 c) I want to make sure this functionality doesn't already exist in
 some plugin or some other tool, and save myself a whole lot of work if
 it does.
 d) See if there are any plugins that can add a basic ticket, and
 contribute my code to that project, still saving myself a bit of
 coding, and hopefully making a lot of users of the plugin very happy.

 I write web applications and the scenario I mentioned in bullet point
 (a) goes a bit like this...

 1) Notice a UI issue in the Web App.
 2) Switch to the Trac tab in Firefox and start a new ticket.
 3) Check the checkbox marked I have attachments (or something of the
 sort) and save the ticket.
 4) Take a screen shot of the browser window with the web app.
 5) Crop the area containing the UI issue
 6) Save it to the local hard disk as an image.
 7) Attach the image to the Trac ticket created in step (3)  (...after
 all, a picture is worth a thousand words...).


 Instead, the hope is it would go a bit like this:

 1) Notice a UI issue in the Web App.
 2) Highlight the area of concern.
 3) Right click and select something like Add Trac Ticket... from the
 context menu
 4) Write summary, description, etc, and click Submit.
 5) The plugin saves a screen shot of the selected area to a file and
 uploads it Trac along with the newly created ticket.

 I can imagine a lot of other web developers doing the same thing, and
 wishing for a tool that does  what I have in mind... Your comments and
 suggestions are much appreciated.


Looks nice ... dont know anything like that. My sugestion :

  - Use RPC to the ticket stuff and interaction with the Trac instance
  - A Firefox plugin is cool, but what about other browsers or
standalone apps ? So ...
  - A script (e.g. using `xwininfo` in GNU/Linux or Win32 API through
`ctypes`) would be very useful as well ;o)

Good luck ! ... and pls report progress here. I'm sure you'll have a
lot of users :)

-- 
Regards,

Olemis.

Blog ES: http://simelo-es.blogspot.com/
Blog EN: http://simelo-en.blogspot.com/

Featured article:

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: Firefox Plugin for Trac

2009-08-28 Thread RJOllos

On Aug 21, 6:53 pm, jevans jevans...@gmail.com wrote:
 David Nicol wrote:
  That said, a way to paste an image from the clipboard directly into
  the ticket instead of creating and using an image file would be handy
  too and is one of the components of what you're asking for.

 That would be so awesome.
 - jevans

I second that.  It would literally save me 15 minutes on the average
day ... at least given the work I've been doing over the past few
weeks.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: Firefox Plugin for Trac

2009-08-21 Thread yoheeb

Just a thought, but why not have a second copy of firefox open, rather
than tabbed-browsing, and minimizes as needed for screenies.

There is also a handy plugin on the Hacks site to attach an image as
part of the initial ticket creation.
Although an app that has a hot-key mapped, takes a screen shot,
prompts for summary and descritpion, connects to trac via xmlrpc,
creates a ticket, and adds the attachment...and makes coffee would be
cool.  that last part would be an optional enhancment of course :D  I
just need the coffee part, really no need for screenshots for our
particular work, since there is no screen
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: Firefox Plugin for Trac

2009-08-21 Thread David Nicol

a save screen shot utility sounds useful, but if you use the gui to
save what the gui looks like you aren't saving exactly what you want
to save, all the time.  So a keyboard approach to snapshotting simply
can't be avoided.

That said, a way to paste an image from the clipboard directly into
the ticket instead of creating and using an image file would be handy
too and is one of the components of what you're asking for.

I think there are rich text entry widgets that can do that already, or
at least they hide a lot of the details.

The paucity of the discussion at
http://stackoverflow.com/questions/420701/copy-pasting-image-into-javascript-rich-text-editor
seems to indicate that paste-to-rich-text-widget is something of an
open problem.  Maybe a plugin could do it, possibly combined with
server support.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: Firefox Plugin for Trac

2009-08-21 Thread jevans

David Nicol wrote:
 That said, a way to paste an image from the clipboard directly into
 the ticket instead of creating and using an image file would be handy
 too and is one of the components of what you're asking for.

That would be so awesome.
- jevans
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: Firefox Plugin for Trac

2009-08-20 Thread Indika Jayasinghe

@davidnicol: Thanks for the quick response! Actually that is exactly
how I use Trac at the moment, having it sit in a separate tab.

There are a couple of reasons why I wanted to know whether there were
any  Trac plugins:
a) I frequently find myself adding Trac tickets with screen shots of a
couple of web applications I'm working on attached to the ticket.
b) I am planning to write a Firefox plugin that would take much of the
pain from that process.
c) I want to make sure this functionality doesn't already exist in
some plugin or some other tool, and save myself a whole lot of work if
it does.
d) See if there are any plugins that can add a basic ticket, and
contribute my code to that project, still saving myself a bit of
coding, and hopefully making a lot of users of the plugin very happy.


I write web applications and the scenario I mentioned in bullet point
(a) goes a bit like this...

1) Notice a UI issue in the Web App.
2) Switch to the Trac tab in Firefox and start a new ticket.
3) Check the checkbox marked I have attachments (or something of the
sort) and save the ticket.
4) Take a screen shot of the browser window with the web app.
5) Crop the area containing the UI issue
6) Save it to the local hard disk as an image.
7) Attach the image to the Trac ticket created in step (3)  (...after
all, a picture is worth a thousand words...).


Instead, the hope is it would go a bit like this:

1) Notice a UI issue in the Web App.
2) Highlight the area of concern.
3) Right click and select something like Add Trac Ticket... from the
context menu
4) Write summary, description, etc, and click Submit.
5) The plugin saves a screen shot of the selected area to a file and
uploads it Trac along with the newly created ticket.

I can imagine a lot of other web developers doing the same thing, and
wishing for a tool that does  what I have in mind... Your comments and
suggestions are much appreciated.




On Tue, Aug 18, 2009 at 1:20 PM, davidnicoldavidni...@gmail.com wrote:

 what would a firefox plugin do that tabbed browsing doesn't?

 On Aug 17, 3:58 pm, ijayasin ijaya...@gmail.com wrote:
 Are there any Firefox plugins for Trac? Ideally I would like to create
 new tickets from within Trac for a project. Viewing a list of existing
 tickets and being able to edit them would also be nice. Any
 suggestions would be much appreciated.

 Thanks,
 Indika

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: Firefox Plugin for Trac

2009-08-20 Thread Иван Бессарабов

From my point of this this can be very usefull, but with one change -
to do it not a firefox plugin, but some program that runs on
background.
I also usually add some screenshots to tickets, but i screenshot not
only the browser, but some other programs too.

It will be great that there will be option not only to create new
ticket, but also add screenshot to the ticket comment.

2009/8/21 Indika Jayasinghe ijaya...@gmail.com:

 @davidnicol: Thanks for the quick response! Actually that is exactly
 how I use Trac at the moment, having it sit in a separate tab.

 There are a couple of reasons why I wanted to know whether there were
 any  Trac plugins:
 a) I frequently find myself adding Trac tickets with screen shots of a
 couple of web applications I'm working on attached to the ticket.
 b) I am planning to write a Firefox plugin that would take much of the
 pain from that process.
 c) I want to make sure this functionality doesn't already exist in
 some plugin or some other tool, and save myself a whole lot of work if
 it does.
 d) See if there are any plugins that can add a basic ticket, and
 contribute my code to that project, still saving myself a bit of
 coding, and hopefully making a lot of users of the plugin very happy.


 I write web applications and the scenario I mentioned in bullet point
 (a) goes a bit like this...

 1) Notice a UI issue in the Web App.
 2) Switch to the Trac tab in Firefox and start a new ticket.
 3) Check the checkbox marked I have attachments (or something of the
 sort) and save the ticket.
 4) Take a screen shot of the browser window with the web app.
 5) Crop the area containing the UI issue
 6) Save it to the local hard disk as an image.
 7) Attach the image to the Trac ticket created in step (3)  (...after
 all, a picture is worth a thousand words...).


 Instead, the hope is it would go a bit like this:

 1) Notice a UI issue in the Web App.
 2) Highlight the area of concern.
 3) Right click and select something like Add Trac Ticket... from the
 context menu
 4) Write summary, description, etc, and click Submit.
 5) The plugin saves a screen shot of the selected area to a file and
 uploads it Trac along with the newly created ticket.

 I can imagine a lot of other web developers doing the same thing, and
 wishing for a tool that does  what I have in mind... Your comments and
 suggestions are much appreciated.




 On Tue, Aug 18, 2009 at 1:20 PM, davidnicoldavidni...@gmail.com wrote:

 what would a firefox plugin do that tabbed browsing doesn't?

 On Aug 17, 3:58 pm, ijayasin ijaya...@gmail.com wrote:
 Are there any Firefox plugins for Trac? Ideally I would like to create
 new tickets from within Trac for a project. Viewing a list of existing
 tickets and being able to edit them would also be nice. Any
 suggestions would be much appreciated.

 Thanks,
 Indika

 


 




-- 
bessarabov

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---