http://bugs.winehq.org/show_bug.cgi?id=12812
--- Comment #24 from Adam Martinson amartinson@codeweavers.com 2010-09-20 12:43:33 CDT --- (In reply to comment #23)
(In reply to comment #22)
Option 1: *This is a guess, please test it* Edit the config file (as plain text) and remove the 'xmlns="x-schema:CIV4GameInfoSchema.xml"' declaration.
My guess was that such query:
Civ4GraphicOptionInfos/GraphicOptionInfos/GraphicOptionInfo
fails in XPath mode because of multiple "GraphicOptionInfo" nodes at the same level. Probably XPath requires something like this (I didn't check specs actually):
Civ4GraphicOptionInfos/GraphicOptionInfos/GraphicOptionInfo[1]
No, the issue is the default xmlns declaration. XSLPattern syntax doesn't require you to specify the node's namespace in the query string if it's the default namespace. XPath requires you to specify the node's namespace if it has one.