This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
How To: Setting DocType
This wiki entry was originally written by Timothy Perrett and was lifted with permission from his blog which can be found at blog.getintheloop.eu
In order to set your own doc type in lift, you must specify the following in your Boot class (the default is xhtmlTransitional):
ResponseInfo.docType = {
case _ if S.getDocType._1 => S.getDocType._2
case _ => Full(DocType.xhtmlStrict)
}
/*
Avalible options are:
xhtmlTransitional
xhtmlStrict
xhtmlFrameset
xhtml11
xhtmlMobile
*/







