#! /usr/bin/python3 import sys, re import html_gen as h from process_funcs import bash import html_report_funcs as hr last_edit = "Last edited on 2025-11-20 17:58:32 by stolfi" def main(): global last_edit title = "[075] Page f73r - Zodiac - Scorpio" st = h.new_doc(title, "#eeffdd") h.section(st, 2, "Summary") h.parags(st, """This page has the usual combination of faded original traces, Rt0, and apparently three rounds of retracing, Rt1-Rt3. As in the other Zodiac pages, Rt1 carefully retraced most of the text and a large fraction of the figure outlines. The other two rounds were limited to isolated glyphs and words, and to limited parts of the figures. Rounds Rt1 and Rt2 are hard to tell apart because they both used ink that now appears light yellowish ocher, somewhat translucent, with similar broadstroke widths. Round Rt3 used dark grayish-brown ink, and, as usual, was concentrated on specific parts of the nymphs' body, hairdo, and headgear. But he also retraced some labels.""") h.section(st, 2, "All clips") hr.links_section(st) h.output_doc(st, sys.stdout, 99, last_edit) return 0 # ---------------------------------------------------------------------- main()