[Lift] Re: Skittr example in bad shape

2009-12-21 Thread Vesa
Hi, I noticed logged in user still can't see messages by other users they follow. There were couple of messages still missing parameters. Patch shows the parts that need to be modified to get it working again. - Vesa diff --git a/lift-examples/skittr/src/main/scala/com/skittr/actor

[Lift] Re: Latest API Documentation

2009-12-16 Thread Vesa
I would also appreciate aggregated docs. It would be great to have these at least for the M-releases.. - Vesa On 7 marras, 05:47, aw anth...@whitford.com wrote: OK, so I can go tohttp://scala-tools.org/mvnsites/liftweb-1.1-7/ but I am not finding a comprehensive ScalaDoc similar to what

[Lift] Tutorials or documentation about Factory?

2009-11-18 Thread Vesa
Hi, It would be nice to have some kind of tutorial on how to use this new addition. - Vesa -- You received this message because you are subscribed to the Google Groups Lift group. To post to this group, send email to lift...@googlegroups.com. To unsubscribe from this group, send email

[Lift] Re: Lift's servlet/filter chain when handling non-Lift resources

2009-11-14 Thread Vesa
Hi, Thanks for this addition, I just bumped into a similar problem and found solution immediately from here! - Vesa On 5 marras, 01:18, David Pollak feeder.of.the.be...@gmail.com wrote: What about: LiftRules.liftRequest.append {   case Req(other_stuff :: _, _, _) = false } If you've

[Lift] Re: Making use of case classes and varargs in Link

2009-11-03 Thread Vesa
Why not with varargs like on below? case class Link(pathParts: String*) and I can say Link(a, b)? - Vesa On 3 marras, 00:15, Jim Barrows jim.barr...@gmail.com wrote: On Mon, Nov 2, 2009 at 1:34 PM, Vesa brut...@gmail.com wrote: You're right about that. You probably wouldn't get very far

[Lift] Anything similar as Rack::Test and rspec for lift applications?

2009-11-02 Thread Vesa
test_it_says_hello_to_a_person get '/', :name = 'Simon' assert last_response.body.include?('Simon') end end -Vesa --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Lift group. To post to this group, send email to liftweb

[Lift] Re: Anything similar as Rack::Test and rspec for lift applications?

2009-11-02 Thread Vesa
Hi, I'm aware of Selenium, but it operates on higher level than Rack::Test and is slower although testing mimics real world situations better as it drives a real browser. Can I find some examples of testkit somewhere? - Vesa On 2 marras, 17:04, David Pollak feeder.of.the.be...@gmail.com wrote

[Lift] Why no default with getSingleton?

2009-11-02 Thread Vesa
the default meta functionality? - Vesa --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Lift group. To post to this group, send email to liftweb@googlegroups.com To unsubscribe from this group, send email to liftweb

[Lift] Re: Why no default with getSingleton?

2009-11-02 Thread Vesa
I doubt I can find one, but it still feels awkward having to type the name of the class so many times. Another option could be to use some shared object to do this stuff, but I guess it wouldn't be as neat to use it then. - Vesa On 2 marras, 18:33, David Pollak feeder.of.the.be...@gmail.com

[Lift] Making use of case classes and varargs in Link

2009-11-02 Thread Vesa
). I guess varargs might be out of question if scala backward compatibility is considered, but I don't see a reason not to use case classes here. - Vesa --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Lift group

[Lift] Re: Why no default with getSingleton?

2009-11-02 Thread Vesa
By the way, why orm classes need to be aware of the companion object? Could this dependency be eliminated somehow? - Vesa On 2 marras, 22:02, Vesa brut...@gmail.com wrote: I doubt I can find one, but it still feels awkward having to type the name of the class so many times. Another option

[Lift] Why menu generation and page access control is combined?

2009-11-02 Thread Vesa
make pages as menu items or make some kind of distinction between access control and menus. Is it so common case that this is the best thing to do and I just don't realize yet how much easier my life is with SiteMap? - Vesa --~--~-~--~~~---~--~~ You received

[Lift] What's the deal with class(es) in API named with one character?

2009-11-02 Thread Vesa
S keeps popping up a lot :D ps. Great framework! - Vesa --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Lift group. To post to this group, send email to liftweb@googlegroups.com To unsubscribe from this group, send

[Lift] Re: Making use of case classes and varargs in Link

2009-11-02 Thread Vesa
You're right about that. You probably wouldn't get very far without understanding that. I'm still concerned that I have to type unnecessary stuff to express myself without getting any gains in (new Link(a :: b :: nil) vs Link(a, b)) :D - Vesa On 2 marras, 22:27, Jim Barrows jim.barr

[Lift] Re: Making use of case classes and varargs in Link

2009-11-02 Thread Vesa
Also some plain true or false doesn't really explain it's purpose very well and with AbsoluteLink(a, b) I wouldn't have to guess the meaning or look it up from API documentation. - Vesa On 2 marras, 22:34, Vesa brut...@gmail.com wrote: You're right about that. You probably wouldn't get very

[Lift] Re: Why menu generation and page access control is combined?

2009-11-02 Thread Vesa
Seems very reasonable, thanks for the unbelievable fast responses! - Vesa On 2 marras, 22:32, David Pollak feeder.of.the.be...@gmail.com wrote: On Mon, Nov 2, 2009 at 12:25 PM, Vesa brut...@gmail.com wrote: Hi, I have a feeling that SiteMap is a common cause of frustration among