[Trac] Re: Q: Installing Trac GraphViz plugin in MS Windows ...

2009-05-27 Thread Olemis Lang

On Tue, May 26, 2009 at 5:31 PM, Noah Kantrowitz n...@coderanger.net wrote:

 I very much doubt anything is using the python bindings, they are not very
 fun to use.


Yes, it's possible, but the fact is that I wanna develop something
using GraphViz and I plan to use GvGen [1]_ [2]_ [3]_ and it seems I
need'em ... ;)

And after all I tried to compile GraphViz without python bidings and I
get *A LOT* of errors. grgggrgr

.. [1] GvGen
   (http://software.inl.fr/trac/wiki/GvGen)

.. [2] Sebastien Tricaud - gvgen @ PyCon.fr
(http://dl.afpy.org/pycon-fr-08/videos/j1-03-graphviz.ogg)

.. [3] sebastien-tricaud-gvgen.pdf
(http://dl.afpy.org/pycon-fr-08/slides/sebastien-tricaud-gvgen.pdf)

-- 
Regards,

Olemis.

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

Featured article:
Oracle : por más que engorda sigue subiendo ...  -
http://feedproxy.google.com/~r/simelo-es/~3/ndKoYi3D-kg/oracle-por-mas-que-engorda-sigue.html

--~--~-~--~~~---~--~~
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: Q: Installing Trac GraphViz plugin in MS Windows ...

2009-05-27 Thread Olemis Lang

On Tue, May 26, 2009 at 5:29 PM, yoheeb yoh...@gmail.com wrote:

 On May 26, 1:48 pm, Olemis Lang ole...@gmail.com wrote:
 First of all ... thnx for the reply

  for some reason I want to say no.  I have it running on my windows
  server, and I am pretty sure it runs it via the command line.

 Good to know ... But anyway, could u pls tell me how did you install
 GraphViz itself. The fact is that I've not been able to install it in
 a Windows 2003 Server host. Here you have the  «roadmap»:

 well snap, the binary installers worked out of the box for me, so I'm
 not that much help.  win2k3 service pack 2, installer I used was
 gviz-2.18.exe


H ... the one I tried is 2.22.2-[...].msi ... Ñum, ñum ... could u
provide the URL to download it ?

Thnx in advance !

-- 
Regards,

Olemis.

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

Featured article:
Oracle : por más que engorda sigue subiendo ...  -
http://feedproxy.google.com/~r/simelo-es/~3/ndKoYi3D-kg/oracle-por-mas-que-engorda-sigue.html

--~--~-~--~~~---~--~~
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: Is there a way to have default page template in TRAC Wiki?

2009-05-27 Thread Erik Bray

On Tue, May 26, 2009 at 6:36 PM, yoheeb yoh...@gmail.com wrote:

 On May 26, 4:03 pm, Erik Bray hyugaricd...@gmail.com wrote:
 On Tue, May 26, 2009 at 2:24 PM, Christopher Barker

 chris.bar...@noaa.gov wrote:

  Erik Bray wrote:
  What would really be neat would be if there could be some template
  variable fields that need to be filled in when creating a page from a
  template.  Some date fields come to mind, for example.  I smell a
 well, in theory, you could combine a ticket template, with the
 PageVariableMacro.  Although, according to the hak PageVariableMacro
 hasn't been made to work with 0.11 yet.

I had something much simpler in mind.  The author of a template could
define some template variables (using a ${foo} syntax) and from those
variables a set of inputs would be displayed for a user to fill out
when they first create a page from that template.

Some additional syntax could go in to specify field types, and to mark
a field as required.  I wouldn't want to go crazy with it though.
Nothing so complicated that it would have to involve the ticket
system.

This is something I've kind of had in mind for a while.  For example,
we make wiki pages for meetings, and our Meeting template already has
what are essentially template variables for Date, Time,
Location, Participants, etc...  This plugin would make it easier
to find those fields and make sure they get filled out.

--~--~-~--~~~---~--~~
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] Need help with SQL query on ticket_change table please

2009-05-27 Thread Steve

Hi folks,

I have a custom workflow that has a 'testing' state and am trying to
generate an SQL query to show me the time a ticket most recently
entered the testing state.

The query I have so far is:

SELECT DISTINCT ticket_change.ticket as ticket, ticket.summary as
summary, date(ticket_change.time, 'unixepoch')as inTest FROM  ticket,
ticket_change
WHERE ticket.id = ticket_change.ticket
AND ticket_change.field = 'status'
AND ticket_change.newvalue = 'testing'


The problem with this query is it will give duplicates if a ticket has
gone into the 'testing' phase multiple times, for example if it went
into to testing then was rejected, then entered testing again.

How can I show only the most recent row?

thanks for your help!

Steve Povilaitis

--~--~-~--~~~---~--~~
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: Need help with SQL query on ticket_change table please

2009-05-27 Thread Noah Kantrowitz

Try adding a GROUP BY ticket.id and change ticket_change.time to  
MAX(ticket_change.time)

--Noah

On May 27, 2009, at 5:30 AM, Steve wrote:


 Hi folks,

 I have a custom workflow that has a 'testing' state and am trying to
 generate an SQL query to show me the time a ticket most recently
 entered the testing state.

 The query I have so far is:

 SELECT DISTINCT ticket_change.ticket as ticket, ticket.summary as
 summary, date(ticket_change.time, 'unixepoch')as inTest FROM  ticket,
 ticket_change
 WHERE ticket.id = ticket_change.ticket
 AND ticket_change.field = 'status'
 AND ticket_change.newvalue = 'testing'


 The problem with this query is it will give duplicates if a ticket has
 gone into the 'testing' phase multiple times, for example if it went
 into to testing then was rejected, then entered testing again.

 How can I show only the most recent row?

 thanks for your help!

 Steve Povilaitis

 


--~--~-~--~~~---~--~~
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] Attache mails to ticket

2009-05-27 Thread bessarabov

Hi!

I usually attach email messages from our clients to the trac system.
It is very comfortable, when you have all information in one ticket.
I'm doing this manually - I save mail to file, then attache file to
ticket and then write in comment something like:

Mail from Client A (27 may 2009, 18:02):
{{{
text of the mail
}}}

Everything is good, exept one thing - I'm too lazy to enter it
manually, but I have to do it every time.

So, I'm dreaming about plugin to thunderbird that can simplify such
process. My question is:
 * maybe there is  already some plugin that can do it?
 * maybe someone will write this plugin? =)
 * where do I need to write this request feature and to hope that it
will be implemented.

Thank you!


--
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
-~--~~~~--~~--~--~---



[Trac] Re: Wiki Processors

2009-05-27 Thread Jason Winnebeck

Andrew Gehring wrote:
 I'm trying to get the sorttable.js processor working, and seem to be 
 missing something...
 
 Created dir wiki-macros and placing sorttable.js there

Trac plugins are Python (.py) files, not .js files, unless Trac supported 
plugins by adding js files to the generated pages somehow just by putting 
the js somewhere.

Where is this plugin and where did you get it from?

Jason

--~--~-~--~~~---~--~~
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: Wiki Processors

2009-05-27 Thread Andrew Gehring
An omission on my part. There are two files with this processor
sortedtable.py and sorttable.js...
The info is here:

http://trac.edgewall.org/wiki/ProcessorBazaar

Although, I've discovered the method(s) to make this work was deprecated in
.10

Andrew

On Wed, May 27, 2009 at 9:05 AM, Jason Winnebeck jpw...@rit.edu wrote:


 Andrew Gehring wrote:
  I'm trying to get the sorttable.js processor working, and seem to be
  missing something...
 
  Created dir wiki-macros and placing sorttable.js there

 Trac plugins are Python (.py) files, not .js files, unless Trac supported
 plugins by adding js files to the generated pages somehow just by putting
 the js somewhere.

 Where is this plugin and where did you get it from?

 Jason

 


--~--~-~--~~~---~--~~
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: Q: Installing Trac GraphViz plugin in MS Windows ...

2009-05-27 Thread yoheeb

snip
 H ... the one I tried is 2.22.2-[...].msi ... Ñum, ñum ... could u
 provide the URL to download it ?

 Thnx in advance !

 --
 Regards,

 Olemis.

Umm, I don't have any special information, but a quick search yielded
this location:
http://www.graphviz.org/pub/graphviz/stable/windows/

also, I found this note on a perl module for graphviz interfacing:
Older versions of GraphViz used a slightly different syntax for node
and edge adding:it was referencing GraphViz 2.04 at the time.  I
suspect this could be something possibly requiring an update to the
plugin.  Although it works fine for my setup :D

Also some other source distribution are around in that
http://www.graphviz.org/pub/graphviz/ ftp server, when I poked around
a bit.

FYI, I used yahoo instead of a google search, google came back with
way too much data on the search- graphviz download 2.18

Now, if that doesn't work, I am really no help, as like I said, it
just worked out of the box for me.  I did try graphviz stand alone
first however.

Also on windows, rsvg is not supported, according to the plugin
--~--~-~--~~~---~--~~
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: Q: Installing Trac GraphViz plugin in MS Windows ...

2009-05-27 Thread Olemis Lang

On Wed, May 27, 2009 at 11:39 AM, yoheeb yoh...@gmail.com wrote:

 snip
 H ... the one I tried is 2.22.2-[...].msi ... Ñum, ñum ... could u
 provide the URL to download it ?

 Thnx in advance !

 Umm, I don't have any special information, but a quick search yielded
 this location:
 http://www.graphviz.org/pub/graphviz/stable/windows/


Cool ! I'll try it right now !

-- 
Regards,

Olemis.

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

Featured article:
Oracle : por más que engorda sigue subiendo ...  -
http://feedproxy.google.com/~r/simelo-es/~3/ndKoYi3D-kg/oracle-por-mas-que-engorda-sigue.html

--~--~-~--~~~---~--~~
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] What does virtualenv get me for macro development

2009-05-27 Thread yoheeb

Hi,

This might be the wrong group, however, is there any other benefit to
using virtualenv to try to make a macro, other than isolating the
python environment on the machine i am working with?

I plan to work on an isolated machine anyway (my windows desktop)  Or
do I get some additional usefulness?  Otherwise i could just install
trac, and dev/test my macro with tracd.  Actually, this machine
already has trac installed I believe, just needs an update.

I have never written a trac macro or component, so I want it to be as
painless as possible.  If the only thing I get from using virtualenv
is making it easier to following example, well, that's a benefit in
and of itself that makes it worthwhile.

Anyway, thanks
--~--~-~--~~~---~--~~
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: Q: Installing Trac GraphViz plugin in MS Windows ...

2009-05-27 Thread Olemis Lang

On Wed, May 27, 2009 at 12:13 PM, Olemis Lang ole...@gmail.com wrote:
 On Wed, May 27, 2009 at 11:39 AM, yoheeb yoh...@gmail.com wrote:

 snip
 H ... the one I tried is 2.22.2-[...].msi ... Ñum, ñum ... could u
 provide the URL to download it ?

 Thnx in advance !

 Umm, I don't have any special information, but a quick search yielded
 this location:
 http://www.graphviz.org/pub/graphviz/stable/windows/

 Cool ! I'll try it right now !


Yes ! This is it ! Oh yes !

Everything goes ok with Graphviz 2.20.3.1 windows installer [1]_ Oh!
two weeks lost due to a *DEFECTIVE* installer ! But anyway everything
is ok now .

Thnx for your help. I really appreciate it ! :)

.. [1] Graphviz 2.20.3.1 windows installer

(http://www.graphviz.org/pub/graphviz/stable/windows/graphviz-2.20.3.1.msi)

-- 
Regards,

Olemis.

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

Featured article:
Oracle : por más que engorda sigue subiendo ...  -
http://feedproxy.google.com/~r/simelo-es/~3/ndKoYi3D-kg/oracle-por-mas-que-engorda-sigue.html

--~--~-~--~~~---~--~~
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] How to register on http://trac.edgewall.org/

2009-05-27 Thread bessarabov

Hi!

Is there some possobility to get login/password for access to
http://trac.edgewall.org/ ?

Thank you in advance for your answer.
--
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
-~--~~~~--~~--~--~---



[Trac] Re: How to register on http://trac.edgewall.org/

2009-05-27 Thread Emmanuel Blot

 Is there some possobility to get login/password for access to
 http://trac.edgewall.org/ ?

Credentials are reserved for Trac developers.

You can nevertheless save your preferences - see Preferences menu
item on the top-right corner of any Trac page - such as your email
address, name, timezone, etc.

Cheers,
Manu

--~--~-~--~~~---~--~~
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] premoderation of wiki and tickets

2009-05-27 Thread bessarabov

I've created the trac instanse to work on opensource project. The
project can be accessed by everyone for read. If the person what to
change something - he has to write me email and I will create accout
with write permissions for him.

I want to make project writable for everyone (so that everybody can
write ticket comment or to fix some minir bugs in wiki), but I'm
afraid of vandlism and of spam robots. I'm things about this solution
to premoderate changes: the anonymous makes some change - it does not
apper to evebody - it is send me for validation.

I'm not sure that this solution is the best and I'm not sure that it
can be impoemented. So, I'm asking question - what is the best way to
give write access to the world.

Thank you in advance for answer.
--~--~-~--~~~---~--~~
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: premoderation of wiki and tickets

2009-05-27 Thread Noah Kantrowitz

Better solution, SpamFilter.

--Noah

 -Original Message-
 From: trac-users@googlegroups.com [mailto:trac-us...@googlegroups.com]
 On Behalf Of bessarabov
 Sent: Wednesday, May 27, 2009 11:27 AM
 To: Trac Users
 Subject: [Trac] premoderation of wiki and tickets
 
 
 I've created the trac instanse to work on opensource project. The
 project can be accessed by everyone for read. If the person what to
 change something - he has to write me email and I will create accout
 with write permissions for him.
 
 I want to make project writable for everyone (so that everybody can
 write ticket comment or to fix some minir bugs in wiki), but I'm
 afraid of vandlism and of spam robots. I'm things about this solution
 to premoderate changes: the anonymous makes some change - it does not
 apper to evebody - it is send me for validation.
 
 I'm not sure that this solution is the best and I'm not sure that it
 can be impoemented. So, I'm asking question - what is the best way to
 give write access to the world.
 
 Thank you in advance for answer.
 


--~--~-~--~~~---~--~~
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] The workflow of trac development

2009-05-27 Thread bessarabov

Hi!

As I can see ftom the trac roadmap - there are a lot ot versions in
development:

0.11.5
0.11.6
0.12
0.13
1.0
2.0
experimental
not applicable

For me it is not clear how the development takes place. There is the
trunk in svn - it usually contains the latest verion, but in this
situation the latest version of what does it contain?

There is a lot of branches, but what are the login of that branches -
for example there is branch 0.5-stable why hasn't this branch been
removed, its the very old copy.

Correct me if I'm wrong - the developer is working on 0.11.5 (for
example). He make some changes with the code and want to commit it. So
here I have a lot of questions - what working copy he is working on
and where he is planning to commit?

I'm asking you to explain me how the process of the trac development
is organized.

Thank you in advance for your answers! =)
--~--~-~--~~~---~--~~
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] TracGraphViz's back again ...

2009-05-27 Thread Olemis Lang

Hello once again !

Now that I could install GraphViz I've setup TracGraphViz plugin. I
was so excited that I wanted to try it right away. I wrote this simple
text for a wiki

... and this is what I get back ...

{{{
Oops…
Trac detected an internal error:
TypeError: coercing to Unicode: need string or buffer, NoneType found

[...]
Python Traceback
Most recent call last:
File C:\Program
Files\Python\2.5\lib\site-packages\trac-0.11.1-py2.5.egg\trac\wiki\templates\wiki_edit.html,
line 56, in Expression u'wiki_to_html(context(page.resource),
page.text)'
File C:\Program
Files\Python\2.5\lib\site-packages\trac-0.11.1-py2.5.egg\trac\wiki\formatter.py,
line 1096, in format_to_html
File C:\Program
Files\Python\2.5\lib\site-packages\trac-0.11.1-py2.5.egg\trac\wiki\formatter.py,
line 1055, in generate
File C:\Program
Files\Python\2.5\lib\site-packages\trac-0.11.1-py2.5.egg\trac\wiki\formatter.py,
line 833, in format
File C:\Program
Files\Python\2.5\lib\site-packages\trac-0.11.1-py2.5.egg\trac\wiki\formatter.py,
line 779, in handle_code_block
File C:\Program
Files\Python\2.5\lib\site-packages\trac-0.11.1-py2.5.egg\trac\wiki\formatter.py,
line 96, in __init__
File build\bdist.win32\egg\graphviz\graphviz.py, line 218, in get_macros
File build\bdist.win32\egg\graphviz\graphviz.py, line 497, in _load_config
File C:\Program Files\Python\2.5\Lib\ntpath.py, line 255, in exists
Code fragment:
# Does a path exist?

def exists(path):
Test whether a path exists
try:
st = os.stat(path)= HIGHLIGHTED
except os.error:
return False
return True

lexists = exists
Local variables:NameValue
pathNone

System Information:

User Agent: Opera/9.63 (X11; Linux i686; U; en) Presto/2.1.1Trac:   0.11.1
Python: 2.5.1 (r251:54863, Apr 18 2007, 08:51:08) [MSC v.1310 32 bit (Intel)]
setuptools: 0.6c9
SQLite: 3.3.4
pysqlite:   2.3.2
Genshi: 0.5.1
mod_python: 3.3.1
Pygments:   0.11.1
jQuery: 1.2.6

Plugin details
-

- Version 0.11-0.7.4
- Configs under [graphviz]

cache_dir = gvcache
cache_manager = true
cache_max_count = 2000
cache_min_size = 5242880
cache_minax_count = 1500
cmd_path = C:\Program Files\Graphviz2.20\bin
default_graph_dpi = 96
encoding = utf-8
out_format = png
png_antialias = true
processor = dot
rsvg_path =
}}}

D'u know what's wrong and how can I fix it ?

Thnx in advance ! ;)

-- 
Regards,

Olemis.

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

Featured article:
Oracle : por más que engorda sigue subiendo ...  -
http://feedproxy.google.com/~r/simelo-es/~3/ndKoYi3D-kg/oracle-por-mas-que-engorda-sigue.html

--~--~-~--~~~---~--~~
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: Attache mails to ticket

2009-05-27 Thread Chris Shelton

On Wed, May 27, 2009 at 10:05 AM, bessarabov ivanbessara...@gmail.com wrote:

 I usually attach email messages from our clients to the trac system.
 It is very comfortable, when you have all information in one ticket.
 I'm doing this manually - I save mail to file, then attache file to
 ticket and then write in comment something like:

 Mail from Client A (27 may 2009, 18:02):
 {{{
 text of the mail
 }}}

 Everything is good, exept one thing - I'm too lazy to enter it
 manually, but I have to do it every time.

 So, I'm dreaming about plugin to thunderbird that can simplify such
 process. My question is:
  * maybe there is  already some plugin that can do it?
  * maybe someone will write this plugin? =)
  * where do I need to write this request feature and to hope that it
 will be implemented.

I would suggest looking at email2trac, available from here:

https://subtrac.sara.nl/oss/email2trac

This is a script that interfaces with trac and a local incoming mail
server to generate tickets on receipt of emails.  In your case, you
could pretty easily just forward messages from your clients to the
designated email address where email2trac would convert the message
into a new ticket.

chris

--~--~-~--~~~---~--~~
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: TracGraphViz's back again ...

2009-05-27 Thread Olemis Lang

On Wed, May 27, 2009 at 2:08 PM, Olemis Lang ole...@gmail.com wrote:
 Hello once again !

 Now that I could install GraphViz I've setup TracGraphViz plugin. I
 was so excited that I wanted to try it right away. I wrote this simple
 text for a wiki


Sorry ... this is what I wrote :

{{{
#!graphviz
digraph G {Hello-World-Graphviz-Rules}
}}}

 ... and this is what I get back ...

 {{{
 Oops…
 Trac detected an internal error:
 TypeError: coercing to Unicode: need string or buffer, NoneType found

 [...]
 Python Traceback
 Most recent call last:
 File C:\Program
 Files\Python\2.5\lib\site-packages\trac-0.11.1-py2.5.egg\trac\wiki\templates\wiki_edit.html,
 line 56, in Expression u'wiki_to_html(context(page.resource),
 page.text)'
 File C:\Program
 Files\Python\2.5\lib\site-packages\trac-0.11.1-py2.5.egg\trac\wiki\formatter.py,
 line 1096, in format_to_html
 File C:\Program
 Files\Python\2.5\lib\site-packages\trac-0.11.1-py2.5.egg\trac\wiki\formatter.py,
 line 1055, in generate
 File C:\Program
 Files\Python\2.5\lib\site-packages\trac-0.11.1-py2.5.egg\trac\wiki\formatter.py,
 line 833, in format
 File C:\Program
 Files\Python\2.5\lib\site-packages\trac-0.11.1-py2.5.egg\trac\wiki\formatter.py,
 line 779, in handle_code_block
 File C:\Program
 Files\Python\2.5\lib\site-packages\trac-0.11.1-py2.5.egg\trac\wiki\formatter.py,
 line 96, in __init__
 File build\bdist.win32\egg\graphviz\graphviz.py, line 218, in get_macros
 File build\bdist.win32\egg\graphviz\graphviz.py, line 497, in _load_config
 File C:\Program Files\Python\2.5\Lib\ntpath.py, line 255, in exists
 Code fragment:
 # Does a path exist?

 def exists(path):
    Test whether a path exists
    try:
        st = os.stat(path)    = HIGHLIGHTED
    except os.error:
        return False
    return True

 lexists = exists
 Local variables:Name    Value
 path    None

 System Information:

 User Agent: Opera/9.63 (X11; Linux i686; U; en) Presto/2.1.1Trac:       0.11.1
 Python: 2.5.1 (r251:54863, Apr 18 2007, 08:51:08) [MSC v.1310 32 bit (Intel)]
 setuptools:     0.6c9
 SQLite: 3.3.4
 pysqlite:       2.3.2
 Genshi: 0.5.1
 mod_python:     3.3.1
 Pygments:       0.11.1
 jQuery: 1.2.6

 Plugin details
 -

 - Version 0.11-0.7.4
 - Configs under [graphviz]

 cache_dir = gvcache
 cache_manager = true
 cache_max_count = 2000
 cache_min_size = 5242880
 cache_minax_count = 1500
 cmd_path = C:\Program Files\Graphviz2.20\bin
 default_graph_dpi = 96
 encoding = utf-8
 out_format = png
 png_antialias = true
 processor = dot
 rsvg_path =
 }}}

 D'u know what's wrong and how can I fix it ?

 Thnx in advance ! ;)

 --
 Regards,

 Olemis.

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

 Featured article:
 Oracle : por más que engorda sigue subiendo ...  -
 http://feedproxy.google.com/~r/simelo-es/~3/ndKoYi3D-kg/oracle-por-mas-que-engorda-sigue.html




-- 
Regards,

Olemis.

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

Featured article:
Oracle : por más que engorda sigue subiendo ...  -
http://feedproxy.google.com/~r/simelo-es/~3/ndKoYi3D-kg/oracle-por-mas-que-engorda-sigue.html

--~--~-~--~~~---~--~~
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: Attache mails to ticket

2009-05-27 Thread bessarabov

Thank you very much for you answer, but email2trac will not fullfill
all my needsI don't need to create a new ticket - I want to attache
mail to already existing tiket


On 27 май, 23:08, Chris Shelton cshel...@shelton-family.net wrote:
 On Wed, May 27, 2009 at 10:05 AM, bessarabov ivanbessara...@gmail.com wrote:

  I usually attach email messages from our clients to the trac system.
  It is very comfortable, when you have all information in one ticket.
  I'm doing this manually - I save mail to file, then attache file to
  ticket and then write in comment something like:

  Mail from Client A (27 may 2009, 18:02):
  {{{
  text of the mail
  }}}

  Everything is good, exept one thing - I'm too lazy to enter it
  manually, but I have to do it every time.

  So, I'm dreaming about plugin to thunderbird that can simplify such
  process. My question is:
   * maybe there is  already some plugin that can do it?
   * maybe someone will write this plugin? =)
   * where do I need to write this request feature and to hope that it
  will be implemented.

 I would suggest looking at email2trac, available from here:

 https://subtrac.sara.nl/oss/email2trac

 This is a script that interfaces with trac and a local incoming mail
 server to generate tickets on receipt of emails.  In your case, you
 could pretty easily just forward messages from your clients to the
 designated email address where email2trac would convert the message
 into a new ticket.

 chris
--~--~-~--~~~---~--~~
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: The workflow of trac development

2009-05-27 Thread Emmanuel Blot

 As I can see ftom the trac roadmap - there are a lot ot versions in
 development:
The following figures represent milestones, which do not indicate
versions in (active) development

 0.11.5
Next 0.11 maintenance release (major issues / security issues)
 0.11.6
Maybe never released, depends on 0.1
 0.12
Current development version

 0.13
 1.0
 2.0
No active development for these versions: these milestones reflect the
planning/schedule for future releases

 experimental
Applied to experimental development: some of these branches may be
merged into a future versions, some other will never be released

 not applicable
For tickets that are not related to some piece of modified code or documentation

 For me it is not clear how the development takes place.
Either within the trunk or within the sandboxes when a new major
feature is being development.
Sandboxes get eventually merged into the trunk.
A new major release is branched from the trunk. Minor releases are
evolution (bug fixes) from a major releases

 There is the
 trunk in svn - it usually contains the latest verion, but in this
 situation the latest version of what does it contain?
The latest development release of Trac (currently heading for 0.12)

 There is a lot of branches, but what are the login of that branches -
login?

 for example there is branch 0.5-stable why hasn't this branch been
 removed, its the very old copy.
Why would it be removed?

Regular users check out the latest main Trac release (0.11.4)
Developers and testers check out the Trac development version
(0.12dev, i.e. trunk)

Cheers,
Manu

--~--~-~--~~~---~--~~
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: Attache mails to ticket

2009-05-27 Thread Chris Shelton

2009/5/27 bessarabov ivanbessara...@gmail.com:

 Thank you very much for you answer, but email2trac will not fullfill
 all my needsI don't need to create a new ticket - I want to attache
 mail to already existing tiket

That is a built in feature of email2trac.  See the Ticket Update
section on this page:
https://subtrac.sara.nl/oss/email2trac/wiki/Email2tracConfiguration

You just need to be careful with the content of the subject line, and
this works as expected.

chris

--~--~-~--~~~---~--~~
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: TracGraphViz's back again ...

2009-05-27 Thread Christian Boos

Olemis Lang wrote:
 On Wed, May 27, 2009 at 2:08 PM, Olemis Lang ole...@gmail.com wrote:
   
 Hello once again !

 Now that I could install GraphViz I've setup TracGraphViz plugin. I
 was so excited that I wanted to try it right away. I wrote this simple
 text for a wiki

 

 Sorry ... this is what I wrote :

 {{{
 #!graphviz
 digraph G {Hello-World-Graphviz-Rules}
 }}}

   
 ... and this is what I get back ...

 {{{
 Oops…
 Trac detected an internal error:
 TypeError: coercing to Unicode: need string or buffer, NoneType found

 [...]
 Python Traceback
 Most recent call last:
 File C:\Program
 Files\Python\2.5\lib\site-packages\trac-0.11.1-py2.5.egg\trac\wiki\templates\wiki_edit.html,
 line 56, in Expression u'wiki_to_html(context(page.resource),
 page.text)'
 File C:\Program
 Files\Python\2.5\lib\site-packages\trac-0.11.1-py2.5.egg\trac\wiki\formatter.py,
 line 1096, in format_to_html
 File C:\Program
 Files\Python\2.5\lib\site-packages\trac-0.11.1-py2.5.egg\trac\wiki\formatter.py,
 line 1055, in generate
 File C:\Program
 Files\Python\2.5\lib\site-packages\trac-0.11.1-py2.5.egg\trac\wiki\formatter.py,
 line 833, in format
 File C:\Program
 Files\Python\2.5\lib\site-packages\trac-0.11.1-py2.5.egg\trac\wiki\formatter.py,
 line 779, in handle_code_block
 File C:\Program
 Files\Python\2.5\lib\site-packages\trac-0.11.1-py2.5.egg\trac\wiki\formatter.py,
 line 96, in __init__
 File build\bdist.win32\egg\graphviz\graphviz.py, line 218, in get_macros
 File build\bdist.win32\egg\graphviz\graphviz.py, line 497, in _load_config
 File C:\Program Files\Python\2.5\Lib\ntpath.py, line 255, in exists
 Code fragment:
 # Does a path exist?

 def exists(path):
Test whether a path exists
try:
st = os.stat(path)= HIGHLIGHTED
except os.error:
return False
return True

 lexists = exists
 Local variables:NameValue
 pathNone

 System Information:

 User Agent: Opera/9.63 (X11; Linux i686; U; en) Presto/2.1.1Trac:   
 0.11.1
 Python: 2.5.1 (r251:54863, Apr 18 2007, 08:51:08) [MSC v.1310 32 bit (Intel)]
 setuptools: 0.6c9
 SQLite: 3.3.4
 pysqlite:   2.3.2
 Genshi: 0.5.1
 mod_python: 3.3.1
 Pygments:   0.11.1
 jQuery: 1.2.6

 Plugin details
 -

 - Version 0.11-0.7.4
 - Configs under [graphviz]

 cache_dir = gvcache
 cache_manager = true
 cache_max_count = 2000
 cache_min_size = 5242880
 cache_minax_count = 1500
 
minax?
 cmd_path = C:\Program Files\Graphviz2.20\bin
 default_graph_dpi = 96
 encoding = utf-8
 out_format = png
 png_antialias = true
 
true...
 processor = dot
 rsvg_path =
 
... but no rsvg_path defined (png_antialias means use rsvg for 
antialiasing - note that you don't need this with recent versions of 
graphviz, in particular on windows).

So the fix is simply to set png_antialias = no (or remove the setting, 
as it's the default).

That being said, it shouldn't crash that way. The 0.7.5dev version i.e. 
the 0.11 branch of the plugin already contains a fix for that specific 
issue.
I should probably have released 0.7.5 at while back.

Looks like a few tickets have piled up for the GraphvizPlugin since the 
last time I looked...

Side note: too bad plugin development is much like the hot potato game, 
the last contributor ends up maintaining the plugin alone - thereby 
anxiously waiting for the next unwary contributor to take over; it would 
be much better to be able to build up an (even small) community of 
developers for each plugin. A simple critical mass problem, I suppose.

-- Christian


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---