How about this: http://appfuse.org/display/APF/Event+Calendar
I tentatively scheduled 2.0 M5 for next weekend. Unfortunately, the reality is this probably won't happen. I have to finish up my presentation[1] for ApacheCon Europe this week. Next week, I need to write a training course I'm delivering for a client in May. This week, I have a good 20-40 hours of work to do *outside* my regular 40 hours. Next week, the same thing. I figure there's probably 40-60 hours I need to dedicate to finishing AppFuse. :( Matt [1] http://raibledesigns.com/rd/entry/comparing_java_web_frameworks_proposed On 4/18/07, tibi <[EMAIL PROTECTED]> wrote:
i will try if you update this: http://appfuse.org/display/APF/2007/01/08/2.0+Release+Schedule ;) tibi Matt Raible wrote: > If someone wants to document tips and tricks for getting Dojo working > with AppFuse, that'd be great. It's probably best to start by > modifying the existing Ajax page on the wiki. If that get's too > lengthy, we can break it up into sub-pages. > > http://appfuse.org/display/APF/Ajax > > If you don't have an account, you should be able to create one at View >> Account > Sign Up. We're also looking for volunteers to convert the > existing Ajax tutorials to AppFuse 2.0: > > http://www.lucianofiandesio.com/javatales/ajxfuse.html > http://raibledesigns.com/wiki/CreateAnAJAXBasedFileuploadProgressbarDialog.html > > (I like the end of this one) > > Matt > > On 4/18/07, tibi <[EMAIL PROTECTED]> wrote: >> thanks but just got dojo working...;) >> this will call my normal action method save >> >> tibi >> >> --------------------------------------------- >> >> <script type="text/javascript"> >> djConfig = { isDebug: false }; >> </script> >> <script type="text/javascript" src="../scripts/dojo/dojo.js"></script> >> >> <script type="text/javascript"> >> dojo.require("dojo.event.*"); >> dojo.require("dojo.io.*"); >> dojo.require("dojo.widget.*"); >> dojo.require("dojo.widget.Button"); >> >> function helloPressed() >> { >> dojo.io.bind({ >> url: 'eventSpan.html', >> handler: helloCallback, >> content: {'method:save':true, 'eventSpan.name': >> dojo.byId('name').value } >> }); >> } >> function init() >> { >> var helloButton = dojo.widget.byId('helloButton'); >> dojo.event.connect(helloButton, 'onClick', 'helloPressed') >> } >> >> dojo.addOnLoad(init); >> >> function helloCallback(type, data, evt) >> { >> if (type == 'error') >> alert('Error when retrieving data from the server!'); >> else >> alert(data); >> } >> >> </script> >> <button dojoType="Button" widgetId="helloButton">Hello >> World!</button> >> <br> >> Please enter your name: <input type="text" id="name"> >> >> >> --------------------------------------------- >> >> Michael Horwitz wrote: >> > Have you seen this: http://appfuse.org/display/APF/Ajax? I have used >> > Dojo with AppFuse 2.0, but it does require some fiddling with script >> > libraries and web filters. I would suggest you take a close look at >> > your requirements: only use something like Dojo or GWT if you need all >> > the additional javascript widgets they provide. If not I would suggest >> > you stick with the Ajax support as provided with Prototype or DWR >> > which come built in with AppFuse 2.0. >> > >> > Mike >> > >> > On 4/18/07, *tibi* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: >> > >> > or should i use GWT? >> > http://cwiki.apache.org/S2PLUGINS/gwt-plugin.html >> > <http://cwiki.apache.org/S2PLUGINS/gwt-plugin.html> >> > >> > dojo seems very nice but its not clear to me if and how i can call >> > struts actions. >> > >> > tibi >> > >> > tibi wrote: >> > > is there an ajax tutorial for appfuse 2. >> > > >> > > i only could find this one for appfuse 1.9 >> > > http://www.lucianofiandesio.com/javatales/ajxfuse.html >> > > >> > > >> > > or should i refer to the dojo toolkit site? >> > > (i'm using struts2) >> > > >> > > thanks >> > > >> > > tibi >> > > >> > > >> > >> --------------------------------------------------------------------- >> > > To unsubscribe, e-mail: [EMAIL PROTECTED] >> > <mailto:[EMAIL PROTECTED]> >> > > For additional commands, e-mail: [EMAIL PROTECTED] >> > <mailto:[EMAIL PROTECTED]> >> > > >> > > >> > >> > >> --------------------------------------------------------------------- >> > To unsubscribe, e-mail: [EMAIL PROTECTED] >> > <mailto:[EMAIL PROTECTED]> >> > For additional commands, e-mail: [EMAIL PROTECTED] >> > <mailto:[EMAIL PROTECTED]> >> > >> > >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [EMAIL PROTECTED] >> For additional commands, e-mail: [EMAIL PROTECTED] >> >> > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
-- http://raibledesigns.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
