
net.liftmodules.extras.HtmlHandler.scala Maven / Gradle / Ivy
The newest version!
package net.liftmodules.extras
import scala.xml._
trait HtmlHandler {
def noticeHtml(msg: NodeSeq): NodeSeq
def warningHtml(msg: NodeSeq): NodeSeq
def errorHtml(msg: NodeSeq): NodeSeq
}
trait BootstrapHtmlHandler extends HtmlHandler {
def noticeHtml(msg: NodeSeq): NodeSeq = {msg}
def warningHtml(msg: NodeSeq): NodeSeq = {msg}
def errorHtml(msg: NodeSeq): NodeSeq = {msg}
}
object BootstrapHtmlHandler extends BootstrapHtmlHandler
© 2015 - 2025 Weber Informatics LLC | Privacy Policy