python-hwpx 2.10.0__tar.gz → 2.10.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (113) hide show
  1. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/NOTICE +8 -0
  2. {python_hwpx-2.10.0/src/python_hwpx.egg-info → python_hwpx-2.10.1}/PKG-INFO +1 -1
  3. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/pyproject.toml +1 -1
  4. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/authoring.py +785 -27
  5. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/builder/core.py +267 -59
  6. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/builder/report.py +32 -0
  7. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/document.py +6 -8
  8. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/opc/package.py +5 -1
  9. python_hwpx-2.10.1/src/hwpx/oxml/body.py +766 -0
  10. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/oxml/document.py +65 -37
  11. python_hwpx-2.10.1/src/hwpx/oxml/namespaces.py +181 -0
  12. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/oxml/parser.py +7 -0
  13. python_hwpx-2.10.1/src/hwpx/tools/generic_inventory.py +156 -0
  14. python_hwpx-2.10.1/src/hwpx/tools/id_integrity.py +275 -0
  15. python_hwpx-2.10.1/src/hwpx/tools/report_parser.py +135 -0
  16. python_hwpx-2.10.1/src/hwpx/tools/report_utils.py +132 -0
  17. python_hwpx-2.10.1/src/hwpx/tools/roundtrip_diff.py +50 -0
  18. python_hwpx-2.10.1/src/hwpx/tools/table_cleanup.py +61 -0
  19. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/text_extractor.py +33 -25
  20. {python_hwpx-2.10.0 → python_hwpx-2.10.1/src/python_hwpx.egg-info}/PKG-INFO +1 -1
  21. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/python_hwpx.egg-info/SOURCES.txt +17 -0
  22. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_builder_core.py +2 -2
  23. python_hwpx-2.10.1/tests/test_builder_plan_v2.py +308 -0
  24. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_builder_vertical_slice.py +1 -1
  25. python_hwpx-2.10.1/tests/test_coverage_promotion.py +405 -0
  26. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_document_plan.py +28 -0
  27. python_hwpx-2.10.1/tests/test_document_plan_computed_fields.py +137 -0
  28. python_hwpx-2.10.1/tests/test_government_report_preset.py +121 -0
  29. python_hwpx-2.10.1/tests/test_government_table_profile.py +78 -0
  30. python_hwpx-2.10.1/tests/test_id_integrity.py +93 -0
  31. python_hwpx-2.10.1/tests/test_namespace_handling.py +134 -0
  32. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_opc_package.py +16 -0
  33. python_hwpx-2.10.1/tests/test_report_parser.py +79 -0
  34. python_hwpx-2.10.1/tests/test_report_utils.py +56 -0
  35. python_hwpx-2.10.1/tests/test_roundtrip_fidelity.py +92 -0
  36. python_hwpx-2.10.1/tests/test_table_cleanup.py +49 -0
  37. python_hwpx-2.10.0/src/hwpx/oxml/body.py +0 -457
  38. python_hwpx-2.10.0/src/hwpx/oxml/namespaces.py +0 -50
  39. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/LICENSE +0 -0
  40. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/README.md +0 -0
  41. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/setup.cfg +0 -0
  42. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/__init__.py +0 -0
  43. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/builder/__init__.py +0 -0
  44. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/data/Skeleton.hwpx +0 -0
  45. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/form_fill.py +0 -0
  46. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/opc/relationships.py +0 -0
  47. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/opc/xml_utils.py +0 -0
  48. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/oxml/__init__.py +0 -0
  49. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/oxml/common.py +0 -0
  50. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/oxml/header.py +0 -0
  51. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/oxml/header_part.py +0 -0
  52. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/oxml/memo.py +0 -0
  53. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/oxml/paragraph.py +0 -0
  54. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/oxml/schema.py +0 -0
  55. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/oxml/section.py +0 -0
  56. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/oxml/table.py +0 -0
  57. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/oxml/utils.py +0 -0
  58. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/package.py +0 -0
  59. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/presets/__init__.py +0 -0
  60. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/presets/proposal.py +0 -0
  61. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/py.typed +0 -0
  62. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/template_formfit.py +0 -0
  63. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/templates.py +0 -0
  64. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/__init__.py +0 -0
  65. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/_schemas/header.xsd +0 -0
  66. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/_schemas/section.xsd +0 -0
  67. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/archive_cli.py +0 -0
  68. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/exporter.py +0 -0
  69. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/object_finder.py +0 -0
  70. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/package_validator.py +0 -0
  71. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/page_guard.py +0 -0
  72. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/recover.py +0 -0
  73. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/repair.py +0 -0
  74. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/table_navigation.py +0 -0
  75. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/template_analyzer.py +0 -0
  76. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/text_extract_cli.py +0 -0
  77. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/validator.py +0 -0
  78. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/python_hwpx.egg-info/dependency_links.txt +0 -0
  79. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/python_hwpx.egg-info/entry_points.txt +0 -0
  80. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/python_hwpx.egg-info/requires.txt +0 -0
  81. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/python_hwpx.egg-info/top_level.txt +0 -0
  82. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_coverage_targets.py +0 -0
  83. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_deviations_registry.py +0 -0
  84. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_document_context_manager.py +0 -0
  85. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_document_formatting.py +0 -0
  86. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_document_save_api.py +0 -0
  87. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_form_fill_split_run.py +0 -0
  88. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_gap_closure_tools.py +0 -0
  89. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_hp_tab_support.py +0 -0
  90. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_hwpxlib_corpus_read.py +0 -0
  91. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_id_generator_range.py +0 -0
  92. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_inline_models.py +0 -0
  93. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_integration_hwpx_compatibility.py +0 -0
  94. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_integration_roundtrip.py +0 -0
  95. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_memo_and_style_editing.py +0 -0
  96. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_new_features.py +0 -0
  97. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_oxml_parsing.py +0 -0
  98. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_packaging_license_metadata.py +0 -0
  99. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_packaging_py_typed.py +0 -0
  100. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_paragraph_section_management.py +0 -0
  101. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_proposal_preset.py +0 -0
  102. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_recover_broken_zip.py +0 -0
  103. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_repair_repack.py +0 -0
  104. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_repr_snapshots.py +0 -0
  105. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_section_headers.py +0 -0
  106. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_skeleton_template_ids.py +0 -0
  107. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_split_merged_cell.py +0 -0
  108. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_table_navigation.py +0 -0
  109. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_tables_default_border.py +0 -0
  110. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_template_formfit.py +0 -0
  111. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_text_extractor_annotations.py +0 -0
  112. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_validation_severity.py +0 -0
  113. {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_version_metadata.py +0 -0
@@ -20,6 +20,14 @@ reimplemented from public references, without copying source code:
20
20
  - sakada3/hwp-ops (Apache-2.0): split-run placeholder scan/fill behavior
21
21
  ideas, charPrIDRef heterogeneity warning, and touched-paragraph layout-cache
22
22
  invalidation.
23
+ - hancom-io/hwpx-owpml-model (Apache-2.0): C1 coverage promotion structure
24
+ observations for paragraph line segment elements (`linesegarray`, `lineseg`)
25
+ and rendering matrix elements (`transMatrix`, `scaMatrix`, `rotMatrix`) from
26
+ public model headers only.
27
+ - hancom-io/hwpx-owpml-model (Apache-2.0): C1b form-control promotion
28
+ structure observations for `edit`, `comboBox`, and button-family controls
29
+ from public model headers only. hwpxlib sample packages were used only as
30
+ structure and roundtrip fixtures.
23
31
 
24
32
  These form-fill references were used as behavior evidence only. The
25
33
  implementation is a clean-room Python implementation; no source code was
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-hwpx
3
- Version: 2.10.0
3
+ Version: 2.10.1
4
4
  Summary: 한글 없이 HWPX 문서를 열고, 편집하고, 생성하고, 검증하는 Python 자동화 라이브러리
5
5
  Author: python-hwpx Maintainers
6
6
  License-Expression: Apache-2.0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "python-hwpx"
7
- version = "2.10.0"
7
+ version = "2.10.1"
8
8
  description = "한글 없이 HWPX 문서를 열고, 편집하고, 생성하고, 검증하는 Python 자동화 라이브러리"
9
9
  readme = { file = "README.md", content-type = "text/markdown" }
10
10
  license = "Apache-2.0"