[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)