aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2009-04-24NEWS file update corresponding to the previous commitBoris Kolpackov1-0/+6
2009-04-24Add an option to disable support for multiple importsBoris Kolpackov1-1/+5
2009-04-20Minor wording changesBoris Kolpackov1-4/+4
2009-04-15Grammar fixesBoris Kolpackov1-18/+19
2009-04-14Update prerequisites3.1.0Boris Kolpackov1-1/+1
2009-04-14Add VxWorks to the note for XDR supportBoris Kolpackov19-19/+19
2009-04-14Fixes and new sample config files for VxWorksBoris Kolpackov4-4/+350
2009-04-14Add more information about using XDR on various platformsBoris Kolpackov17-34/+204
2009-04-13Rework XDR code to be more portableBoris Kolpackov3-148/+90
Also don't link to libnsl by default since not all platforms have it.
2009-04-13Add samples config file for LynxOS 5.0Boris Kolpackov1-0/+157
2009-04-13Fix compiler name in the sample QNX config fileBoris Kolpackov1-2/+2
2009-04-13Minor makefile fixesBoris Kolpackov1-1/+1
2009-04-13Enable RTTI in default win32 config if polymorphism is enabledBoris Kolpackov1-0/+7
2009-04-13Suppress a warningBoris Kolpackov1-1/+1
2009-04-12Run polymorphism tests only when reuse style is tieinBoris Kolpackov2-0/+4
2009-04-12Build the custom/wildcard example only if STL is enabledBoris Kolpackov3-0/+6
2009-04-12Build the binary/custom example only if STL is enabledBoris Kolpackov3-0/+6
2009-04-12Fix reset code for mixin reuseBoris Kolpackov5-25/+51
2009-04-12Use the actual sequence template namesBoris Kolpackov4-12/+10
Can't use their using-declarations from the xml_schema namespace because of the broken eVC++ 4.0.
2009-04-12Minor makefile fixesBoris Kolpackov7-12/+15
2009-04-11Bump version to 3.1.0Boris Kolpackov2-3/+3
2009-04-11Use the max cardinality value of the actual compositorBoris Kolpackov1-3/+3
2009-04-11Add a default value to the 'available' attributeBoris Kolpackov13-14/+18
2009-04-11Call the next/arm callback for a required compositorBoris Kolpackov1-85/+278
If a required compositor has maxOccurs > 1 and all its particles are optional, then we need to call its next/arm callback in case there is no content matched by this compositor.
2009-04-09Qualify compositor types in detach() implementationsBoris Kolpackov1-4/+4
2009-04-09Handle polymorphic types with no substationsBoris Kolpackov2-92/+76
In this case aggregates have no maps.
2009-04-08Make the default value a floating-point literalBoris Kolpackov1-0/+13
We cannot append the F suffix to an integer constant.
2009-04-08Assign the value function name in all the unions in the graphBoris Kolpackov1-174/+159
We need to do this even for unions from included/imported schemas since we may need this name to compare/assign default values of these union types. Also assign member names in base list and union types, not just complex.
2009-04-08Get rid of warningsBoris Kolpackov6-12/+21
2009-04-08Get rid of warningsBoris Kolpackov5-6/+9
2009-04-07Update build system import stubsBoris Kolpackov2-2/+2
2009-04-07Compile expat and genx code into the xsde libraryBoris Kolpackov1-6/+19
We used to link them as external libraries.
2009-04-06Get rid of unused variables in genx codeBoris Kolpackov1-2/+2
2009-04-06Bump version to 3.1.0.b13.1.0.b1Boris Kolpackov3-4/+4
2009-04-06Help Mac OS X by including rpc/types.h before rpc/xdr.hBoris Kolpackov4-0/+8
2009-04-06Check the bounds before checking the value in genx codeBoris Kolpackov2-2/+6
Also fix test makefile not to run polymorphic test when support for polymorphism is disabled.
2009-04-06Add support for XML pretty-printingBoris Kolpackov25-68/+201
examples/cxx/hybrid/: examples/cxx/serializer/: turn on pretty-printing
2009-04-02Fix type alignment code to examine all members of a typeBoris Kolpackov3-134/+91
The alignment of a type is the alignment of its most strictly aligned member.
2009-04-02Add support for attributes with default and fixed values.Boris Kolpackov37-173/+2942
tests/cxx/hybrid/default: new test tests/cxx/hybrid/binary: update to test default and fixed values
2009-03-26Implement support for XML Schema polymorphism in C++/HybridBoris Kolpackov128-363/+4985
examples/cxx/hybrid/polyroot/ examples/cxx/hybrid/polymorphism/: new examples tests/cxx/hybrid/polymorphism/: new tests
2009-03-16Change sequence names to be consistent with documentationBoris Kolpackov25-563/+586
The *_seq names were changed to *_sequence. Also, the generated code now uses sequence names from the xml_schema namespace instead of the implementation namespaces (xsde::cxx::hybrid).
2009-03-16Add missing sub-directory to makefileBoris Kolpackov1-1/+1
2009-03-16Fix typos in documentationBoris Kolpackov2-2/+2
2009-03-16Add support for type customization in C++/HybridBoris Kolpackov49-401/+2424
examples/cxx/hybrid/custom/wildcard/: new example
2009-03-12Bump version to 3.1.0.a23.1.0.a2Boris Kolpackov2-3/+3
2009-03-11Add generation of detach functionsBoris Kolpackov18-27/+414
New option: --generate-detach. Also added detach/attach functionality to var_seq, non-STL str_seq, and string_base.
2009-03-11Allow initialization of pod_seq and fix_seq from a C arrayBoris Kolpackov8-10/+98
Use this in the hybrid/binary/custom example.
2009-03-11Use the common POD stack container for the parser stateBoris Kolpackov9-141/+39
2009-03-11Add the new file to dist build system makefilesBoris Kolpackov2-2/+2
The file was added in the previous commit.
2009-03-11Add support for parsing/serialization of recursive typesBoris Kolpackov21-188/+1242
tests/cxx/hybrid/recursive/: new test