Community technical support mailing list was retired 2010 and replaced with a professional technical support team. For assistance please contact: Pre-sales Technical support via email to sales@march-hare.com.
Well, I answer to myself. I think I have the fix. > - try to change this portion of cvsweb.cgi I think is related to the > problem (line 1743 to 1756 ~). I have not used regular expressions before, > but I think it is in the first line that we can make a change so that the > author name match even if there is a space in it. Could you help me to > make the change ? > (m|^date:\s+(\d+)/(\d+)/(\d+)\s+(\d+):(\d+):(\d+);\s+author:\s+(\S+);\s+stat e:\s+(\S+);\s+(lines:\s+([0-9\s+-]+))?|) I changed the line above to (m|^date:\s+(\d+)/(\d+)/(\d+)\s+(\d+):(\d+):(\d+);\s+author:\s+([^\t\n\r\f\v ]+);\s+state:\s+(\S+);\s+(lines:\s+([0-9\s+-]+))?|) replacing author:\s+(\S+) by author:\s+([^\t\n\r\f\v]+). This works for my problem, but I wonder if this is introduce another potential bug. Thierry B.