summaryrefslogtreecommitdiff
path: root/xsd
AgeCommit message (Collapse)AuthorFilesLines
2013-04-11Add support for --generate-dep-only optionBoris Kolpackov2-25/+48
2013-04-08Keep directory part in make dependency targetsBoris Kolpackov1-5/+5
2012-12-19Add support for make dependency generationBoris Kolpackov2-1/+146
2012-10-17Fix bug in cardinality calculationBoris Kolpackov1-1/+7
2012-07-31Make sure correct type is stored in contextBoris Kolpackov1-2/+2
2012-07-20Restore decimal format after outputting hex valuesBoris Kolpackov1-10/+23
2012-06-29Fix bug in namespace map iterationBoris Kolpackov1-1/+1
2012-06-22Get rid of dependency on libcultBoris Kolpackov96-2227/+2128
2012-06-21Get rid of dependencies on libcult smart pointersBoris Kolpackov2-12/+12
2012-06-21Remove unneeded typedef and header inclusionBoris Kolpackov1-3/+0
2012-06-20Completion of the CLI portBoris Kolpackov51-1520/+718
2012-06-18Cosmetic changeBoris Kolpackov1-1/+1
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.