Artifact b8639d16f27a73699a8b62da2b08027fead86871:
- File gluon/contrib/pyrtf/__init__.py — part of check-in [5e6e1e2c0a] at 2011-11-20 05:28:20 on branch feature/web2py_auth — Upgraded to web2py 1.99.2 (user: spiffy, size: 250) [annotate] [blame] [check-ins using] [more...]
from PropertySets import * from Elements import * from Styles import * from Renderer import * def dumps(doc): import cStringIO s=cStringIO.StringIO() r=Renderer() r.Write(doc,s) return s.getvalue()