Re: [jQuery] jQuery for Wordpress

2007-02-01 Thread Karl Swedberg
I think I might switch to a different Visual Editor that has a true  
"CODE" view that doesn't parse the html.

I am waiting for some of them to be updated for the 22.1 release.


I don't even use the TinyMCE visual editor that they have. I just use  
the "quick keys." And they still manage to mess it up.


I think, however, that waiting for the 22.1 release might be  
counterproductive. ;-)




Right now the whole parsing thing is a pain in the ass.  I want to  
turn it off completely.


I'm with you on that one.

Cheers,
--Karl
_
Karl Swedberg
www.englishrules.com
www.learningjquery.com



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


Re: [jQuery] jQuery for Wordpress

2007-02-01 Thread Glen Lipka

Ive been trying to use the plugin on my blog.  Just upgraded to 2.1
You might consider combining it with "Script" plugin to kill two birds with
one stone.

This article was helpful:
http://codex.wordpress.org/Using_Javascript

I think I might switch to a different Visual Editor that has a true "CODE"
view that doesn't parse the html.
I am waiting for some of them to be updated for the 22.1 release.

Right now the whole parsing thing is a pain in the ass.  I want to turn it
off completely.

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


Re: [jQuery] jQuery for Wordpress

2007-02-01 Thread Andreas Wahlin
I have no idea :/
I'm pretty new to blogging and such stuff in general, all I know is  
that at a few times, I might want to share some insights into jQuery  
and other HTML-related stuff and I want an easy way to do it :)

but thanks so far for the stuff here.

andreas

On Jan 31, 2007, at 23:09 , Jörn Zaefferer wrote:

> Karl Swedberg schrieb:
>> In my implementation, WordPress treats any tags in a post as if they
>> were actual tags, even if they're wrapped in .
>>
>> I have to use, for example, link
>> text
>>
>> For blocks of code I use the IG:Syntax Hiliter:
>> http://blog.igeek.info/wp-plugins/igsyntax-hiliter/
>>
>> Then I do something like this for JavaScript: [js] //some code  
>> here [/js]
>> And it comes out pretty.
>>
>> I'm sure there are a lot of other ways to do it, but so far this is
>> what has worked for me. Not without its frustrations, though. I think
>> WordPress is a little over-zealous in its processing of post text. Oh
>> well.
> Anyone got an idea if they fixed or at least improved that  
> behaviour in
> 2.1? If not, we should start a vote to improve that in 2.2... After
> quite a lot of frustration with that matter I deactivated the richtext
> editor, now escaping most of my code examples by hand, which is a good
> reason to not post any HTML snippets at all...
>
> -- 
> Jörn Zaefferer
>
> http://bassistance.de
>
>
> ___
> jQuery mailing list
> discuss@jquery.com
> http://jquery.com/discuss/


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


Re: [jQuery] jQuery for Wordpress

2007-01-31 Thread Jörn Zaefferer
Karl Swedberg schrieb:
> In my implementation, WordPress treats any tags in a post as if they 
> were actual tags, even if they're wrapped in .
>
> I have to use, for example, link 
> text
>
> For blocks of code I use the IG:Syntax Hiliter:
> http://blog.igeek.info/wp-plugins/igsyntax-hiliter/
>
> Then I do something like this for JavaScript: [js] //some code here [/js]
> And it comes out pretty.
>
> I'm sure there are a lot of other ways to do it, but so far this is 
> what has worked for me. Not without its frustrations, though. I think 
> WordPress is a little over-zealous in its processing of post text. Oh 
> well.
Anyone got an idea if they fixed or at least improved that behaviour in 
2.1? If not, we should start a vote to improve that in 2.2... After 
quite a lot of frustration with that matter I deactivated the richtext 
editor, now escaping most of my code examples by hand, which is a good 
reason to not post any HTML snippets at all...

-- 
Jörn Zaefferer

http://bassistance.de


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


Re: [jQuery] jQuery for Wordpress

2007-01-31 Thread Karl Swedberg
In my implementation, WordPress treats any tags in a post as if they  
were actual tags, even if they're wrapped in .


I have to use, for example, link text


For blocks of code I use the IG:Syntax Hiliter:
http://blog.igeek.info/wp-plugins/igsyntax-hiliter/

Then I do something like this for JavaScript: [js] //some code here [/ 
js]

And it comes out pretty.

I'm sure there are a lot of other ways to do it, but so far this is  
what has worked for me. Not without its frustrations, though. I think  
WordPress is a little over-zealous in its processing of post text. Oh  
well.


Hope that helps.

--Karl
_
Karl Swedberg
www.englishrules.com
www.learningjquery.com



On Jan 31, 2007, at 2:03 PM, Dan Atkinson wrote:



Hmm... I may have been wrong on both counts...

I suppose you could replace the opening tag with a < then.

Andreas Wahlin-4 wrote:


Yeah, you understood me correctly, thanks.
However, this does not seem to work.
For instance,

 http://www.w3.org/ W3C


becomes a regular link, and 

Re: [jQuery] jQuery for Wordpress

2007-01-31 Thread Dan Atkinson

Hmm... I may have been wrong on both counts...

I suppose you could replace the opening tag with a < then.

Andreas Wahlin-4 wrote:
> 
> Yeah, you understood me correctly, thanks.
> However, this does not seem to work.
> For instance,
> 
>  http://www.w3.org/ W3C 
> 
> 
> becomes a regular link, and 

Re: [jQuery] jQuery for Wordpress

2007-01-31 Thread Andreas Wahlin
Yeah, you understood me correctly, thanks.
However, this does not seem to work.
For instance,

http://www.w3.org/";>W3C


becomes a regular link, and 

Re: [jQuery] jQuery for Wordpress

2007-01-31 Thread Dan Atkinson

I'm sorry?

A tutorial on how to write good tutorials?

If you want to enable JS inside posts, go here and download this plugin:
http://ottodestruct.com/wpstuff/scriptenabler.zip

Finally, to be able to show people what you mean, wrapping your examples in
'pre' (or is it 'code'?) tags, prevents WordPress from doing anything to any
HTML elements inside, instead formatting them to < and >.

Hope I understood you correctly.


Andreas Wahlin-4 wrote:
> 
> This is almost on topic then :)
> Is there a good tutorial or something on how to write good tutorials  
> for javascript/html code in wordpress?
> For instance, I tried to include a script "tag" but it seems  
> wordpress mistook it for javascript and stripped most of it out. I  
> was frustrated and didn't have time to experiment.
> Oh and I did use the >r; (or simmilar) pseudo tags.
> 
> andreas
> 
> On Jan 29, 2007, at 20:53 , Dan Atkinson wrote:
> 
>>
>> I'm going to ping this topic for a couple of reasons.
>>
>> 1) I've updated my plugins to jQuery v1.1.1 and Thickbox 2.1.1.  
>> They're
>> available here:
>> http://www.dan-atkinson.com/wp/index.php/165/jquery-111-and- 
>> thickbox-211-for-wordpress/
>>
>> 2) jQuery and Interface has been added to the WordPress 2.2 dev trunk.
>>
>> The second one didn't surprise me very much, and I'm glad that Matt is
>> finally listening to his users, who overwhelmingly desire jQuery.
>>
>> This should mean that when 2.2 is released on April 23rd, jQuery and
>> Interface will be part of the default core.
>>
>>
>>
>> Dan Atkinson wrote:
>>>
>>> Ok folks, I'm going to bring this up here because I think it'll be  
>>> cool.
>>>
>>> Basically, it's just jQuery as a plugin for Wordpress, nothing  
>>> more. Just
>>> jquery.js.
>>>
>>> The reason why I'm sorta mentioning this, is because I'm about to  
>>> start
>>> writing a plugin for Cody's Thickbox 2 plugin (I kinda promised  
>>> that I'd
>>> do something for it, when it worked with image galleries).
>>>
>>> Anyhoo, because I think there'll be more exciting developments in  
>>> jQuery,
>>> which could be used on blogs, a single, standard 'jQuery for  
>>> Wordpress'
>>> plugin should be made, so that developers won't need to pack  
>>> jQuery with
>>> their release. Not only that, but as and when jQuery is updated,  
>>> only the
>>> 'jQuery for Wordpress' plugin need updating.
>>>
>>> I'm mentioning it here, because this is the general soap box for  
>>> folks who
>>> talk about their plugins and wotnot.
>>>
>>> Thoughts, suggestions? Or am I the only bugger who uses jQuery  
>>> with their
>>> blog?! :)
>>>
>>
>> -- 
>> View this message in context: http://www.nabble.com/jQuery-for- 
>> Wordpress-tf2105654.html#a8696545
>> 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/
> 
> 

-- 
View this message in context: 
http://www.nabble.com/jQuery-for-Wordpress-tf2105654.html#a8728361
Sent from the JQuery mailing list archive at Nabble.com.


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


Re: [jQuery] jQuery for Wordpress

2007-01-31 Thread Andreas Wahlin
This is almost on topic then :)
Is there a good tutorial or something on how to write good tutorials  
for javascript/html code in wordpress?
For instance, I tried to include a script "tag" but it seems  
wordpress mistook it for javascript and stripped most of it out. I  
was frustrated and didn't have time to experiment.
Oh and I did use the >r; (or simmilar) pseudo tags.

andreas

On Jan 29, 2007, at 20:53 , Dan Atkinson wrote:

>
> I'm going to ping this topic for a couple of reasons.
>
> 1) I've updated my plugins to jQuery v1.1.1 and Thickbox 2.1.1.  
> They're
> available here:
> http://www.dan-atkinson.com/wp/index.php/165/jquery-111-and- 
> thickbox-211-for-wordpress/
>
> 2) jQuery and Interface has been added to the WordPress 2.2 dev trunk.
>
> The second one didn't surprise me very much, and I'm glad that Matt is
> finally listening to his users, who overwhelmingly desire jQuery.
>
> This should mean that when 2.2 is released on April 23rd, jQuery and
> Interface will be part of the default core.
>
>
>
> Dan Atkinson wrote:
>>
>> Ok folks, I'm going to bring this up here because I think it'll be  
>> cool.
>>
>> Basically, it's just jQuery as a plugin for Wordpress, nothing  
>> more. Just
>> jquery.js.
>>
>> The reason why I'm sorta mentioning this, is because I'm about to  
>> start
>> writing a plugin for Cody's Thickbox 2 plugin (I kinda promised  
>> that I'd
>> do something for it, when it worked with image galleries).
>>
>> Anyhoo, because I think there'll be more exciting developments in  
>> jQuery,
>> which could be used on blogs, a single, standard 'jQuery for  
>> Wordpress'
>> plugin should be made, so that developers won't need to pack  
>> jQuery with
>> their release. Not only that, but as and when jQuery is updated,  
>> only the
>> 'jQuery for Wordpress' plugin need updating.
>>
>> I'm mentioning it here, because this is the general soap box for  
>> folks who
>> talk about their plugins and wotnot.
>>
>> Thoughts, suggestions? Or am I the only bugger who uses jQuery  
>> with their
>> blog?! :)
>>
>
> -- 
> View this message in context: http://www.nabble.com/jQuery-for- 
> Wordpress-tf2105654.html#a8696545
> 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] jQuery for Wordpress

2007-01-30 Thread killer-g

i totally enerved by the 12 js includes in the wordpress admin post page and
also posted an idea on wp website:
if you like you should vote for it and promote it:

http://wordpress.org/extend/ideas/topic.php?id=103#post-262
-- 
View this message in context: 
http://www.nabble.com/jQuery-for-Wordpress-tf2105654.html#a8700282
Sent from the JQuery mailing list archive at Nabble.com.


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


Re: [jQuery] jQuery for Wordpress

2007-01-30 Thread Dan Atkinson

Yes, it's definitely good.

It's also a bonus for me, as I hold the top Google ranking for almost every
term relating to WordPress and jQuery. It almost makes me want to slot in an
AdWords plugin! :)

Jörn Zaefferer wrote:
> 
> Dan Atkinson schrieb:
>> 2) jQuery and Interface has been added to the WordPress 2.2 dev trunk.
>>
>> The second one didn't surprise me very much, and I'm glad that Matt is
>> finally listening to his users, who overwhelmingly desire jQuery.
>>
>> This should mean that when 2.2 is released on April 23rd, jQuery and
>> Interface will be part of the default core.
> That is interesting. I saw the blog post of Matt asking for JavaScript 
> libraries to include in 2.1, and some time later they settled for 
> Prototype... Cool :-)
> 
> -- 
> Jörn Zaefferer
> 
> http://bassistance.de
> 
> 
> ___
> jQuery mailing list
> discuss@jquery.com
> http://jquery.com/discuss/
> 
> 

-- 
View this message in context: 
http://www.nabble.com/jQuery-for-Wordpress-tf2105654.html#a8709132
Sent from the JQuery mailing list archive at Nabble.com.


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


Re: [jQuery] jQuery for Wordpress

2007-01-29 Thread Jörn Zaefferer
Dan Atkinson schrieb:
> 2) jQuery and Interface has been added to the WordPress 2.2 dev trunk.
>
> The second one didn't surprise me very much, and I'm glad that Matt is
> finally listening to his users, who overwhelmingly desire jQuery.
>
> This should mean that when 2.2 is released on April 23rd, jQuery and
> Interface will be part of the default core.
That is interesting. I saw the blog post of Matt asking for JavaScript 
libraries to include in 2.1, and some time later they settled for 
Prototype... Cool :-)

-- 
Jörn Zaefferer

http://bassistance.de


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


Re: [jQuery] jQuery for Wordpress

2007-01-29 Thread Dan Atkinson

I'm going to ping this topic for a couple of reasons.

1) I've updated my plugins to jQuery v1.1.1 and Thickbox 2.1.1. They're
available here:
http://www.dan-atkinson.com/wp/index.php/165/jquery-111-and-thickbox-211-for-wordpress/

2) jQuery and Interface has been added to the WordPress 2.2 dev trunk.

The second one didn't surprise me very much, and I'm glad that Matt is
finally listening to his users, who overwhelmingly desire jQuery.

This should mean that when 2.2 is released on April 23rd, jQuery and
Interface will be part of the default core.



Dan Atkinson wrote:
> 
> Ok folks, I'm going to bring this up here because I think it'll be cool.
> 
> Basically, it's just jQuery as a plugin for Wordpress, nothing more. Just
> jquery.js.
> 
> The reason why I'm sorta mentioning this, is because I'm about to start
> writing a plugin for Cody's Thickbox 2 plugin (I kinda promised that I'd
> do something for it, when it worked with image galleries).
> 
> Anyhoo, because I think there'll be more exciting developments in jQuery,
> which could be used on blogs, a single, standard 'jQuery for Wordpress'
> plugin should be made, so that developers won't need to pack jQuery with
> their release. Not only that, but as and when jQuery is updated, only the
> 'jQuery for Wordpress' plugin need updating.
> 
> I'm mentioning it here, because this is the general soap box for folks who
> talk about their plugins and wotnot.
> 
> Thoughts, suggestions? Or am I the only bugger who uses jQuery with their
> blog?! :)
> 

-- 
View this message in context: 
http://www.nabble.com/jQuery-for-Wordpress-tf2105654.html#a8696545
Sent from the JQuery mailing list archive at Nabble.com.


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


Re: [jQuery] jQuery for Wordpress

2006-08-14 Thread Karl Swedberg
On Aug 14, 2006, at 5:25 PM, Dan Atkinson wrote:

> Quite frankly, I'd like to see it throwing a few more punches for  
> blogs, so
> any new content for CMSs like Wordpress is good!

Hmm. Maybe I should put together a little something for Movable Type.  
I'm already using jQuery for my MT blog at englishrules.com -- for an  
advanced search feature, a "widescreen bonus" that appears in the  
right column  and injects content using jQuery's .load() function,  
some comment form validation, and a couple other things I'm testing now.

Anyone else out there use jQuery with their Movable Type blog?

Karl

___
Karl Swedberg
www.englishrules.com




>
> Yeah!
>
> It would be much easier to do with jQuery, and it's something I've
> contemplated doing for a while with my own blog.
>
> Wordpress currently tries to push Prototype/Scriptaculous/Dojo too  
> much
> right now, and they're leaving little room for jQuery.
>
>
>
>
> Klaus Hartl wrote:
>>
>>
>>> Thoughts, suggestions? Or am I the only bugger who uses jQuery  
>>> with their
>>> blog?! :)
>>
>> I'm using jQuery with my WordPress blog, although the usage has  
>> not much
>> to do with WordPress.
>>
>> But what I wanted to do since quite a while is an Ajax enabled  
>> comment
>> system, with jQuery of course!
>>
>> What do you think about that?
>>
>>
>> -- Klaus
>>
>> ___
>> jQuery mailing list
>> discuss@jquery.com
>> http://jquery.com/discuss/
>>
>>
>
> -- 
> View this message in context: http://www.nabble.com/jQuery-for- 
> Wordpress-tf2105654.html#a5804563
> Sent from the JQuery forum 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] jQuery for Wordpress

2006-08-14 Thread Dan Atkinson

Yeah!

It would be much easier to do with jQuery, and it's something I've
contemplated doing for a while with my own blog.

Wordpress currently tries to push Prototype/Scriptaculous/Dojo too much
right now, and they're leaving little room for jQuery.

Quite frankly, I'd like to see it throwing a few more punches for blogs, so
any new content for CMSs like Wordpress is good!



Klaus Hartl wrote:
> 
> 
>> Thoughts, suggestions? Or am I the only bugger who uses jQuery with their
>> blog?! :)
> 
> I'm using jQuery with my WordPress blog, although the usage has not much 
> to do with WordPress.
> 
> But what I wanted to do since quite a while is an Ajax enabled comment 
> system, with jQuery of course!
> 
> What do you think about that?
> 
> 
> -- Klaus
> 
> ___
> jQuery mailing list
> discuss@jquery.com
> http://jquery.com/discuss/
> 
> 

-- 
View this message in context: 
http://www.nabble.com/jQuery-for-Wordpress-tf2105654.html#a5804563
Sent from the JQuery forum at Nabble.com.


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


Re: [jQuery] jQuery for Wordpress

2006-08-14 Thread Klaus Hartl

> Thoughts, suggestions? Or am I the only bugger who uses jQuery with their
> blog?! :)

I'm using jQuery with my WordPress blog, although the usage has not much 
to do with WordPress.

But what I wanted to do since quite a while is an Ajax enabled comment 
system, with jQuery of course!

What do you think about that?


-- Klaus

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


[jQuery] jQuery for Wordpress

2006-08-14 Thread Dan Atkinson

Ok folks, I'm going to bring this up here because I think it'll be cool.

Basically, it's just jQuery as a plugin for Wordpress, nothing more. Just
jquery.js.

The reason why I'm sorta mentioning this, is because I'm about to start
writing a plugin for Cody's Thickbox 2 plugin (I kinda promised that I'd do
something for it, when it worked with image galleries).

Anyhoo, because I think there'll be more exciting developments in jQuery,
which could be used on blogs, a single, standard 'jQuery for Wordpress'
plugin should be made, so that developers won't need to pack jQuery with
their release. Not only that, but as and when jQuery is updated, only the
'jQuery for Wordpress' plugin need updating.

I'm mentioning it here, because this is the general soap box for folks who
talk about their plugins and wotnot.

Thoughts, suggestions? Or am I the only bugger who uses jQuery with their
blog?! :)
-- 
View this message in context: 
http://www.nabble.com/jQuery-for-Wordpress-tf2105654.html#a5803780
Sent from the JQuery forum at Nabble.com.


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