1. 22 Aug, 2024 1 commit
  2. 15 Aug, 2024 4 commits
  3. 29 Jul, 2024 1 commit
  4. 23 Jul, 2024 2 commits
  5. 04 Jul, 2024 1 commit
  6. 03 Jul, 2024 5 commits
  7. 02 Jul, 2024 7 commits
  8. 01 Jul, 2024 1 commit
  9. 20 Jun, 2024 3 commits
  10. 17 Jun, 2024 2 commits
  11. 12 Jun, 2024 1 commit
  12. 01 May, 2024 2 commits
  13. 30 Apr, 2024 2 commits
  14. 25 Apr, 2024 3 commits
  15. 24 Apr, 2024 4 commits
  16. 10 Mar, 2024 1 commit
    • bitkeeper's avatar
      [xmlimporter] Support to make auto load type definitions optional · 09486057
      bitkeeper authored
      To the `import_xml` an optional argument `auto_load_definitions` is added. Default is True.
      
      Case:
      With commit de8269e4 `import_xml` automatic load(on the fly code generation) the type defintions.
      
      When using your own extension object and enum implementation (with `ua.register_extension_object`  `ua.register_enum`) this is unwanted behaviour.
      
      Previous work flow was:
      * import xml
      * register own extension object and enum implementations
      * for the remain stuff call `load_data_type_definitions()`
      
      To make this possible again an option is required to prevent the auto load definitions when calling the `import_xml` method.
      09486057