Re: [qooxdoo-devel] How set image paths in namespace branch?

2006-07-30 Thread Dietrich Streifert
@Florian: This is what worked for me with the current namespace branch rev in svn : qx.manager.object.ImageManager.defineAlias("static", "/qooxdoo/build/resources/static"); qx.manager.object.ImageManager.defineAlias("widget", "/qooxdoo/build/resources/widget/windows") qx.manager.obj

Re: [qooxdoo-devel] svn.sourceforge.net does not let me in

2006-07-30 Thread Aparna Verma
Hi,Even i tried to perform svn checkout for namespace branch using following link "https://svn.sourceforge.net/svnroot/qooxdoo/branches/namespaces " It was successfully done.May be you can try this link .RgdsAparnaMessage: 3Date: Fri, 28 Jul 2006 04:51:28 -0700 (PDT)From: junglist < [EMAIL PROTECTE

Re: [qooxdoo-devel] Greetings & Documentations

2006-07-30 Thread Derrell . Lipman
[EMAIL PROTECTED] writes: > The source to the test suite is part of the check-out from svn. It's in > source/demo/example and source/demo/test. Oops. I believe that these might now be called source/frontend/demo/example and source/frontend/demo/test. There's a "frontend" in there someplace now

Re: [qooxdoo-devel] Greetings & Documentations

2006-07-30 Thread Derrell . Lipman
"Alexander Trauzzi" <[EMAIL PROTECTED]> writes: > After the cross-post of my initial inquiry, I figured it would be a good > idea to come on and just say "Hi" to everyone reading. > > What - in terms of documentation - is qooxdoo needing? I want to start > learning how to work with qooxdoo, but I

[qooxdoo-devel] Greetings & Documentations

2006-07-30 Thread Alexander Trauzzi
After the cross-post of my initial inquiry, I figured it would be a good idea to come on and just say "Hi" to everyone reading.What - in terms of documentation - is qooxdoo needing?  I want to start learning how to work with qooxdoo, but I'm uncertain as to where the lion's share of documentation w

Re: [qooxdoo-devel] qooxdoo documentation

2006-07-30 Thread Derrell . Lipman
"Erik A. Onnen" <[EMAIL PROTECTED]> writes: > Derrell, > > Thanks for the helpful post, but I think your response echoes the OP's > point that more needs to be done towards documentation. Yup, that's exactly what I stated in my first response: In 'namespaces', there is "better" documentat

Re: [qooxdoo-devel] qooxdoo documentation

2006-07-30 Thread Erik A. Onnen
[EMAIL PROTECTED] wrote: > Moving this discussion to the mailing list, for others to participate: > > "Alexander Trauzzi" <[EMAIL PROTECTED]> writes: >> Qooxdoo has a lot of neat features that dojo doesn't. Qooxdoo looks a lot >> more programmer-friendly, even in spite of dojo's their "package >>

Re: [qooxdoo-devel] qooxdoo documentation

2006-07-30 Thread Chris Banford
Hi list, My first post in ages -- I'm still just keeping an eye on qooxdoo and waiting until the right project comes along... Wanted to let you all know about *Aptana* -- an open source editor for js, html & css. It links in with a bunch of other js libs (although not qooxdoo yet!), and altho

[qooxdoo-devel] qooxdoo documentation

2006-07-30 Thread Derrell . Lipman
Moving this discussion to the mailing list, for others to participate: "Alexander Trauzzi" <[EMAIL PROTECTED]> writes: > > Qooxdoo has a lot of neat features that dojo doesn't. Qooxdoo looks a lot > more programmer-friendly, even in spite of dojo's their "package > management". The biggest I can

Re: [qooxdoo-devel] How to remove dynamically added widgets?

2006-07-30 Thread Ralf Wenske
Jon, I think it might have to do with scope. In Javascript to declare var w2 = new QxCanvasLayout(); means that w2 is a local variable ( I believe - however don't ask me: local to what? in the context of server-sent JS executed inside the "completed" event... I come from a Delphi backgr

Re: [qooxdoo-devel] How to remove dynamically added widgets?

2006-07-30 Thread Danny Adair
Hello Jon,"w2" is not defined from where you are trying to access it.Either define it somewhere global, or use a an object registry like http://sourceforge.net/mailarchive/message.php?msg_id=15660614which let's you assign names to objects and retrieve them by their name.The latter might be more con