Re: Tapestry 5.4 Dojo as the Infrastructure Provider

2014-02-15 Thread Chris Mylonas
Impressive! I am currently a simple and irregular t5 app maker, sadly with more php foo than js. However, t5.4 and addons like this will turn me into a js and json loving fiend. Thanks for hacking at it :) On 15/02/2014 11:55 pm, "Azudio Developer" wrote: > I'm making some more progress on a D

Re: Tapestry 5.4 Dojo as the Infrastructure Provider

2014-02-15 Thread Azudio Developer
I’m making some more progress on a Dojo implementation and have DOM manipulation, Events & Zones working. I’ve had to replace events.js with an implementation with event names without colons. https://github.com/adamhenderson/tapestry-dojo On 8 Feb 2014, at 16:55, Thiago H de Paula Figueired

Re: Tapestry 5.4 Dojo as the Infrastructure Provider

2014-02-08 Thread Thiago H de Paula Figueiredo
On Sat, 08 Feb 2014 08:19:08 -0200, Azudio Developer wrote: I’m currently having trouble getting rid of the require config object that gets written out before the libraries are loaded - can’t seem to override the ModuleManager service. ModuleManager is a service like every other, so you

Re: Tapestry 5.4 Dojo as the Infrastructure Provider

2014-02-08 Thread Adam Henderson
Hi Dimitris, As you know, Tap 5.4 is using RequireJS as the loader and is configured by creating a var require={} object before the require.js file is loaded. As I am using dojo, it uses a similar mechanism but the variable is called ‘dojoConfig’. The ‘require’ object currently being output by

Re: Tapestry 5.4 Dojo as the Infrastructure Provider

2014-02-08 Thread Dimitris Zenios
Why do you want to get rid of the config?You can add/remove/ovveride the current config using javascriptSupport.addModuleConfigurationCallback On Sat, Feb 8, 2014 at 12:19 PM, Azudio Developer wrote: > Thanks Dragan. > > I've started to knock something up at > https://github.com/adamhenderson/t

Re: Tapestry 5.4 Dojo as the Infrastructure Provider

2014-02-08 Thread Azudio Developer
Thanks Dragan. I’ve started to knock something up at https://github.com/adamhenderson/tapestry-dojo which is my first rough stab at getting something working. I’ve basically just created a module that builds a new JavaScriptStack containing references to dojo but keeping underscore & bootstrap

Re: Tapestry 5.4 Dojo as the Infrastructure Provider

2014-01-27 Thread Dragan Sahpaski
If you want to replace jquery than take a look at /tapestry-core/src/main/preprocessed-coffeescript/org/apache/tapestry5/t5-core-dom.coffee [1]. Quoting the part of the doc from the file file "This is the abstraction layer that allows the majority of components to operate without caring whether th

Re: Tapestry 5.4 Dojo as the Infrastructure Provider

2014-01-26 Thread Thiago H de Paula Figueiredo
On Thu, 23 Jan 2014 22:35:04 -0200, Azudio Developer wrote: Hi All, Hi! I know that Tap 5.4 is still (great) work in progress but I would like to see a better explanation of the Classes behind all the JavaScript handling and how it all hangs together. Any classes or interfaces in par

Tapestry 5.4 Dojo as the Infrastructure Provider

2014-01-23 Thread Azudio Developer
Hi All, As an experiment, I’d like to use Dojo 1.9.2 as the JavaScript toolkit of choice in my Tapestry 5.4 projects replacing the bundled require.js (and use Dojo’s AMD loader), remove the bootstrap JS plugins (but keep basic Bootstrap CSS) and any trace of jQuery. I know that Tap 5.4 is sti