Re: [qooxdoo-devel] @asset doesn't work any more in trunk.

2013-06-27 Thread thron7
Indeed, you have to stick to the JSDoc syntax rules (which include /** ... */ comment decorations). T. On 06/27/2013 10:10 AM, fprijate wrote: > Hi > > Sorry. > > Before I had asserts in block comments without '*' at the begining of > every comment row, which > was Ok: > > /*** > >

Re: [qooxdoo-devel] @asset doesn't work any more in trunk.

2013-06-27 Thread fprijate
Hi Sorry. Before I had asserts in block comments without '*' at the begining of every comment row, which was Ok: /*** #assert(...) ***/ after change to /*** @assert(...) ***/ doesn't work anymore. Changing to /** * * @assert(...) * */ everything is OK

[qooxdoo-devel] @asset doesn't work any more in trunk.

2013-06-26 Thread fprijate
Hi In trunk: Using #asset (... ) there are deprecation warnings (which is OK). But @asset (...) deosn't work any more ( it worked yesterday). There are also warnings like: Unable to parse JSDoc entry: @type member Unable to parse JSDoc entry: @type String regards Franček -- View this me

Re: [qooxdoo-devel] asset

2008-11-21 Thread thron7
Amit Rana wrote: > Hi, > > I was just going through the forum to find some information about handling > resources in my qooxdoo application. > I wanted to point out that the URL given below in the posts > (http://qooxdoo.org/documentation/0.8/ui_overview?s=asset#resource_handling) > looks old and

Re: [qooxdoo-devel] asset

2008-11-18 Thread Amit Rana
Hi, I was just going through the forum to find some information about handling resources in my qooxdoo application. I wanted to point out that the URL given below in the posts (http://qooxdoo.org/documentation/0.8/ui_overview?s=asset#resource_handling) looks old and doesn't point to the correct p

[qooxdoo-devel] #asset and different icon themes

2008-10-12 Thread Siarhei Barysiuk
Hello, There are a few questions regarding #asset hint here in mail list but unfortunately they didn't help me. My main question following: If I would like to use icons shipped with qooxdoo sdk, what is the best way to do this? There are several options described in documentation [1]. So, the las

Re: [qooxdoo-devel] #asset question

2008-09-30 Thread Jean-Baptiste BRIAUD - Novlog
It works ! In fact, I didn't know (never try) the net folder of firebug. This allow me to notice all not loaded files and it was not my qooXdoo code but some apache stuff. Thanks ! On 30 Sep 2008, at 01:19, Petr Kobalíček wrote: > Hi Jean, > > #asset is only evaluated at build time. > > Are y

Re: [qooxdoo-devel] #asset question

2008-09-30 Thread Jean-Baptiste BRIAUD - Novlog
I'm not using qxbuild, what is it ? I'm using a pre build of qooXdoo 0.8, then all I have to do is include qooXdoo file, I don't have to use Python and toolchain anymore. The price is qooXdoo lib size witch is not optimize. The benefit is built time witch is instant. On 30 Sep 2008, at 01:19, P

Re: [qooxdoo-devel] #asset question

2008-09-29 Thread Petr Kobalíček
Hi Jean, #asset is only evaluated at build time. Are you still using qxbuild ? NOTE: If you add "icons" to alias manager, you should use relative path to icon. For example: qx.util.AliasManager.getInstance().add("icons", "/icons/"); var listButton = new qx.ui.toolbar.Button("List", "icons/24x2

[qooxdoo-devel] #asset question

2008-09-29 Thread Jean-Baptiste BRIAUD - Novlog
Hi, Is #asset evaluate at runtime or only as I assume at build time during the python script (toolchain) ? I experienced issue loading icon but remember I don't use the toolchain, I "simply" include qooXdoo lib. This is the way I unsuccessfully try to load icon : qx.util.AliasManager.getIns

Re: [qooxdoo-devel] asset

2008-08-22 Thread John de la Garza
[EMAIL PROTECTED] wrote: >> By compile do they mean generate? There is no compiling going on with >> qooxdoo is there? >> > > And why not? We parse Javascript, create an AST, do transformations on it, > and write Javascript out again. > it is pretty interesting... js to js, I mean > >

Re: [qooxdoo-devel] asset

2008-08-22 Thread thron7
> At the top of Application.js I see #asset and it is in a comment block. > I read the generator_config article and see that they are compiler hints. > > By compile do they mean generate? There is no compiling going on with > qooxdoo is there? And why not? We parse Javascript, create an AST, do t

[qooxdoo-devel] asset

2008-08-22 Thread John de la Garza
At the top of Application.js I see #asset and it is in a comment block. I read the generator_config article and see that they are compiler hints. By compile do they mean generate? There is no compiling going on with qooxdoo is there? is there any more documentation about #asset? I'm still no