Thomasb81

Results 16 issues of Thomasb81

Hello Using 4.13.1 Cpp runtime with xpath feature I found a mismatch with result produce by python3 runtime. Attached testcase reproduce the python3 testcase testing XPath feature : https://github.com/antlr/antlr4/blob/b3bb7439546d2035203790d5513c505720cf0bdd/runtime/Python3/tests/xpathtest.py#L14 [case_issue4.tar.gz](https://github.com/user-attachments/files/16119793/case_issue4.tar.gz)...

- Reformat usage of Avoid namespace in libavoid tests : - Add missing `using namespace Avoid;` in testcase the statement is missing - Remove ` AVoid::` namespace prefix - Remove...

[test.xsd.zip](https://github.com/user-attachments/files/19826085/test.xsd.zip) On following testcase: ![Image](https://github.com/user-attachments/assets/b0528cdf-f2ac-4be7-a237-ad3b06265b23) using `xsdata, version 24.12` the generate test.py containt: ``` linker_command_file: list[LinkerCommandFile] = field( default_factory=list, metadata={ "name": "linkerCommandFile", "type": "Element", "max_occurs": 2, "sequence": 1, }, )...

Hello Using following schema : [IPXACT/1685-2022/index.xsd](http://www.accellera.org/XMLSchema/IPXACT/1685-2022/index.xsd) or in a zip file [ipxact_schema_files_20250213.zip](https://www.accellera.org/images/downloads/standards/ip-xact/ipxact_schema_files_20250213.zip) I would like yo retrieve cardinality of every element that can occurred in xml respecting the provided schema....

enhancement

Hello test.xsd: ``` ``` `xsdata generate test.xsd` I got: ``` from dataclasses import dataclass, field from typing import Optional __NAMESPACE__ = "http://www.test.org/" @dataclass class Root: class Meta: name = "root"...

Hello In following method : https://github.com/mjwybrow/adaptagrams/blob/57bcd086904803a1543f15b943132de4015883ea/cola/libavoid/junction.cpp#L190 we select the connection to remove by taking one element arbitrarily: ``` std::set::iterator curr = m_following_conns.begin(); ConnEnd *connEnd1 = *curr; ++curr; ConnEnd *connEnd2 =...