rimmed pushed a commit to branch master. http://git.enlightenment.org/tools/eflete.git/commit/?id=74c6a42abd326d390d59cf1d551813e6cdd79c6f
commit 74c6a42abd326d390d59cf1d551813e6cdd79c6f Author: Vyacheslav Reutskiy <[email protected]> Date: Fri Apr 1 07:00:21 2016 +0300 regexp: allow the symbol '-' in hhe style name Change-Id: I84715b8dd128b7871f978161d9bd76fcb7bd0f3e --- src/bin/common/string_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/common/string_common.h b/src/bin/common/string_common.h index 882867f..f49b20b 100644 --- a/src/bin/common/string_common.h +++ b/src/bin/common/string_common.h @@ -31,7 +31,7 @@ free(arr); \ } -#define LAYOUT_NAME_REGEX "^[a-zA-Z0-9_\\.\\/]+$" +#define LAYOUT_NAME_REGEX "^[a-zA-Z0-9_\\.\\/-]+$" #define NAME_REGEX "^[a-zA-Z0-9_]+$" #define STATE_VALUE_REGEX "^((0?(\\.[0-9]+)?|1(\\.0+)?))?$" #define PART_NAME_REGEX "^[a-zA-Z0-9_\\.]+$" --
