Hey Richard,
I tried again and it makes one directory (grunt-contrib-clean) - no grunt
directory.
jwolfe@quince:/var/www/html >
/var/www/html/mwp/trunk/libs/qooxdoo-4.1-sdk/tool/bin/create-application.py
--name=mobilewx --type=mobile
>>> Copy skeleton into the output directory: ./mobilewx
>>> Ren
How can I create a test mock that implements an existing interface? For
example I have a controller that will perform some actions on a view. The
view implements an interface. So, I could test with a mock object that
implements the interface to test whether the controller calls some methods
on the
Hey Jonathan,
> I would recommend mentioning that step in the qooxdoo docs
> for users not familiar with nodejs.
that should have happened automatically when running
"create-application.py" - can you try again creating an app?
After creation, it should already have a directory called
"node_module
Thanks a lot that did it! I would recommend mentioning that step in the
qooxdoo docs (http://manual.qooxdoo.org/4.1/pages/tool/grunt.html) for
users not familiar with nodejs.
~Jonathan
On Thu, Jan 15, 2015 at 3:46 AM, Sanne Peters
wrote:
> Hi Jonathan,
>
> You probably did not install nodejs
If you are new to programming, first learn programming, then javascript and
only then start with using qooxdoo, otherwise you will have a difficult
time. If you just want to get some website up and running with forms,
validation and that sort of stuff, then there are better solutions. I don't
think
oetiker wrote
> Hi Halcwb,
>
> I guess you can use
>
> http://demo.qooxdoo.org/current/apiviewer/#qx.event.message.Bus
>
> to build something along these lines
>
> cheers
> tobi
Exactly, without reading your post I came to the same solution. And it is
very elegant. I have now the following set
Hi Jonathan,
You probably did not install nodejs (and indirectly grunt too) in your
working directory.
Just run 'npm install'.
this command looks into the package.json file which node modules are
needed (grunt will be one of them) and installs them in the root of your
project directory.
Yo