<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Technology on Information &#187; Dumper</title>
	<atom:link href="http://tec.toi-planning.net/en/mt/dumper/feed" rel="self" type="application/rss+xml" />
	<link>http://tec.toi-planning.net/en</link>
	<description>ToI Planning’s technical article</description>
	<lastBuildDate>Sat, 27 Feb 2010 09:13:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Manual page of Dumper</title>
		<link>http://tec.toi-planning.net/en/mt/dumper/manual</link>
		<comments>http://tec.toi-planning.net/en/mt/dumper/manual#comments</comments>
		<pubDate>Tue, 23 Sep 2008 13:22:16 +0000</pubDate>
		<dc:creator>taku</dc:creator>
				<category><![CDATA[Dumper]]></category>

		<guid isPermaLink="false">http://tec.toi-planning.net/en/uncategorized/dumper-%e3%81%ae%e4%bd%bf%e3%81%84%e6%96%b9</guid>
		<description><![CDATA[Plugin Settins for blog

]]></description>
			<content:encoded><![CDATA[<p>Plugin Settins for blog<br />
<a href="http://tec.toi-planning.net/en/wp-content/uploads/dumper-blog-settins.png"><img src="http://tec.toi-planning.net/en/wp-content/uploads/dumper-blog-settins-450x314.png" alt="" title="dumper-blog-settins" width="450" height="314" class="aligncenter size-medium wp-image-162" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://tec.toi-planning.net/en/mt/dumper/manual/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Usage of Dumper for the developer</title>
		<link>http://tec.toi-planning.net/en/mt/dumper/manual-2</link>
		<comments>http://tec.toi-planning.net/en/mt/dumper/manual-2#comments</comments>
		<pubDate>Tue, 23 Sep 2008 13:22:16 +0000</pubDate>
		<dc:creator>taku</dc:creator>
				<category><![CDATA[Dumper]]></category>

		<guid isPermaLink="false">http://tec.toi-planning.net/en/uncategorized/dumper-%e3%81%ae%e3%83%97%e3%83%a9%e3%82%b0%e3%82%a4%e3%83%b3%e9%96%8b%e7%99%ba%e8%80%85%e5%90%91%e3%81%91%e3%81%ae%e4%bd%bf%e3%81%84%e6%96%b9</guid>
		<description><![CDATA[
Use it from other plugin.


It is possible to use it from other plugin by the following way.

Example

require MT;
my $app = MT->instance;
my $dumper = $app->component('Dumper');
my %config_hash = (
'dump_entry' => 1,
'dump_entry_yaml' => 1,
'dump_entry_yaml_file' => 'entries.yaml',
'dump_entry_fields' => {
'id' => 'id',               # Outout id field.
'title' [...]]]></description>
			<content:encoded><![CDATA[<div class="tags">
<h2>Use it from other plugin.</h2>
<div class="tag">
<h4 class="description">
It is possible to use it from other plugin by the following way.<br />
</h4>
<h5 class="usage">Example</h5>
<hr/>
<pre><code
>require MT;
my $app = MT->instance;
my $dumper = $app->component('Dumper');
my %config_hash = (
'dump_entry' => 1,
'dump_entry_yaml' => 1,
'dump_entry_yaml_file' => 'entries.yaml',
'dump_entry_fields' => {
'id' => 'id',               # Outout id field.
'title' => 'name',          # Output title field as name.
'permalink' => 'permalink', # Output Permalink.
'entry_email' => 'email',   # Output Custom Fields field that specified by tagname.
},
);
foreach my $k (keys %config_hash) {
$dumper->set_config_value($k, $config_hash{$k}, 'blog:1');
}
</code></pre>
<h5 class="usage">出力例(entries.yaml)</h5>
<hr/>
<pre><code
>---
1:
id: 1
name: entry's title
permalink: http://tec.toi-planning.net/entry/permalink/
email: taku@toi-planning.net
</code></pre>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://tec.toi-planning.net/en/mt/dumper/manual-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>About the Dumper</title>
		<link>http://tec.toi-planning.net/en/mt/dumper/about</link>
		<comments>http://tec.toi-planning.net/en/mt/dumper/about#comments</comments>
		<pubDate>Tue, 23 Sep 2008 13:22:14 +0000</pubDate>
		<dc:creator>taku</dc:creator>
				<category><![CDATA[Dumper]]></category>

		<guid isPermaLink="false">http://tec.toi-planning.net/en/uncategorized/dumper-%e3%81%a8%e3%81%af</guid>
		<description><![CDATA[

What’s this

The content of the entry can be output by YAML and JSON format.
Because only the part with the change when entry&#8217;s is preserved is written, the processing speed is fast.



Requirements

MTOS
MT4



Installation

Download archive from download page.
Extract archive file, and upload these files to your plugin directory.
Complete.



License
MIT License


]]></description>
			<content:encoded><![CDATA[<div class="usage">
<div class="what">
<h3>What’s this</h3>
<ul>
<li>The content of the entry can be output by YAML and JSON format.</li>
<li>Because only the part with the change when entry&#8217;s is preserved is written, the processing speed is fast.</li>
</ul>
</div>
<div class="arch">
<h3>Requirements</h3>
<ul>
<li>MTOS</li>
<li>MT4</li>
</ul>
</div>
<div class="install">
<h3>Installation</h3>
<ol>
<li>Download archive from <a href="http://code.google.com/p/dumper-mtplugin/downloads/list">download page</a>.</li>
<li>Extract archive file, and upload these files to your plugin directory.</li>
<li>Complete.</li>
</ol>
</div>
<div class="license">
<h3>License</h3>
<h5>MIT License</h5>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://tec.toi-planning.net/en/mt/dumper/about/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
