changed author regex

https://github.com/larshp/abapGit/issues/1381
https://github.com/larshp/abapGit/issues/1379

changed (added: '\,\#')
from
'^([\\\w\s\.@\-_1-9\(\) ]+) <(.*)> (\d{10})\s?.\d{4}$'
to
'^([\\\w\s\.\,\#@\-_1-9\(\) ]+) <(.*)> (\d{10})\s?.\d{4}$'
This commit is contained in:
Johannes Konings 2018-05-13 11:09:43 +02:00
parent 5a69d26a26
commit e647b3be1d

View File

@ -344,7 +344,7 @@ INTERFACE zif_abapgit_definitions PUBLIC.
CONSTANTS gc_english TYPE spras VALUE 'E' ##NO_TEXT. CONSTANTS gc_english TYPE spras VALUE 'E' ##NO_TEXT.
CONSTANTS gc_root_dir TYPE string VALUE '/' ##NO_TEXT. CONSTANTS gc_root_dir TYPE string VALUE '/' ##NO_TEXT.
CONSTANTS gc_dot_abapgit TYPE string VALUE '.abapgit.xml' ##NO_TEXT. CONSTANTS gc_dot_abapgit TYPE string VALUE '.abapgit.xml' ##NO_TEXT.
CONSTANTS gc_author_regex TYPE string VALUE '^([\\\w\s\.@\-_1-9\(\) ]+) <(.*)> (\d{10})\s?.\d{4}$' ##NO_TEXT. CONSTANTS gc_author_regex TYPE string VALUE '^([\\\w\s\.\,\#@\-_1-9\(\) ]+) <(.*)> (\d{10})\s?.\d{4}$' ##NO_TEXT.
CONSTANTS: CONSTANTS:
BEGIN OF gc_action, BEGIN OF gc_action,
repo_refresh TYPE string VALUE 'repo_refresh', repo_refresh TYPE string VALUE 'repo_refresh',