--
You received this message because you are subscribed to the Google Groups "Lift" group.
To post to this group, send email to lif...@googlegroups.com.
To unsubscribe from this group, send email to liftweb+u...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/liftweb?hl=en.
thanks, that helped. you should put that somewhere where everyone can
see it.
i've started to follow this tutorial:
http://www.assembla.com/wiki/show/liftweb/Todo_Sample_Application
but this snippet code:
class Util {
def example(xhtml: NodeSeq) = {
val tuple = "status" --> "wtf is happening here"
xhtml.bind("peer", tuple)
}
}
destroys the page. the returned xhtml content is:
<p>
This is an introduction to templates. Though it's brief I've got
no doubt you'll
be very
wtf is happening here</p>
everything after the "peer:status" is cut off until the </p> of the
template.
the xhtml that is applied to Util.example is changed to:
<p>
This is an introduction to templates. Though it's brief I've got
no doubt you'll
be very
<peer:status>
once you're done and will ready to dive into the many
cool aspects of Lift.
</peer:status></p>
which is obviously wrong, too.
if i change my template to:
<h2>Template introduction</h2>
<lift:Util.example>
<p>
This is an introduction to templates. Though it's brief I've got
no doubt you'll
be very
<peer:status></peer:status>
once you're done and will ready to dive into the many
cool aspects of Lift.
</p>
</lift:Util.example>
instead of the original
<h2>Template introduction</h2>
<lift:Util.example>
<p>
This is an introduction to templates. Though it's brief I've got
no doubt you'll
be very
<peer:status/>
once you're done and will ready to dive into the many
cool aspects of Lift.
</p>
</lift:Util.example>
i get the correct result.
btw, your wiki site tells me to use "->", but this only works in the
first case (bind("x", xhtml, "a" -> "b")
in the second (xhtml.bind), you have to use "-->", not "->"
you might want to fix that.
i'll look into lift the next few days, so be prepared to answer some
questions ;)
Am 22.04.2011 14:44, schrieb David Pollak:
> Sorry to say, it's four lines, not just the magic one line (from the sbt
> prompt):
>
> *sbtIdeaRepo at http://mpeltonen.github.com/maven/
> *idea is com.github.mpeltonen sbt-idea-processor 0.1-SNAPSHOT
> update
> idea
>
> Please see:
> http://paulfulleruk.blogspot.com/2010/09/creating-intellij-projects-for-sbt.html
>
> On Fri, Apr 22, 2011 at 4:58 AM, HamsterofDeath
> <d.ha...@googlemail.com <mailto:d.ha...@googlemail.com>> wrote:
>
> hi,
>
> i downloaded something that is not the lift framework from here:
> http://liftweb.net/download
>
> and built/ran the sample project using sbt update & jetty-run. so far
> so good.
> now i want to create a project inside intellij idea building and
> deploying lift. but how?
>
> --
> You received this message because you are subscribed to the Google
> Groups "Lift" group.
> To post to this group, send email to lif...@googlegroups.com
> <mailto:lif...@googlegroups.com>.
> To unsubscribe from this group, send email to
> liftweb+u...@googlegroups.com
> <mailto:liftweb%2Bunsu...@googlegroups.com>.
> For more options, visit this group at
> http://groups.google.com/group/liftweb?hl=en.
>
>
>
>
> --
> Lift, the simply functional web framework http://liftweb.net
> Simply Lift http://simply.liftweb.net
> Beginning Scala http://www.apress.com/book/view/1430219890
> Follow me: http://twitter.com/dpp
> Blog: http://goodstuff.im
>
> --
> You received this message because you are subscribed to the Google
> Groups "Lift" group.
> To post to this group, send email to lif...@googlegroups.com.
> To unsubscribe from this group, send email to
> liftweb+u...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/liftweb?hl=en.
- --
Mit freundlichen Gr��en,
Dennis Haupt
Plettstrasse 73
81735 M�nchen
Handy 0176/80130332
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.14 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
iQIcBAEBAgAGBQJNsZjPAAoJENRtux+h35aGVPUP/1lPIYx3/gH2Gu46M3zcmLx5
vq8ct1fUC3UXBvFFdH9LQHM72SPNgtTXqKxoO282SoQffriXHjQkMEEWaApsotVC
BYIUHyQg+qsnshRaBszVcQeEs/JpQa7g5uaHbfvFlZJ/OfNFrfXhPPS91780zHdx
7oWNkDxzcUqUTyonclQ73IE/6I1vrqnn4ZGn8r6yGsnq3CXU8Sb+64ALLwXIvhD0
3vM7/iId78pr9fDHHO7u6VPuTm+EVABmYYfVEldaBf99C1t5jNIoQTrcp4MI0MZo
Y8gqAON8oCpGGyZsq7gybto159piAE0qwPITOrKQOtn/hXzOclrHRTmrov6pMGZt
3lasXB/IM/5WzLBTsvXr9o9zOhPA8hJjMGbfE5nlnF3NAEcvH2zYdhtPzlvZFm4N
Zt1uIZVRtLkRbZUT0fCy886ufg2T3QAJctp/JrNBsvMt+73eft7z9nGuqnxtRSU7
PjsKsoeXW3qeZNZdjqc01BXXyyyzszqDZNRlUN7aIS7zX5CzpXYc63H4ZqN/2iNh
74kwnksu+YyirE7jNU2scfNQRT/HT4BZgPqx5OJGwR9cephRyJJYuNkEy20NQ+rq
rveRBbi3Kv3jwoP9Ea6O6vJIIoB+rDvQQ4UjJH6btKBNaOzTIxDsZChqgMSd9cWx
ZRfYfsAGnkp87jpIloyY
=RNzC
-----END PGP SIGNATURE-----
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
thanks, that helped. you should put that somewhere where everyone can
see it.
Mit freundlichen Grüßen,
Dennis Haupt
Plettstrasse 73
81735 München
Handy 0176/80130332
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.14 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
iQIcBAEBAgAGBQJNsZjPAAoJENRtux+h35aGVPUP/1lPIYx3/gH2Gu46M3zcmLx5
vq8ct1fUC3UXBvFFdH9LQHM72SPNgtTXqKxoO282SoQffriXHjQkMEEWaApsotVC
BYIUHyQg+qsnshRaBszVcQeEs/JpQa7g5uaHbfvFlZJ/OfNFrfXhPPS91780zHdx
7oWNkDxzcUqUTyonclQ73IE/6I1vrqnn4ZGn8r6yGsnq3CXU8Sb+64ALLwXIvhD0
3vM7/iId78pr9fDHHO7u6VPuTm+EVABmYYfVEldaBf99C1t5jNIoQTrcp4MI0MZo
Y8gqAON8oCpGGyZsq7gybto159piAE0qwPITOrKQOtn/hXzOclrHRTmrov6pMGZt
3lasXB/IM/5WzLBTsvXr9o9zOhPA8hJjMGbfE5nlnF3NAEcvH2zYdhtPzlvZFm4N
Zt1uIZVRtLkRbZUT0fCy886ufg2T3QAJctp/JrNBsvMt+73eft7z9nGuqnxtRSU7
PjsKsoeXW3qeZNZdjqc01BXXyyyzszqDZNRlUN7aIS7zX5CzpXYc63H4ZqN/2iNh
74kwnksu+YyirE7jNU2scfNQRT/HT4BZgPqx5OJGwR9cephRyJJYuNkEy20NQ+rq
rveRBbi3Kv3jwoP9Ea6O6vJIIoB+rDvQQ4UjJH6btKBNaOzTIxDsZChqgMSd9cWx
ZRfYfsAGnkp87jpIloyY
=RNzC
-----END PGP SIGNATURE-----
--
You received this message because you are subscribed to the Google Groups "Lift" group.
To post to this group, send email to lif...@googlegroups.com.
To unsubscribe from this group, send email to liftweb+u...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/liftweb?hl=en.
i did reach this:
http://simply.liftweb.net/index-2.1.html#Next
the comment below the code talks about a line that does not exist in the
code: <body class="lift:content_id=main">
which one is right, code or comment?
> --
> You received this message because you are subscribed to the Google
> Groups "Lift" group.
> To post to this group, send email to lif...@googlegroups.com.
> To unsubscribe from this group, send email to
> liftweb+u...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/liftweb?hl=en.
- --
Mit freundlichen Gr��en,
Dennis Haupt
Plettstrasse 73
81735 M�nchen
Handy 0176/80130332
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.14 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
iQIcBAEBAgAGBQJNsb9GAAoJENRtux+h35aGjagQAM1IBhTyMKamSL8DI5vfUdyl
7E1+OxzvrFfW6sYysgzrvvJybLAsf/CRL7O/326bJLK/Eb1BWpZNNJjrtFMKBhc9
NXNuyQ5rO0/bODJwLvtXL2tkYt2hFxqmAXvacERoQqieL0JLWoFakJ6WW0ZHCRVI
D36F6HoVBTTIP/8nJTxQtZHMOpCv+7rnek4v7H9iL2lva2Beh4u3iW5Dj60xDWAh
3ekot0iwoP8QHylnRF3HFmmYmw4FdslZDu0i0c0QB21zTEPiEGHlB836f/kXFiMo
tfCqrsHVOic8OZzMzvBWzHIGzb3sZnNrTXb1Dyzwg+jYuRcxvQIx6jQ9Ew5aR33D
8JP9PZ3zqx9wPa4xkMQDqgnURYZtL2OCyevVX3N9D5pkFS11CgOMaNDB28fxZNpx
RyOG45F6ZGojotcWj0JrCLQ/P8pXzgsLgly2NOp+zV340/0fFUQM9m5eHeoyKzRS
jIqIGX1SxLa9y8X++IekDLh/V/YmP6qT/VfA1SKzr6u5Fgc2ei5+kFum2OYP6m67
CKj83xdcuoj7+SU4slmmqSuvjq6XNmjXP9GHRkPrXmpai0XUElLJqIdfYiaIibbo
9t0wTaoubC56blL2F7Rt910f4libbErL3qfWM3oFiA1UXFkUdu0MhRbnOQiq3bDD
0imUmPRM5Ky3zGFSXIYY
=Rch0
-----END PGP SIGNATURE-----
Sorry to say, it's four lines, not just the magic one line (from the sbt prompt):*sbtIdeaRepo at http://mpeltonen.github.com/maven/
*idea is com.github.mpeltonen sbt-idea-processor 0.1-SNAPSHOT
update
idea
Please see: http://paulfulleruk.blogspot.com/2010/09/creating-intellij-projects-for-sbt.html
> *sbtIdeaRepo at http://mpeltonen.github.com/maven/ > *idea is com.github.mpeltonen sbt-idea-processor 0.4.0
On Tuesday 19 July 2011 at 5:59 PM, Anton Andriyevskyy wrote:
Does it still remains the right way to map sbt-based project into intellyj-idea project?
--
You received this message because you are subscribed to the Google Groups "Lift" group.
To view this discussion on the web visit https://groups.google.com/d/msg/liftweb/-/C5mopFyFD5gJ.
--
You received this message because you are subscribed to the Google Groups "Lift" group.
To view this discussion on the web visit https://groups.google.com/d/msg/liftweb/-/VLvKVU5CL8oJ.