You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.7 KiB
56 lines
1.7 KiB
# encoding: utf-8
|
|
|
|
"""Header and footer part objects"""
|
|
|
|
from __future__ import absolute_import, division, print_function, unicode_literals
|
|
|
|
import os
|
|
|
|
from docx.opc.constants import CONTENT_TYPE as CT
|
|
from docx.oxml import parse_xml
|
|
from docx.parts.story import BaseStoryPart
|
|
|
|
|
|
class FooterPart(BaseStoryPart):
|
|
"""Definition of a section footer."""
|
|
|
|
@classmethod
|
|
def new(cls, package):
|
|
"""Return newly created footer part."""
|
|
partname = package.next_partname("/word/footer%d.xml")
|
|
content_type = CT.WML_FOOTER
|
|
element = parse_xml(cls._default_footer_xml())
|
|
return cls(partname, content_type, element, package)
|
|
|
|
@classmethod
|
|
def _default_footer_xml(cls):
|
|
"""Return bytes containing XML for a default footer part."""
|
|
path = os.path.join(
|
|
os.path.split(__file__)[0], '..', 'templates', 'default-footer.xml'
|
|
)
|
|
with open(path, 'rb') as f:
|
|
xml_bytes = f.read()
|
|
return xml_bytes
|
|
|
|
|
|
class HeaderPart(BaseStoryPart):
|
|
"""Definition of a section header."""
|
|
|
|
@classmethod
|
|
def new(cls, package):
|
|
"""Return newly created header part."""
|
|
partname = package.next_partname("/word/header%d.xml")
|
|
content_type = CT.WML_HEADER
|
|
element = parse_xml(cls._default_header_xml())
|
|
return cls(partname, content_type, element, package)
|
|
|
|
@classmethod
|
|
def _default_header_xml(cls):
|
|
"""Return bytes containing XML for a default header part."""
|
|
path = os.path.join(
|
|
os.path.split(__file__)[0], '..', 'templates', 'default-header.xml'
|
|
)
|
|
with open(path, 'rb') as f:
|
|
xml_bytes = f.read()
|
|
return xml_bytes
|