Yuan.Wang
1 year ago
31 changed files with 337 additions and 202 deletions
@ -0,0 +1,24 @@ |
|||||||
|
# ----------------------------------------------------------------------------- |
||||||
|
# |
||||||
|
# Licensed to the Apache Software Foundation (ASF) under one or more |
||||||
|
# contributor license agreements. See the NOTICE file distributed with |
||||||
|
# this work for additional information regarding copyright ownership. |
||||||
|
# The ASF licenses this file to You under the Apache License, Version 2.0 |
||||||
|
# (the "License"); you may not use this file except in compliance with |
||||||
|
# the License. You may obtain a copy of the License at |
||||||
|
# |
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0 |
||||||
|
# |
||||||
|
# Unless required by applicable law or agreed to in writing, software |
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
# See the License for the specific language governing permissions and |
||||||
|
# limitations under the License. |
||||||
|
# |
||||||
|
# This file registers the example Bridge extension as a service for the |
||||||
|
# Bridge context. |
||||||
|
# |
||||||
|
# $Id$ |
||||||
|
# ----------------------------------------------------------------------------- |
||||||
|
|
||||||
|
org.apache.batik.extension.svg.BatikBridgeExtension |
@ -0,0 +1,24 @@ |
|||||||
|
# ----------------------------------------------------------------------------- |
||||||
|
# |
||||||
|
# Licensed to the Apache Software Foundation (ASF) under one or more |
||||||
|
# contributor license agreements. See the NOTICE file distributed with |
||||||
|
# this work for additional information regarding copyright ownership. |
||||||
|
# The ASF licenses this file to You under the Apache License, Version 2.0 |
||||||
|
# (the "License"); you may not use this file except in compliance with |
||||||
|
# the License. You may obtain a copy of the License at |
||||||
|
# |
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0 |
||||||
|
# |
||||||
|
# Unless required by applicable law or agreed to in writing, software |
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
# See the License for the specific language governing permissions and |
||||||
|
# limitations under the License. |
||||||
|
# |
||||||
|
# This file registers the example DOM extension as a service for the |
||||||
|
# SVGOMDocument. |
||||||
|
# |
||||||
|
# $Id$ |
||||||
|
# ----------------------------------------------------------------------------- |
||||||
|
|
||||||
|
org.apache.batik.extension.svg.BatikDomExtension |
@ -0,0 +1,13 @@ |
|||||||
|
The Jar files in this directory start the same application as in the |
||||||
|
parent directory, except they include the Batik Extensions on the jar |
||||||
|
file class path. This means that that the Batik Extensions will work |
||||||
|
with the applications started by these jar files. |
||||||
|
|
||||||
|
Great care should be used when using the Batik Extensions as these are |
||||||
|
not part of the SVG standard. If you write content that uses these |
||||||
|
extensions you must be aware that this is not conformant SVG content |
||||||
|
and other SVG renderers will not render these documents. These |
||||||
|
extensions should only be used in content used in closed systems. |
||||||
|
|
||||||
|
The primary purpose of these extensions is demonstrative and to |
||||||
|
generate feedback to the development of the SVG standard. |
@ -0,0 +1,6 @@ |
|||||||
|
/* |
||||||
|
* The default SVG style sheet. |
||||||
|
*/ |
||||||
|
svg, symbol, image, marker, pattern, foreignObject { overflow: hidden } |
||||||
|
|
||||||
|
/* svg { width:attr(width); height:attr(height) } */ |
@ -0,0 +1,68 @@ |
|||||||
|
# ----------------------------------------------------------------------------- |
||||||
|
# |
||||||
|
# Licensed to the Apache Software Foundation (ASF) under one or more |
||||||
|
# contributor license agreements. See the NOTICE file distributed with |
||||||
|
# this work for additional information regarding copyright ownership. |
||||||
|
# The ASF licenses this file to You under the Apache License, Version 2.0 |
||||||
|
# (the "License"); you may not use this file except in compliance with |
||||||
|
# the License. You may obtain a copy of the License at |
||||||
|
# |
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0 |
||||||
|
# |
||||||
|
# Unless required by applicable law or agreed to in writing, software |
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
# See the License for the specific language governing permissions and |
||||||
|
# limitations under the License. |
||||||
|
# |
||||||
|
# The publicIds property represents the list of SVG DTD IDs supported by |
||||||
|
# this SVG DOMImplementation. |
||||||
|
# |
||||||
|
# $Id$ |
||||||
|
# ----------------------------------------------------------------------------- |
||||||
|
|
||||||
|
publicIds = \ |
||||||
|
-//W3C//DTD SVG 1.0//EN\ |
||||||
|
-//W3C//DTD SVG 20010904//EN\ |
||||||
|
-//W3C//DTD SVG 20001102//EN\ |
||||||
|
-//W3C//DTD SVG 20000802//EN\ |
||||||
|
-//W3C//DTD SVG 20000303 Stylable//EN\ |
||||||
|
-//W3C//DTD SVG 1.1//EN\ |
||||||
|
-//W3C//DTD SVG 1.1 Basic//EN\ |
||||||
|
-//W3C//DTD SVG 1.1 Tiny//EN\ |
||||||
|
-//W3C//DTD SVG 1.2//EN |
||||||
|
|
||||||
|
systemId.-//W3C//DTD_SVG_1.0//EN = resources/svg10.dtd |
||||||
|
systemId.-//W3C//DTD_SVG_20010904//EN = resources/svg10.dtd |
||||||
|
systemId.-//W3C//DTD_SVG_20001102//EN = resources/svg10.dtd |
||||||
|
systemId.-//W3C//DTD_SVG_20000802//EN = resources/svg10.dtd |
||||||
|
systemId.-//W3C//DTD_SVG_20000303_Stylable//EN = resources/svg10.dtd |
||||||
|
|
||||||
|
systemId.-//W3C//DTD_SVG_1.1//EN = resources/svg11-flat.dtd |
||||||
|
systemId.-//W3C//DTD_SVG_1.1_Basic//EN = resources/svg11-basic-flat.dtd |
||||||
|
systemId.-//W3C//DTD_SVG_1.1_Tiny//EN = resources/svg11-tiny-flat.dtd |
||||||
|
systemId.-//W3C//DTD_SVG_1.2//EN = resources/svg12-flat.dtd |
||||||
|
|
||||||
|
# |
||||||
|
# The skippablePublicIds property represents the list of SVG DTD's we |
||||||
|
# can safely skip if we are not validating. Since SVG may move to |
||||||
|
# schema you shouldn't count on any entities from these files anyways. |
||||||
|
# |
||||||
|
skippablePublicIds = \ |
||||||
|
-//W3C//DTD SVG 1.0//EN\ |
||||||
|
-//W3C//DTD SVG 20010904//EN\ |
||||||
|
-//W3C//DTD SVG 20001102//EN\ |
||||||
|
-//W3C//DTD SVG 20000802//EN\ |
||||||
|
-//W3C//DTD SVG 20000303 Stylable//EN\ |
||||||
|
-//W3C//DTD SVG 1.1//EN\ |
||||||
|
-//W3C//DTD SVG 1.1 Basic//EN\ |
||||||
|
-//W3C//DTD SVG 1.1 Tiny//EN\ |
||||||
|
-//W3C//DTD SVG 1.2//EN |
||||||
|
|
||||||
|
# |
||||||
|
# This is an absolutely minimal DTD for SVG 1.0/1.1 |
||||||
|
# It just defines the svg and xlink namespaces. |
||||||
|
skipDTD = \ |
||||||
|
<!ELEMENT svg (desc|title|metadata|defs)*> \ |
||||||
|
<!ATTLIST svg xmlns CDATA #FIXED "http://www.w3.org/2000/svg" \ |
||||||
|
xmlns:xlink CDATA #FIXED "http://www.w3.org/1999/xlink" > |
@ -0,0 +1,28 @@ |
|||||||
|
# ----------------------------------------------------------------------------- |
||||||
|
# |
||||||
|
# Licensed to the Apache Software Foundation (ASF) under one or more |
||||||
|
# contributor license agreements. See the NOTICE file distributed with |
||||||
|
# this work for additional information regarding copyright ownership. |
||||||
|
# The ASF licenses this file to You under the Apache License, Version 2.0 |
||||||
|
# (the "License"); you may not use this file except in compliance with |
||||||
|
# the License. You may obtain a copy of the License at |
||||||
|
# |
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0 |
||||||
|
# |
||||||
|
# Unless required by applicable law or agreed to in writing, software |
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
# See the License for the specific language governing permissions and |
||||||
|
# limitations under the License. |
||||||
|
# |
||||||
|
# $Id$ |
||||||
|
# ----------------------------------------------------------------------------- |
||||||
|
|
||||||
|
attribute.malformed = \ |
||||||
|
The attribute "{1}" of the element <{0}> is invalid |
||||||
|
|
||||||
|
values.to.by.missing = \ |
||||||
|
None of "values", "to" or "by" are specified on the element <{0}> |
||||||
|
|
||||||
|
values.to.by.path.missing = \ |
||||||
|
None of "values", "to", "by" or "path" are specified on the element <{0}> |
Loading…
Reference in new issue