Re: [qooxdoo-devel] make?

2008-04-07 Thread kc106_2005-qooxdoo
Okay. Thanks. Now, I am able to start the demo applications. They really look very impressive. Regards, > -Original Message- > From: Sebastian Werner [mailto:[EMAIL PROTECTED] > Sent: Monday, April 07, 2008 9:56 PM > To: [EMAIL PROTECTED]; qooxdoo Development > Subject: Re: [qooxdoo-d

Re: [qooxdoo-devel] make?

2008-04-07 Thread Sebastian Werner
It looks like you using the normal Windows terminal "cmd" and not the cygwin preconfigured terminal. Please directly use the link from your start menu. Cygwin installs a link there. Using the normal terminal also means to using the "wrong" not Unix compatible paths. If you use Cygwin this a

Re: [qooxdoo-devel] make?

2008-04-07 Thread kc106_2005-qooxdoo
Okay. I did exactly that: deleted cgwin completely from the system, removed qooxdoo, and then reinstall both. The make process now proceeds as expected. Thanks, -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dan Sent: Monday, April 07, 2008 7:57 PM To:

Re: [qooxdoo-devel] Test the context menu of tree by Selenium

2008-04-07 Thread Chi Mo
>Chi Mo wrote: Please look at http://demo.qooxdoo.org/current/showcase/#Tree , we've added a context menu on the items of tree, such as, if you right-click 'Files', you'd see a context menu with 'Open' and 'Search', then you can click 'Search' to open a new dialog. I'm wonder

Re: [qooxdoo-devel] make?

2008-04-07 Thread Dan
On Mon, Apr 7, 2008 at 6:47 PM, Jim Hunter <[EMAIL PROTECTED]> wrote: > Hmmm, I don't recall installing gzip it in cygwin, but zip (perhaps the > Linux version of zip is gzip?) is needed. I followed the instructions on > http://qooxdoo.org/documentation/0.6/user_manual/installing_cygwin and it > w

Re: [qooxdoo-devel] make?

2008-04-07 Thread kc106_2005-qooxdoo
There is some rambling on the net regarding problems with loading zlib with Python2.5. See, for example: http://bytes.com/forum/thread755340.html So, I refreshed my Python2.5 to Python2.5.2 and copied all of the files over to cypwin. Still no go. Same error. > -Original Message- > Fro

Re: [qooxdoo-devel] make?

2008-04-07 Thread kc106_2005-qooxdoo
Okay, so I am now following the instruction for 0.7. make can now find gzip.py but it can't find zlib. C:\qooxdoo-0.7.3\qooxdoo-0.7.3-sdk\frontend\application\showcase>make makefile Traceback (most recent call last): File "../../../frontend/framework/tool/modules/svninfo.py", line 51, in i

Re: [qooxdoo-devel] make?

2008-04-07 Thread Jim Hunter
My apologies, I posted the wrong link. Yes, you need the 0.7 install instructions. That's what I get for trying to multi-task without thinking first. Thanks for spotting that Bruce. Jim On Mon, Apr 7, 2008 at 3:53 PM, Bruce Bockius <[EMAIL PROTECTED]> wrote: > FWIW note that http://qooxdoo.or

Re: [qooxdoo-devel] make?

2008-04-07 Thread Bruce Bockius
FWIW note that http://qooxdoo.org/documentation/0.7/installing_cygwin lists a few more packages that need to be installed than the 0.6 instructions. I couldn't run make on my 0.7.3 qooxdoo app until I added those packages. From: [EMAIL PROTECTED] [mailto:[EMAI

Re: [qooxdoo-devel] make?

2008-04-07 Thread Jim Hunter
Hmmm, I don't recall installing gzip it in cygwin, but zip (perhaps the Linux version of zip is gzip?) is needed. I followed the instructions on http://qooxdoo.org/documentation/0.6/user_manual/installing_cygwin and it worked for me. What version are you trying to build of qooxdoo? I am still using

Re: [qooxdoo-devel] make?

2008-04-07 Thread kc106_2005-qooxdoo
I was able to go a little further now. The problem is that cygwin does not automatically add the bin directory to Windows path environment and qooxdoo make files does not search for cygwin automatically. Hence, make wasn't able to find sed, cat, and dirname. Once I added cygwin\bin to path, it p

Re: [qooxdoo-devel] Clearing Qooxdoo Page cache on Logout

2008-04-07 Thread kanugula
Thank you. It should be 'JSESSIONID' instead of 'jsessionid'. Now it finds the cookie, deletes the cookie and shows the Login page. I build the Demo Browser tree nodes example, test and performance using a map of security Map (Node vs Role) downloaded at login time, using the following script

Re: [qooxdoo-devel] make?

2008-04-07 Thread Jim Hunter
Good information. This is beyond what I can do for you but one of the core developers should pick it up from here and be able to get you a sound solution to your problem. I don't do anything with the build process beyond typing "make build" so I am not able to solve this one. I to use Windows XP bu

Re: [qooxdoo-devel] make?

2008-04-07 Thread kc106_2005-qooxdoo
Thanks for the reply. I am running Windows XP. I downloaded cygwin as instructed by the on-line instruction, checked the required options for dev, and was able to get make going. But then I get the following error messages from make: C:\qooxdoo-0.7.3\qooxdoo-0.7.3-sdk\frontend>c:\cygwin\bin\mak

Re: [qooxdoo-devel] Clearing Qooxdoo Page cache on Logout

2008-04-07 Thread Andreas Junghans
Hi, Am 07.04.2008 um 20:05 schrieb kanugula: > You are right. I should clear the cookie from IE cache. > > I am a getting a problem here. When the user clicks logout, the > following > code executes. > > function fdm_logout(){ > alert(qx.io.local.CookieApi.get('jsessionid')); >

Re: [qooxdoo-devel] make?

2008-04-07 Thread Jim Hunter
You mentioned that you don't have a Make command, what version of Linux are you running? Or are you running Windows and using cygwin? What sort of errors are you encountering? Where exactly are you having problems? On Mon, Apr 7, 2008 at 12:03 PM, <[EMAIL PROTECTED]> wrote: > I followed the ins

Re: [qooxdoo-devel] make?

2008-04-07 Thread kc106_2005-qooxdoo
I followed the instruction as documented, and continue to have problem. Looks like the problem is that cat and dirname are not included in the default setup. Does anybody know which options I need to include those (I am not familiar with Linux tool packages)? Thanks, -Original Message-

Re: [qooxdoo-devel] Clearing Qooxdoo Page cache on Logout

2008-04-07 Thread kanugula
Thanks for your reply. You are right. I should clear the cookie from IE cache. I am a getting a problem here. When the user clicks logout, the following code executes. function fdm_logout(){ alert(qx.io.local.CookieApi.get('jsessionid')); qx.io.local.CookieApi.de

Re: [qooxdoo-devel] make?

2008-04-07 Thread Jim Hunter
It is documented. From the main page go to Manual, and the first line on that page is a link to Requirements ( http://qooxdoo.org/documentation/0.7/requirements ) which details all the additional Linux tools you will need as well as Make. You might give this page a once over in case there are some

Re: [qooxdoo-devel] make?

2008-04-07 Thread kc106_2005-qooxdoo
Okay, thanks. I suspected that but I wasn't sure which make we are talking about. I think it would be helpful to indicate that in the tutorial - since not all new comers are necessarily familiar with other compiled language developments - and not all makes are 100% compatible. > -Original Me

Re: [qooxdoo-devel] make?

2008-04-07 Thread thron7
[EMAIL PROTECTED] wrote: > Hi folks, > > The tutorial indicates that one of the steps in > building a qooxdoo application is to issue the "make" > command. Is this the regular make we all know, or is > this a qooxdoo specific make? For the latter case, > there is no make in the qooxdoo tree. If

Re: [qooxdoo-devel] change selection background color for Table(qx.ui.table.model.Simple)

2008-04-07 Thread Ina Munteanu
The problem is that i don't want to change this color permanently, but depending on some action. For example, when i press a button i want the "table-row-background-selected" to be "grey" and when i press another button, i want it to be red. Helder Magalhães wrote: > > > Ina Munteanu wrote:

[qooxdoo-devel] change selection background color for Table(qx.ui.table.model.Simple)

2008-04-07 Thread Ina Munteanu
Hello, I am using a table with a simple model. I need to change the background color for the selected row, that is blue by default. Can you tell me how can i do this? Thanks -- View this message in context: http://www.nabble.com/change-selection-background-color-for-Table%28qx.ui.table.model.S

[qooxdoo-devel] Overflow inside a qx.ui.window.Window

2008-04-07 Thread Charlie
Hi, I want to make a "logger" window (qx.ui.window.Window) containing a TabView and in the first page, a VerticalBoxLayout in which I add one Atom by log. The problem is that I just can't get the overflow to work : I try to set the {overflow:"auto"} properties at various places (on the BoxLayou

[qooxdoo-devel] make?

2008-04-07 Thread kc106_2005-qooxdoo
Hi folks, The tutorial indicates that one of the steps in building a qooxdoo application is to issue the "make" command. Is this the regular make we all know, or is this a qooxdoo specific make? For the latter case, there is no make in the qooxdoo tree. If it's the former, then I am in trouble

Re: [qooxdoo-devel] Test the context menu of tree by Selenium

2008-04-07 Thread thron7
Chi Mo wrote: >>> Please look at http://demo.qooxdoo.org/current/showcase/#Tree , we've added >>> a context menu on the items of tree, such as, if you right-click 'Files', >>> you'd see a context menu with 'Open' and 'Search', then you can click >>> 'Search' to open a new dialog. I'm wondering i

Re: [qooxdoo-devel] change selection background color for Table(qx.ui.table.model.Simple)

2008-04-07 Thread Helder Magalhães
Ina Munteanu wrote: > > The problem is that i don't want to change this color permanently, but > depending on some action. > For example, when i press a button i want the > "table-row-background-selected" to be "grey" and when i press another > button, i want it to be red. > Well, that is a p

Re: [qooxdoo-devel] change selection background color for Table(qx.ui.table.model.Simple)

2008-04-07 Thread Helder Magalhães
Ina Munteanu wrote: > > I am using a table with a simple > model. I need to change the background color for > the selected row, that is blue by default. Can you tell me how can i do > this? > This can be accomplished by changing "table-row-background-selected" property of the current theme (for

Re: [qooxdoo-devel] Test the context menu of tree by Selenium

2008-04-07 Thread Chi Mo
>> Please look at http://demo.qooxdoo.org/current/showcase/#Tree , we've added >> a context menu on the items of tree, such as, if you right-click 'Files', >> you'd see a context menu with 'Open' and 'Search', then you can click >> 'Search' to open a new dialog. I'm wondering if we can use Sele

Re: [qooxdoo-devel] Test the context menu of tree by Selenium

2008-04-07 Thread thron7
Chi Mo wrote: > Please look at http://demo.qooxdoo.org/current/showcase/#Tree , we've added a > context menu on the items of tree, such as, if you right-click 'Files', you'd > see a context menu with 'Open' and 'Search', then you can click 'Search' to > open a new dialog. I'm wondering if we can

[qooxdoo-devel] Test the context menu of tree by Selenium

2008-04-07 Thread Chi Mo
Please look at http://demo.qooxdoo.org/current/showcase/#Tree , we've added a context menu on the items of tree, such as, if you right-click 'Files', you'd see a context menu with 'Open' and 'Search', then you can click 'Search' to open a new dialog. I'm wondering if we can use Selenium to test