rolfedh-doc-utils 0.1.33__py3-none-any.whl → 0.1.34__py3-none-any.whl
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.
- callout_lib/converter_deflist.py +17 -4
- convert_callouts_to_deflist.py +27 -4
- doc_utils/version.py +1 -1
- {rolfedh_doc_utils-0.1.33.dist-info → rolfedh_doc_utils-0.1.34.dist-info}/METADATA +1 -1
- {rolfedh_doc_utils-0.1.33.dist-info → rolfedh_doc_utils-0.1.34.dist-info}/RECORD +9 -9
- {rolfedh_doc_utils-0.1.33.dist-info → rolfedh_doc_utils-0.1.34.dist-info}/WHEEL +0 -0
- {rolfedh_doc_utils-0.1.33.dist-info → rolfedh_doc_utils-0.1.34.dist-info}/entry_points.txt +0 -0
- {rolfedh_doc_utils-0.1.33.dist-info → rolfedh_doc_utils-0.1.34.dist-info}/licenses/LICENSE +0 -0
- {rolfedh_doc_utils-0.1.33.dist-info → rolfedh_doc_utils-0.1.34.dist-info}/top_level.txt +0 -0
callout_lib/converter_deflist.py
CHANGED
|
@@ -16,7 +16,8 @@ class DefListConverter:
|
|
|
16
16
|
USER_VALUE_PATTERN = re.compile(r'(?<!<)<([a-zA-Z][^>]*)>')
|
|
17
17
|
|
|
18
18
|
@staticmethod
|
|
19
|
-
def convert(callout_groups: List[CalloutGroup], explanations: Dict[int, Callout], table_title: str = ""
|
|
19
|
+
def convert(callout_groups: List[CalloutGroup], explanations: Dict[int, Callout], table_title: str = "",
|
|
20
|
+
definition_prefix: str = "") -> List[str]:
|
|
20
21
|
"""
|
|
21
22
|
Create definition list from callout groups and explanations.
|
|
22
23
|
|
|
@@ -31,6 +32,7 @@ class DefListConverter:
|
|
|
31
32
|
explanations: Dict mapping callout numbers to Callout objects
|
|
32
33
|
table_title: Optional table title (e.g., ".Descriptions of delete event")
|
|
33
34
|
Will be converted to lead-in sentence (e.g., "Descriptions of delete event, where:")
|
|
35
|
+
definition_prefix: Optional prefix to add before each definition (e.g., "Specifies ")
|
|
34
36
|
|
|
35
37
|
Returns:
|
|
36
38
|
List of strings representing the definition list
|
|
@@ -108,9 +110,20 @@ class DefListConverter:
|
|
|
108
110
|
lines.append('+')
|
|
109
111
|
need_continuation = False
|
|
110
112
|
|
|
111
|
-
# Add the line
|
|
112
|
-
if line_idx == 0
|
|
113
|
-
|
|
113
|
+
# Add the line with optional prefix
|
|
114
|
+
if line_idx == 0:
|
|
115
|
+
# First line of definition
|
|
116
|
+
if explanation.is_optional:
|
|
117
|
+
# Optional marker takes precedence, then prefix
|
|
118
|
+
if definition_prefix:
|
|
119
|
+
lines.append(f'Optional. {definition_prefix}{line}')
|
|
120
|
+
else:
|
|
121
|
+
lines.append(f'Optional. {line}')
|
|
122
|
+
elif definition_prefix:
|
|
123
|
+
# Add prefix to first line
|
|
124
|
+
lines.append(f'{definition_prefix}{line}')
|
|
125
|
+
else:
|
|
126
|
+
lines.append(line)
|
|
114
127
|
else:
|
|
115
128
|
lines.append(line)
|
|
116
129
|
|
convert_callouts_to_deflist.py
CHANGED
|
@@ -46,12 +46,13 @@ class CalloutConverter:
|
|
|
46
46
|
"""Converts callout-style documentation to various formats."""
|
|
47
47
|
|
|
48
48
|
def __init__(self, dry_run: bool = False, verbose: bool = False, output_format: str = 'deflist',
|
|
49
|
-
max_comment_length: int = 120, force: bool = False):
|
|
49
|
+
max_comment_length: int = 120, force: bool = False, definition_prefix: str = ""):
|
|
50
50
|
self.dry_run = dry_run
|
|
51
51
|
self.verbose = verbose
|
|
52
52
|
self.output_format = output_format # 'deflist', 'bullets', or 'comments'
|
|
53
53
|
self.max_comment_length = max_comment_length # Max length for inline comments
|
|
54
54
|
self.force = force # Force strip callouts even with warnings
|
|
55
|
+
self.definition_prefix = definition_prefix # Prefix to add before definitions (e.g., "Specifies ")
|
|
55
56
|
self.changes_made = 0
|
|
56
57
|
self.warnings = [] # Collect warnings for summary
|
|
57
58
|
self.long_comment_warnings = [] # Warnings for comments exceeding max length
|
|
@@ -195,7 +196,7 @@ class CalloutConverter:
|
|
|
195
196
|
# Fall back to definition list
|
|
196
197
|
self.log(f"Falling back to definition list for block at line {block.start_line + 1}")
|
|
197
198
|
converted_content = self.detector.remove_callouts_from_code(block.content)
|
|
198
|
-
output_list = DefListConverter.convert(callout_groups, explanations, self.detector.last_table_title)
|
|
199
|
+
output_list = DefListConverter.convert(callout_groups, explanations, self.detector.last_table_title, self.definition_prefix)
|
|
199
200
|
use_deflist_fallback = True
|
|
200
201
|
else:
|
|
201
202
|
output_list = [] # No separate list after code block for comments
|
|
@@ -206,7 +207,7 @@ class CalloutConverter:
|
|
|
206
207
|
if self.output_format == 'bullets':
|
|
207
208
|
output_list = BulletListConverter.convert(callout_groups, explanations, self.detector.last_table_title)
|
|
208
209
|
else: # default to 'deflist'
|
|
209
|
-
output_list = DefListConverter.convert(callout_groups, explanations, self.detector.last_table_title)
|
|
210
|
+
output_list = DefListConverter.convert(callout_groups, explanations, self.detector.last_table_title, self.definition_prefix)
|
|
210
211
|
|
|
211
212
|
# Replace in document
|
|
212
213
|
# Check if block has [source] prefix
|
|
@@ -474,6 +475,17 @@ Example transformation (deflist format):
|
|
|
474
475
|
action='store_true',
|
|
475
476
|
help='Force strip callouts from code blocks even with warnings (USE WITH CAUTION: only after reviewing and fixing callout issues)'
|
|
476
477
|
)
|
|
478
|
+
parser.add_argument(
|
|
479
|
+
'-s', '--specifies',
|
|
480
|
+
action='store_true',
|
|
481
|
+
help='Add "Specifies " prefix before each definition (only applies to deflist format)'
|
|
482
|
+
)
|
|
483
|
+
parser.add_argument(
|
|
484
|
+
'--prefix',
|
|
485
|
+
type=str,
|
|
486
|
+
default='',
|
|
487
|
+
help='Custom prefix to add before each definition (only applies to deflist format, e.g., "Indicates ")'
|
|
488
|
+
)
|
|
477
489
|
|
|
478
490
|
args = parser.parse_args()
|
|
479
491
|
|
|
@@ -526,9 +538,20 @@ Example transformation (deflist format):
|
|
|
526
538
|
sys.exit(0)
|
|
527
539
|
print()
|
|
528
540
|
|
|
541
|
+
# Determine definition prefix
|
|
542
|
+
definition_prefix = ""
|
|
543
|
+
if args.specifies:
|
|
544
|
+
definition_prefix = "Specifies "
|
|
545
|
+
elif args.prefix:
|
|
546
|
+
definition_prefix = args.prefix
|
|
547
|
+
# Add trailing space if user didn't include one
|
|
548
|
+
if definition_prefix and not definition_prefix.endswith(' '):
|
|
549
|
+
definition_prefix += ' '
|
|
550
|
+
|
|
529
551
|
# Create converter
|
|
530
552
|
converter = CalloutConverter(dry_run=args.dry_run, verbose=args.verbose, output_format=args.format,
|
|
531
|
-
max_comment_length=args.max_comment_length, force=args.force
|
|
553
|
+
max_comment_length=args.max_comment_length, force=args.force,
|
|
554
|
+
definition_prefix=definition_prefix)
|
|
532
555
|
|
|
533
556
|
# Process each file
|
|
534
557
|
files_processed = 0
|
doc_utils/version.py
CHANGED
|
@@ -2,7 +2,7 @@ archive_unused_files.py,sha256=OJZrkqn70hiOXED218jMYPFNFWnsDpjsCYOmBRxYnHU,2274
|
|
|
2
2
|
archive_unused_images.py,sha256=fZeyEZtTd72Gbd3YBXTy5xoshAAM9qb4qFPMjhHL1Fg,1864
|
|
3
3
|
check_scannability.py,sha256=O6ROr-e624jVPvPpASpsWo0gTfuCFpA2mTSX61BjAEI,5478
|
|
4
4
|
convert_callouts_interactive.py,sha256=4PjiVIOWxNJiJLQuBHT3x6rE46-hgfFHSaoo5quYIs8,22889
|
|
5
|
-
convert_callouts_to_deflist.py,sha256=
|
|
5
|
+
convert_callouts_to_deflist.py,sha256=BoqW5_GkQ-KqNzn4vmE6lsQosrPV0lkB-bfAx3dzyMw,25886
|
|
6
6
|
doc_utils_cli.py,sha256=J3CE7cTDDCRGkhAknYejNWHhk5t9YFGt27WDVfR98Xk,5111
|
|
7
7
|
extract_link_attributes.py,sha256=wR2SmR2la-jR6DzDbas2PoNONgRZ4dZ6aqwzkwEv8Gs,3516
|
|
8
8
|
find_unused_attributes.py,sha256=77CxFdm72wj6SO81w-auMdDjnvF83jWy_qaM7DsAtBw,4263
|
|
@@ -12,7 +12,7 @@ validate_links.py,sha256=lWuK8sgfiFdfcUdSVAt_5U9JHVde_oa6peSUlBQtsac,6145
|
|
|
12
12
|
callout_lib/__init__.py,sha256=8B82N_z4D1LaZVYgd5jZR53QAabtgPzADOyGlnvihj0,665
|
|
13
13
|
callout_lib/converter_bullets.py,sha256=nfH0hz4p8qNM2F-MhtBjwH-lUYcNf2m1sdJebRlCxoo,4405
|
|
14
14
|
callout_lib/converter_comments.py,sha256=do0dH8uOyNFpn5CDEzR0jYYCMIPP3oPFM8cEB-Fp22c,9767
|
|
15
|
-
callout_lib/converter_deflist.py,sha256=
|
|
15
|
+
callout_lib/converter_deflist.py,sha256=Ocr3gutTo_Sl_MkzethZH1UO6mCDEcuExGMZF5MfZFg,6131
|
|
16
16
|
callout_lib/detector.py,sha256=S0vZDa4zhTSn6Kv0hWfG56W-5srGxUc-nvpLe_gIx-A,15971
|
|
17
17
|
callout_lib/table_parser.py,sha256=ZucisADE8RDAk5HtIrttaPgBi6Hf8ZUpw7KzfbcmEjc,31450
|
|
18
18
|
doc_utils/__init__.py,sha256=qqZR3lohzkP63soymrEZPBGzzk6-nFzi4_tSffjmu_0,74
|
|
@@ -27,12 +27,12 @@ doc_utils/unused_adoc.py,sha256=2cbqcYr1os2EhETUU928BlPRlsZVSdI00qaMhqjSIqQ,5263
|
|
|
27
27
|
doc_utils/unused_attributes.py,sha256=OHyAdaBD7aNo357B0SLBN5NC_jNY5TWXMwgtfJNh3X8,7621
|
|
28
28
|
doc_utils/unused_images.py,sha256=nqn36Bbrmon2KlGlcaruNjJJvTQ8_9H0WU9GvCW7rW8,1456
|
|
29
29
|
doc_utils/validate_links.py,sha256=iBGXnwdeLlgIT3fo3v01ApT5k0X2FtctsvkrE6E3VMk,19610
|
|
30
|
-
doc_utils/version.py,sha256=
|
|
30
|
+
doc_utils/version.py,sha256=LpXe7kXo5uNMJOga179IYdU101aWLSTOnciZkUlrK0E,203
|
|
31
31
|
doc_utils/version_check.py,sha256=-31Y6AN0KGi_CUCAVOOhf6bPO3r7SQIXPxxeffLAF0w,7535
|
|
32
32
|
doc_utils/warnings_report.py,sha256=20yfwqBjOprfFhQwCujbcsvjJCbHHhmH84uAujm-y-o,8877
|
|
33
|
-
rolfedh_doc_utils-0.1.
|
|
34
|
-
rolfedh_doc_utils-0.1.
|
|
35
|
-
rolfedh_doc_utils-0.1.
|
|
36
|
-
rolfedh_doc_utils-0.1.
|
|
37
|
-
rolfedh_doc_utils-0.1.
|
|
38
|
-
rolfedh_doc_utils-0.1.
|
|
33
|
+
rolfedh_doc_utils-0.1.34.dist-info/licenses/LICENSE,sha256=vLxtwMVOJA_hEy8b77niTkdmQI9kNJskXHq0dBS36e0,1075
|
|
34
|
+
rolfedh_doc_utils-0.1.34.dist-info/METADATA,sha256=uDcruRVK6RPRkZtBtM5DsH9FZ5q9LXEf8hEqOsg3mig,8325
|
|
35
|
+
rolfedh_doc_utils-0.1.34.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
36
|
+
rolfedh_doc_utils-0.1.34.dist-info/entry_points.txt,sha256=vL_LlLKOiurRzchrq8iRUQG19Xi9lSAFVZGjO-xyErk,577
|
|
37
|
+
rolfedh_doc_utils-0.1.34.dist-info/top_level.txt,sha256=J4xtr3zoyCip27b3GnticFVZoyz5HHtgGqHQ-SZONCA,265
|
|
38
|
+
rolfedh_doc_utils-0.1.34.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|