Tagged Questions
SDK for development of webOS 1.x and 2.x apps using JavaScript and HTML.
6
votes
1answer
264 views
Starting and stoping listeners in Mojo framework (WebOS)
I am starting WebOS dev and I have a doubt on where should I start and stop my listeners
?
I am reading this book but I couldn't find a clear explanation about this. In the sample the author set the ...
4
votes
1answer
451 views
lighttpd + perl + mojolicious =?
Does mojolicious working under the lighttpd web-server? How to cofigure? Does I need setup the FastCGI? It's my first usage of lighttpd.
4
votes
0answers
297 views
How to get the current MavenSession or MavenExecutionRequest from a Plexus Component
I created a Plexus component to house common logic for several Mojos I want to create. I have been able to pass information like localRepository and project from the Mojo (and test cases).
I was ...
4
votes
2answers
1k views
Palm Mojo / WebOS IDE Recommendation
I'm a developer coming from Visual Studio 2008 looking to get my hands dirty writing some Palm Pre applications. I've heard a number of options for developing Palm Pre apps and am curious for a ...
3
votes
3answers
130 views
Difference between '%p' and 'my %p'?
% %p = ('option1' => 'Option 1',
% 'option2' => 'Option 2',
% 'option3' => 'Option 3'
% );
<select name="killer_feature" id="killer_feature" class="select">
% foreach (keys %p) {
...
3
votes
5answers
756 views
How do you force a maven MOJO to be executed only once at the end of a build?
I have a MOJO I would like executed once, and once only after the test phase of the last project in the reactor to run.
Using:
if (!getProject().isExecutionRoot()) {
return ;
}
at the ...
2
votes
1answer
114 views
Creating a Maven Mojo that automatically adds new source folders to the build
I have created a new compiler for the maven-compiler-plugin. This compiler likes to look for compile sources in both src/main/groovy and src/main/java. Similarly, test sources are in both ...
2
votes
1answer
50 views
How to detect whether a Kind is already registered or not
I am using db8 database and the Foundations JS library to interact with it in a Mojo 2.0 app. When I try to do a find to fetch objects of a kind which is not registered I get an error saying that the ...
2
votes
1answer
105 views
Mojo::DOM - XPath - Question
Why did the Mojo::DOM developers create their own Selectors and not use the XPath syntax?
2
votes
2answers
105 views
How to delegate calling parameter ($self) to other method
I am learning mojolicious::lite.
In router, delegate the parameter to controller, use this code ok:
get '/hello/:name' => sub {
my $self = shift;
ControllerTest::hello($self);
};
Should ...
2
votes
1answer
92 views
How do I run a Maven Plugin on all modules?
I have a custom plugin that I run on all our projects as part of the release:perform goal.
We are just starting to use multi-module builds, and I notice that my plugin only runs at the top module. ...
2
votes
1answer
451 views
Your thoughts on a proposal to manage JavaScript dependencies
I've recently done a great deal of JavaScript programming in the context of developing a Rich Internet Application. My view at the start of development is pretty much what it is now; JS RIA works but ...
2
votes
1answer
211 views
Calling setupWidget from the stage assistant in WebOS/Mojo
The scroller and other widgets in Palm's WebOS are commonly called like so:
this.controller.setupWidget(Mojo.Menu.appMenu, {}, this.appMenuModel);
within on of the JavaScript assistant files ...
2
votes
2answers
125 views
Palm Mojo: Object properties
There was another question with an answer saying that you can use event.down.x to get the x-coordinate of a tap event. It also said that this was not well documented in the Palm Mojo SDK. My question ...
2
votes
2answers
510 views
Maven: How can my mojo access its own resources?
I have a project (here called my-artifact) which needs to generate sources from a model file. I've created a maven-plugin (my-code-generator) which is used as described in the pom.xml excerpt below. ...
2
votes
1answer
383 views
how to to unit test a maven2 mojo plugin that validates files
I have created a maven2 Mojo that inspects certain file types for instances of certain strings. It is designed to be used in the test phase to report whether these files are vaild or not.
When it ...
2
votes
0answers
1k views
Maven: How to get all transitive dependencies programatically in a MOJO [closed]
Possible Duplicate:
How to get access to Maven’s dependency hierarchy within a plugin.
The dependency:tree plugin:goal has an option 'verbose' which displays all conflicts & ...
2
votes
1answer
928 views
Mojo.Event.tap - how to get tap coordinates?
I am having difficulty with finding out how to get tap coordinates from tapEvent object, which is passed to my custom handler (I didn't find it's specification anyway). There is also singleTap event, ...
1
vote
0answers
89 views
How do I write Image Binary Data into local file system using Node.js services on webOS?
I am trying to write image data received from Evernote getResourceData-method, into local system in JavaScript code using Node.js. The image file is getting saved successfully, but looks like it is ...
1
vote
0answers
53 views
Suddenly not able to call Mojo.Controller.stageController.pushScene() from app-assistant
Here is how the code is.
function AppAssistant() {
this.dbObj = new DatabaseAssistant();
this.schemaObj = new SchemaAssistant();
this.result = {};
}
AppAssistant.prototype.setup = ...
1
vote
1answer
129 views
hp webos, pdk plugin defunct in hybrid app.
I have been trying to call a pdk plugin from the mojo hybrid app and have also tried the same with enyo app. In both cases my pdk plugin is shown as , Interesting thing is in case of enyo, i received ...
1
vote
2answers
200 views
Does HP webOS have a WYSWYG GUI design tool?
I hope to migrate one of my apps to HP webOS. Does webOS have WYSIWYG GUI tool that integrates with Mojo or Enyo, or do have to use a HTML/CSS/JavaScript editor?
1
vote
1answer
97 views
How to define a default mojo for a maven plugin
I've written a plugin that generate one file in target/generated-sources/.
This plugin only has one mojo. This mojo is declared with the following :
/**
* @goal convertsql
* @phase generate-sources
...
1
vote
1answer
201 views
Maven: How to write custom plugin to copy static resources?
All our projects that are using docbook for creating documentation must have a set of static resources (images, css files and the like) in a particular target folder structure during site generation.
...
1
vote
2answers
92 views
How to bundle an existing java executable in a maven mojo
I have an existing java command-line program, that takes a bazillion of arguments and parses them using excellent args4j.
I now want to make a maven plugin mojo that will run the Java code contained ...
1
vote
2answers
411 views
Maven: How to check if an artifact exists?
How do I check from within a Mojo if an artifact already exists in the local repository?
I'm installing large binaries into the local Maven repository and I need to know if they already exist before ...
1
vote
1answer
159 views
How do I get a Git change set ID from the Maven SCM abstraction
I have a Maven Mojo plugin that interrogates the SCM to produce a report. It collects the comment, author and date entries fine. I now need the actual commit ID. So, given the following log ...
1
vote
1answer
297 views
Maven mojo plugin, how to define phases that must be triggered before this goal?
hey,
I have a deploy pojo plugin (deploying a war to a remote server). I have the remote-deploy plugin in the build section of pom definition, I need package phase to be triggered before ...
1
vote
1answer
57 views
Triggering SOAP requests in a Maven Mojo
I have a WSDL which I need to trigger some commands from. I need to do this as part of a Maven Plugin (Mojo)
I'm a relative newbie to SOAP so what I want to know is this:
1) Is this possible? Can ...
1
vote
5answers
473 views
Why JQuery's .post returns no data?
I post JSON request to remote service. Everything is OK, service works fine and it response to me. But I have no data returned from remote service. How to get data from remote json service by JQuery ...
1
vote
0answers
120 views
Output command to socket without buffering using Mojo::IOLoop
How to do continiously output of command (for me it's long ping) in real-time mode on Mojo server? I'm looking for some example on Mojo::IOLoop. For example, client connects to server and requests for ...
1
vote
1answer
128 views
Converting checkbox to select (perl)
Before:
<input type='checkbox' name='killerFeature' id='killerFeature'
<%= param('killerFeature') ? ' checked' : ''%>
/>
Now:
<select name="killerFeature" id="killerFeature" ...
1
vote
1answer
110 views
Detect maven build status (success/error) from a maven plugin
I am wondering how would one get the status of a build (ERROR/SUCCESS) from a maven plugin ?
1
vote
1answer
272 views
Maven Mojo: Taking complete control over logging / Forbid other plugins to log
I don't know if this is actually possible, but can I take complete control over logging from inside a Maven Mojo? With complete control I mean that only messages from my Mojo are logged or that I can ...
1
vote
2answers
653 views
How to view console.log output when running javascript app in Palm Pre browser
I'm trying to debug a javascript-heavy webapp running on the Palm Pre browser. There are various useful debugging messages that the app will output to console.log(). This app was not built ...
1
vote
2answers
147 views
Using palm mojo on web pages?
I want to customize my web page for Palm pre. Is the a way to use Mojo in web pages for palm pre? Can I for example use a Mojo picker or a scroll tag?
1
vote
1answer
214 views
Mojo Messaging Service - Device URL
Does anyone know the URL for using the Mojo messaging service with the device. I can get it to work with the emulator from Google App Engine and .NET but it does not work on the device. I've read in ...
1
vote
3answers
336 views
Recommended reading material for getting started with webOS/Mojo SDK development?
I am starting to delve into the world of webOS and the Mojo SDK and having a great time so far, but I find myself having to constantly take a detour and read up on different subjects such as JSON, ...
1
vote
1answer
241 views
Mojo SDK retrieve all contacts
I'm playing with the Mojo SDK and I want to get all contacts.
this.controller.serviceRequest('palm://com.palm.contacts/crud', {
method: 'listContacts',
parameters: {
limit: 100
...
0
votes
0answers
17 views
Saving and Loading Cookies
I am interested in using the cookies in my application but don't really understand what I am doing wrong. First off I'd like it so when my application becomes a card (minimizes) it saves current ...
0
votes
1answer
88 views
MOJO (maven) what is it? stands for what?
Maybe it will be a silly question, anyway...
I'm reading about Maven right now and everywhere in text in see this word (mojo).. I approximately understand what it's mean, but I would not refuse from ...
0
votes
1answer
54 views
Maven Scriptlets
when I am builting my project in NetBeans using Maven I get this warning message:
[WARNING] DEPRECATED [postinstallScript]: Use postinstallScriplet
[WARNING] DEPRECATED [preinstallScript]: Use ...
0
votes
0answers
20 views
Passing Variables values between different MOJO's
I have created two Maven Plugin MOJO's.
Mojo 1 identifies the projects to be built.
Mojo 2: The other MOJO tries to package and build each of the project identified by the previous MOJO.
I am ...
0
votes
0answers
61 views
Testing Maven Mojo
Testing My Mojo
Hi,
I'm using Maven 3.0.3. I'm creating a Maven plugin and I have question about testing the plugin. Prior to running my plugin test, I want to spin up a Selenium server using the ...
0
votes
1answer
83 views
Passing parameters to Custom Lifecycle from a mojo
i have written a custom maven plugin which extends the axis2 wsdl2java plugin with the concept of creating custom lifecycle where the wsdl2java plugin is executed before goal of my custom plugin is ...
0
votes
0answers
228 views
How to hide left slider automatically in portrait view? [closed]
Possible Duplicate:
[ENYO]How to hide left slider automatically in portrait view?
In my app i have tow slider[left 30% / right 70%], and i want to hide my left slider in automatically ...
0
votes
1answer
129 views
how to create a button in WebOS?
I am trying to start my development in WebOS. I just started with a simple application with a label and a button. Here's the code snippet:
<div class="palm-body-text">
<div id="main" ...
0
votes
1answer
99 views
Settings API in WebOS
I was wondering if there is a Mojo or Enyo equivalent to the Android Settings.System API where application can change settings like ring tone volume, time and date format, wifi on and off, et c?
0
votes
0answers
182 views
getting json from external database
i followed this tutorial: http://webos101.com/Getting_JSON_From_An_External_MySQL_Database
when i opened the log i can see the result as "got ajax response" but cannot see any data from the ...
0
votes
0answers
26 views
Managing maven plugin dependencies when creating MOJOs to build projects
Got a slight niggle with a maven build.
We have 2 projects A and B. Project A is a collection of Maven MOJO classes that gets built and installed into the repo.
Project B uses the project A artifact ...