plovr is a build tool that dynamically recompiles JavaScript and Closure Template code. It is designed to simplify Closure development.
0
votes
2answers
17 views
Getting Closure / Plovr to remove functions from an if that is always false
An if statement that is obviously always false, eg. if (false), closure removes the statement.
My code looks like this:
if (settings.lang === "en"){
lib.doSomething();
}
settings.lang is a ...
0
votes
0answers
14 views
How to specify multiple directories for paths option in plovr config file
I am new to plovr tool.
Can anyone help me how to specify the value(may be relative path) for "paths" option making plovr to search dependencies in different(multiple) directories?
How to make ...
2
votes
1answer
65 views
Using Plovr to compile modules
I am trying to compile my JavaScript files using Plovr as defined in the config file below:
{
"id": "hello_demo",
"paths": ".",
"closure-library": "closure-library/closure/goog/",
"mode": ...
0
votes
2answers
57 views
Using Plovr to remove whitespace from simple javascript file without managing dependencies
I can't figure out how to get Plovr to just remove whitespace from a simple javascript file and not try to manage dependencies or scopes. (I don't want to use ADVANCED mode if I can help it because my ...
1
vote
0answers
75 views
how to use the module mode in plovr
The plovr works well for single file like this:
{
id:"main",
paths:".",
pretty-print:true,
inputs:["eval.js","util.js","ui.js"],
...
2
votes
1answer
309 views
Auto rebuild closure soy templates
I faced a problem while using Google Closure Soy templates.
When I change a template I need to run a script from command line to compile Soy template to JS file. Is there a service or something else ...
2
votes
1answer
91 views
Where is goog.ui.menuBar provided?
I am learning how to make a menu bar using Google Closure libraries via this example.
http://closure-library.googlecode.com/svn/trunk/closure/goog/demos/menubar.html
However, when I try out the code ...
1
vote
1answer
194 views
Can I build Google Closure projects in Eclipse while building with Plovr?
I want to use an IDE to develop my application that uses the Google Closure javascript library. I am currently editing all my javascript files in vim and compiling using Plovr.
However, I would like ...
1
vote
0answers
176 views
Why is compiling my Closure code with Plovr giving me weird symbols?
I ran java -jar ~/PlovrFiles/plovr.jar build ~/js/config.js > /tmp/compiled.js
However, the Closure compiler issues a bizarre error with weird symbols such as RPP?LQ?RP*)?K??,)I?S??$?d?$?.
...
1
vote
1answer
718 views
Http-Method changes from POST to OPTIONS when changing Content-Type
I am using closure library to do a simple POST. I think XhrIo should work because from my machine when I use any other rest client ,like Firefox browser app RESTClient or Chrome's Simple Rest Client , ...
2
votes
1answer
348 views
goog.net.xhrio.send not calling the server
I am calling goog.net.XhrIo from within this onclick event
goog.events.listen(invBtn, goog.ui.Component.EventType.ACTION,
function(e) {
...
1
vote
1answer
395 views
How can I create my own custom functions for Closure templates in Plovr
I'm using Plovr and would like to use my own custom function (specifically a ucfirst function) inside templates. At the moment I'm only interested in rendering the templates as javascript, and since ...
2
votes
2answers
440 views
Is it possible to create objects within Closure templates?
I've just started doing some work with Google Closure, and I'd like to move the creation of select fields into its own template, and call into that template with something like:
{call ...
2
votes
2answers
572 views
Why a JSC_MISSING_PROVIDE_ERROR in “Hello World” plovr example?
I'm trying to get started with plovr using the simple "Hello World" example in Closure: The Definitive Guide by Michael Bolin. But my build produces an error. Can anyone out there enlighten me as to ...
5
votes
1answer
2k views
Closure compiler app using jquery
I have manage to create a small size js application that uses jQuery and jQuery UI using google's closure compiler with advanced optimizations. Just for clarity: I have not compiled jQuery itself, ...
9
votes
2answers
1k views
getting started with Google Closure if you don't care about minifying/compiling?
If you don't care about minifying your code, is there a way to get started using the Google Closure library without having to set up a subversion client and use the compiler? The Notepad sample ...