Changeset 107409 in vbox for trunk/doc/manual
- Timestamp:
- Jan 2, 2025 3:42:02 PM (7 weeks ago)
- svn:sync-xref-src-repo-rev:
- 166460
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/manual/add_file_to_id_only_references.py
r107404 r107409 1 #!/usr/bin/env python3 1 # -*- coding: utf-8 -*- 2 # $Id$ 3 4 """ 5 Makes id-only reference in the given file into dita-compliant file#id 6 references, using the mapping database generated by build_id_to_file_mapping.py. 7 """ 8 2 9 __copyright__ = \ 3 10 """ … … 22 29 SPDX-License-Identifier: GPL-3.0-only 23 30 """ 31 __version__ = "$Revision$" 24 32 25 33 # Standard python imports. … … 77 85 78 86 def main(asArgs): 87 """ 88 C-like main function. 89 """ 90 # 91 # Process arguments. 92 # 79 93 dIdToFile = None; 80 94 fEndOfArgs = False; … … 150 164 151 165 if __name__ == "__main__": 152 main(sys.argv)166 sys.exit(main(sys.argv)); 153 167
Note:
See TracChangeset
for help on using the changeset viewer.