Thanks you both

On Fri, Aug 1, 2014 at 12:28 PM, <
qooxdoo-devel-requ...@lists.sourceforge.net> wrote:

> Send qooxdoo-devel mailing list submissions to
>         qooxdoo-devel@lists.sourceforge.net
>
> To subscribe or unsubscribe via the World Wide Web, visit
>         https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
> or, via email, send a message with subject or body 'help' to
>         qooxdoo-devel-requ...@lists.sourceforge.net
>
> You can reach the person managing the list at
>         qooxdoo-devel-ow...@lists.sourceforge.net
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of qooxdoo-devel digest..."
>
> Today's Topics:
>
>    1. Re: generate API - ignore file (kirra5)
>    2. Re: generate API - ignore file (Daniel Wagner)
>    3. Re: generate API - ignore file (Alex G?lkel)
>    4. qooxdoo and ES6 support (panyasan)
>    5. Translation info (Andrea Del Signore)
>    6. Re: Translation info (woprandi)
>    7. Re: Translation info (Mustafa Sak)
>
>
> ---------- Forwarded message ----------
> From: kirra5 <darja.drofen...@gmail.com>
> To: qooxdoo-devel@lists.sourceforge.net
> Cc:
> Date: Tue, 29 Jul 2014 23:15:29 -0700 (PDT)
> Subject: Re: [qooxdoo-devel] generate API - ignore file
> Hi
>
> One of the libraries is the jquery library.
> The errors look like this:
> "<class 'C:\...\myProject\source\class\project\...\nameOfLibrary.js'> :
> Syntax error ',' (pos (x, y)). "
>
> I hope this helps.
> Thank you very much!
>
>
>
> --
> View this message in context:
> http://qooxdoo.678.n2.nabble.com/generate-API-ignore-file-tp7585983p7586005.html
> Sent from the qooxdoo mailing list archive at Nabble.com.
>
>
>
>
> ---------- Forwarded message ----------
> From: Daniel Wagner <daniel.wag...@1und1.de>
> To: qooxdoo-devel@lists.sourceforge.net
> Cc:
> Date: Wed, 30 Jul 2014 09:12:11 +0200
> Subject: Re: [qooxdoo-devel] generate API - ignore file
> As a general rule of thumb, the source/class directory should only
> contain qooxdoo class code. I would propose the following approach:
>
> 1) Place the library in your source/resource directory, e.g.
> myproject/source/resource/js/nameOfLibrary.js
>
> 2) Add a simple static class to your project that pulls in the library
> using an asset hint, e.g.
> @asset(myproject/source/resource/js/nameOfLibrary.js). In the defer
> function of that class, create a <script> element that loads the
> library, using the resource manager to get a URI that works in both
> development and deployment versions of the app:
>
> var uri =
>
> qx.util.ResourceManager.getInstance().toUri('myproject/source/resource/js/nameOfLibrary.js');
> var scriptEl = qx.bom.Element.create("script", {src: uri});
> document.head.appendChild(scriptEl);
>
> Now all that's left to do is to add a dependency to that loader class to
> your application and the library will be available.
>
> On 30.07.2014 08:15, kirra5 wrote:
> > Hi
> >
> > One of the libraries is the jquery library.
> > The errors look like this:
> > "<class 'C:\...\myProject\source\class\project\...\nameOfLibrary.js'> :
> > Syntax error ',' (pos (x, y)). "
> >
> > I hope this helps.
> > Thank you very much!
> >
> >
> >
> > --
> > View this message in context:
> http://qooxdoo.678.n2.nabble.com/generate-API-ignore-file-tp7585983p7586005.html
> > Sent from the qooxdoo mailing list archive at Nabble.com.
> >
> >
> ------------------------------------------------------------------------------
> > Infragistics Professional
> > Build stunning WinForms apps today!
> > Reboot your WinForms applications with our WinForms controls.
> > Build a bridge from your legacy apps to the future.
> >
> http://pubads.g.doubleclick.net/gampad/clk?id=153845071&iu=/4140/ostg.clktrk
> > _______________________________________________
> > qooxdoo-devel mailing list
> > qooxdoo-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
> >
>
>
>
>
> ---------- Forwarded message ----------
> From: "Alex Gölkel" <goelke...@uhlmann.de>
> To: qooxdoo-devel@lists.sourceforge.net
> Cc:
> Date: Wed, 30 Jul 2014 04:11:17 -0700 (PDT)
> Subject: Re: [qooxdoo-devel] generate API - ignore file
> If you use the
> qx.bom.Element.create("script", {src: uri});
> document.head.appendChild(scriptEl);
> you have to wait, until the sript is loaded.
>
> There is another way to include external scripts. You can add it to the
> generator configuration. See the "add-script" section of the  config.json
>
> see here:
>
> http://qooxdoo.readthedocs.org/en/latest/pages/tool/generator/cheat_sheet.html#configuration-keys
> or here:
>
> http://manual.qooxdoo.org/4.1/pages/tool/generator/generator_config_ref.html#add-script
>
> Then the framework waits for you, until all scripts are loaded before
> starting the app. So you can use the functions of the external scripts in
> the first line of your app.
>
>
> Regards,
> Alex
>
>
>
> --
> View this message in context:
> http://qooxdoo.678.n2.nabble.com/generate-API-ignore-file-tp7585983p7586007.html
> Sent from the qooxdoo mailing list archive at Nabble.com.
>
>
>
>
> ---------- Forwarded message ----------
> From: panyasan <i...@bibliograph.org>
> To: qooxdoo-devel@lists.sourceforge.net
> Cc:
> Date: Fri, 1 Aug 2014 01:39:04 -0700 (PDT)
> Subject: [qooxdoo-devel] qooxdoo and ES6 support
> Hi,
>
> just curious - what are qooxdoo's plans regarding the support of ES6, which
> is Coming Soon To Your Nearest Browser [1]?
>
> Any plans to support new syntax in qooxdoo itself,  by transpiling through
> the generator?
>
> In a longer term perspective (ES7), databinding might be able to get a
> massive speed-up by supporting Object.observe(). This, too, could be
> supported via transpiling.
>
> Cheers,
> Christian
>
> [1] http://www.2ality.com/2014/08/es6-today.html
>
>
>
> --
> View this message in context:
> http://qooxdoo.678.n2.nabble.com/qooxdoo-and-ES6-support-tp7586009.html
> Sent from the qooxdoo mailing list archive at Nabble.com.
>
>
>
>
> ---------- Forwarded message ----------
> From: Andrea Del Signore <seje...@gmail.com>
> To: qooxdoo Development <qooxdoo-devel@lists.sourceforge.net>
> Cc:
> Date: Fri, 1 Aug 2014 12:20:50 +0200
> Subject: [qooxdoo-devel] Translation info
> Hi all,
>
> this is my first attempt to translate a realworld qooxdoo application,
> I've read the documentation and so far so good.
>
> Now for some messages I want to use a "printf" approach since there are
> arguments in the strings that need to be moved from translation to
> translation.
>
> Is there some already know solution?
>
> Best regards,
> Andrea
>
>
> ---------- Forwarded message ----------
> From: woprandi <william.opra...@gmail.com>
> To: qooxdoo-devel@lists.sourceforge.net
> Cc:
> Date: Fri, 1 Aug 2014 03:26:01 -0700 (PDT)
> Subject: Re: [qooxdoo-devel] Translation info
> Hi,
>
> You just need to just the format function in qx.lang.String class :
>
> http://demo.qooxdoo.org/current/apiviewer/#qx.lang.String~format!method_public
>
>
>
> --
> View this message in context:
> http://qooxdoo.678.n2.nabble.com/Translation-info-tp7586010p7586011.html
> Sent from the qooxdoo mailing list archive at Nabble.com.
>
>
>
>
> ---------- Forwarded message ----------
> From: Mustafa Sak <mustafa....@1und1.de>
> To: qooxdoo Development <qooxdoo-devel@lists.sourceforge.net>
> Cc:
> Date: Fri, 1 Aug 2014 10:28:12 +0000
> Subject: Re: [qooxdoo-devel] Translation info
>
> Hi Anrea,
>
>
>
> take a look at:
>
>
>
>
> http://demo.qooxdoo.org/current/apiviewer/#qx.lang.String~format!method_public
>
> example : qx.lang.String.format("Hello %1, my name is %2", ["Egon", "Franz"])
>
>
>
>
>
> or much better
>
>
>
>
> http://demo.qooxdoo.org/current/apiviewer/#qx.locale.MTranslation~tr!method_public
>
> example : this.tr("Hello %1, my name is %2", "Egon", "Franz")
>
>
>
>
>
> Gruß
>
> Mustafa Sak
>
>
>
> Applications & Integration
>
>
>
> 1&1 Internet AG
>
> Ernst-Frey-Straße 10
>
> DE-76135 Karlsruhe
>
>
>
> *Von:* Andrea Del Signore [mailto:seje...@gmail.com]
> *Gesendet:* Freitag, 1. August 2014 12:21
> *An:* qooxdoo Development
> *Betreff:* [qooxdoo-devel] Translation info
>
>
>
> Hi all,
>
> this is my first attempt to translate a realworld qooxdoo application,
> I've read the documentation and so far so good.
>
> Now for some messages I want to use a "printf" approach since there are
> arguments in the strings that need to be moved from translation to
> translation.
>
> Is there some already know solution?
>
> Best regards,
> Andrea
>
>
> ------------------------------------------------------------------------------
> Want fast and easy access to all the code in your enterprise? Index and
> search up to 200,000 lines of code with a free copy of Black Duck
> Code Sight - the same software that powers the world's largest code
> search on Ohloh, the Black Duck Open Hub! Try it now.
> http://p.sf.net/sfu/bds
> _______________________________________________
> qooxdoo-devel mailing list
> qooxdoo-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
>
>
------------------------------------------------------------------------------
Want fast and easy access to all the code in your enterprise? Index and
search up to 200,000 lines of code with a free copy of Black Duck
Code Sight - the same software that powers the world's largest code
search on Ohloh, the Black Duck Open Hub! Try it now.
http://p.sf.net/sfu/bds
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to