- 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>
76 lines
3 KiB
Python
76 lines
3 KiB
Python
"""Draw image and svg tags."""
|
|
|
|
from .bounding_box import bounding_box, is_valid_bounding_box
|
|
from .utils import preserve_ratio
|
|
|
|
|
|
def svg(svg, node, font_size):
|
|
"""Draw svg tags."""
|
|
x, y = svg.point(node.get('x'), node.get('y'), font_size)
|
|
svg.stream.transform(e=x, f=y)
|
|
if svg.tree == node:
|
|
width, height = svg.concrete_width, svg.concrete_height
|
|
else:
|
|
width, height = node.get('width'), node.get('height')
|
|
if None in (width, height):
|
|
node._etree_node.tag = 'g'
|
|
box = bounding_box(svg, node, font_size, stroke=True)
|
|
if is_valid_bounding_box(box):
|
|
width = box[0] + box[2]
|
|
height = box[1] + box[3]
|
|
else:
|
|
width = height = 0
|
|
node._etree_node.tag = 'svg'
|
|
else:
|
|
width, height = svg.point(width, height, font_size)
|
|
node.set_svg_size(svg, width, height)
|
|
scale_x, scale_y, translate_x, translate_y = preserve_ratio(
|
|
svg, node, font_size, width, height)
|
|
if svg.tree != node and node.get('overflow', 'hidden') == 'hidden':
|
|
svg.stream.rectangle(0, 0, width, height)
|
|
svg.stream.clip()
|
|
svg.stream.end()
|
|
svg.stream.transform(a=scale_x, d=scale_y, e=translate_x, f=translate_y)
|
|
|
|
|
|
def image(svg, node, font_size):
|
|
"""Draw image tags."""
|
|
x, y = svg.point(node.get('x'), node.get('y'), font_size)
|
|
svg.stream.transform(e=x, f=y)
|
|
base_url = node.get('{http://www.w3.org/XML/1998/namespace}base')
|
|
url = node.get_href(base_url or svg.url)
|
|
image = svg.context.get_image_from_uri(url=url, forced_mime_type='image/*')
|
|
if image is None:
|
|
return
|
|
|
|
width, height = svg.point(node.get('width'), node.get('height'), font_size)
|
|
intrinsic_width, intrinsic_height, intrinsic_ratio = (
|
|
image.get_intrinsic_size(1, font_size))
|
|
if intrinsic_width is None and intrinsic_height is None:
|
|
if intrinsic_ratio is None or (not width and not height):
|
|
intrinsic_width, intrinsic_height = 300, 150
|
|
elif not width:
|
|
intrinsic_width, intrinsic_height = (
|
|
intrinsic_ratio * height, height)
|
|
else:
|
|
intrinsic_width, intrinsic_height = width, width / intrinsic_ratio
|
|
elif intrinsic_width is None:
|
|
intrinsic_width = intrinsic_ratio * intrinsic_height
|
|
elif intrinsic_height is None:
|
|
intrinsic_height = intrinsic_width / intrinsic_ratio
|
|
width = width or intrinsic_width
|
|
height = height or intrinsic_height
|
|
|
|
scale_x, scale_y, translate_x, translate_y = preserve_ratio(
|
|
svg, node, font_size, width, height,
|
|
(0, 0, intrinsic_width, intrinsic_height))
|
|
svg.stream.rectangle(0, 0, width, height)
|
|
svg.stream.clip()
|
|
svg.stream.end()
|
|
svg.stream.push_state()
|
|
svg.stream.transform(a=scale_x, d=scale_y, e=translate_x, f=translate_y)
|
|
image.draw(
|
|
svg.stream, intrinsic_width, intrinsic_height,
|
|
image_rendering=node.attrib.get('image-rendering', 'auto'),
|
|
)
|
|
svg.stream.pop_state()
|