<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Technology on Information</title>
	<atom:link href="http://tec.toi-planning.net/en/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://tec.toi-planning.net/en</link>
	<description>ToI Planning's technical article</description>
	<lastBuildDate>Sat, 14 Aug 2010 09:38:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
	<item>
		<title>Comment on Manual page of StyledFields by Joerg</title>
		<link>http://tec.toi-planning.net/en/mt/styledfields/manual/comment-page-1#comment-569</link>
		<dc:creator>Joerg</dc:creator>
		<pubDate>Sat, 14 Aug 2010 09:38:27 +0000</pubDate>
		<guid isPermaLink="false">http://tec.toi-planning.net/en/uncategorized/styledfields-%e3%81%ae%e4%bd%bf%e3%81%84%e6%96%b9#comment-569</guid>
		<description>Hello,
I try to use your plugin with mt4 and find it very useful.
Is there a way to setup th css code on a system base only once,
if I will use the code with several blog too?

Thank you very much for help and a tip.

Regards
Joerg</description>
		<content:encoded><![CDATA[<p>Hello,<br />
I try to use your plugin with mt4 and find it very useful.<br />
Is there a way to setup th css code on a system base only once,<br />
if I will use the code with several blog too?</p>
<p>Thank you very much for help and a tip.</p>
<p>Regards<br />
Joerg</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About the CKEditor for Movable Type by Kweid</title>
		<link>http://tec.toi-planning.net/en/mt/ckeditor/about/comment-page-1#comment-568</link>
		<dc:creator>Kweid</dc:creator>
		<pubDate>Tue, 27 Jul 2010 15:21:32 +0000</pubDate>
		<guid isPermaLink="false">http://tec.toi-planning.net/en/?p=213#comment-568</guid>
		<description>It(last release) does not works on my Opera web browser</description>
		<content:encoded><![CDATA[<p>It(last release) does not works on my Opera web browser</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About the TinyMCE-MTPlugin by William Tam</title>
		<link>http://tec.toi-planning.net/en/mt/tinymce/about/comment-page-1#comment-563</link>
		<dc:creator>William Tam</dc:creator>
		<pubDate>Wed, 19 May 2010 19:38:27 +0000</pubDate>
		<guid isPermaLink="false">http://tec.toi-planning.net/en/uncategorized/tinymce-mtplugin-%e3%81%a8%e3%81%af#comment-563</guid>
		<description>Great plugin!  I wish the documentation were in english. 
Here is a tip on making it work with a more recent version of TinyMCE, and a bugfix.
I implemented the plugin on our MovableType 4 Enterprise installation.  At the same time, I wanted to update the version of TinyMCE from the version you distributed with the plugin - 3.2.4.1 (2009-05-25) to the most recent 3.3.5.1 (2010-05-07) to deal with numerous Safari and IE8 support issues.  This worked fine, here&#039;s what I had to do.
1.  Rename the directory tree of mt-static/plugins/TinyMCE/lib/jscripts/tiny_mce to a backup folder.
2. Copy the tinymce/jscripts/tiny_mce directory tree distributed by Moxiecode into mt-static/plugins/TinyMCE/lib/jscripts/tiny_mce
3. From the backup folder, copy the tiny_mce/plugins/movabletype  folder to mt-static/plugins/TinyMCE/lib/jscripts/tiny_mce/plugins/
4. From the backup folder, copy the tiny_mce/themes/advanced/skins/mt folder into mt-static/plugins/TinyMCE/lib/jscripts/tiny_mce/themes/advanced/skins/

Everything works at this point, but I found a bug with the movabletype plugin (which allows for using the MT image uploader and file uploader within the TinyMCE editor).  In IE, if you haven&#039;t put your cursor into the editor window when you click the buttons to upload either an image or file, you get an &#039;error on page&#039; and nothing happens.  This is caused by IE needing to get &#039;focus&#039; on the editor before executing a getBookmark to determine cursor position for inserting the image.  The solution is simple, though it would be best if it could be added to the distributed code.  
In mt-static/plugins/TinyMCE/lib/jscripts/tiny_mce/plugins/movabletype/editor_plugin.js , change the two instances of
onclick:function(){ed.movabletype_plugin_bookmark=ed.selection.getBookmark();
to
onclick:function(){ed.focus();ed.movabletype_plugin_bookmark=ed.selection.getBookmark();
What we&#039;ve done is inserted ed.focus(); to force IE to give the editor focus and thus be able to do a getBookmark call.

After all of this, the editor works perfectly in all recent browsers, taking advantage of the many bugfixes that Moxiecode has done to TinyMCE since 2009.</description>
		<content:encoded><![CDATA[<p>Great plugin!  I wish the documentation were in english.<br />
Here is a tip on making it work with a more recent version of TinyMCE, and a bugfix.<br />
I implemented the plugin on our MovableType 4 Enterprise installation.  At the same time, I wanted to update the version of TinyMCE from the version you distributed with the plugin &#8211; 3.2.4.1 (2009-05-25) to the most recent 3.3.5.1 (2010-05-07) to deal with numerous Safari and IE8 support issues.  This worked fine, here&#8217;s what I had to do.<br />
1.  Rename the directory tree of mt-static/plugins/TinyMCE/lib/jscripts/tiny_mce to a backup folder.<br />
2. Copy the tinymce/jscripts/tiny_mce directory tree distributed by Moxiecode into mt-static/plugins/TinyMCE/lib/jscripts/tiny_mce<br />
3. From the backup folder, copy the tiny_mce/plugins/movabletype  folder to mt-static/plugins/TinyMCE/lib/jscripts/tiny_mce/plugins/<br />
4. From the backup folder, copy the tiny_mce/themes/advanced/skins/mt folder into mt-static/plugins/TinyMCE/lib/jscripts/tiny_mce/themes/advanced/skins/</p>
<p>Everything works at this point, but I found a bug with the movabletype plugin (which allows for using the MT image uploader and file uploader within the TinyMCE editor).  In IE, if you haven&#8217;t put your cursor into the editor window when you click the buttons to upload either an image or file, you get an &#8216;error on page&#8217; and nothing happens.  This is caused by IE needing to get &#8216;focus&#8217; on the editor before executing a getBookmark to determine cursor position for inserting the image.  The solution is simple, though it would be best if it could be added to the distributed code.<br />
In mt-static/plugins/TinyMCE/lib/jscripts/tiny_mce/plugins/movabletype/editor_plugin.js , change the two instances of<br />
onclick:function(){ed.movabletype_plugin_bookmark=ed.selection.getBookmark();<br />
to<br />
onclick:function(){ed.focus();ed.movabletype_plugin_bookmark=ed.selection.getBookmark();<br />
What we&#8217;ve done is inserted ed.focus(); to force IE to give the editor focus and thus be able to do a getBookmark call.</p>
<p>After all of this, the editor works perfectly in all recent browsers, taking advantage of the many bugfixes that Moxiecode has done to TinyMCE since 2009.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Screenshots of QuickRebuild by Mihai  Bocsaru</title>
		<link>http://tec.toi-planning.net/en/mt/quickrebuild/demo/comment-page-1#comment-562</link>
		<dc:creator>Mihai  Bocsaru</dc:creator>
		<pubDate>Sat, 15 May 2010 16:35:47 +0000</pubDate>
		<guid isPermaLink="false">http://tec.toi-planning.net/en/uncategorized/quickrebuild-%e3%81%ae%e3%83%87%e3%83%a2#comment-562</guid>
		<description>This plugin is quite interesting, thank you!

Is there a way to run it using a cron job, similar to the way we could use mt-rebuild.pl from Tim Appnel?

I could run Tim&#039;s plugin like this:

0,30 * * * * perl /usr/www/users/path/cgi-bin/mt/mt-rebuild.pl -mode=&quot;archive&quot; -blog_id=&quot;1&quot; -archive_type=&quot;Category&quot;

Is there a way to run your plugin in a similar way?

What would be the comment to rebuild for instance an archive template?</description>
		<content:encoded><![CDATA[<p>This plugin is quite interesting, thank you!</p>
<p>Is there a way to run it using a cron job, similar to the way we could use mt-rebuild.pl from Tim Appnel?</p>
<p>I could run Tim&#8217;s plugin like this:</p>
<p>0,30 * * * * perl /usr/www/users/path/cgi-bin/mt/mt-rebuild.pl -mode=&#8221;archive&#8221; -blog_id=&#8221;1&#8243; -archive_type=&#8221;Category&#8221;</p>
<p>Is there a way to run your plugin in a similar way?</p>
<p>What would be the comment to rebuild for instance an archive template?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Manual page of ArchiveUploader by Matt Carey</title>
		<link>http://tec.toi-planning.net/en/mt/archiveuploader/manual/comment-page-1#comment-560</link>
		<dc:creator>Matt Carey</dc:creator>
		<pubDate>Tue, 20 Apr 2010 14:10:15 +0000</pubDate>
		<guid isPermaLink="false">http://tec.toi-planning.net/en/?p=203#comment-560</guid>
		<description>Hi Tol. I am trying to use this plugin with no success. It is installed and has checked for perl modules because I can upload .zip etc. I click the button to upload an asset archive and I get the overlay. Then it says &#039;An error has occurred&#039; with no error message. This is under MT 4.25. Can you help? Thanks. Matt</description>
		<content:encoded><![CDATA[<p>Hi Tol. I am trying to use this plugin with no success. It is installed and has checked for perl modules because I can upload .zip etc. I click the button to upload an asset archive and I get the overlay. Then it says &#8216;An error has occurred&#8217; with no error message. This is under MT 4.25. Can you help? Thanks. Matt</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tag reference of FillInForm-MTPlugin by Wind Power</title>
		<link>http://tec.toi-planning.net/en/mt/fillinform/tags/comment-page-1#comment-554</link>
		<dc:creator>Wind Power</dc:creator>
		<pubDate>Fri, 26 Mar 2010 15:37:25 +0000</pubDate>
		<guid isPermaLink="false">http://tec.toi-planning.net/en/uncategorized/fillinform-mtplugin-%e3%81%a7%e5%88%a9%e7%94%a8%e3%81%99%e3%82%8b%e3%82%bf%e3%82%b0#comment-554</guid>
		<description>I really liked your blog! It helped me alot...</description>
		<content:encoded><![CDATA[<p>I really liked your blog! It helped me alot&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About the CKEditor for Movable Type by scott sanders</title>
		<link>http://tec.toi-planning.net/en/mt/ckeditor/about/comment-page-1#comment-519</link>
		<dc:creator>scott sanders</dc:creator>
		<pubDate>Wed, 06 Jan 2010 05:37:24 +0000</pubDate>
		<guid isPermaLink="false">http://tec.toi-planning.net/en/?p=213#comment-519</guid>
		<description>Your CKEditor-1.02 plugin is working great for me on MT5.01-en release.  Thanks!!</description>
		<content:encoded><![CDATA[<p>Your CKEditor-1.02 plugin is working great for me on MT5.01-en release.  Thanks!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About the custom-fields-permalink by admin</title>
		<link>http://tec.toi-planning.net/en/wp/custom-fields-permalink/about/comment-page-1#comment-510</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sun, 08 Nov 2009 05:05:50 +0000</pubDate>
		<guid isPermaLink="false">http://tec.toi-planning.net/en/?p=113#comment-510</guid>
		<description>I&#039;m sorry to the user of custom-fields-permalink. 

This plugin is currently not supported. Thus, the comment on this archive will not accept.

I feel sorry not to support it.

many thanks.</description>
		<content:encoded><![CDATA[<p>I&#8217;m sorry to the user of custom-fields-permalink. </p>
<p>This plugin is currently not supported. Thus, the comment on this archive will not accept.</p>
<p>I feel sorry not to support it.</p>
<p>many thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About the custom-fields-permalink by Ilona</title>
		<link>http://tec.toi-planning.net/en/wp/custom-fields-permalink/about/comment-page-1#comment-509</link>
		<dc:creator>Ilona</dc:creator>
		<pubDate>Sat, 12 Sep 2009 15:31:47 +0000</pubDate>
		<guid isPermaLink="false">http://tec.toi-planning.net/en/?p=113#comment-509</guid>
		<description>Hello,

thanks for very useful plug in.

the problem i find is that if i use the plugin, pages don&#039;t load and instead i only see the index page.

is there something i do wrong.

this is the structure i use:

/%cfp_city_or_pagename%/%postname%-%post_id%

many thanks.</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>thanks for very useful plug in.</p>
<p>the problem i find is that if i use the plugin, pages don&#8217;t load and instead i only see the index page.</p>
<p>is there something i do wrong.</p>
<p>this is the structure i use:</p>
<p>/%cfp_city_or_pagename%/%postname%-%post_id%</p>
<p>many thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About the custom-fields-permalink by Chris Gray</title>
		<link>http://tec.toi-planning.net/en/wp/custom-fields-permalink/about/comment-page-1#comment-506</link>
		<dc:creator>Chris Gray</dc:creator>
		<pubDate>Tue, 23 Jun 2009 11:16:14 +0000</pubDate>
		<guid isPermaLink="false">http://tec.toi-planning.net/en/?p=113#comment-506</guid>
		<description>Hi, thank you for a great plugin. The only thing it doesn&#039;t do; if there are spaces in the name of the custom field (for example &quot;golden slumbers&quot;) it doesn&#039;t know how to handle the space, and leaves it as a space. This might break pages, can you fix it so it uses dashes? WP uses them for the post title so it&#039;ll make it act the same way. :)</description>
		<content:encoded><![CDATA[<p>Hi, thank you for a great plugin. The only thing it doesn&#8217;t do; if there are spaces in the name of the custom field (for example &#8220;golden slumbers&#8221;) it doesn&#8217;t know how to handle the space, and leaves it as a space. This might break pages, can you fix it so it uses dashes? WP uses them for the post title so it&#8217;ll make it act the same way. <img src='http://tec.toi-planning.net/en/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

