Page MenuHomePhabricator

Use proper templating for HTML generation
Closed, ResolvedPublic8 Estimated Story Points

Description

Phlogiston generates HTML in two sub-optimal ways:

  1. phl.html is used as a template via search and replace for the string "phl"
  2. Various HTML files are generated within phlogiston.py from strings

In both cases, there are better ways to do this. the first should be replaced with at least Python's templating facility, and the second probably also with Python's templating, or something allowing loops.

  • For scope report pages xxx_report.csv
  • Simple dumps from phlogiston.py
    • xxx_projects.csv
    • xxx_default_points.csv
    • xxx_dates.html
  • Compound dumps from phlogiston.py

Event Timeline

JAufrecht set the point value for this task to 8.Mar 11 2016, 7:17 PM

All HTML moved to templates. Waiting for an overnight run before declaring closed.