2
votes
3answers
105 views
Need opinion regarding design/architecture of a web application
I am working on a web application which needs to get data from some local and some non local resources and then display it. As it could take arbitrary amount of time to get the dat …
0
votes
0answers
18 views
Lift CometActor: Organizing HTML generated by render and fixedRender
I'm trying to build a simple search application as an learning experiment with Comet and the Lift Framework. The plan is to have a page with a text entry and space for search resul …
0
votes
4answers
47 views
Refactoring val to method results in compile-time error
I currently have
def list(node: NodeSeq): NodeSeq = {
val all = Thing.findAll.flatMap({
thing => bind("thing", chooseTemplate("thing", "entry", node),
"des …
0
votes
2answers
109 views
Strangeness with Jetty serving images
I'm completely stumped. I'll give the background for the sake of
completeness but I'm not sure if it will help or not. I'm running a Lift project on a standard Jetty set-up running …
8
votes
1answer
277 views
What is the meaning of colon, underscore and star in lift’s SiteMap(entries:_*) ?
I'm learning Scala and lift at the same time and I got stuck on understanding the syntax used to inintialize the SiteMap in the Boot.scala:
val entries = Menu(Loc("Home", "/", "H …
0
votes
2answers
118 views
Why are my Scala types not matching?
I have the following variable series:
var series: List[FlotSerie] = List(
new FlotSerie() {
override val label = Full("Min")
},
new FlotSerie() {
override val label …
0
votes
2answers
92 views
How to do testing with lift applications?
How to do testing and is there something similar like Rack::Test with ruby frameworks?
2
votes
2answers
119 views
Storing Session Variables in Lift Scala
Hi all-
I am trying to store a session variable and then use it to modify the menu in Boot.scala. Here is how I am storing the variable in a snippet:
object sessionUserType exte …
0
votes
2answers
102 views
Lift and Eclipse RCP Integration
I work on a fairly simple but large two-tier application that consists approximately 40 Eclipse RCP plugins. We have a new use case that is taking us to the web for a very small p …
1
vote
1answer
94 views
If values in Boot.scala (Scala Lift)
Hi all-
I feel like I'm monopolizing the stack for Scala/Lift, so I apologize, but the questions keep coming. Here's the latest.
I'm trying to restrict access to anything in the …
1
vote
1answer
58 views
Problems with Text() (Scala Lift)
Hi all-
I have this snippet:
class WelcomeSnippet{
def list (xhtml : NodeSeq) : NodeSeq = {
object sessionUserType extends SessionVar[String](null)
Helpers.bind("entr …
1
vote
2answers
69 views
Boot.scala in lift..
I'm trying to modify the boot.scala in lift and running into a funny error. This is what I currently have:
val entries = Menu(Loc("Home", List("index"), "Home")) ::
Menu(Loc( …
1
vote
1answer
138 views
Creating two different types of Users (Scala, Lift)
Hi all-
I am creating a website which will need two types of users: students and providers. In a traditional java setting I would create a user class (or interface) and then crea …
1
vote
1answer
69 views
Lift style views in a PHP framework
Hi, just wondering if a PHP web framework or templating engine exists, that uses the clean view philosophy used in Lift, the Scala webframework.
In short the clean view philosoph …
6
votes
4answers
287 views
How many Scala web-frameworks are there?
Hello!
I've just started learning Scala and the first thing I'm going to implement is a tiny web-application. I've been using Erlang for the last year to implement server-side sof …
