Re: [Lift] minified js artifacts (was Re: Re-opened #363)

2010-03-03 Thread David Bernard
Info about yuicompressor-maven-plugin : * could aggregate js * could be configured to avoid minified some files * could generate minified under src with suffix (default "-min") * could generate the gzip version and avoid doing it at runtime * could be invoked only in a profile (for release) or from

Re: [Lift] lift-archetype-blank 1.1-M8 & 2.0-M1 : missing net.sf.retrotranslator:retrotranslator-runtime:jar:1.2.1

2010-02-06 Thread David Bernard
retrotranslator-runtime version 1.2.1 is available in central repository (the default one) since 2007. see : http://repo2.maven.org/maven2/net/sf/retrotranslator/retrotranslator-runtime/1.2.1/ May be you tried to build offline, or you define/use wrong mirror/proxy of central repository. Do you ha

Re: [Lift] Handle OOM

2010-02-03 Thread David Bernard
For in production java app, I generaly wrap them with Java Service Wrapper for Tanuki Software. (include heartbeat, restart, script to run as service,...) http://wrapper.tanukisoftware.org/ or the 100% java alternative : yajsw http://yajsw.sourceforge.net/ /davidB On Wed, Feb 3, 2010 at 17:26,

Re: [Lift] [lift] Issue with my first Lift project

2010-01-28 Thread David Bernard
I suppose it's your first run of mvn jetty:run. try : "mvn jetty:run -U" to force download of jetty. see http://wiki.github.com/dpp/liftweb/about-maven-mini-guide /davidB On Fri, Jan 29, 2010 at 04:04, tomLee wrote: > > Got error when I run it: > > D:\MySource\oterh\mylift>mvn jetty:run > [INFO

Re: [Lift] Re: New ticketing system

2010-01-26 Thread David Bernard
accunote have got (IMHO) one of the best web GUI to manage "tickets", I saw. http://www.acunote.com/promo (also provide full access for OSS) But to the job with a LiftTicket should be a better match (for current and futur need). Sorry no time to work on. /davidB On Tue, Jan 26, 2010 at 22:30, D

Re: [Lift] Best way to integrate custom lift version in workflow?

2010-01-25 Thread David Bernard
Jeppe, in your case, the repository could simply be : * a SMB/ftp/file system shared directory * a directory staticly served by a http server * or a (not so complicate) nexus server with default configuration. On Mon, Jan 25, 2010 at 16:59, David Pollak wrote: > This seems like a job for a start-

Re: [Lift] Lift WebKit 1.1-M8 - broken mvn site

2010-01-10 Thread David Bernard
The version of yuicompressor-maven-plugin used is not compatible with openjdk. (see mailing list archive). On Sat, Jan 9, 2010 at 21:06, Jaroslaw Zabiello wrote: > $ uname -a > Linux Ubuntu-904-jaunty-64-minimal 2.6.28-11-server #42-Ubuntu SMP Fri > Apr 17 02:45:36 UTC 2009 x86_64 GNU/Linux > > $

Re: [Lift] Re: The future of lift-core

2009-12-23 Thread David Bernard
Tips : in your project call : mvn dependency:analyze you should see the list of dependencies useless and used throught transitive path and to list directly in your pom.xml (may be in place of lift-core). /davidB On Wed, Dec 23, 2009 at 02:31, Peter Robinett wrote: > Indrajit, your post made me

Re: [Lift] Re: [scala-internals] RC5 candidate for the first 2.8.0 beta

2009-12-22 Thread David Bernard
Kevin, maven-scala-plugin integrate a workaround (see note of previous mail) against the line-length limit : arguments of the main class are store in a file. /davidB On Tue, Dec 22, 2009 at 15:45, Kevin Wright wrote: > > > 2009/12/22 David Bernard > > Dirty solutions (If y

Re: [Lift] Re: [scala-internals] RC5 candidate for the first 2.8.0 beta

2009-12-22 Thread David Bernard
Dirty solutions (If you already have maven installed and be able to build lift with maven) : 0. replace $HOME/.m2/repository/org/scala-lang/scala-compiler/2.8.0-SNAPSHOT/scala-compiler-2.8.0-SNAPSHOT.jar by symlink to the directory with classes result from scalac scalac compilation 1. Or at the e

Re: [Lift] Re: (Maven problem?) Char encoding problem using S.?

2009-12-08 Thread David Bernard
you could select which file should be filtering, else every resources are filtering and "converted" (to UTF-8) /davidB On Tue, Dec 8, 2009 at 11:18, Timothy Perrett wrote: > Ahhh! That is interesting... i'd not thought of that :-) > > You'll need to specify a proper encoding type for sure otherw

Re: [Lift] Newbie Question: Problems compiling/running examples

2009-11-26 Thread David Bernard
The latest and older maven-scala-plugin require maven 2.0.9. (I used maven 2.2.1 to build the plugin) On Mon, Nov 23, 2009 at 05:01, David Pollak wrote: > Try running with Maven 2.2.x > > I think the latest Scala Maven plugin may require a version of Maven newer > than 2.0.9 > > > On Sun, Nov 22,

Re: [Lift] Lift compiles on Scala 2.8 and runs the demo

2009-11-23 Thread David Bernard
.) /davidB On Mon, Nov 23, 2009 at 14:59, Eric Bowman wrote: > Some people consider it slightly evil, but you can also just do "mvn ... > -Dtest=false". Less typing. > > David Bernard wrote: > > To run maven without compiling+running test from commandline : > > &

Re: [Lift] Lift compiles on Scala 2.8 and runs the demo

2009-11-23 Thread David Bernard
To run maven without compiling+running test from commandline : mvn -Dmaven.test.skip=true To fully disable test without commenting them : edit pom.xml true (I prefer using the property instead of directly configure surfire because : * don't require to add a surfire section if it doesn't

[Lift] Re: javax.mail 1.4.3-SNAPSHOT

2009-11-06 Thread David Bernard
About "removing" transitive dependency. The maven "rules" is if you use a library A2 directly in your code list it explicitly/directly as dependency including it it's already a transitive dependency of library A1 (alreyd listed). You have no assurance that other version of A1 use A2 (including in

[Lift] Re: YUI Compressor Fatal Error

2009-10-25 Thread David Bernard
welcome, the fact that Scala Actors don't work for Comet actors >> > > suggests that I should switch to the Sun JVM. >> >> > Keep in mind I was on Ubuntu 8.04 (granted this is the LTS version). >> >> > I'll try on 9.04 today. >> >> > >

[Lift] Re: NetBeans is barfing on the new pom.xml structure

2009-10-24 Thread David Bernard
incremental-build-plugin 1.2 On Sat, Oct 24, 2009 at 18:55, Indrajit Raychaudhuri wrote: > > Thanks davidB for pointing! > > On 24/10/09 9:19 PM, David Bernard wrote: >> >> Not setting version of plugin : >> * create un-repr

[Lift] Re: NetBeans is barfing on the new pom.xml structure

2009-10-24 Thread David Bernard
Not setting version of plugin : * create un-reproductible build (over time and developer configuration). * using le last release is not always a good idea (eg : the last 2 version of maven-eclipse-plugin introduce regression). /davidB On 2009-10-24, Indrajit Raychaudhuri wrote: > > Plugin and

[Lift] Re: Ummm.. at the risk of crashing my browser........

2009-10-16 Thread David Bernard
Correction, I receive my wave account this morning (after 2 weeks). So no need to invite me. Thanks On Fri, Oct 16, 2009 at 14:02, David Bernard wrote: > I requested an account (for dev) but no reply. So If you can invite me. > > thanks. > > On Fri, Oct 16, 2009 at 13:50, Mar

[Lift] Re: Ummm.. at the risk of crashing my browser........

2009-10-16 Thread David Bernard
I requested an account (for dev) but no reply. So If you can invite me. thanks. On Fri, Oct 16, 2009 at 13:50, Markus Kolb wrote: > > > > On Oct 15, 9:18 pm, Jim Barrows wrote: >> Who wants a wave invite? > > I'm following the wave development, too. > Would be nice to try it out. > > Markus >

[Lift] Re: Question about the Getting Started Guide

2009-10-10 Thread David Bernard
run mvn jetty:run -U (-U is required the first time you use this plugin if no version of the plugin is define in the pom.xml) See http://wiki.github.com/dpp/liftweb/about-maven-mini-guide /davidB On Wed, Sep 30, 2009 at 03:11, jlist9 wrote: > > Hi, > > I'm new to Lift. I'm trying to follow the

[Lift] Re: Help!

2009-10-06 Thread David Bernard
To create a war : mvn package To deploy (outline), (war are bundles that need a WebApp server to run (eg : jetty, tomcat, glassfish, jboss,...): # install jetty on your server (not maven) ## start jetty ## try http://jetty.host:jetty.port/ (eg: http://127.0.0.1:8080/) ## stop # put your .war int

[Lift] Re: YUI Compressor Fatal Error

2009-10-05 Thread David Bernard
yuicompressor 2.3.x doesn't work with openjdk (https://bugs.launchpad.net/ubuntu/+source/openjdk-6/+bug/287035) But it seems that yuicompressor 2.4.2 works (http://www.electrictoolbox.com/minify-javascript-css-yui-compressor/) It's a long time I didn't update yuicompressor-maven-plugin. I'll depl

[Lift] Re: Removing Scala Actors from Lift

2009-09-30 Thread David Bernard
But my opinion == 0, I not a lift's user, but I see lot of case where some lift lib could be used without working on a webapp. On Wed, Sep 30, 2009 at 15:37, David Bernard wrote: > my salt > (I don't like lift-common, "common of what ?" ) > If you don't want t

[Lift] Re: Removing Scala Actors from Lift

2009-09-30 Thread David Bernard
my salt (I don't like lift-common, "common of what ?" ) If you don't want to move actors, box... to lift-util (xml utilities,... aren't only for web) As actor and box are language "extension", I suggest lift-lang, lift-langplus, liftx, lift-scalax ;) /davidB On Wed, Sep 30, 2009 at 15:29, Vikt

[Lift] Re: [Lift committers] Re: Welcome Indrajit Raychaudhuri to the Lift Committers

2009-09-24 Thread David Bernard
Hi, removing scala from the direct dependency of project using lift will ease maintenance for user, I agree. But, IMHO : * It's not a good practice because it's like saying that you don't use scala-library directly, it's a transitive/indirect dependency. * project should list every direct depende

[Lift] Re: Milestone 5 now available!

2009-09-09 Thread David Bernard
you're the new holder of the record : http://wiki.liftweb.net/index.php/HowTo_deploy_lift_artifacts Good job On Wed, Sep 9, 2009 at 11:02, Charles F. Munat wrote: > > You must be talking about those other guys. All I did was make an > hour-long job into a six-hour job (after having to delay seve

[Lift] Re: JPA blank archetype

2009-08-25 Thread David Bernard
In the repositoryn jar checksum aren't made by hudson, but by nexus (task to plan or to run manually) On Tue, Aug 25, 2009 at 01:02, Derek Chen-Becker wrote: > Sorry about that. It's a one line commit, so hopefully Git will be able to > figure out a sane merge. > > Derek > > 2009/8/24 Timothy Per

[Lift] Re: Include build # in LiftVersion?

2009-08-21 Thread David Bernard
I don't know how to grab git fingerprint, but I can modify the pom.xml to add a timestamp in the Manifest ${project.version}-${buildNumber} Are you ok ? On Wed, Aug 19, 2009 at 18:26, David Pollak wrote: > > > On Wed, Aug 19, 2009 at 5:44 AM, Jeppe Nejsum Madsen > wrote: >> >> Hi, >> >> Whe

[Lift] Re: [Lift committers] Welcome Joni Freeman to the Lift committers

2009-08-14 Thread David Bernard
Bienvenue On Thu, Aug 13, 2009 at 18:06, David Pollak wrote: > Folks, > > I'm pleased to announce that Joni Freeman has joined the Lift committers. > > Joni will be adding his high performance JSON library as a module in Lift... > and I certainly hope that Lift's JSON support will improve. > > Pl

[Lift] Re: Package building...

2009-08-10 Thread David Bernard
It's a bug of the maven-war-plugin see * http://jira.codehaus.org/browse/MWAR-169 * http://jira.codehaus.org/browse/MWAR-170 * http://jira.codehaus.org/browse/MWAR-210 could you try : * force version of the plugin to 2.1-beta-1 Add this to in pom.xml. org.apache.maven.plugin

[Lift] Re: Where is source code for demo app?

2009-07-29 Thread David Bernard
for http://demo.liftweb.net/index http://github.com/dpp/liftweb/tree/222d3b02cf4de3c214505035b6fd2471b299d42f/sites On Wed, Jul 29, 2009 at 19:05, Goldfish wrote: > > I see nice features demo'd at both http://lift-example.appspot.com/index > and http://demo.liftweb.net/index. Now where can I rea

[Lift] Re: scala+maven

2009-07-29 Thread David Bernard
n Wed, Jul 29, 2009 at 7:14 AM, ph wrote: > > > > If I have private remote repository, I deploy there a new binaries, > > then all my servers need to run those binaries. I would need to get > > them to local repository and run locally. > > What would be a right workflow

[Lift] Re: scala+maven

2009-07-29 Thread David Bernard
would need to get > them to local repository and run locally. > What would be a right workflow for that? > > > > On Jul 29, 4:54 am, David Bernard wrote: > > Hi, > > > > I don't understand what you try to do and what you mean by "Now I need to > > r

[Lift] Re: scala+maven

2009-07-29 Thread David Bernard
Hi, I don't understand what you try to do and what you mean by "Now I need to run project from repository" ? Could you provide the use case ? I also copy/move to the mailing-list maven-and-scala. /davidB On Tue, Jul 28, 2009 at 23:16, ph wrote: > > Maybe better question would be: > How to ru

[Lift] Re: Good build tool for Lift/Scala projects

2009-07-24 Thread David Bernard
if what you dislike in pom, it's the xml (like me) try yaml ( http://wiki.github.com/mrdon/maven-yamlpom-plugin) ;) On Fri, Jul 24, 2009 at 14:10, night_stalker wrote: > > I hate pom.xml and prefer something like rake,scala code best. > > On Jul 24, 5:23 pm, Jeppe Nejsum Madsen wrote: > > Hi, >

[Lift] Re: Good build tool for Lift/Scala projects

2009-07-24 Thread David Bernard
a little OT (because not applied to a lift project but to a scala project). * we use maven to build and capistrano to deploy release (previously a python script). * build doesn't need scripting and developer should be allowed to deploy to environment. at the end build generate an archive deployed i

[Lift] Re: Java alternatives?

2009-06-30 Thread David Bernard
Wicket works with scala (some blog/article over the net). /davidB On Tue, Jun 30, 2009 at 00:29, Naftoli Gugenhem wrote: > > But if your team already has a bit of scala knowledge and is planning to > transition gradually, I wonder if you could write the lift-specific parts in > scala and delegat

[Lift] Re: Hudson issue

2009-06-29 Thread David Bernard
I'd got the problem in previous server. I don't remember the solution (I thought a version of hudson fixed this) Try : * to increase the ulimit of open file for the account running hudson * to diseable build of the mvnsites/javadoc/scaladoc (or move it into an other job) * to cron a daily restart o

[Lift] Re: liftweb.net down now, and maven refuses to compile

2009-06-27 Thread David Bernard
Hi, * To generate the api : all the jar should be installed (mvn install scala:doc). that is very long because generating api redo compilation (vscaladoc and scaldoc use the scalac api) * To generate the api in a single doc, I used experimental feature of maven-scala-plugin (2.11-SNAPSHOT) and vs

[Lift] Re: liftweb.net down now, and maven refuses to compile

2009-06-27 Thread David Bernard
Hi, * It's right I don't monitor the mailing list actively (use keyword to filter) * I'm no longer admin of scala-tools.org (since 2 or 3 month). To work offline with maven you need to call it with : mvn -o but there is a bug with maven 2.0.x and offline mode. you need to use and install 2.

[Lift] Re: Downloading...

2009-06-21 Thread David Bernard
Hi, The default archetype (template) for lift project include lift-core as dependencies. lift-core == all lift artifact (jar in your case) and one of the artifact is lift-xmpp (jabber). If you only want "minimum" then modify the dependencies section in your pom.xml (eg, for web only use lift-webk

[Lift] Re: Difference between running from command line and from Eclipse

2009-06-16 Thread David Bernard
oups (old version) set the version to 6.1.17 or any 6.1.x and remove range version indicator [ and ,) On Tue, Jun 16, 2009 at 22:14, Philippe Kirsanov wrote: > Thank you for the reply, however I don't think this is the issue (I tried > and that didn't work).Seems like issue in which version of Je

[Lift] Re: Difference between running from command line and from Eclipse

2009-06-16 Thread David Bernard
The problem is a mismatch in the version of Jetty used by Eclipse (7+) and the code RunWebApp use WebAppContext that was remove from jetty 7+. If you don't plan to run the site as test under eclipse by "Run As" on RunWebApp, then remove the RunWebApp source else change the version of jetty from

[Lift] Re: scala-forum.org is open!

2009-06-16 Thread David Bernard
Don't worry about duplication, I removed other post. On Tue, Jun 16, 2009 at 12:45, Christian Helmbold wrote: > > Hi, > > the new forum for Scala developers is open: http://scala-forum.org > > Come in and talk about Scala programming and Scala frameworks! > > Regards, > Christian > > > PS: I hop

[Lift] Re: How to prevent OutOfMemory while compiling Lift project?

2009-06-09 Thread David Bernard
maven fork a new jvm to run scalac (by default) so MAVEN_OPTS is not used to launch scalac you need to define the (like David P said) -Xmx1024m if you want to customize the jvm args /davidB On Tue, Jun 9, 2009 at 17:45, Kevin Wright wrote: > It might

[Lift] Re: Vscaladoc not grokking new documentation

2009-06-06 Thread David Bernard
Hi, It's a bug, I'll try to add a test case. (you could open issue at http://github.com/davidB/vscaladoc/issues) >From the source code of the page the doc is present. I suggest you remove the tag from the comment (at least the first pair). a side note. you could have "colorized" code if you use

[Lift] Re: lift-webkit src not on github

2009-05-15 Thread David Bernard
no, it just mean that the lift directory was not renamed lift-webkit (history raison). On Fri, May 15, 2009 at 16:52, glenn wrote: > > Yes, I see it under lift. Does this mean the lift-webkit jar is going > away? > > glenn... > > On May 15, 5:39 am, David Bernard wrote: &

[Lift] Re: rlambda lift project updated

2009-05-15 Thread David Bernard
On Thu, May 14, 2009 at 21:41, Meredith Gregory wrote: > Lifted, > > i've added support to the rlambda lift > projecttaking it within range of being a > candidate DSL-archetype. At this point it > is possible simply to supply a .cf file in the src/main/bnfc dir

[Lift] Re: lift-webkit src not on github

2009-05-15 Thread David Bernard
in the subdir lift (and not lift-webkit) http://github.com/dpp/liftweb/tree/501dc7c63306b0306ed0a1abd0537cfe3ed86176/lift On Fri, May 15, 2009 at 14:26, Timothy Perrett wrote: > > > Eh?! I hope its still on github or we lost a lot of work ;-) > > http://github.com/dpp/liftweb/tree/master > > Che

[Lift] Re: Confusion about Lift-Core

2009-05-11 Thread David Bernard
See http://groups.google.com/group/liftweb/browse_thread/thread/957d5c8942b70a19/6fc14f442224626a the name "lift-core" was keep for backward compatibility and to avoid existing user to replace "lift-core" by lift-full or the exact list of need-jar in pom.xml. /davidB On Mon, May 11, 2009 at 16:1

[Lift] Re: Generating the site?

2009-05-05 Thread David Bernard
; > Derek > > > On Tue, May 5, 2009 at 2:31 PM, David Bernard > wrote: > >> Sorry it is not currenlty supported by (v)scaladoc, but it should. I >> created http://github.com/davidB/vscaladoc/issues/#issue/1 >> So use tag you need (existing, whish,...) and I&#x

[Lift] Re: Generating the site?

2009-05-05 Thread David Bernard
, May 5, 2009 at 1:41 PM, Derek Chen-Becker > wrote: > >> I'm issuing this from within liftweb/lift. I'm going to try a root "mvn >> clean install" to make sure that I haven't somehow broken the code by adding >> comments. >> >> Derek >>

[Lift] Re: Generating the site?

2009-05-05 Thread David Bernard
I think you have the problem because the jar with net.liftweb.utils was not in your classpath. (v)scaladoc works only on compilable code. On Tue, May 5, 2009 at 21:32, David Bernard wrote: > could you try : > cd liftweb > mvn install site-deploy -Prelease > > the fully generated

[Lift] Re: Generating the site?

2009-05-05 Thread David Bernard
could you try : cd liftweb mvn install site-deploy -Prelease the fully generated site should be generated into $HOME/.m2/mvn-sites/liftweb On Tue, May 5, 2009 at 21:17, Derek Chen-Becker wrote: > I'm working on updating the Scaladocs right now and I'm running into issues > generating the site. v

[Lift] Re: developing Scala/Lift using Eclipse

2009-04-29 Thread David Bernard
Quick note : * You need to use build-helper-maven-plugin (like Josh shown) only for mixed project. * if you set in your src/main/scala src/test/scala then the maven-eclipse-plugin use the right directory (archetype use this setup) my 2c /davidB On Wed, Apr 29, 2009 at 14:46, Josh Su

[Lift] Re: scala-tools.org is down

2009-04-22 Thread David Bernard
The mvnsites links on home page (http://scala-tools.org/) aren't redirected correctly. http://scala-tools.org/mvnsites ... failed http://scala-tools.org/mvnsites/ ... works /davidB On Wed, Apr 22, 2009 at 16:14, TylerWeir wrote: > > Seems fine to me. Can you try again? > > On Apr 22, 9:45 am,

[Lift] Re: Can't get applications to run in Jetty

2009-04-21 Thread David Bernard
- > [ERROR] BUILD FAILURE > [INFO] > > [INFO] command line returned non-zero value:1 > [INFO] > > [INFO] For more information, run Maven with the -e switch > [INFO] > --

[Lift] Re: Can't get applications to run in Jetty

2009-04-21 Thread David Bernard
hi, Can you run (and report the output) : mvn compile -Dmaven.scala.displayCmd=true /davidB On Tue, Apr 21, 2009 at 14:22, Julian Howarth wrote: > > > On Apr 21, 12:56 pm, Timothy Perrett wrote: > > Can you try with maven 2.0.9... > > I've now switched to maven 2.0.9 but the error is exactly t

[Lift] Re: http://demo.liftweb.net/ Source

2009-04-13 Thread David Bernard
may be "sites" directory should be renamed "examples" ? 2009/4/13 João Pereira > How did i miss that one :) > > On Mon, Apr 13, 2009 at 6:13 PM, David Pollak < > feeder.of.the.be...@gmail.com> wrote: > >> http://github.com/dpp/liftweb/tree/master/sites/example >> >> 2009/4/13 João Pereira >> >

[Lift] Re: Small archetype bug?

2009-04-10 Thread David Bernard
Why adding a lib dir if it's useless ? /davidB On Fri, Apr 10, 2009 at 21:01, Timothy Perrett wrote: > > Ignore me... im being dumb! Basic archetype has lib but the blank one > doesnt. I'll add a lib dir to blank archetype tomorrow. > > Cheers, Tim > > On Apr 10, 12:22 pm, Tim Perrett wrote: >

[Lift] Re: Where to start

2009-04-07 Thread David Bernard
samples and demo code are available in the lift source under "sites" (bad name) directory http://github.com/dpp/liftweb/tree/c096b784c3fb43900ea0b2b10ad71df34fc669a1/sites /davidB On Tue, Apr 7, 2009 at 22:29, Erkki Lindpere wrote: > > I really want to try Lift out, but I find the documentation

[Lift] Re: Welcome Lee Mighdoll to the Lift committers

2009-03-18 Thread David Bernard
Bienvenue ! On Wed, Mar 18, 2009 at 10:33, Timothy Perrett wrote: > > Welcome Lee - good to have you on board. > > Send me a picture and bio of yourself and i'll add you to the > liftweb.net team list :-) > > Cheers, Tim > > On Mar 18, 9:12 am, "marius d." wrote: >> Lee, you're most welcomed !

[Lift] Re: Google search results

2009-03-12 Thread David Bernard
It'll be done next week-end. On Thu, Mar 12, 2009 at 17:43, James Matlik wrote: > Why not have those links generate 301 redirects to the new site locations? > It won't do much for people's existing bookmarks, but should allow search > engines to update without the dead links. > > On Wed, Mar 11,

[Lift] Re: You guys rock!

2009-03-11 Thread David Bernard
About naming convention of test, I used : class XxxxSpecTest extends org.specs.runner.JUnit4(XxxxSpec) import org.specs._ object XxxxSpec extends Specification with ScalaCheck { About file roller, I could modify the maven:cc to add an option that rerun every test on change but I thing it w

[Lift] Re: jetty dependency weirdness

2009-03-08 Thread David Bernard
IIRC : Lift is tested with jetty 6.1+ and not with 7+ => using the maven plugin 6.1.x and not the 7+ (with the new name) On Sun, Mar 8, 2009 at 13:45, valstadsve wrote: > > I think the problem is the artifactId being used: "maven-jetty- > plugin". As I understand it, codehaus has renamed it to

[Lift] Re: Archetype Compile Problems

2009-03-08 Thread David Bernard
Hi, Have you try to force the version of jetty (and of the plugin to 6.1.14). RunWebApp class is only provide to help you run webapp for IDE/Editor (for test and debug). it's not required so you could remove it, if you don't need this feature. LiftConsole need the scala-compiler to run, if you d

[Lift] Re: Eclipse + Lift question: WebAppContext is not a member of _root_.org.mortbay.jetty.webapp

2009-03-05 Thread David Bernard
try (not tested) * In your pom.xml, force the version of jetty to be an exact version like 6.1.14 instead of the current version of jetty something like [6.1,) (== latest version available upper 6.1) * or remove the class RunWebApp if you don't need it, (it's need only to launch jetty from an IDE

[Lift] Re: Is there a reason why the getting started PDF is for version 0.1.0?

2009-03-04 Thread David Bernard
Or use "mvn archetype:generate -DarchetypeCatalog=http://scala-tools.org"; to use the latest release On Wed, Mar 4, 2009 at 18:38, Derek Chen-Becker wrote: > FYI, it's fixed on the site. > > On Tue, Mar 3, 2009 at 8:21 AM, Derek Chen-Becker > wrote: >> >> Attached is an updated version. Can som

[Lift] Re: Incomplete Site: Missing JavaDoc

2009-03-04 Thread David Bernard
Hi, I deploy a DRAFT of the aggregated api at http://scala-tools.org/scaladocs/liftweb/1.0/ Send us error, bug, suggestion to improve it. /davidB On Wed, Mar 4, 2009 at 17:04, Timothy Perrett wrote: > > On a related note, whilst we appreciate this is not ideal for new > users (right now), we

[Lift] Re: Issue with http://liftweb.net site design (IE7 / Opera 9.63)

2009-02-27 Thread David Bernard
eb.net. * I'm too lazy to search in the source of the site ;) But I'm also too lazy/tired/busy to try/help you ;) Nice job. > > Thanks, Tim > > On 27/02/2009 16:30, "David Bernard" wrote: > > > Do you use Blueprint css to create the new site ? >

[Lift] Re: Issue with http://liftweb.net site design (IE7 / Opera 9.63)

2009-02-27 Thread David Bernard
Tim Do you use Blueprint css to create the new site ? On Fri, Feb 27, 2009 at 17:23, Tim Perrett wrote: > > Jean-Luc, thanks for pointing these out - the site is brand brand new, > so were still working out the bugs. > > Cheers, Tim > > On Feb 27, 4:15 pm, Jean-Luc wrote: > > Sorry if I sent t

[Lift] Re: Error while going through the starting guide: prefix not bound to namespace

2009-02-22 Thread David Bernard
On Sun, Feb 22, 2009 at 10:20, babysnakes wrote: > > Phew, that was hard > > I've found the problem. In the TD.scala class I had: > def add(form: NodeSeq) { > ... > return type is Unit ( == void in java/C) the explicit version : def add(form: NodeSeq) : Unit = { => nothing to display > But

Re: [maven-and-scala] [Lift] Build problems...

2009-02-17 Thread David Bernard
Hi, I don't know Mac, there is a command line length limitation (as windows) and is it possible that the shell block the execution and return exit code = 139 (without message) ? which version of java do you have ? Sorry to not be able to help you more :( /davidB > > > On 17/02/2009, at 3:35

[Lift] [ANN] some jar on maven central repository

2009-02-13 Thread David Bernard
Hi, just to inform you that the following groupId are sync (24H delay) from http://scala-tools.org/repo-releases to maven central repository : * org.scala-lang * org.scala-tools * net.liftweb So you no more need to include the following code into your pom.xml (except if you use lib from other gro

[Lift] Re: thanks

2009-02-12 Thread David Bernard
On Fri, Feb 13, 2009 at 05:43, Oliver wrote: > > If you could that would be great! > > On Fri, Feb 13, 2009 at 10:55 AM, Jorge Ortiz > wrote: > > > > One of the projects I keep putting off is to extract Lift's templating > > system into a component that could be used as a stand-alone library. If

[Lift] Re: Code Freeze

2009-02-12 Thread David Bernard
For the 0.11 release, the scaladoc wil be generated with vscaladoc 1.2 (not released yet) vscaladoc support some feature that could help you : * code fragment, to insert sample in the doc * the tag @codeAsDoc that copy the code as documentation, usefull for single line code, multi-signature, synoni

[Lift] Re: confusion about lift-archetype-version versus lift version

2009-02-12 Thread David Bernard
0.11 isn't released the correct version number is 0.11-SNAPSHOT On Thu, Feb 12, 2009 at 12:35, Tim Perrett wrote: > > 0.10 is the current RELEASE that can be found in the > http://scala-tools.org/repo-releases > repo. > > 0.11 is the current DEV that can be found in > http://scala-tools.org/repo

[Lift] Re: lift-example project file

2009-02-03 Thread David Bernard
Hi, The xxx-project.tar.gz are no more available you could try to download source from github http://github.com/dpp/liftweb/tree/6bf372de579a64a65242722b63e5b83ea8274faf/sites/example# or the download button at http://github.com/dpp/liftweb/tree/6bf372de579a64a65242722b63e5b83ea8274faf/sites/examp

[Lift] Re: Packaging lift application for distribution

2009-02-03 Thread David Bernard
http://alchim.sourceforge.net/winstone-maven-plugin/usage.html but i'm not sur if winstone will work with Comet... you could also try (not tested) to * create a Main class (see RunWebapp under test) * add jetty as dependency * create an executable jar with the maven assembly plugin ( http://maven

[Lift] Re: liftweb project archetype dependencies

2009-02-03 Thread David Bernard
Hi, When I created Archetypes, jetty 6.x was the latest version series and new minor version comes frequently, So instead of lock to a specific version I decide to let it free (=> LATEST) I did test lift with jetty 7.x. So we could upgrade Archetype to work with 7.x or lock to 6.x ? /davidB On M

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

2009-01-30 Thread David Bernard
Bon Anniversaire On Fri, Jan 30, 2009 at 08:48, Marius 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 "L

[Lift] Re: Lift 0.10 example code

2009-01-29 Thread David Bernard
Archetypes are not sample/demo, they are project template to start your own webapp you could grab the war of demo at http://scala-tools.org/repo-releases/net/liftweb/lift-example/0.10/ On Thu, Jan 29, 2009 at 18:13, Tim Perrett wrote: > > > The code for demo.liftweb.net is held here: > > http://

[Lift] Re: Lift startup issue

2009-01-15 Thread David Bernard
it is due to migration to scala 2.7.3 try to use scalaVersion 2.7.3 and lift 0.10 (no SNAPSHOT) then rebuild : mvn clean package jetty:run /davidB On Thu, Jan 15, 2009 at 10:16, O'Rorke Paul wrote: > > I'm starting to see an issue with jetty choking when it fires up the > lift servlet filter.

[Lift] Re: was there a breaking change to lift?

2009-01-14 Thread David Bernard
Do a try before removing your maven repository, it should be not required and if you want to remove something and avoid to re-download every jars of the world only remove .m2/repository/net/liftweb On Thu, Jan 15, 2009 at 00:00, David Pollak wrote: > Okay, > > ESME and Buy a Feature are updated

[Lift] Re: Swampland

2009-01-12 Thread David Bernard
David, you forgot to define the licence in the pom. On Mon, Jan 12, 2009 at 13:33, David Bernard wrote: > Do you try to do a bug tracker or a "generic" issue tracker/task planner ? > > Quick note about bug tracker ? > * I like id like JIRA, projectPrefix-projectNu

[Lift] Re: Swampland

2009-01-12 Thread David Bernard
Do you try to do a bug tracker or a "generic" issue tracker/task planner ? Quick note about bug tracker ? * I like id like JIRA, projectPrefix-projectNum and not a global Num (cross project) * supporting part of the JIRA remote API will simplify integration with third-party tool (hudson, eclipse,

[Lift] Re: Google syntax highlighter on the Lift site

2009-01-12 Thread David Bernard
On Thu, Jan 8, 2009 at 20:37, czerwonka wrote: > > I apologize if this is not the right place, but I noticed that you > have the Google code formatter installed on the Lift site. > > http://liftweb.net/index.php/Lift_View_First > http://code.google.com/p/syntaxhighlighter/wiki/Usage > > Given tha

[Lift] Re: Can or Box or something else

2008-12-21 Thread David Bernard
current signature : def doStuff(arg1 : Can[Foo], arg2 : Toto) : Can[Bar] With Result: def doStuff(arg1 : Result[Foo], arg2 : Toto) : Result[Bar] Result could be good but is not, when used for argument and not for "result" more I think about it, more I thought ? was not so wrong/joke. In the N

[Lift] Re: Can or Box or something else

2008-12-20 Thread David Bernard
If you want 3 letters "Opt" to show the relation with Option If you want less "?" (question mark) but it's already used by i18n/resourses bundles (but it could be changed from ?("my sentence key") to $("my sentence key")). I'm haunted by Tony ;) my 2 cents useless contribution On Sat, Dec 20,

[Lift] Re: liftweb xml schema location

2008-12-17 Thread David Bernard
It's not an external link nor a link to a schema but the definition of a namespace : lift On Wed, Dec 17, 2008 at 10:07, Oliver Lambert wrote: > Don't I need the xsd or dtd specification? > On 17/12/2008, at 7:50 PM, Viktor Klang wrote: > > Why not just add a hosts entry and redirect that host t

[Lift] Re: behind the scenes with Maven?

2008-12-17 Thread David Bernard
when version end by -SNAPSHOT maven check for update once a day on remote repository and update local repository (if newer is found). except if you work offline. Using SNAPSHOT is using unstable, wip code On Wed, Dec 17, 2008 at 06:33, Jorge Ortiz wrote: > Yup, you've about got it right. > > As

[Lift] Re: maven problem - can't make ToDo example work - or even get off the ground.

2008-12-15 Thread David Bernard
--- >> >>> -- >> >>> [INFO] The plugin 'org.scala-tools:maven-scala-plugin' does not >> >>> exist >> >>> or no valid version could be found >> &g

[Lift] Re: Unable to Run maven

2008-12-11 Thread David Bernard
mvn -o clean install -Dmaven.test.skip=true -e + the full output ? (with prompt, etc...) On Thu, Dec 11, 2008 at 12:47, AliAliKhan <[EMAIL PROTECTED]> wrote: > lets say mvn -o clean install -Dmaven.test.skip=true > > On Thu, Dec 11, 2008 at 1:40 PM, David Bernard <[EMAIL P

[Lift] Re: maven problem - can't make ToDo example work - or even get off the ground.

2008-12-11 Thread David Bernard
The first time you run jetty : mvn jetty:run -U I learn a way to avoid this problem (for futur archetype, I'll try it next week-end) /davidB On Thu, Dec 11, 2008 at 13:31, Josh Suereth <[EMAIL PROTECTED]> wrote: > Thanks, and sorry for the typos. > > What you want (in either your ~/.m2/setting

[Lift] Re: Unable to Run maven

2008-12-11 Thread David Bernard
er i run mvn > > > On Thu, Dec 11, 2008 at 1:22 PM, David Bernard <[EMAIL PROTECTED]> > wrote: >> >> Could you send the the full output of "mvn -e" >> >> On Thu, Dec 11, 2008 at 08:36, alialikhan <[EMAIL PROTECTED]> wrote: >>

[Lift] Re: Unable to Run maven

2008-12-11 Thread David Bernard
Could you send the the full output of "mvn -e" On Thu, Dec 11, 2008 at 08:36, alialikhan <[EMAIL PROTECTED]> wrote: > > I am getting this exception while running maven .. > java.lang.NoClassDefFoundError: export > > every thing works fine few days back. .. and nothing is change but > still mave

[Lift] Re: a simple screencast for making a sample app

2008-12-10 Thread David Bernard
Great initiative/job. You could try an approach like wink (http://www.debugmode.com/wink/) no voice/sond but info bubble to add after recording, a mix between slideshow and video (I don't know if it's possible on Mac). /davidB On Wed, Dec 10, 2008 at 04:18, Matt Harrington <[EMAIL PROTECTED]>

[Lift] Re: Snapshot documentation not current any more

2008-12-07 Thread David Bernard
Generating + deploying the api for snapshots is disabled "temporary". I'll fixe it ASAP On Thu, Dec 4, 2008 at 23:43, Joachim A. <[EMAIL PROTECTED]> wrote: > > Hi, > I use the generated API documentation almost every day - thanks a lot for > that! > > The documentation (http://scala-tools.org/mvn

[Lift] Re: Massively huge *BREAKING CHANGES*

2008-12-07 Thread David Bernard
net.liftweb lift-webkit 0.10-SNAPSHOT net.liftweb lift-util 0.10-SNAPSHOT net.liftweb lift-mapper 0.10-SNAPSHOT ... idem for machine and record. Matt, Is it clearer ? On Sun, Dec 7, 2008 at

  1   2   >