Re: [jQuery] PDFs of JQuery docs

2007-01-18 Thread Jon Baer
Those links are bad, looks like you forgot your username and meant ...

http://corky.net/dotan/programming/hacks/jquerydocs/jquery-docs-with- 
all-plugins.pdf

http://corky.net/dotan/programming/hacks/jquerydocs/jquery-docs-with- 
plugins.pdf

http://corky.net/dotan/programming/hacks/jquerydocs/jquery-docs.pdf

Either way, thank you, very helpful!

- Jon

On Jan 18, 2007, at 6:20 AM, Dotan Dimet wrote:

> Hi,
>
> Inspired by a comment on John's "helping you understand jquery" blog
> post, I've mashed together the JQuery build scripts (written in
> javascript!) with a free PDF-generating library called iText to  
> produce
> PDF versions of the JQuery documenation:
>
>
> Just JQuery [116k pdf]:
>
> http://corky.net/programming/hacks/jquerydocs/jquery-docs.pdf
>
>
> JQuery and the plugins specified in the build [186k pdf]:
>
> http://corky.net/programming/hacks/jquerydocs/jquery-docs-with- 
> plugins.pdf
>
>
> JQuery and all the plugins in the subversion repository [ 275k pdf] :
>
> http://corky.net/programming/hacks/jquerydocs/jquery-docs-with-all- 
> plugins.pdf
>
> The last one probably contains empty chapters and probably  
> duplications.
>
>
> The PDFs created have clickable tables of contents for navigation, and
> aren't intended for printing.
>
> My code and meandering explanations are on my blog, here:
> http://corky.net/dotan/log/2007/01/jquery-documentation-in-pdf.html
>
> I'd appreciate any feedback.
>
> Thanks,
>
> Dotan Dimet.
>
> ___
> jQuery mailing list
> discuss@jquery.com
> http://jquery.com/discuss/


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


Re: [jQuery] Safari/IE not working at all

2007-01-18 Thread Jon Baer
Thanks for the Safari trailing comma tip, definitely just saved me a  
few days debugging something :-)

Should be in a FAQ somewhere.  It would be helpful to expand the Wiki  
here (http://docs.jquery.com/Browser_compatibility) w/ some small tips.

- Jon

On Jan 18, 2007, at 1:25 AM, Ⓙⓐⓚⓔ wrote:

> I'm not the person to ask about IE...IE makes me sneeze!
>
> I was wondering about trailing commas the other day... It caught my
> eye, and sure enough safari doesn't like 'em!
>
> do you have the debug menu turned on in Safari? in terminal
>   defaults write com.apple.Safari IncludeDebugMenu 1
> it sure ain't firebug... but it helps!
>
> On 1/17/07, Kenneth Love <[EMAIL PROTECTED]> wrote:
>> Jake:
>>
>> Thanks a lot, that worked great for Safari. Everything is now  
>> hidden in IE,
>> though, and clicking doesn't show it. Any ideas there?
>>
>>
>> On 1/17/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
>>> all the words look good, but that trailing comma I noticed a  
>>> while
>>> back that firefox permits it...  safari doesn't like it.
>>>
>>> On 1/17/07, Kenneth Love <[EMAIL PROTECTED]> wrote:
 Hey all.

 I have a bit of JQuery magic that works great in Firefox, but  
 not in
>> Safari
 or IE at all. Here's the code:

 $(document).ready(
 function()
 {
 $('div.yui-u').Sortable({
 accept: 'sortable',
 helperclass: 'sortHelper',
 activeclass : 'sortableactive',
 hoverclass : 'sortablehover',
 handle: ' h3.list',
 tolerance: 'pointer',
 });

 $('h3.list').title('Click to expand; drag to reorganize')
 $('dl').hide();
 $('dd').hide();
 $(' h3.list').click(function() {
 $(this.parentNode).find('dl').toggle('fast');
 $(this).toggleClass('listDown');
 return false;
 });
 $('li dl dt').click(function() {
 $(this.parentNode).find('dd').toggle('fast');
 });
 }
 );


 You can see it in action at
 http://www.eyeheartzombies.com/webpen-html/ Any ideas?

 Thanks a lot.

 --
 => the blog from beyond <=
 => www.eyeheartzombies.com <=
 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/



>>>
>>>
>>> --
>>> Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>>> ___
>>> jQuery mailing list
>>> discuss@jquery.com
>>> http://jquery.com/discuss/
>>>
>>
>>
>>
>> --
>> => the blog from beyond <=
>>  => www.eyeheartzombies.com <=
>> ___
>> jQuery mailing list
>> discuss@jquery.com
>> http://jquery.com/discuss/
>>
>>
>>
>
>
> -- 
> Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
> ___
> jQuery mailing list
> discuss@jquery.com
> http://jquery.com/discuss/


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


Re: [jQuery] Mac OS X Widgets?

2007-01-11 Thread Jon Baer
Well as long as they don't close up shop on Javascript in Safari  
everything should be cool no? 


http://www.ilounge.com/index.php/news/comments/apples-jobs-more- 
iphone-apps-coming-before-launch/9320


"We define everything that is on the phone,” Jobs told the New York  
Times. “You don’t want your phone to be like a PC. The last thing  
you want is to have loaded three apps on your phone and then you go  
to make a call and it doesn’t work anymore. These are more like  
iPods than they are like computers.” Jobs told Newsweek something  
similar. “You don’t want your phone to be an open platform,” he  
said. “You need it to work when you need it to work. Cingular  
doesn’t want to see their West Coast network go down because some  
application messed up.”


- Jon

On Jan 10, 2007, at 7:42 AM, Jon Baer wrote:

I would be *very* disappointed if the iPhone did not have support  
for HXR.  There have been a few mobile browsers which shipped based  
on something else that is suppose to be desktop class but then  
leave out the OTA connection features altogether.  (The one thing  
Id like to see is if the Google Map application they showed off  
*was* a widget).  If it was that means you would also have direct  
access to frameworks like the address book, phone functionality,  
SMS, etc.


- Jon

On Jan 9, 2007, at 8:57 PM, Yehuda Katz wrote:

I'm actually looking at the widget development information now,  
and it would be really easy to write some nice jQuery extensions  
to handle widgets (esp. regarding new widget-specific events).


-- Yehuda

On 1/9/07, Yehuda Katz <[EMAIL PROTECTED]> wrote:
How easy is it to package a widget with jQuery? I would assume  
that such a packaged version would be able to completely eliminate  
form and AJAX support (in most cases). I'd be curious if the phone  
version of the widgets was exactly the same...


-- Yehuda


On 1/9/07, Ⓙⓐⓚⓔ < [EMAIL PROTECTED]> wrote:
Today has been a big day for the mac, and the iphone is about 6  
months

away. It runs Safari and a mini version of OS X. And it supports
widgets!

Widgets can be written in javascript, and can run un-encumbered by  
the

normal ajax cross host security restriction!

So to get back on target... Has anyone written any jquery widgets?

--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/



--
Yehuda Katz
Web Developer | Wycats Designs
(ph)  718.877.1325



--
Yehuda Katz
Web Developer | Wycats Designs
(ph)  718.877.1325
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/




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


Re: [jQuery] Mac OS X Widgets?

2007-01-10 Thread Jon Baer
I would be *very* disappointed if the iPhone did not have support for  
HXR.  There have been a few mobile browsers which shipped based on  
something else that is suppose to be desktop class but then leave out  
the OTA connection features altogether.  (The one thing Id like to  
see is if the Google Map application they showed off *was* a  
widget).  If it was that means you would also have direct access to  
frameworks like the address book, phone functionality, SMS, etc.


- Jon

On Jan 9, 2007, at 8:57 PM, Yehuda Katz wrote:

I'm actually looking at the widget development information now, and  
it would be really easy to write some nice jQuery extensions to  
handle widgets (esp. regarding new widget-specific events).


-- Yehuda

On 1/9/07, Yehuda Katz <[EMAIL PROTECTED]> wrote:
How easy is it to package a widget with jQuery? I would assume that  
such a packaged version would be able to completely eliminate form  
and AJAX support (in most cases). I'd be curious if the phone  
version of the widgets was exactly the same...


-- Yehuda


On 1/9/07, Ⓙⓐⓚⓔ < [EMAIL PROTECTED]> wrote:
Today has been a big day for the mac, and the iphone is about 6 months
away. It runs Safari and a mini version of OS X. And it supports
widgets!

Widgets can be written in javascript, and can run un-encumbered by the
normal ajax cross host security restriction!

So to get back on target... Has anyone written any jquery widgets?

--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/



--
Yehuda Katz
Web Developer | Wycats Designs
(ph)  718.877.1325



--
Yehuda Katz
Web Developer | Wycats Designs
(ph)  718.877.1325
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


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


Re: [jQuery] JQuery on Rails

2007-01-05 Thread Jon Baer
Can I ask how the overall approach for this will be?  (ie, will it be  
a rails plugin overriding all the helpers?) Or will there be  
additional functionality?


Thanks.

- Jon

On Jan 5, 2007, at 5:14 PM, Francisco Brito wrote:

I'm looking forward to this. Seems like a very good opportunity for  
jQ promotion especially since proto/culous enjoys the advantage of  
being pre-packaged in rails.




On 1/5/07, Yehuda Katz <[EMAIL PROTECTED]> wrote:
I'm going to have something with jQuery 1.1 mid-January.

-- Yehuda


On 1/5/07, Jon Baer < [EMAIL PROTECTED] > wrote:
Hi,

Just coming back from holidays and playing catch up ...

I know there was some discussion a while ago and it seems this was
setup:

http://trac.visualjquery.com/jQueryRails

But is there an update on it?  (Also is there any similar approach to
CakePHP 1.2?)  Ive read there were generic adapters but can't tell
from the code/svn log.

Thanks.

- Jon

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



--
Yehuda Katz
Web Developer | Wycats Designs
(ph)  718.877.1325
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/





--
Francisco Brito

http://nullisnull.blogspot.com | http://www.flickr.com/photos/ 
darkgoyle | http://brito.mindsay.com

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


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


[jQuery] JQuery on Rails

2007-01-04 Thread Jon Baer
Hi,

Just coming back from holidays and playing catch up ...

I know there was some discussion a while ago and it seems this was  
setup:

http://trac.visualjquery.com/jQueryRails

But is there an update on it?  (Also is there any similar approach to  
CakePHP 1.2?)  Ive read there were generic adapters but can't tell  
from the code/svn log.

Thanks.

- Jon

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


Re: [jQuery] New plugin: jScrollPane

2006-12-30 Thread Jon Baer
Awesome work ... nice plugin.

On Dec 30, 2006, at 3:40 PM, Kelvin Luck wrote:

> Hi all,
>
> I've just released my new plugin - it is called jScrollPane and  
> replaces
> the browser's scrollbars where a container has an overflow of auto  
> and a
> fixed height:
>
> http://www.kelvinluck.com/assets/jquery/jScrollPane/jScrollPane.html
>
> As you can see, it is unobtrusive and degrades gracefully to the
> browsers own scrollbars. The custom scrollbars are completely stylable
> via CSS. Afaik they work on all browsers jQuery supports but let me  
> know
> if you notice otherwise.
>
> One question I have to improve the plugin regards Brandon's mousewheel
> plugin. When you use the mouse wheel to scroll a jScrollPane all is  
> good
> but I am preventing the mouse wheels default action. I would like  
> to be
> able to reinstate this default action if I detect that the jScrollPane
> has reached the end of it's scrolling as happens with the default
> browser scroll bars. Any suggestions on how to achieve this?
>
> Cheers,
>
> Kelvin :)
>
> ___
> jQuery mailing list
> discuss@jquery.com
> http://jquery.com/discuss/


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


Re: [jQuery] php frameworks

2006-12-04 Thread Jon Baer
http://www.cakephp.org

If you have used Rails or worship the MVC model, you can't go wrong.   
There is a Cajax plugin (to do RJS/Ajax stuff), its really solid and  
easy to get up and running and the IRC room is always filled to  
answer questions.

- Jon

On Dec 4, 2006, at 11:10 PM, bmsterling wrote:

>
> Hey all,
> A partially non-jquery question, anyone use any php frameworks?  I was
> looking at the zend framework, but not sure if it is any good.
>
> If you use a php frame work can you post a url and why you like it?
>
> Thanks,
> Ben
> -- 
> View this message in context: http://www.nabble.com/php-frameworks- 
> tf2759163.html#a7692970
> Sent from the JQuery mailing list archive at Nabble.com.
>
>
> ___
> jQuery mailing list
> discuss@jquery.com
> http://jquery.com/discuss/


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


Re: [jQuery] NEWS: jQuery-powered Osxcode.com in Ajax Magazine

2006-12-04 Thread Jon Baer
Very nice site, congrats ...

On Dec 4, 2006, at 10:38 PM, Rey Bango wrote:

> Fredi announced his new jQuery-powered feed aggregator osxcode.com  
> just
> yesterday and I'm pleased to say that Ajax Magazine just picked up on
> his site and gave him some press. You can check it out here:
>
> http://ajax.phpmagazine.net/2006/12/ 
> jme_feed_aggregator_10_beta_re.html
>
> Congrats Fredi!
>
> Rey...
>
> ___
> jQuery mailing list
> discuss@jquery.com
> http://jquery.com/discuss/


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


Re: [jQuery] Firebug 1.0 coming soon

2006-11-18 Thread Jon Baer
There is no doubt many of us have benefited and saved hours of  
debugging time using it, I really don't blame the developer for  
charging a few bucks for it, im sure its possible to get our  
companies to stop being that cheap when it comes to OS and pitch in  
for a great tool.

- Jon

On Nov 18, 2006, at 11:56 AM, Rey Bango wrote:

> Hi Rick,
>
> Firebug is a Firefox addon that dramatically helps your Javascript
> development efforts. It helps you debug the code, inspect DOM  
> values and
> even view HTTP requests (critical for Ajax development). It has a ton
> more functionality and is something that every web developer should be
> using.
>
> Even if the developer charged for it, I would buy it since its such a
> HUGE help in my development efforts.
>
> Rey...
>
> Rick Faircloth wrote:
>> What is "Firebug" and is there a preview of what it does somewhere  
>> online?
>>
>> Rick
>>
>> -Original Message-
>> From: [EMAIL PROTECTED] [mailto:discuss- 
>> [EMAIL PROTECTED] On
>> Behalf Of John Resig
>> Sent: Friday, November 17, 2006 11:59 PM
>> To: jQuery Discussion.
>> Subject: Re: [jQuery] Firebug 1.0 coming soon
>>
>>> I'll take that as a 'no' then?
>>
>> Yeah, unfortunately. We have to keep it private until he wants to
>> release it (which may be for money, it sounds).
>>
>> --John
>>
>> ___
>> jQuery mailing list
>> discuss@jquery.com
>> http://jquery.com/discuss/
>>
>>
>>
>> ___
>> jQuery mailing list
>> discuss@jquery.com
>> http://jquery.com/discuss/
>>
>
> ___
> jQuery mailing list
> discuss@jquery.com
> http://jquery.com/discuss/


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