Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Darst <rkd@zgib.net>2009-09-12 02:18:43 (GMT)
committer Richard Darst <rkd@zgib.net>2009-09-12 02:18:43 (GMT)
commitaffdec1e4b7849207c7721bc7d6d50298581693b (patch)
tree8d45165e113b3b55a9031183df0708fcac04d9e3
parent9d5793be33dc28e401e0e5c5095d9a8c56a399f8 (diff)
Shuffle around writer names
- Rename HTML -> HTML1, HTMLlog -> HTMLlog1. Set HTML darcs-hash:20090912021843-82ea9-e82a99401cf16dc6ffd9eab5819182d0c372f4e3.gz
-rw-r--r--writers.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/writers.py b/writers.py
index 6fad476..56b602d 100644
--- a/writers.py
+++ b/writers.py
@@ -184,7 +184,7 @@ class TextLog(_BaseWriter):
-class HTMLlog(_BaseWriter):
+class HTMLlog1(_BaseWriter):
def format(self, extension=None):
"""Write pretty HTML logs."""
M = self.M
@@ -325,7 +325,7 @@ html_template = textwrap.dedent('''\
''')
-class HTML(_BaseWriter):
+class HTML1(_BaseWriter):
body = textwrap.dedent('''\
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
@@ -587,6 +587,7 @@ class HTML2(_BaseWriter, _CSSmanager):
html = html_template % repl
return html
+HTML = HTML2
class ReST(_BaseWriter):