Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Bugger, the LESS processing failed
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  9 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Matt Raible  
View profile  
 More options Oct 9 2011, 3:32 pm
From: Matt Raible <mrai...@gmail.com>
Date: Sun, 9 Oct 2011 13:32:03 -0600
Local: Sun, Oct 9 2011 3:32 pm
Subject: Bugger, the LESS processing failed
I'm trying to use the Less module so I can leverage Twitter's Bootstrap in my project. I know I don't need Less, but I figured I'd try it anyway. When I use versions 0.2 or 0.3, I get the following error:

Bugger, the LESS processing failed:,
java.lang.NullPointerException
        at com.asual.lesscss.LessEngine.parseLessException(LessEngine.java:163)
        at com.asual.lesscss.LessEngine.compile(LessEngine.java:104)
        at play.modules.less.PlayLessEngine.compile(PlayLessEngine.java:94)
        at play.modules.less.PlayLessEngine.get(PlayLessEngine.java:43)
        at play.modules.less.Plugin.handleOk(Plugin.java:64)
        at play.modules.less.Plugin.handleResponse(Plugin.java:49)
        at play.modules.less.Plugin.serveStatic(Plugin.java:31)
        at play.plugins.PluginCollection.serveStatic(PluginCollection.java:584)
        at play.server.PlayHandler.serveStatic(PlayHandler.java:765)
        at play.server.PlayHandler$NettyInvocation.init(PlayHandler.java:179)
        at play.Invoker$Invocation.run(Invoker.java:263)
        at play.server.PlayHandler$NettyInvocation.run(PlayHandler.java:200)
        at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
        at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
        at java.util.concurrent.FutureTask.run(FutureTask.java:138)
        at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access $301(ScheduledThreadPoolExecutor.java:98)
        at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(Sc heduledThreadPoolExecutor.java:206)
        at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.j ava:886)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java: 908)
        at java.lang.Thread.run(Thread.java:680)

I also have the CoffeeScript module installed in my Play 1.2.3 project. Don't know if that makes a difference or not.

Thanks,

Matt


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Matt Raible  
View profile  
 More options Oct 11 2011, 10:27 am
From: Matt Raible <mrai...@gmail.com>
Date: Tue, 11 Oct 2011 07:27:12 -0700 (PDT)
Local: Tues, Oct 11 2011 10:27 am
Subject: Re: Bugger, the LESS processing failed
This happens with the GreenScript plugin as well. If I use a
simpler .less file, it works. So I'm guessing there's something
different b/w Twitter's Less authoring and the compilers that Play
modules use.

Is there source code available for the less module? I'd like to see if
I can add more information to compilation errors, like line numbers
and such.

On Oct 9, 1:32 pm, Matt Raible <mrai...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
scott clasen  
View profile  
 More options Oct 11 2011, 1:49 pm
From: scott clasen <scott.cla...@gmail.com>
Date: Tue, 11 Oct 2011 10:49:15 -0700 (PDT)
Local: Tues, Oct 11 2011 1:49 pm
Subject: Re: Bugger, the LESS processing failed

Ive seen this if you try and hit a .less page directly first, without
hitting a play view, some buggyness with init order i guess.

Try hitting a view, then your less, if in fact you were just hitting the
.less directly first


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
green  
View profile  
 More options Oct 11 2011, 7:36 pm
From: green <greenlaw...@gmail.com>
Date: Wed, 12 Oct 2011 10:36:37 +1100
Local: Tues, Oct 11 2011 7:36 pm
Subject: Re: [play-framework] Re: Bugger, the LESS processing failed

should be caused by the rhino engine version problem. Can you send out your
dependencies.yml file and all the jar files in your app lib folder?


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Erik Bakker  
View profile  
 More options Oct 12 2011, 12:16 pm
From: Erik Bakker <eamel...@gmx.net>
Date: Wed, 12 Oct 2011 18:16:57 +0200
Local: Wed, Oct 12 2011 12:16 pm
Subject: Re: [play-framework] Bugger, the LESS processing failed

> I also have the CoffeeScript module installed in my Play 1.2.3 project.
> Don't know if that makes a difference or not.

Yes, the Rhino engine in the Less module is incompatible with the Rhino
engine in the coffeescript module. You can install less module 0.3-compat
to resolve this. See the docs for more info :)

Regards,

Erik


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Matt Raible  
View profile  
 More options Oct 12 2011, 12:35 pm
From: Matt Raible <mrai...@gmail.com>
Date: Wed, 12 Oct 2011 10:35:09 -0600
Local: Wed, Oct 12 2011 12:35 pm
Subject: Re: [play-framework] Bugger, the LESS processing failed
I saw the 0.3.compatiblity link, but didn't understand that was a version number. ;-)

Changing my dependencies.yml from:

   - play -> less 0.3

To:

   - play -> less 0.3.compatibility

Allows me to use Twitter's bootstrap.less in my project.

Thanks!

On Oct 12, 2011, at 10:16 AM, Erik Bakker wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
hyder  
View profile  
 More options Oct 14 2011, 4:13 am
From: hyder <lmuka...@gmail.com>
Date: Fri, 14 Oct 2011 01:13:46 -0700 (PDT)
Local: Fri, Oct 14 2011 4:13 am
Subject: Re: Bugger, the LESS processing failed

I'm not sure I understand this. Can you elaborate a little bit please?


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
scott clasen  
View profile  
 More options Oct 14 2011, 2:53 pm
From: scott clasen <scott.cla...@gmail.com>
Date: Fri, 14 Oct 2011 11:53:49 -0700 (PDT)
Local: Fri, Oct 14 2011 2:53 pm
Subject: Re: Bugger, the LESS processing failed

When testing out less processing in play I have seen it blow up if I start
the play app and hit http://localhost:localport/some/file.less   without
visiting any other url.

If I hit a regular play view first, and then hit
http://localhost:localport/some/file.less everything works fine.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
hyder  
View profile  
 More options Oct 21 2011, 2:45 pm
From: hyder <lmuka...@gmail.com>
Date: Fri, 21 Oct 2011 11:45:59 -0700 (PDT)
Local: Fri, Oct 21 2011 2:45 pm
Subject: Re: Bugger, the LESS processing failed

Got it.

Thank you,
Ali


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »