Re: [jQuery] Konqueror Issues

2007-02-05 Thread Martin Jordan


Jörn Zaefferer wrote:
 
 [...]
 Lets hope so: http://joern.jquery.com/jquery/test/
 
 I hope that gives some results to work with.
 [...]
 

Hello!

I'm also a fan of Konqueror and have same problems with JQuery. 

see: http://fanti.staff.spin.de/jquerytest/

tested with:

[EMAIL PROTECTED]:~$ konqueror --version
Qt: 3.3.7
KDE: 3.5.5
Konqueror: 3.5.5
[EMAIL PROTECTED]:~$ uname -a
Linux daniela 2.6.18.1 #2 PREEMPT Sun Oct 22 19:34:18 CEST 2006 i686
GNU/Linux
[EMAIL PROTECTED]:~$

regards
-- 
View this message in context: 
http://www.nabble.com/Konqueror-Issues-tf3152354.html#a8814392
Sent from the JQuery mailing list archive at Nabble.com.


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Konqueror Issues

2007-02-05 Thread Jörn Zaefferer
Martin Jordan schrieb:
 Jörn Zaefferer wrote:
   
 [...]
 Lets hope so: http://joern.jquery.com/jquery/test/

 I hope that gives some results to work with.
 [...]

 

 Hello!

 I'm also a fan of Konqueror and have same problems with JQuery. 

 see: http://fanti.staff.spin.de/jquerytest/

 tested with:

 [EMAIL PROTECTED]:~$ konqueror --version
 Qt: 3.3.7
 KDE: 3.5.5
 Konqueror: 3.5.5
 [EMAIL PROTECTED]:~$ uname -a
 Linux daniela 2.6.18.1 #2 PREEMPT Sun Oct 22 19:34:18 CEST 2006 i686
 GNU/Linux
 [EMAIL PROTECTED]:~$
   
Ok. The :selected issue seems to be the same as in Opera 8.5, I have 
no idea what to do about that. But that shouldn't be a real issue.
The 15th XPath test fails in all browsers, it simply documents a bug in 
jQuery and is not Konquerer specific.
It's quite likely that the serialization fails because of very minor 
encoding differences, if I remember correctly, that problem occured in 
Opera 8.5, too.

But apart from those, everything seems fine. So what exactly is your 
issue? Looks like the test suite doesn't help us.

-- 
Jörn Zaefferer

http://bassistance.de


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Konqueror Issues

2007-02-05 Thread Klaus Hartl
Jörn Zaefferer schrieb:
 Ok. The :selected issue seems to be the same as in Opera 8.5, I have 
 no idea what to do about that. But that shouldn't be a real issue.
 The 15th XPath test fails in all browsers, it simply documents a bug in 
 jQuery and is not Konquerer specific.
 It's quite likely that the serialization fails because of very minor 
 encoding differences, if I remember correctly, that problem occured in 
 Opera 8.5, too.
 
 But apart from those, everything seems fine. So what exactly is your 
 issue? Looks like the test suite doesn't help us.


Jörn, I found that animations in general do not work fine. For example 
in Tabs if I use show() that has no effect in Konqueror whereas 
css('display', 'block') does.

Something basic must have changed in jQuery 1.1, because all worked fine 
with jQuery 1.0...


-- Klaus


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Konqueror Issues

2007-02-05 Thread Andrew Mason
On Tuesday February 6 2007 05:43:27 am Jörn Zaefferer wrote:
 Andrew Mason schrieb:
  Not 100% sure.
  This is how it identifies its self.
  Mozilla/5.0 (compatible; Konqueror/3.5; Linux 2.6.18; X11;) KHTML/3.5.6
  (like Gecko)
 
  Does this help in any way :) ?

 Lets hope so: http://joern.jquery.com/jquery/test/

 I hope that gives some results to work with.
Hmm No joy i'm afraid ...still re-directs me.




pgpnO88FCR6fQ.pgp
Description: PGP signature
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Konqueror Issues

2007-02-05 Thread Jörn Zaefferer
Klaus Hartl schrieb:
 Jörn Zaefferer schrieb:
   
 Ok. The :selected issue seems to be the same as in Opera 8.5, I have 
 no idea what to do about that. But that shouldn't be a real issue.
 The 15th XPath test fails in all browsers, it simply documents a bug in 
 jQuery and is not Konquerer specific.
 It's quite likely that the serialization fails because of very minor 
 encoding differences, if I remember correctly, that problem occured in 
 Opera 8.5, too.

 But apart from those, everything seems fine. So what exactly is your 
 issue? Looks like the test suite doesn't help us.
 


 Jörn, I found that animations in general do not work fine. For example 
 in Tabs if I use show() that has no effect in Konqueror whereas 
 css('display', 'block') does.

 Something basic must have changed in jQuery 1.1, because all worked fine 
 with jQuery 1.0...
   
1.1 hide's only visible, and shows only hidden elements. I guess the 
filtering for that fails. Maybe someone can try this code and see what 
is necessary to get it working:

show: function(speed,callback){
var hidden = this.filter(:hidden);
speed ?
hidden.animate({
height: show, width: show, opacity: show
}, speed, callback) :
   
hidden.each(function(){
this.style.display = this.oldblock ? this.oldblock : ;
if ( jQuery.css(this,display) == none )
this.style.display = block;
});
return this;
},

hide: function(speed,callback){
var visible = this.filter(:visible);
speed ?
visible.animate({
height: hide, width: hide, opacity: hide
}, speed, callback) :
   
visible.each(function(){
this.oldblock = this.oldblock || jQuery.css(this,display);
if ( this.oldblock == none )
this.oldblock = block;
this.style.display = none;
});
return this;
},

-- 
Jörn Zaefferer

http://bassistance.de


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Konqueror Issues

2007-02-04 Thread Andrew Mason
On Saturday February 3 2007 09:43:57 pm Jörn Zaefferer wrote:
 Andrew Mason schrieb:
  On Thursday February 1 2007 06:59:08 pm Jörn Zaefferer wrote:
  Andrew Mason schrieb:
  Hello all,
  I was just wondering if the Known Konqueror issues  are issues with
  konqueror (3.5.6?) or are issues with Jquery ?
 
  I am a fan of Konq and so which ever piece of software has the problems
  i'd like to help resolve it , just need to find out what the issues are
  first.
 
  Run the testsuite on Konquerer then: http://jquery.com/test/
 
  Better yet: Check it out from svn://jquery.com/trunk/jquery, run test
  ant/make test build, and debug the failing tests. The more information
  you can give about why a test fails, the better. If you find something,
  report it on the dev list or via the bug tracker.
 
  In case you find that everything works fine, cool, then we should update
  that wiki page.
 
  That URL seems to do a whole heap of tests and then forward me to
  http://diveintomark.org/
  Doesn't seem to do this in Firefox. Is there any reference to this URL in
  the tests ?

 That issue also occurs in IE and Opera. There is a check for those in
 the tests, but not for Konquerer. Would this work as a browser check for
 Konquerer: /KDE/.test(navigator.vendor) ?
Not 100% sure. 
This is how it identifies its self. 
Mozilla/5.0 (compatible; Konqueror/3.5; Linux 2.6.18; X11;) KHTML/3.5.6 (like 
Gecko)

Does this help in any way :) ?


pgpIUrULJxX3A.pgp
Description: PGP signature
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Konqueror Issues

2007-02-03 Thread Jörn Zaefferer
Andrew Mason schrieb:
 On Thursday February 1 2007 06:59:08 pm Jörn Zaefferer wrote:
   
 Andrew Mason schrieb:
 
 Hello all,
 I was just wondering if the Known Konqueror issues  are issues with
 konqueror (3.5.6?) or are issues with Jquery ?

 I am a fan of Konq and so which ever piece of software has the problems
 i'd like to help resolve it , just need to find out what the issues are
 first.
   
 Run the testsuite on Konquerer then: http://jquery.com/test/

 Better yet: Check it out from svn://jquery.com/trunk/jquery, run test
 ant/make test build, and debug the failing tests. The more information
 you can give about why a test fails, the better. If you find something,
 report it on the dev list or via the bug tracker.

 In case you find that everything works fine, cool, then we should update
 that wiki page.
 
 That URL seems to do a whole heap of tests and then forward me to 
 http://diveintomark.org/
 Doesn't seem to do this in Firefox. Is there any reference to this URL in the 
 tests ?
   
That issue also occurs in IE and Opera. There is a check for those in 
the tests, but not for Konquerer. Would this work as a browser check for 
Konquerer: /KDE/.test(navigator.vendor) ?

-- 
Jörn Zaefferer

http://bassistance.de


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Konqueror Issues

2007-02-01 Thread Jörn Zaefferer
Andrew Mason schrieb:
 Hello all, 
 I was just wondering if the Known Konqueror issues  are issues with 
 konqueror (3.5.6?) or are issues with Jquery ? 

 I am a fan of Konq and so which ever piece of software has the problems i'd 
 like to help resolve it , just need to find out what the issues are first.
   
Run the testsuite on Konquerer then: http://jquery.com/test/

Better yet: Check it out from svn://jquery.com/trunk/jquery, run test 
ant/make test build, and debug the failing tests. The more information 
you can give about why a test fails, the better. If you find something, 
report it on the dev list or via the bug tracker.

In case you find that everything works fine, cool, then we should update 
that wiki page.

-- 
Jörn Zaefferer

http://bassistance.de


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Konqueror Issues

2007-02-01 Thread Klaus Hartl
Andrew Mason schrieb:
 Hello all, 
 I was just wondering if the Known Konqueror issues  are issues with 
 konqueror (3.5.6?) or are issues with Jquery ? 
 
 I am a fan of Konq and so which ever piece of software has the problems i'd 
 like to help resolve it , just need to find out what the issues are first. 
 
 regards
 Andrew


My Tabs currently do not work in Konqueror...

http://stilbuero.de/jquery/tabs/

I will try to find out about that today.


-- Klaus


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Konqueror Issues

2007-02-01 Thread Klaus Hartl
Klaus Hartl schrieb:
 Andrew Mason schrieb:
 Hello all, 
 I was just wondering if the Known Konqueror issues  are issues with 
 konqueror (3.5.6?) or are issues with Jquery ? 

 I am a fan of Konq and so which ever piece of software has the problems i'd 
 like to help resolve it , just need to find out what the issues are first. 

 regards
 Andrew
 
 
 My Tabs currently do not work in Konqueror...
 
 http://stilbuero.de/jquery/tabs/
 
 I will try to find out about that today.
 
 
 -- Klaus


I'm sure that this is an issue with show/animate. They simply do not 
work anymore in Konqueror.

For example: If I use css('display', 'block') instead of show() it works 
fine in Konqueror.


-- Klaus


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Konqueror Issues

2007-02-01 Thread Andrew Mason
On Thursday February 1 2007 06:59:08 pm Jörn Zaefferer wrote:
 Andrew Mason schrieb:
  Hello all,
  I was just wondering if the Known Konqueror issues  are issues with
  konqueror (3.5.6?) or are issues with Jquery ?
 
  I am a fan of Konq and so which ever piece of software has the problems
  i'd like to help resolve it , just need to find out what the issues are
  first.

 Run the testsuite on Konquerer then: http://jquery.com/test/

 Better yet: Check it out from svn://jquery.com/trunk/jquery, run test
 ant/make test build, and debug the failing tests. The more information
 you can give about why a test fails, the better. If you find something,
 report it on the dev list or via the bug tracker.

 In case you find that everything works fine, cool, then we should update
 that wiki page.
That URL seems to do a whole heap of tests and then forward me to 
http://diveintomark.org/
Doesn't seem to do this in Firefox. Is there any reference to this URL in the 
tests ?







pgpcdMbYcvVfw.pgp
Description: PGP signature
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/