In a quest for making Delphi Group Project XML files (with extension .groupproj
) validate with XSD, I had to find out about [WayBack] Validating a nested XML element with an empty namespace using XSD – Stack Overflow.
I needed the XSD so I could import it in Delphi in order to write a good .groupproj
file generator.
They are here:
- https://bitbucket.org/jeroenp/wiert.me/src/tip/Native/Delphi/Scripts/GroupProj.xsd
- https://bitbucket.org/jeroenp/wiert.me/src/tip/Native/Delphi/Apps/Console/GenerateGroupProjConsoleProject
And some more background posts are here:
- Delphi versions
- GenerateGroupProjConsoleProject fix for Delphi 2007 – jeroenp / BeSharp.net / commit / f7c23ffe4cb1 — Bitbucket
- XSD regular expressions are a tad different: creating GroupProj.xsd
- XSD/XML Schemas: resolving `Namespace ” is not available to be referenced in this schema` (via: StackOverflow)
–jeren