bulu## | 1 Apr 16:49
Picon

[Trac] Download Free ScreenSavers and Wallpapers!


Download Free ScreenSavers and Wallpapers! - http://surl.in/HLSCR238206SVRAKSX-google

--~--~---------~--~----~------------~-------~--~----~
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@...
To unsubscribe from this group, send email to trac-users-unsubscribe@...
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---

james anderson | 1 Apr 18:42
Picon
Gravatar

[Trac] Error: Macro TicketQuery(keywords~=value, compact) failed


hello;

the above error occurs when one tries to use that macro form for a  
ticket query on a wiki page from a 0.11dev server.
i have used it in the past with <= 0.10 servers and verified that it  
works in 0.10.4dev.

   TicketQuery(keywords=value, compact)

succeeds, as does a conjunction, as in

   TicketQuery(status=closed&keywords~=value, compact)

i note that the tickets/query.py definition for query processing has  
changed .10 -> .11, but the comments indicate that the older form  
should still work.

apropos which comments: i trust you do not really intend to deprecate  
the old form and the comment was a poor choice of words.

thank you,
...

--~--~---------~--~----~------------~-------~--~----~
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@...
To unsubscribe from this group, send email to trac-users-unsubscribe@...
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---
(Continue reading)

bulu## | 1 Apr 20:11
Picon

[Trac] Instantly Turn your Computer into a Super TV


Instantly Turn your Computer into a Super TV - http://surl.in/HLSTV238206SVRAKSX-google

--~--~---------~--~----~------------~-------~--~----~
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@...
To unsubscribe from this group, send email to trac-users-unsubscribe@...
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---

james anderson | 2 Apr 00:33
Picon
Gravatar

[Trac] Re: Error: Macro TicketQuery(keywords~=value, compact) failed


hello again;

sorry to follow-up on my own question, but i wanted to be able to use  
this.

if i break the argument parsing regular expression as follows:

         for arg in re.split(r'(?<!\\),', args):
             arg = arg.replace(r'\,', ',')
             m = re.match(r'\s*[a-zA-Z_]\w+~?=', arg)
             if m:
                 kwargs[arg[:m.end()-1].lstrip()] = arg[m.end():]
             else:
                 largs.append(arg)

then at least it does not error on the ~= in the query, but that just  
raised more questions as to why the macro processor has been changed  
in this fashion. is there any document which describes the end-user  
effect and the intention behind this change?

...

On 2007-04-01, at 18:42 , james anderson wrote:

>
> hello;
>
> the above error occurs when one tries to use that macro form for a
> ticket query on a wiki page from a 0.11dev server.
(Continue reading)

Roo | 2 Apr 11:27
Picon

[Trac] SVN hook and contrib/trac-post-commit

Hi,

I have configured a number of svn repos to use the trac-post-commit script in the contrib directory from the contrib directory (0.10.3).

The "fixes #123" log messages work as expected, ie closing the ticket. However the "refs #123" log messages don't work, after reviewing the python script it appears this is the intention as the "_CmdRefs" proc is empty.

Is there a reason that the ticket doesn't get the comment added to it?

If I want to add a comment what do I need to change the pass statement to?


Thanks for any help,

Roo.

--~--~---------~--~----~------------~-------~--~----~
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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to trac-users-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Roo | 2 Apr 13:11
Picon

[Trac] Re: SVN hook and contrib/trac-post-commit


On Apr 2, 7:27 pm, Roo <roo.w...@...> wrote:
> Hi,
>
> I have configured a number of svn repos to use the trac-post-commit script
> in the contrib directory from the contrib directory (0.10.3).
>
> The "fixes #123" log messages work as expected, ie closing the ticket.
> However the "refs #123" log messages don't work, after reviewing the python
> script it appears this is the intention as the "_CmdRefs" proc is empty.
>
> Is there a reason that the ticket doesn't get the comment added to it?
>
> If I want to add a comment what do I need to change the pass statement to?
>
> Thanks for any help,
>
> Roo.

I have looked into this further, it seems that the "_CmdRefs" action
was removed in changeset [3486].

There was some discussion on a ticket about a commit log having "refs
#123" and "fixes #123" causing the trac-post-commit script to fail.

Is it the intention to have remove this functionality permanently or
will it be readded?

I guess I am going to have learn some python, can anyone recommend a
good text; was looking at "Programming Python".

Cheers.

--~--~---------~--~----~------------~-------~--~----~
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@...
To unsubscribe from this group, send email to trac-users-unsubscribe@...
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---

james anderson | 2 Apr 14:04
Picon
Gravatar

[Trac] how to? access to tickets through an external program


hello;

if one would like to manipulate tickets with an external program, is  
there an example or a documented pattern to follow?
trac-post-commit-hook looks like it could esrve as a prototype, but  
is there something more succinct?
especially with respect to instructions as to the requisite interface.
maybe one of the import scripts?

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@...
To unsubscribe from this group, send email to trac-users-unsubscribe@...
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Kenneth Gonsalves | 2 Apr 15:11

[Trac] Re: SVN hook and contrib/trac-post-commit


On 02-Apr-07, at 4:41 PM, Roo wrote:

> I guess I am going to have learn some python, can anyone recommend a
> good text; was looking at "Programming Python".

too heavy - go for python in a nutshell - it is all you need

--

-- 
regards

Kenneth Gonsalves
Associate, NRC-FOSS
lawgon@...
http://nrcfosshelpline.in/web/

--~--~---------~--~----~------------~-------~--~----~
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@...
To unsubscribe from this group, send email to trac-users-unsubscribe@...
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Roo | 2 Apr 15:07
Picon

[Trac] Re: SVN hook and contrib/trac-post-commit

On 02/04/07, Kenneth Gonsalves <lawgon-qF0zOz33zB8dnm+yROfE0A@public.gmane.org> wrote:



On 02-Apr-07, at 4:41 PM, Roo wrote:

> I guess I am going to have learn some python, can anyone recommend a
> good text; was looking at "Programming Python".

too heavy - go for python in a nutshell - it is all you need


Thanks, I will look for it.


--~--~---------~--~----~------------~-------~--~----~
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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to trac-users-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Rainer Sokoll | 2 Apr 15:45
Picon
Favicon

[Trac] Re: SVN hook and contrib/trac-post-commit


On Mon, Apr 02, 2007 at 04:11:59AM -0700, Roo wrote:

> I guess I am going to have learn some python, can anyone recommend a
> good text; was looking at "Programming Python".

http://www.diveintopython.org/

Rainer

--~--~---------~--~----~------------~-------~--~----~
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@...
To unsubscribe from this group, send email to trac-users-unsubscribe@...
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---


Gmane