[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-22 Thread oscar esp
diff -u ¿? I don't know diff prg. :-( Thanks. On 21 jun, 18:41, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: do a diff -u between the 2 versions is there anything more than a slight change in param: ? On 6/21/07, oscar esp [EMAIL PROTECTED] wrote: I have some issues with jquery . When I use

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-22 Thread Ⓙⓐⓚⓔ
diff is a unix file compare ... the -u option is the prettiest and most understandable option. any compare utility will do! On 6/22/07, oscar esp [EMAIL PROTECTED] wrote: diff -u ¿? I don't know diff prg. :-( Thanks. On 21 jun, 18:41, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: do a diff -u between the

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-21 Thread oscar esp
I have some issues with jquery . When I use the jquery from your branch I get some error in code that works fine with official 1.2 version. I have ajax calls that returns a html in order tu full a div. Seems that if data has html doesn't work Seems that type param doesn't work.

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-21 Thread Ⓙⓐⓚⓔ
do a diff -u between the 2 versions is there anything more than a slight change in param: ? On 6/21/07, oscar esp [EMAIL PROTECTED] wrote: I have some issues with jquery . When I use the jquery from your branch I get some error in code that works fine with official 1.2 version. I have

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-19 Thread Ⓙⓐⓚⓔ
var pars= text1=+jQuery(#Text1).val(); should be a normal object! var pars= {text1:jQuery(#Text1).val()}; or a result from $.serialize On 6/19/07, oscar esp [EMAIL PROTECTED] wrote: Hi finally I got a public server to puplish the link: http://www.grupofusion.com/testcharset/testtBlock.asp

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-16 Thread Ⓙⓐⓚⓔ
form plugin uses the same encoding that ajax will use... it's ajax... with the 2 lines to override it should work... I would like to see a live page, I can peek at the headers with firebug to see what is actually being sent (in the headers) but to see what is actually sent you need to add a

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-15 Thread oscar esp
Hi I have test this code: jQuery.ajaxSetup({contentType: application/x-www-form- urlencoded;charset=iso-8859-1}) jQuery.pair = function(f,v) {return escape(f) + = + escape(v)}; var url = test2.asp pars= text2=áéíáéáa jQuery.ajax({ type:

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-15 Thread oscar esp
Ok fine! I like to be a beta tester. On 14 jun, 20:38, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: this patch is changes ajax, form uses ajax, so it should work! That's what I hope we will know after you test! On 6/14/07, oscar esp [EMAIL PROTECTED] wrote: Another questionbefore to test

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-15 Thread Ⓙⓐⓚⓔ
there is supposed to be a space before the word charset. Not sure if that's causing the problem... keep testing! jQuery.ajaxSetup({contentType: application/x-www-form-urlencoded; charset=iso-8859-1}) On 6/15/07, oscar esp [EMAIL PROTECTED] wrote: Hi I have test this code:

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-14 Thread oscar esp
Hi I have been on holidays and I have not time to test it. In order to keep in mind: I need to dowload from your brach. I am using jquery 1.2 .. Then If I take the jquery from your brach it is a standar jquery 1.2 + your modifications for enconding? I am worry ... to be sure that are the same

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-14 Thread Ⓙⓐⓚⓔ
$.pair = function(f,v) {return escape(f) + = + escape(v)}; is the key, otherwise you would have the standard utf behaviour On 6/14/07, oscar esp [EMAIL PROTECTED] wrote: Hi I have been on holidays and I have not time to test it. In order to keep in mind: I need to dowload from your brach. I

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-14 Thread oscar esp
Another questionbefore to test it... I am using form prlugin to send the info as far I undestand if I put this patch in jquery the form plugion will mantain the new charset? On 10 jun, 19:53, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: keep me posted!! You may also need : ajaxSetup({contentType:

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-14 Thread Ⓙⓐⓚⓔ
this patch is changes ajax, form uses ajax, so it should work! That's what I hope we will know after you test! On 6/14/07, oscar esp [EMAIL PROTECTED] wrote: Another questionbefore to test it... I am using form prlugin to send the info as far I undestand if I put this patch in jquery

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-11 Thread oscar esp
I will try!! On 10 jun, 19:53, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: keep me posted!! You may also need : ajaxSetup({contentType: application/x-www-form-urlencoded; charset=whatever charset you want to call it}) On 6/10/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: Oscar, you can play with the

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-10 Thread oscar esp
Hi I have a problem realted with charsets as you know. Could I use this code in order to fix my problem? On 10 jun, 06:00, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: http://dev.jquery.com/ticket/1289 On 6/9/07, Brandon Aaron [EMAIL PROTECTED] wrote: Be sure to add this to trac. -- Brandon

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-10 Thread Ⓙⓐⓚⓔ
keep me posted!! You may also need : ajaxSetup({contentType: application/x-www-form-urlencoded; charset=whatever charset you want to call it}) On 6/10/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: Oscar, you can play with the jQuery from my branch (not released, and just to try it... no guarantees!!)

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-09 Thread Brandon Aaron
Be sure to add this to trac. -- Brandon Aaron On 6/9/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: I also added to the patch renaming the parameter 'xml' and sometimes 'r' to 'xhr'. I think it makes it easier to read. http://jqueryjs.googlecode.com/svn/branches/jake-dev/src/ajax/ajax.js On 6/7/07, Mike

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-09 Thread Ⓙⓐⓚⓔ
http://dev.jquery.com/ticket/1289 On 6/9/07, Brandon Aaron [EMAIL PROTECTED] wrote: Be sure to add this to trac. -- Brandon Aaron On 6/9/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: I also added to the patch renaming the parameter 'xml' and sometimes 'r' to 'xhr'. I think it makes it easier to read.

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-07 Thread Mike Alsup
I like this patch. Jörn? Brandon? John? Anyone? alternate encoding done cleanly... http://jqueryjs.googlecode.com/svn/branches/jake-dev/src/ajax/ajax.js a small patch allows escape (or other) instead of encodeURIComponent while localizing all calls to encodeURIComponent this patch seems