summaryrefslogtreecommitdiff
path: root/BKUViewer/src/main/resources/at/gv/egiz/bku/slxhtml/xhtml-image-1.xsd
diff options
context:
space:
mode:
Diffstat (limited to 'BKUViewer/src/main/resources/at/gv/egiz/bku/slxhtml/xhtml-image-1.xsd')
-rw-r--r--BKUViewer/src/main/resources/at/gv/egiz/bku/slxhtml/xhtml-image-1.xsd45
1 files changed, 45 insertions, 0 deletions
diff --git a/BKUViewer/src/main/resources/at/gv/egiz/bku/slxhtml/xhtml-image-1.xsd b/BKUViewer/src/main/resources/at/gv/egiz/bku/slxhtml/xhtml-image-1.xsd
new file mode 100644
index 00000000..cd16bc9b
--- /dev/null
+++ b/BKUViewer/src/main/resources/at/gv/egiz/bku/slxhtml/xhtml-image-1.xsd
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xs:schema
+ xmlns:xs="http://www.w3.org/2001/XMLSchema"
+ elementFormDefault="qualified"
+ xmlns:xh11d="http://www.w3.org/1999/xhtml/datatypes/"
+>
+ <xs:import namespace="http://www.w3.org/1999/xhtml/datatypes/"
+ schemaLocation="xhtml-datatypes-1.xsd" />
+
+ <xs:annotation>
+ <xs:documentation>
+ Images
+ This is the XML Schema Images module for XHTML
+
+ * img
+
+ This module provides markup to support basic image embedding.
+
+ To avoid problems with text-only UAs as well as to make
+ image content understandable and navigable to users of
+ non-visual UAs, you need to provide a description with
+ the 'alt' attribute, and avoid server-side image maps.
+
+
+ $Id: xhtml-image-1.xsd,v 1.2 2005/09/26 22:54:53 ahby Exp $
+ </xs:documentation>
+ <xs:documentation source="xhtml-copyright-1.xsd"/>
+ <xs:documentation source="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstract_modules.html#s_imagemodule"/>
+ </xs:annotation>
+ <xs:attributeGroup name="xhtml.img.attlist">
+ <xs:attributeGroup ref="xhtml.Common.attrib"/>
+ <xs:attribute name="src" type="xh11d:URI" use="required"/>
+ <xs:attribute name="alt" type="xh11d:Text" use="required"/>
+ <xs:attribute name="longdesc" type="xh11d:URI"/>
+ <xs:attribute name="height" type="xh11d:Length"/>
+ <xs:attribute name="width" type="xh11d:Length"/>
+ </xs:attributeGroup>
+ <xs:group name="xhtml.img.content">
+ <xs:sequence/>
+ </xs:group>
+ <xs:complexType name="xhtml.img.type">
+ <xs:group ref="xhtml.img.content"/>
+ <xs:attributeGroup ref="xhtml.img.attlist"/>
+ </xs:complexType>
+</xs:schema>