summaryrefslogtreecommitdiff
path: root/xsd
AgeCommit message (Collapse)AuthorFilesLines
2012-06-11Initial work on CLI portBoris Kolpackov9-1220/+1409
Add options files with all the documentation. Move documentation and usage to use the new approach. Finally get rid of dependency on libbackend-elements.
2012-06-01Fix incorrect handling of IDREF templates when used as basesBoris Kolpackov2-10/+14
2012-05-09Update to match new libxsd-frontend interfaceBoris Kolpackov1-12/+13
2012-05-09Port to use regex from libcutl instead of libbackend-elementsBoris Kolpackov16-140/+167
2012-05-08Use indenters from libcutl instead of libbackend-elementsBoris Kolpackov2-179/+171
2012-05-08Add dependency on libcutlBoris Kolpackov1-1/+6
2012-05-08Do not store flags in containers (stream extraction fix)Boris Kolpackov1-1/+1
2012-05-07Update to reflect libxsd-frontend interface changesBoris Kolpackov3-13/+10
2012-03-09Make sure --sloc-limit works even without --show-slocBoris Kolpackov2-35/+15
2012-03-08Print usage/version information to STDOUT instead of STDERRBoris Kolpackov3-193/+200
2011-12-15Register substituting anonymous types with polymorphic mapsBoris Kolpackov7-28/+124
2011-09-14Fix bug in aggregate generation for derived listsBoris Kolpackov1-5/+16
2011-07-27Make sure we don't process sourced schemas more than onceBoris Kolpackov32-37/+66
2011-07-27Don't assume source and destination scopes are the sameBoris Kolpackov1-1/+5
This is not the case for chameleon-style inclusions.
2011-06-02Add support for fat type filesBoris Kolpackov1-1/+12
Such files also contain all the global elements that this type classifies.
2011-06-02Do not store flags in containersBoris Kolpackov2-17/+15
2011-03-18Add support for default element values of anyType typeBoris Kolpackov2-2/+12
2011-02-13Cast parsers with dynamic_cast instead of static_castBoris Kolpackov2-2/+2
Parser skeletons use virtual inheritance.
2011-02-11Fix recursive polymorphic parsing in C++/ParserBoris Kolpackov6-51/+60
New test: cxx/parser/polymorphism/recursive.
2011-01-04Copyright updateBoris Kolpackov94-99/+99
2010-10-19Make sure a type actually classifies somethingBoris Kolpackov1-16/+26
2010-10-14Move prologue/epilogue inside pre/post includesBoris Kolpackov2-51/+51
2010-08-29Implement generation of assignment operatorsBoris Kolpackov4-6/+140
Also add the --suppress-assignment option. We need to generate these operators into the .cxx file instead of relying on the implicit inline ones because in the file-per-type mode types of members are only forward- declared in the header. Also, we don't want to assign the DOMDocument member used to store the wildcard content.
2010-06-16Handle ID/IDREF templates in inheritance and polymorphismBoris Kolpackov2-0/+14
2010-05-26Add 'U' suffix to unsigned default values for C99Boris Kolpackov1-3/+3
2010-05-21Optimize enum representation in binary streamsBoris Kolpackov2-7/+59
For string-based enums use integer representation instead of string when storing in binary streams.
2010-05-19Get rid of unused argument warning in generated codeBoris Kolpackov1-1/+2
2010-04-21Work around the GCC visibility and specialization issueBoris Kolpackov1-44/+63
If a template has any specializations, it is considered as defined by GCC and any attempt to later set a visibility attribute via explicit instantiation has no effect.
2010-04-15Adjust to changed predicate namesBoris Kolpackov24-92/+91
2010-04-15Turn on union to enum synthesis for C++/TreeBoris Kolpackov1-0/+17
2010-04-15Use new predicate name for annotationBoris Kolpackov3-11/+11
2010-04-14Handle type customization corner casesBoris Kolpackov3-9/+14
2010-04-14Do not suppress from-base c-tors for hierarchies with custom typesBoris Kolpackov3-9/+47
2010-02-22Reopen wide strings with width specifier (L)Boris Kolpackov14-220/+213
Some compilers, notably VC++, don't like strings like L"foo""bar".
2010-02-22Write string width qualifier for default valuesBoris Kolpackov1-17/+17
2010-02-22Add support for excluding export code from compilationBoris Kolpackov8-152/+326
Affected options: --generate-xml-schema, --export-maps, --import-maps. New macros: XSD_NO_EXPORT, XSD_MAP_VISIBILITY. Reorder template arguments for the idref type.
2010-02-19Trace anonymous name regex even if non were specifiedBoris Kolpackov1-3/+0
2010-02-19Add support for translating schema paths in fpt modeBoris Kolpackov7-98/+230
New options: --schema-file-regex, --schema-file-regex-trace.
2010-02-08Add support for default values of anySimpleType typeBoris Kolpackov1-1/+2
2010-02-08Fix bug in polymorphism check for built-in typesBoris Kolpackov1-45/+45
2010-01-29Remove ambiguity by passing a flag explicitlyBoris Kolpackov1-1/+1
2010-01-22Add support for detaching subtrees in C++/TreeBoris Kolpackov7-11/+131
New option: --generate-detach. New test: cxx/tree/detach.
2010-01-19Add support for selective polymorphic in C++/TreeBoris Kolpackov15-207/+1034
New options: --polymorphic-type, --polymorphic-type-all.
2010-01-12Include file component in regex strings for schema being compiledBoris Kolpackov14-27/+48
2010-01-08Add support for binary (base64 and hex) default/fixed valuesBoris Kolpackov3-50/+357
2010-01-08Add support for default/fixed values of QName typeBoris Kolpackov11-85/+53
2010-01-01Update copyright in source filesBoris Kolpackov91-96/+96
2010-01-01Update copyright in build system filesBoris Kolpackov1-1/+1
2009-12-15Explicitly create an ultimate base instance for default/fixed valuesBoris Kolpackov1-25/+30
2009-12-14New default/fixed value initialization codeBoris Kolpackov7-65/+1414
Now the default/fixed values are parsed by the compiler at compile time instead of the standard parsing code at runtime.