AW: non editable

"Christoph Oehler" <[email protected]> Wed, 7 May 2003 13:45:06 +0200
Newsgroups gmane.editors.bitflux.devel
Message-ID <[email protected]>
> and your 
> schema.xml is way
> too complex for the current BXE. This will improve with the 
> next Version

The schema is not the problem .... i've simpliefied it a lot ... still
the same problem.

-- 
bx-editor-dev mailing list
[email protected]
http://lists.bitflux.ch/cgi-bin/listinfo/bx-editor-dev
data.xml (text/xml, 398 B)
<?xml version="1.0" encoding="UTF-8"?>
<!-- edited with XMLSPY v5 rel. 3 U (http://www.xmlspy.com) by Christoph Oehler (frameconcept ag) -->
<document xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="D:\HF_f_WI\dev\bitfluxeditor\schema\Schema.xml">
	<titel>
		Das ist der Titel des Dokuments
	</titel>
	<body>
		da kommt der Text.
	</body>
</document>
schema.xml (text/xml, 502 B)
<?xml version="1.0" encoding="UTF-8"?>
<!-- edited with XMLSPY v5 rel. 3 U (http://www.xmlspy.com) by Christoph Oehler (frameconcept ag) -->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
	<xs:element name="document">
		<xs:complexType>
			<xs:sequence>
				<xs:element name="titel" type="xs:string"/>
				<xs:element name="body" type="xs:string"/>
			</xs:sequence>
		</xs:complexType>
	</xs:element>
</xs:schema>