When thinking about this question, I realized that this world could use a stylesheet that converts an XSD to a stylesheet, which would copy the contents of an XML file that roughly meets the specifications of the XSD into one that would be valid, according to the XSD.
Well, that's a bit too complex, so the challenge will be a bit simpler... (And this is a wiki, btw.) The trick is the following:
Write a stylesheet that extracts all information about elements from an XSD file, which it should use to create a new stylesheet which would copy an XML file node by node, using the correct order in which the nodes must appear in the XSD.
My first idea would be that the stylesheet would extract all elements from the XSD first to make templates for all of them. Then, for every child element, it would do an apply-templates for every direct child. And of course it copies the element itself straight to the output. (Including attributes and data.)
The result of the generated output should be identical to the input, with one exceptions: all elements would be in the correct order.
If such a stylesheet would exist, it would not only help the person from the other Q, but quite a few other XML developers too, who sometimes have to deal with XML files that are invalid simply because elements are in the wrong order.
In short, I want an XSLT that converts an XSD to an XSLT which will re-order an XML file into a new XML file, but with everything in the proper order.
