Kaydet (Commit) 4bdc4c94 authored tarafından Matthias Klose's avatar Matthias Klose

Merged revisions 71443 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r71443 | georg.brandl | 2009-04-10 10:20:23 +0200 (Fr, 10 Apr 2009) | 1 line

  #5698: Fix casing of !DOCTYPE to conform to W3C specs.
........
üst 72c06ede
...@@ -422,7 +422,7 @@ class HTMLDoc(Doc): ...@@ -422,7 +422,7 @@ class HTMLDoc(Doc):
def page(self, title, contents): def page(self, title, contents):
"""Format an HTML page.""" """Format an HTML page."""
return ''' return '''
<!doctype html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html><head><title>Python: %s</title> <html><head><title>Python: %s</title>
</head><body bgcolor="#f0f0f8"> </head><body bgcolor="#f0f0f8">
%s %s
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment