> -----Original Message----- > From: Daniel Shahaf [mailto:d...@daniel.shahaf.name] > Sent: donderdag 20 september 2012 14:26 > To: dev@subversion.apache.org > Cc: comm...@subversion.apache.org > Subject: Re: svn commit: r1383480 - in /subversion/trunk/subversion: > svn/cl.h svn/log-cmd.c svn/main.c > tests/cmdline/getopt_tests_data/svn_help_log_switch_stdout > tests/cmdline/log_tests.py > > s...@apache.org wrote on Tue, Sep 11, 2012 at 16:58:41 -0000: > > Author: stsp > > Date: Tue Sep 11 16:58:40 2012 > > New Revision: 1383480 > > > > URL: http://svn.apache.org/viewvc?rev=1383480&view=rev > > Log: > > Allow mulitple --search options with 'svn log'. Log messages are shown > > if they match any of the provided search patterns (i.e. logical OR). > > Right now it is fnmatch patterns --- can we have regexes too please?
Fnmatch support is in apr(-util?) and has known access/performance patterns, so we might be able to move the search handling to the server in the future for performance reasons. Complete regular expression support would at least require using a new third party library and moving it to the server is not really possible because complete regular expression processing can be way to expensive. Bert > > I'm not sure about the UI, whether it's a --search-re flag or a > '--search re:foo' or something else.