summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXisco Fauli <anistenis@gmail.com>2015-11-14 01:55:03 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-11-15 20:34:38 +0000
commit179f693ee0682c1e900f9047dfe67969c09a52f3 (patch)
treed6674c169039c6634b0f58d88b40fb2b8e62efb2
parentac8d599c21a816164c3a515198875b651f17dc03 (diff)
tdf#43257 SVG: Id value can contain other characters than alphanumerics
Ie: "graph-1", "graph_1", "graph.1", etc... Besides, modify !( str_p("'") | str_p("\"") ) condition as the 'fill' attribute can be defined as fill="url('#graph1')" but not as fill="url("#graph1")" Change-Id: I7fb2c5b61487214ab02b207ad64d29bb2a1e107a Reviewed-on: https://gerrit.libreoffice.org/19961 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r--filter/source/svg/parserfragments.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/filter/source/svg/parserfragments.cxx b/filter/source/svg/parserfragments.cxx
index 1d9cc85d559f..ec01fdf7da57 100644
--- a/filter/source/svg/parserfragments.cxx
+++ b/filter/source/svg/parserfragments.cxx
@@ -556,9 +556,9 @@ bool parsePaintUri( std::pair<const char*,const char*>& o_rPaintUri,
const bool bRes = parse(sPaintUri,
// Begin grammar
(
- str_p("url(") >> !( str_p("'") | str_p("\"") ) >> ("#") >>
- (+alnum_p)[assign_a(o_rPaintUri)] >>
- !( str_p("'") | str_p("\"") ) >> str_p(")") >>
+ str_p("url(") >> !( str_p("'") ) >> ("#") >>
+ (+(anychar_p - (str_p("'") | str_p(")"))))[assign_a(o_rPaintUri)] >>
+ !( str_p("'") ) >> str_p(")") >>
*( str_p("none")[assign_a(io_rColor.second,false)] |
str_p("currentColor")[assign_a(io_rColor.second,true)] |
ColorGrammar(io_rColor.first)