kode icon indicating copy to clipboard operation
kode copied to clipboard

XML meta programming

Results 22 kode issues
Sort by recently updated
recently updated
newest added

It would make the including of the generated sources convenient.

kxml_compiler

Fixed on my qmake branch somewhere this point: https://github.com/martonmiklos/kode/commit/33c4d25bbc3200cf3a465629b2e5fe4932746f8d just needs proper merge. Making issue here to make sure not to forget it.

kxml_compiler

As of today kxml_compiler generates the following parser for xs:boolean types: ``` result.setOnlyBreakOrKeepLowResponse( (element.attribute( "only_break_or_keep_low_response" ).toLower() == QStringLiteral("true")) || (element.attribute( "only_break_or_keep_low_response" ).toLower() == QStringLiteral("1") ) ); ``` It would be...

kxml_compiler

Hi guys, I am have an XSD generated code where there are a lot elements which have only have one sequence type child (and no attributes). Example: Library -> Symbols...

kxml_compiler

Hi @cornelius, @dfaure Recently I needed to create a tool (with Qt) which parses an XML, modify a few thing and write it back to file. If I use the...

kxml_compiler

I have an XSD with the following element: ``` XML root element, számla vagy módosítás adatait leíró típus, amelyet BASE64 kódoltan tartalmaz az invoiceApi sémaleíró invoice elementje XML root element,...

kxml_compiler

Just like the title says.

kxml_compiler

Now it tries to write out uninitialized values which is a problem.

kxml_compiler

Do not write the elements with minOccours=0 attribute to the XML file if they not set. Provide a way (command line argument) to enable/disable this feature

kxml_compiler

xs:decimal elements should be formatted in nonscientific format. Add 'f' argument to the QString::number function call at the writeElement method.

kxml_compiler