- Create Economist SubmissionTracking package correctly: * mainArticle = full blog post content * coverLetter = 216-word SIR— letter * Links to blog post via blogPostId - Archive 'Letter to The Economist' from blog posts (it's the cover letter) - Fix date display on article cards (use published_at) - Target publication already displaying via blue badge Database changes: - Make blogPostId optional in SubmissionTracking model - Economist package ID: 68fa85ae49d4900e7f2ecd83 - Le Monde package ID: 68fa2abd2e6acd5691932150 Next: Enhanced modal with tabs, validation, export 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
99 lines
2.5 KiB
Python
99 lines
2.5 KiB
Python
###############################################################################
|
|
#
|
|
# RichValueStructure - A class for writing the Excel XLSX rdrichvaluestructure.xml file.
|
|
#
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
#
|
|
# Copyright (c) 2013-2025, John McNamara, jmcnamara@cpan.org
|
|
#
|
|
|
|
# Package imports.
|
|
from . import xmlwriter
|
|
|
|
|
|
class RichValueStructure(xmlwriter.XMLwriter):
|
|
"""
|
|
A class for writing the Excel XLSX rdrichvaluestructure.xml file.
|
|
|
|
|
|
"""
|
|
|
|
###########################################################################
|
|
#
|
|
# Public API.
|
|
#
|
|
###########################################################################
|
|
|
|
def __init__(self) -> None:
|
|
"""
|
|
Constructor.
|
|
|
|
"""
|
|
|
|
super().__init__()
|
|
self.has_embedded_descriptions = False
|
|
|
|
###########################################################################
|
|
#
|
|
# Private API.
|
|
#
|
|
###########################################################################
|
|
|
|
def _assemble_xml_file(self) -> None:
|
|
# Assemble and write the XML file.
|
|
|
|
# Write the XML declaration.
|
|
self._xml_declaration()
|
|
|
|
# Write the rvStructures element.
|
|
self._write_rv_structures()
|
|
|
|
self._xml_end_tag("rvStructures")
|
|
|
|
# Close the file.
|
|
self._xml_close()
|
|
|
|
###########################################################################
|
|
#
|
|
# XML methods.
|
|
#
|
|
###########################################################################
|
|
def _write_rv_structures(self) -> None:
|
|
# Write the <rvStructures> element.
|
|
xmlns = "http://schemas.microsoft.com/office/spreadsheetml/2017/richdata"
|
|
count = "1"
|
|
|
|
attributes = [
|
|
("xmlns", xmlns),
|
|
("count", count),
|
|
]
|
|
|
|
self._xml_start_tag("rvStructures", attributes)
|
|
|
|
# Write the s element.
|
|
self._write_s()
|
|
|
|
def _write_s(self) -> None:
|
|
# Write the <s> element.
|
|
t = "_localImage"
|
|
attributes = [("t", t)]
|
|
|
|
self._xml_start_tag("s", attributes)
|
|
|
|
# Write the k elements.
|
|
self._write_k("_rvRel:LocalImageIdentifier", "i")
|
|
self._write_k("CalcOrigin", "i")
|
|
|
|
if self.has_embedded_descriptions:
|
|
self._write_k("Text", "s")
|
|
|
|
self._xml_end_tag("s")
|
|
|
|
def _write_k(self, name, k_type) -> None:
|
|
# Write the <k> element.
|
|
attributes = [
|
|
("n", name),
|
|
("t", k_type),
|
|
]
|
|
|
|
self._xml_empty_tag("k", attributes)
|