Default DOCTYPE added to pages unless overridden (e.g. WCM forms). Minor HTML fixes.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@7717 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Mike Hatfield
2007-12-19 18:02:57 +00:00
parent d7d653d84b
commit 8e6fd7a7c1
3 changed files with 12 additions and 7 deletions

View File

@@ -214,6 +214,11 @@ public class PageTag extends TagSupport
}
out.write(">\n");
}
else
{
out.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\n");
out.write(" \"http://www.w3.org/TR/html4/loose.dtd\">\n");
}
out.write("<html><head><title>");
if (this.titleId != null && this.titleId.length() != 0)
{