Hi!
I compiles Lift myself using the branch "280_port_refresh". I
registered a function to be called early in the request cycle to set
the web servers character encoding:
override def boot {
def makeUtf8(r: HTTPRequest) {
//will never be called!
r.setCharacterEncoding("UTF-8")
}
LiftRules.early.append(makeUtf8)
...
}
The makeUtf8 function is never called although it is correctly
appended to the early list (I checked that using breakpoints in
Eclipse. I double checked by temporarily throwing dummy
RuntimeExceptions).
Is this a bug or am I doing something wrong?
Thanks,
Michel
--
You received this message because you are subscribed to the Google Groups
"Lift" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/liftweb?hl=en.