Hi Guys,

I wrote similar object oriented model some time ago, accessible as BLite.
The library contains also some dom manipulation methods, but they can be
ripped out.

BLite: http://code.google.com/p/blite
Source http://code.google.com/p/blite/source/browse/trunk/BLite/Lib.Core.js

Using BLite is similar to qooxdoo, but it's not fully compatible. I wanted
to be compatible, but then I had ideas to extend some functionality and to
dismiss others.

Basic object-model works:

Lib.define("Test.A", {
  extend: Lib.Object,

  properties: {},

  construct: function()
  {
    this.base(arguments);
  },

  members: {},
  statics: {}
});

Lib.define("Test.B", {
  extend: Test.A,

  ...
});

At this time there is no support for interfaces or mixins, but I think they
can be added.

Best regards / S pozdravem
Petr Kobalicek

On Mon, Aug 9, 2010 at 8:29 AM, Stéphane <[email protected]> wrote:

> Hi Martin,
>
> Yes I would definitily love the sending of the js files !
>
> I want the source to see how it works only, not to change the things.
> But if it is something hard to have, well the build will be enough (hope
> there is no obfuscation or such).
>
> Thank you both !
>
>
>
> Before Printing, Think about Your Environmental Responsibility!
> Avant d'Imprimer, Pensez à Votre Responsabilitée Environnementale!
>
>
> On Mon, Aug 9, 2010 at 8:23 AM, Martin Wittemann <
> [email protected]> wrote:
>
>> Hi Stéphane,
>>
>> I recently did something similar by adding a generate job to qooxdoo which
>> builds a single JS file only including the qx oo layer. Take a look at the
>> blog post [1] to get some details. The thing is you still need to have the
>> python stuff and the whole SDK but you only need it once or every time you
>> want to build your own update. If you really refuse to use python, we can
>> send you a version here on the mailing list which you can just drop into
>> your script. But you wrote you also want to access the source version. If
>> you want to bring you changes of the source version to the build version,
>> you will definitely need the whole SDK and python.
>>
>> Regards,
>> Martin
>>
>> [1] http://news.qooxdoo.org/expanding-qooxdoo-to
>> <http://news.qooxdoo.org/expanding-qooxdoo-to>
>> Am 08.08.2010 um 21:04 schrieb Stéphane:
>>
>> Hi list,
>>
>> I need a OO layer for my javascripts and I "don't arrive" to go within all
>> the qx sdk and python things.
>>
>> I'm actually using JS.Class as a OO layer.
>> Does someone it and tells me which one the best from the both ?
>>
>> Is there a way or someone who can gives me the build and source file of
>> the qxoo ?
>>
>> Thank you !
>>
>>
>>
>>
>> Before Printing, Think about Your Environmental Responsibility!
>> Avant d'Imprimer, Pensez à Votre Responsabilitée Environnementale!
>>
>> <ATT00001..txt><ATT00002..txt>
>>
>>
>>
>>
>> ------------------------------------------------------------------------------
>> This SF.net email is sponsored by
>>
>> Make an app they can't live without
>> Enter the BlackBerry Developer Challenge
>> http://p.sf.net/sfu/RIM-dev2dev
>> _______________________________________________
>> qooxdoo-devel mailing list
>> [email protected]
>> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
>>
>>
>
>
> ------------------------------------------------------------------------------
> This SF.net email is sponsored by
>
> Make an app they can't live without
> Enter the BlackBerry Developer Challenge
> http://p.sf.net/sfu/RIM-dev2dev
> _______________________________________________
> qooxdoo-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
>
>
------------------------------------------------------------------------------
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev 
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to