Antonio Salazar Cardozo

Results 286 comments of Antonio Salazar Cardozo

Removing the milestone on this since we still have no clear deprecation plan.

Easiest way to deal with this is probably to check for `stateful_?` and if it's false emit the JS inline instead of as a referenced page.

We also need to provide a way to clear `LiftRules.javaScriptSettings` completely, whether in stateless or stateful mode. Right now all we can do is return an empty `JsObj`, but we...

I'll take this guy after #1534 goes in.

Bleh, looks like we missed this guy so I think I'm going to drop the milestone since removing it will have to wait.

Sure, happy to see any attempts. My example above forgot to have `Empty` extend `PresenceBox`.

Oh, logging helper wise I actually just want to port a bunch of stuff we have at Elemica into Lift. So I've more or less already figured this out, if...

Another thought on the hierarchy: ```scala sealed trait ParamFailableBox[+T, A] extends Box[T] case class ParamFailure[A](..., param: A) extends ParamFailableBox[Nothing, A] case class Full[T](item: T) extends TryBox[T] with PresenceBox[T] with ParamFailableBox[T,...

Yes, I think that was my overall thinking. Since I jotted down some older ideas floating in my head I'm not certain that's the case though… A sample use case...

Heh, figured out another one here, which is flipping an `EmptyBox` to a `Full`. This is useful for error handling, where sometimes you want something that will take an errored...