[Lift] Re: Jorge's birthday ...

2009-01-30 Thread David Bernard
Bon Anniversaire

On Fri, Jan 30, 2009 at 08:48, Marius marius.dan...@gmail.com wrote:


 If Skype is right it must be Jorge's birthday !

 HAPPY BIRTHDAY MAN !

 Br's,
 Marius
 


--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Re: Jorge's birthday ...

2009-01-30 Thread Viktor Klang
Grattis på födelsedagen!

On Fri, Jan 30, 2009 at 9:30 AM, David Bernard
david.bernard...@gmail.comwrote:

 Bon Anniversaire


 On Fri, Jan 30, 2009 at 08:48, Marius marius.dan...@gmail.com wrote:


 If Skype is right it must be Jorge's birthday !

 HAPPY BIRTHDAY MAN !

 Br's,
 Marius



 



-- 
Viktor Klang
Senior Systems Analyst

--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Re: Jorge's birthday ...

2009-01-30 Thread Tim Perrett

Happy birthday Jorge!!

On Jan 30, 8:34 am, Viktor Klang viktor.kl...@gmail.com wrote:
 Grattis på födelsedagen!

 On Fri, Jan 30, 2009 at 9:30 AM, David Bernard
 david.bernard...@gmail.comwrote:



  Bon Anniversaire

  On Fri, Jan 30, 2009 at 08:48, Marius marius.dan...@gmail.com wrote:

  If Skype is right it must be Jorge's birthday !

  HAPPY BIRTHDAY MAN !

  Br's,
  Marius

 --
 Viktor Klang
 Senior Systems Analyst
--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Added HTTP Auth example to sites directory

2009-01-30 Thread Tim Perrett

Guys,

Its been ages, and im sorry its taken so long, but please now find an
example of how to use the HTTP Auth stuff in the sites directory.

Respect to Marius who's been chipping away on this keeping it up-to-
date with the RulesSeq stuff etc as the lift API has moved forward.
For an example of how to use it, just check the sites/http-
authentication lift project, or github.com:

http://github.com/dpp/liftweb/tree/master/sites/http-authentication

Cheers

Tim



--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Re: Jorge's birthday ...

2009-01-30 Thread TylerWeir

Happy Birthday Sir!

On Jan 30, 4:44 am, Tim Perrett he...@timperrett.com wrote:
 Happy birthday Jorge!!

 On Jan 30, 8:34 am, Viktor Klang viktor.kl...@gmail.com wrote:

  Grattis på födelsedagen!

  On Fri, Jan 30, 2009 at 9:30 AM, David Bernard
  david.bernard...@gmail.comwrote:

   Bon Anniversaire

   On Fri, Jan 30, 2009 at 08:48, Marius marius.dan...@gmail.com wrote:

   If Skype is right it must be Jorge's birthday !

   HAPPY BIRTHDAY MAN !

   Br's,
   Marius

  --
  Viktor Klang
  Senior Systems Analyst


--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] bug in mixinAttributes

2009-01-30 Thread Sergey Andreev
Hi,
I have encountered a bug in the mixinAttributes method

If you put the following xml in the template:

data:textBoxes
 input type=text style=.../
/data:textBoxes

and bind it like that: bind(data, xhtml, textBoxes -
mixinAttributes(text(,)) _)
then the attributes won't be merged.

Whereas, if you change the template:
data:textBoxesinput type=text style=.../
/data:textBoxes

attributes are merged. The problem is that in the first template, the child
NodeSeq of the textBoxes element has a first element without attributes so
the following line returns Null

val attributes = in.firstOption.map(_.attributes).getOrElse(Null)

I made a hack with filtering in's elements on having non-null attributes
with non-zero length before applying firstOption.
It would be nice if that bug will be addressed in the future releases.

Regards,
Sergey

--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Re: submit and redirect

2009-01-30 Thread Sergey Andreev
Marius, thanks for the code sample. I read your mails about that usage of
the redirectTo method on the list before but was confused how to use it. I
wish there was a way to hide function's hash code from the URL without
losing state.
Cheers,
Sergey

On Fri, Jan 30, 2009 at 10:40 AM, Marius marius.dan...@gmail.com wrote:




 On Jan 30, 9:36 am, Marius marius.dan...@gmail.com wrote:
  On Jan 29, 10:54 pm, Sergey Andreev andser...@gmail.com wrote:
 
 
 
   Hi Liftlers,
   I am migrating one of my application to the lift as a way to learn it
 and i
   would like to ask a question.
 
   After submitting a form i would like to do a redirect and show the
 submitted
   values on the other template. I have 2 templates and i use the same
 snippet
   in both of them to render a dynamic content.
   As far as i understand there are 2 ways to make it work: saving state
 using
   SessionVars(which works for me) or extending StatefulSnippet and
 calling
   this.redirectTo on it (looking at the sources it should register the
   stateful snippet in the session). I've tried extending StatefulSnippet
 but
   it doesn't work for me. A hashed value is added to the redirect url
 which
   should map to the stateful snippet but the state is lost. I don't
 understand
   what i am doing wrong.
 
   The simplified example of the code:
 
   class MySnippet extend StatefulSnippet {
 private var myValues: List[String] = List()
 
 val dispatch.. = {
   case save = save_
   case show = show _
 }
 
 def show = {
   myValues.foreach(Log.info(_)) //nothing here
 }
 
 def save(xhtml: NodeSeq) : NodeSeq = {
   def processForm = {
 myValues.foreach(Log.info(_)) //submitted values are printed out
 this.redirectTo(/show)
   }
 
  Unless I'm missing something I do not this your values can be shown in
  the new template. There is an overloaded S.redirectTo where you can
  specify a function to be executed when the redirect is receives. Hence
  here you can pass state. See
 
  def redirectTo[T](where: String, func: () = Unit): T
 
  In this function you could probably set some RequestVar holding your
  needed state and when you snippet is rendered in the /show page you
  just read the info from these RequestVar(s).


 To me more specific I was referring to something like:


 def myFunc(state: List[String])() { // a curried function

   // here set the state on a RequestVar

 }

 from you submit function call:

 S.redirectTo(/show, myFunc(myValues) _)


 
 
 
   bind(render, xhtml,
  .. //render textboxes and register functions which add
 values to
   the myValues list
  submit - submit(Submit, processForm)
 }
 
   }
 
   Thanks,
   Sergey
   P.S. The more i learn about Lift the more i like it. Thank you David
 and all
   lift committers!!!
 


--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Re: submit and redirect

2009-01-30 Thread Marius



On Jan 30, 2:14 pm, Sergey Andreev andser...@gmail.com wrote:
 Marius, thanks for the code sample. I read your mails about that usage of
 the redirectTo method on the list before but was confused how to use it. I
 wish there was a way to hide function's hash code from the URL without
 losing state.

Lift knows which functions to invoke upon a request based on the query
string parameters. I'm not sure why this matters so much. However if
you really don't want to do that then you explicitly need to keep your
state on server side most typically using SessionVar-s. Write your
state in a SessionVar before redirect and read it in your snippets
for /show template.

I proposed the above solution because it is way cleaner IMO and the
redirect function is automatically cleaned up ;)


 Cheers,
 Sergey

 On Fri, Jan 30, 2009 at 10:40 AM, Marius marius.dan...@gmail.com wrote:

  On Jan 30, 9:36 am, Marius marius.dan...@gmail.com wrote:
   On Jan 29, 10:54 pm, Sergey Andreev andser...@gmail.com wrote:

Hi Liftlers,
I am migrating one of my application to the lift as a way to learn it
  and i
would like to ask a question.

After submitting a form i would like to do a redirect and show the
  submitted
values on the other template. I have 2 templates and i use the same
  snippet
in both of them to render a dynamic content.
As far as i understand there are 2 ways to make it work: saving state
  using
SessionVars(which works for me) or extending StatefulSnippet and
  calling
this.redirectTo on it (looking at the sources it should register the
stateful snippet in the session). I've tried extending StatefulSnippet
  but
it doesn't work for me. A hashed value is added to the redirect url
  which
should map to the stateful snippet but the state is lost. I don't
  understand
what i am doing wrong.

The simplified example of the code:

class MySnippet extend StatefulSnippet {
  private var myValues: List[String] = List()

  val dispatch.. = {
    case save = save_
    case show = show _
  }

  def show = {
    myValues.foreach(Log.info(_)) //nothing here
  }

  def save(xhtml: NodeSeq) : NodeSeq = {
    def processForm = {
      myValues.foreach(Log.info(_)) //submitted values are printed out
      this.redirectTo(/show)
    }

   Unless I'm missing something I do not this your values can be shown in
   the new template. There is an overloaded S.redirectTo where you can
   specify a function to be executed when the redirect is receives. Hence
   here you can pass state. See

   def redirectTo[T](where: String, func: () = Unit): T

   In this function you could probably set some RequestVar holding your
   needed state and when you snippet is rendered in the /show page you
   just read the info from these RequestVar(s).

  To me more specific I was referring to something like:

  def myFunc(state: List[String])() { // a curried function

    // here set the state on a RequestVar

  }

  from you submit function call:

  S.redirectTo(/show, myFunc(myValues) _)

    bind(render, xhtml,
       .. //render textboxes and register functions which add
  values to
the myValues list
       submit - submit(Submit, processForm)
  }

}

Thanks,
Sergey
P.S. The more i learn about Lift the more i like it. Thank you David
  and all
lift committers!!!
--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Re: Jorge's birthday ...

2009-01-30 Thread Derek Chen-Becker
¡Feliz cumpleaños, señor!

On Fri, Jan 30, 2009 at 12:48 AM, Marius marius.dan...@gmail.com wrote:


 If Skype is right it must be Jorge's birthday !

 HAPPY BIRTHDAY MAN !

 Br's,
 Marius
 


--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Re: Jorge's birthday ...

2009-01-30 Thread Tim Perrett

lol! This is like the most global happy birthday greeting ever! ;-)

On Jan 30, 4:04 pm, Derek Chen-Becker dchenbec...@gmail.com wrote:
 ¡Feliz cumpleaños, señor!

--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Re: submit and redirect

2009-01-30 Thread Marius

Yeah it does... in essence not very different from initial proposal
since internally redirectTo from stateful snippet does the same thing:
binds a function to be executed upon redirect.

On Jan 30, 5:47 pm, Derek Chen-Becker dchenbec...@gmail.com wrote:
 Unless I'm missing something the stateful snippet should be working. The
 this.redirectTo call should be invoking the StatefulSnippet's redirectTo,
 which should associate the same snippet instance with the new page. That
 should allow access to the same var. I just coded up a test app (attached)
 and it works fine using very similar code.

 On Fri, Jan 30, 2009 at 12:36 AM, Marius marius.dan...@gmail.com wrote:

  On Jan 29, 10:54 pm, Sergey Andreev andser...@gmail.com wrote:
   Hi Liftlers,
   I am migrating one of my application to the lift as a way to learn it and
  i
   would like to ask a question.

   After submitting a form i would like to do a redirect and show the
  submitted
   values on the other template. I have 2 templates and i use the same
  snippet
   in both of them to render a dynamic content.
   As far as i understand there are 2 ways to make it work: saving state
  using
   SessionVars(which works for me) or extending StatefulSnippet and calling
   this.redirectTo on it (looking at the sources it should register the
   stateful snippet in the session). I've tried extending StatefulSnippet
  but
   it doesn't work for me. A hashed value is added to the redirect url which
   should map to the stateful snippet but the state is lost. I don't
  understand
   what i am doing wrong.

   The simplified example of the code:

   class MySnippet extend StatefulSnippet {
     private var myValues: List[String] = List()

     val dispatch.. = {
       case save = save_
       case show = show _
     }

     def show = {
       myValues.foreach(Log.info(_)) //nothing here
     }

     def save(xhtml: NodeSeq) : NodeSeq = {
       def processForm = {
         myValues.foreach(Log.info(_)) //submitted values are printed out
         this.redirectTo(/show)
       }

  Unless I'm missing something I do not this your values can be shown in
  the new template. There is an overloaded S.redirectTo where you can
  specify a function to be executed when the redirect is receives. Hence
  here you can pass state. See

  def redirectTo[T](where: String, func: () = Unit): T

  In this function you could probably set some RequestVar holding your
  needed state and when you snippet is rendered in the /show page you
  just read the info from these RequestVar(s).

       bind(render, xhtml,
          .. //render textboxes and register functions which add values
  to
   the myValues list
          submit - submit(Submit, processForm)
     }

   }

   Thanks,
   Sergey
   P.S. The more i learn about Lift the more i like it. Thank you David and
  all
   lift committers!!!



  teststateful.tgz
 7KViewDownload
--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Re: Jorge's birthday ...

2009-01-30 Thread Meredith Gregory
Jorge,

chestit rozden den

Best wishes,

--greg

On Fri, Jan 30, 2009 at 8:32 AM, Tim Perrett he...@timperrett.com wrote:


 lol! This is like the most global happy birthday greeting ever! ;-)

 On Jan 30, 4:04 pm, Derek Chen-Becker dchenbec...@gmail.com wrote:
  ¡Feliz cumpleaños, señor!

 



-- 
L.G. Meredith
Managing Partner
Biosimilarity LLC
806 55th St NE
Seattle, WA 98105

+1 206.650.3740

http://biosimilarity.blogspot.com

--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Req lazy val xml not working

2009-01-30 Thread Tim Perrett

Guys,

Just writing a little rest service, and I want to process the incoming
XML... The Req class has the following methods:

xml_? : Boolean
xml: Box[Elem]

Now then, xml_? is returning true, and the content-length header is
the correct length, but req.xml always, always returns Empty.

FYI, even trying to do:

req.body // = Empty

Any ideas why this might be happening?

Cheers

Tim
--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Re: Req lazy val xml not working

2009-01-30 Thread David Pollak
On Fri, Jan 30, 2009 at 12:22 PM, Tim Perrett he...@timperrett.com wrote:


 The xml is:

 ?xml version=1.0?
 user
  emailsdfsdfsdf/email
 /user

 I've tried all sorts, but still no cigar any ideas?


Try:
user
 emailsdfsdfsdf/email
/user





 Cheers, Tim


 On Jan 30, 8:17 pm, David Pollak feeder.of.the.be...@gmail.com
 wrote:
  On Fri, Jan 30, 2009 at 12:12 PM, Tim Perrett he...@timperrett.com
 wrote:
 
   Guys,
 
   Just writing a little rest service, and I want to process the incoming
   XML... The Req class has the following methods:
 
   xml_? : Boolean
   xml: Box[Elem]
 
   Now then, xml_? is returning true, and the content-length header is
   the correct length, but req.xml always, always returns Empty.
 
   FYI, even trying to do:
 
   req.body // = Empty
 
   Any ideas why this might be happening?
 
  The XML is not well formed.
 
 
 
   Cheers
 
   Tim
 
  --
  Lift, the simply functional web frameworkhttp://liftweb.net
  Beginning Scalahttp://www.apress.com/book/view/1430219890
  Follow me:http://twitter.com/dpp
  Git some:http://github.com/dpp
 



-- 
Lift, the simply functional web framework http://liftweb.net
Beginning Scala http://www.apress.com/book/view/1430219890
Follow me: http://twitter.com/dpp
Git some: http://github.com/dpp

--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Re: Req lazy val xml not working

2009-01-30 Thread Tim Perrett

 
 Try:
 user
   emailsdfsdfsdf/email
 /user
 

I'd already tried before, that and still no luck. I've also tried just
getting it to print something out that was passed. Even param1=badger type
post requests, but no luck.

Thoughts?

Cheers, Tim



--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Re: Req lazy val xml not working

2009-01-30 Thread David Pollak
On Fri, Jan 30, 2009 at 12:28 PM, Tim Perrett he...@timperrett.com wrote:


 
  Try:
  user
emailsdfsdfsdf/email
  /user
 

 I'd already tried before, that and still no luck. I've also tried just
 getting it to print something out that was passed. Even param1=badger type
 post requests, but no luck.

 Thoughts?


Please write up a test case that fails and I'll fix it.




 Cheers, Tim



 



-- 
Lift, the simply functional web framework http://liftweb.net
Beginning Scala http://www.apress.com/book/view/1430219890
Follow me: http://twitter.com/dpp
Git some: http://github.com/dpp

--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Packaging lift application for distribution

2009-01-30 Thread Thomas Santana

I'm starting to look at lift as an alternative to a Scala+Swing
application I have. I'll most likely embed Jetty anyway but after
playing a little with Maven a question came to my mind: How to I
package a Lift application to be run standalone on a desktop.

My application comes with all the jars it needs (the two scala libs)
and a couple of scripts to fire it off. I wonder if there is a way to
build something like this for a Lift application. Something that makes
easy for someone that is a regular user to get a simple one machine
install done with a couple of clicks. Any hints?

Thomas

--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Tic Tac Toe, Lift Style

2009-01-30 Thread David Pollak
Folks,

I've committed up a Tic Tac Toe example:
http://github.com/dpp/lift-samples/tree/c5d22b8bca126ea518107f231a27353b63841ef8/tictac

It's an example of using the StatefulComet stuff.

Things I like:
ToeDisplay is very concise
The example works

Things I don't like:
Way too much display stuff in ToeBoard
The whole Lobby logic seems like a hack

Enjoy.

Thanks,

David

-- 
Lift, the simply functional web framework http://liftweb.net
Beginning Scala http://www.apress.com/book/view/1430219890
Follow me: http://twitter.com/dpp
Git some: http://github.com/dpp

--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Re: Tic Tac Toe, Lift Style

2009-01-30 Thread Meredith Gregory
David,

Thanks for this! i'm looking forward to diving in.

Best wishes,

--greg

On Fri, Jan 30, 2009 at 5:18 PM, David Pollak feeder.of.the.be...@gmail.com
 wrote:

 Folks,

 I've committed up a Tic Tac Toe example:

 http://github.com/dpp/lift-samples/tree/c5d22b8bca126ea518107f231a27353b63841ef8/tictac

 It's an example of using the StatefulComet stuff.

 Things I like:
 ToeDisplay is very concise
 The example works

 Things I don't like:
 Way too much display stuff in ToeBoard
 The whole Lobby logic seems like a hack

 Enjoy.

 Thanks,

 David

 --
 Lift, the simply functional web framework http://liftweb.net
 Beginning Scala http://www.apress.com/book/view/1430219890
 Follow me: http://twitter.com/dpp
 Git some: http://github.com/dpp

 



-- 
L.G. Meredith
Managing Partner
Biosimilarity LLC
806 55th St NE
Seattle, WA 98105

+1 206.650.3740

http://biosimilarity.blogspot.com

--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Re: [SOLVED] Req lazy val xml not working

2009-01-30 Thread Meredith Gregory
Tim,

In this last email i'm trying to parse this sentence

XML request processing should not work perfectly


Is this

   - a philosophical stance
   - a warning, or
   - a typo?

Best wishes,

--greg

On Fri, Jan 30, 2009 at 3:14 PM, Tim Perrett he...@timperrett.com wrote:


 Ok, found the problem. Req.scala needed a patch, which I have applied
 and committed into master.

 XML request processing should not work perfectly

 Cheers, Tim

 On Jan 30, 10:48 pm, Tim Perrett he...@timperrett.com wrote:
  Attached is an example application that shows the problem
 
  Cheers, Tim
 
   problem_example.zip
  16KViewDownload
 



-- 
L.G. Meredith
Managing Partner
Biosimilarity LLC
806 55th St NE
Seattle, WA 98105

+1 206.650.3740

http://biosimilarity.blogspot.com

--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Re: [SOLVED] Req lazy val xml not working

2009-01-30 Thread David Pollak
On Fri, Jan 30, 2009 at 7:02 PM, Meredith Gregory
lgreg.mered...@gmail.comwrote:

 Tim,

 In this last email i'm trying to parse this sentence

 XML request processing should not work perfectly


 Is this

- a philosophical stance
- a warning, or
- a typo?


typo... XML request processing should now work perfectly.


-

 Best wishes,

 --greg

 On Fri, Jan 30, 2009 at 3:14 PM, Tim Perrett he...@timperrett.com wrote:


 Ok, found the problem. Req.scala needed a patch, which I have applied
 and committed into master.

 XML request processing should not work perfectly

 Cheers, Tim

 On Jan 30, 10:48 pm, Tim Perrett he...@timperrett.com wrote:
  Attached is an example application that shows the problem
 
  Cheers, Tim
 
   problem_example.zip
  16KViewDownload




 --
 L.G. Meredith
 Managing Partner
 Biosimilarity LLC
 806 55th St NE
 Seattle, WA 98105

 +1 206.650.3740

 http://biosimilarity.blogspot.com


 



-- 
Lift, the simply functional web framework http://liftweb.net
Beginning Scala http://www.apress.com/book/view/1430219890
Follow me: http://twitter.com/dpp
Git some: http://github.com/dpp

--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Re: building lift from source --- warnings/errors expected?

2009-01-30 Thread David Pollak
On Fri, Jan 30, 2009 at 7:36 PM, mighdoll leemighd...@gmail.com wrote:


 Hey folks, I'm trying to build the lift sources.  It mostly works, but
 I see more errors and warnings than I expected.  I'm wondering if my
 configuration is set up correctly.  Or do you see errors/warnings
 too?  Thx.

 mvn jetty:run in liftweb/sites/example seems to work.

 I've tried mvn clean, and deleting my .m2/repository.

 I tried mvn jetty:run in hellodarwin and got:

 ERROR - Failed to Boot
 net.liftweb.sitemap.SiteMapException: Location Hello1.1 defined twice
 Loc(Hello1.1, function, LinkText(function), List()) and Loc
 (Hello1.1, function, LinkText(function), List())
at net.liftweb.sitemap.SiteMap.addLoc(SiteMap.scala:36)
 ---


 Here are a few of the errors/warning when I try mvn install:

 Tests in error:
  wiki edit HomePage should not have HomePage content define
  wiki edit HomePage should allow edition of HomePage
 Tests run: 2, Failures: 0, Errors: 2, Skipped: 0
 --


As of yesterday, there's been a failure on Macs.  We can't reproduce it on
Windows or Linux.  My Mac's in the repair shop.  DavidB is a Linux user, so
it'll be a few days before we can address this particular problem. :-(




 [INFO] suggestion: remove the scalaVersion from pom.xml
 [ERROR] /home/lee/tools/liftweb/lift-widgets/src/main/scala
 --

 [WARNING] .../target/classes/toserve/tablesorter/
 jquery.tablesorter.js:line -1:column -1:Try to use a single 'var'
 statement per scope.
 --

 [WARNING] /home/lee/tools/liftweb/sites/hellolift/src/main/scala/com/
 hellolift/comet/DynamicBlogView.scala:35: warning: match is not
 exhaustive!
 [WARNING] missing combination  Empty
 [WARNING] missing combinationFailure
 [WARNING]
 [WARNING] name match {
 [WARNING] ^
 [WARNING] warning: there were unchecked warnings; re-run with -
 unchecked for details
 [WARNING] two warnings found
 --



 



-- 
Lift, the simply functional web framework http://liftweb.net
Beginning Scala http://www.apress.com/book/view/1430219890
Follow me: http://twitter.com/dpp
Git some: http://github.com/dpp

--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Re: [SOLVED] Req lazy val xml not working

2009-01-30 Thread Meredith Gregory
David,

i figured, but i know some people with really strong opinions about XML. ;-)

Best wishes,

--greg

On Fri, Jan 30, 2009 at 8:04 PM, David Pollak feeder.of.the.be...@gmail.com
 wrote:



 On Fri, Jan 30, 2009 at 7:02 PM, Meredith Gregory 
 lgreg.mered...@gmail.com wrote:

 Tim,

 In this last email i'm trying to parse this sentence

 XML request processing should not work perfectly


 Is this

- a philosophical stance
- a warning, or
- a typo?


 typo... XML request processing should now work perfectly.


-

 Best wishes,

 --greg

 On Fri, Jan 30, 2009 at 3:14 PM, Tim Perrett he...@timperrett.comwrote:


 Ok, found the problem. Req.scala needed a patch, which I have applied
 and committed into master.

 XML request processing should not work perfectly

 Cheers, Tim

 On Jan 30, 10:48 pm, Tim Perrett he...@timperrett.com wrote:
  Attached is an example application that shows the problem
 
  Cheers, Tim
 
   problem_example.zip
  16KViewDownload




 --
 L.G. Meredith
 Managing Partner
 Biosimilarity LLC
 806 55th St NE
 Seattle, WA 98105

 +1 206.650.3740

 http://biosimilarity.blogspot.com






 --
 Lift, the simply functional web framework http://liftweb.net
 Beginning Scala http://www.apress.com/book/view/1430219890
 Follow me: http://twitter.com/dpp
 Git some: http://github.com/dpp

 



-- 
L.G. Meredith
Managing Partner
Biosimilarity LLC
806 55th St NE
Seattle, WA 98105

+1 206.650.3740

http://biosimilarity.blogspot.com

--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Re: Tic Tac Toe, Lift Style

2009-01-30 Thread Meredith Gregory
David,

i'm probably just misusing git, but this is what happens for me

bash-3.2$ git clone
http://github.com/dpp/lift-samples/tree/c5d22b8bca126ea518107f231a27353b63841ef8/tictac
Initialized empty Git repository in
/Users/lgm/work/src/projex/biosimilarity/tictac/.git/
fatal:
http://github.com/dpp/lift-samples/tree/c5d22b8bca126ea518107f231a27353b63841ef8/tictac/info/refsnot
found: did you run git update-server-info on the server?
bash-3.2$

Any clues?

Best wishes,

--greg

On Fri, Jan 30, 2009 at 5:18 PM, David Pollak feeder.of.the.be...@gmail.com
 wrote:

 Folks,

 I've committed up a Tic Tac Toe example:

 http://github.com/dpp/lift-samples/tree/c5d22b8bca126ea518107f231a27353b63841ef8/tictac

 It's an example of using the StatefulComet stuff.

 Things I like:
 ToeDisplay is very concise
 The example works

 Things I don't like:
 Way too much display stuff in ToeBoard
 The whole Lobby logic seems like a hack

 Enjoy.

 Thanks,

 David

 --
 Lift, the simply functional web framework http://liftweb.net
 Beginning Scala http://www.apress.com/book/view/1430219890
 Follow me: http://twitter.com/dpp
 Git some: http://github.com/dpp

 



-- 
L.G. Meredith
Managing Partner
Biosimilarity LLC
806 55th St NE
Seattle, WA 98105

+1 206.650.3740

http://biosimilarity.blogspot.com

--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Re: Tic Tac Toe, Lift Style

2009-01-30 Thread Meredith Gregory
David,

i don't know if this is any help, but here's the git version i'm using.

Best wishes,

--greg

bash-3.2$ which git
/opt/local/bin/git
bash-3.2$ git -v
Unknown option: -v
usage: git [--version] [--exec-path[=GIT_EXEC_PATH]]
[-p|--paginate|--no-pager] [--bare] [--git-dir=GIT_DIR]
[--work-tree=GIT_WORK_TREE] [--help] COMMAND [ARGS]
bash-3.2$ git --version
git version 1.6.0.4
bash-3.2$

On Fri, Jan 30, 2009 at 9:13 PM, Meredith Gregory
lgreg.mered...@gmail.comwrote:

 David,

 i'm probably just misusing git, but this is what happens for me

 bash-3.2$ git clone
 http://github.com/dpp/lift-samples/tree/c5d22b8bca126ea518107f231a27353b63841ef8/tictac
 Initialized empty Git repository in
 /Users/lgm/work/src/projex/biosimilarity/tictac/.git/
 fatal:
 http://github.com/dpp/lift-samples/tree/c5d22b8bca126ea518107f231a27353b63841ef8/tictac/info/refsnot
  found: did you run git update-server-info on the server?
 bash-3.2$

 Any clues?

 Best wishes,

 --greg

 On Fri, Jan 30, 2009 at 5:18 PM, David Pollak 
 feeder.of.the.be...@gmail.com wrote:

 Folks,

 I've committed up a Tic Tac Toe example:

 http://github.com/dpp/lift-samples/tree/c5d22b8bca126ea518107f231a27353b63841ef8/tictac

 It's an example of using the StatefulComet stuff.

 Things I like:
 ToeDisplay is very concise
 The example works

 Things I don't like:
 Way too much display stuff in ToeBoard
 The whole Lobby logic seems like a hack

 Enjoy.

 Thanks,

 David

 --
 Lift, the simply functional web framework http://liftweb.net
 Beginning Scala http://www.apress.com/book/view/1430219890
 Follow me: http://twitter.com/dpp
 Git some: http://github.com/dpp

 



 --
 L.G. Meredith
 Managing Partner
 Biosimilarity LLC
 806 55th St NE
 Seattle, WA 98105

 +1 206.650.3740

 http://biosimilarity.blogspot.com




-- 
L.G. Meredith
Managing Partner
Biosimilarity LLC
806 55th St NE
Seattle, WA 98105

+1 206.650.3740

http://biosimilarity.blogspot.com

--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---