I found out two things today.
- The XSD for this XML:
<someElement anAttribute="aValue">someValue</someElement>
goes a little something like this:
<xs:element name="someElement" type="some-element-def" minOccurs="1" maxOccurs="1" /> ... <xs:complexType name="some-element-def"> <xs:simpleContent> <xs:extension base="xs:integer"> <xs:attribute name="someAttribute" type="xs:boolean" use="optional" /> </xs:extension> </xs:simpleContent> </xs:complexType> - To get bzr 1.5 running on Ubuntu Hardy Heron add a couple of entries to
/etc/apt/sources.listand re-run synaptic.deb-src http://ppa.launchpad.net/bzr/ubuntu hardy main deb http://ppa.launchpad.net/bzr/ubuntu hardy main
- To compile PHP4 with MySQL support other than the archaic bundled 3.x use
--with-mysql=/usr

