- 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>
23 lines
664 B
Python
23 lines
664 B
Python
"""Provides objects that can characterize image streams.
|
|
|
|
That characterization is as to content type and size, as a required step in including
|
|
them in a document.
|
|
"""
|
|
|
|
from docx.image.bmp import Bmp
|
|
from docx.image.gif import Gif
|
|
from docx.image.jpeg import Exif, Jfif
|
|
from docx.image.png import Png
|
|
from docx.image.tiff import Tiff
|
|
|
|
SIGNATURES = (
|
|
# class, offset, signature_bytes
|
|
(Png, 0, b"\x89PNG\x0d\x0a\x1a\x0a"),
|
|
(Jfif, 6, b"JFIF"),
|
|
(Exif, 6, b"Exif"),
|
|
(Gif, 0, b"GIF87a"),
|
|
(Gif, 0, b"GIF89a"),
|
|
(Tiff, 0, b"MM\x00*"), # big-endian (Motorola) TIFF
|
|
(Tiff, 0, b"II*\x00"), # little-endian (Intel) TIFF
|
|
(Bmp, 0, b"BM"),
|
|
)
|