Hello to all. I have some questions about qooxdoo.

The "skeleton" of a class in qooxdoo is:

qx.Class.define("name.space.ClassName",{
  // Content of the class
});

In this case, the file name must be ClassName.js and this file must be
in directory name/space/. If I don't put the file in the coorrect
place, qooxdoo doesn't build the project. If you move some files to
another directory, you need do change each file replacing its
namespace. Your job is doubled!

Other frameworks and languages use only file path do define the
namespace, so why not use just something like:

qx.Class.define("ClassName",{
  // Content of the class
});

do define a class? So in compile-time qooxdoo guesses the namespace
based on file path (and replaces what need to be replaced in the final
.js file).

I don't know, just an idea...

ps: I don't want to seem rude in my question. It's happens because
English is not my native language :-)

------------------------------------------------------------------------------
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to