/usr/lib/python2.7/dist-packages/xlsxwriter/relationships.py is in python-xlsxwriter 0.5.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 | ###############################################################################
#
# Relationships - A class for writing the Excel XLSX Worksheet file.
#
# Copyright 2013, John McNamara, jmcnamara@cpan.org
#
# Package imports.
from . import xmlwriter
# Long namespace strings used in the class.
schema_root = 'http://schemas.openxmlformats.org'
package_schema = schema_root + '/package/2006/relationships'
document_schema = schema_root + '/officeDocument/2006/relationships'
class Relationships(xmlwriter.XMLwriter):
"""
A class for writing the Excel XLSX Relationships file.
"""
###########################################################################
#
# Public API.
#
###########################################################################
def __init__(self):
"""
Constructor.
"""
super(Relationships, self).__init__()
self.relationships = []
self.id = 1
###########################################################################
#
# Private API.
#
###########################################################################
def _assemble_xml_file(self):
# Assemble and write the XML file.
# Write the XML declaration.
self._xml_declaration()
self._write_relationships()
# Close the file.
self._xml_close()
def _add_document_relationship(self, rel_type, target):
# Add container relationship to XLSX .rels xml files.
rel_type = document_schema + rel_type
self.relationships.append((rel_type, target, None))
def _add_package_relationship(self, rel_type, target):
# Add container relationship to XLSX .rels xml files.
rel_type = package_schema + rel_type
self.relationships.append((rel_type, target, None))
def _add_ms_package_relationship(self, rel_type, target):
# Add container relationship to XLSX .rels xml files. Uses MS schema.
schema = 'http://schemas.microsoft.com/office/2006/relationships'
rel_type = schema + rel_type
self.relationships.append((rel_type, target, None))
def _add_worksheet_relationship(self, rel_type, target, target_mode=None):
# Add worksheet relationship to sheet.rels xml files.
rel_type = document_schema + rel_type
self.relationships.append((rel_type, target, target_mode))
###########################################################################
#
# XML methods.
#
###########################################################################
def _write_relationships(self):
# Write the <Relationships> element.
attributes = [('xmlns', package_schema,)]
self._xml_start_tag('Relationships', attributes)
for relationship in self.relationships:
self._write_relationship(relationship)
self._xml_end_tag('Relationships')
def _write_relationship(self, relationship):
# Write the <Relationship> element.
rel_type, target, target_mode = relationship
attributes = [
('Id', 'rId' + str(self.id)),
('Type', rel_type),
('Target', target),
]
self.id += 1
if target_mode:
attributes.append(('TargetMode', target_mode))
self._xml_empty_tag('Relationship', attributes)
|