<?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 on: Importing Keywords from a File</title>
	<atom:link href="http://www.pointsinfocus.com/2009/05/keywording-photographs-part-2-importing-keyword-files/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pointsinfocus.com/2009/05/keywording-photographs-part-2-importing-keyword-files/</link>
	<description>Focusing on better photography</description>
	<lastBuildDate>Tue, 07 Feb 2012 18:25:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: V. J. Franke</title>
		<link>http://www.pointsinfocus.com/2009/05/keywording-photographs-part-2-importing-keyword-files/comment-page-1/#comment-8303</link>
		<dc:creator>V. J. Franke</dc:creator>
		<pubDate>Wed, 02 Mar 2011 06:28:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.pointsinfocus.com/?p=1364#comment-8303</guid>
		<description>@Guido: Good catch, thanks. Not sure how that happened, since I do show the indenting correctly in the notepad screenshot, yet somehow managed to lose the tab in the clip at the top of the article. Whoops!

For the record, I&#039;ve updated the excerpt at the top of this article to have the proper indenting.</description>
		<content:encoded><![CDATA[<p>@Guido: Good catch, thanks. Not sure how that happened, since I do show the indenting correctly in the notepad screenshot, yet somehow managed to lose the tab in the clip at the top of the article. Whoops!</p>
<p>For the record, I&#8217;ve updated the excerpt at the top of this article to have the proper indenting.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guido Zsilavecz</title>
		<link>http://www.pointsinfocus.com/2009/05/keywording-photographs-part-2-importing-keyword-files/comment-page-1/#comment-8302</link>
		<dc:creator>Guido Zsilavecz</dc:creator>
		<pubDate>Wed, 02 Mar 2011 06:08:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.pointsinfocus.com/?p=1364#comment-8302</guid>
		<description>Good day:
Doing the following:
&lt;code&gt;
Animal
&#160;&#160;{animals}
&#160;&#160;Bird
&#160;&#160;&#160;&#160;[North American]
&#160;&#160;&#160;&#160;&#160;&#160;Red-Shouldered Hawk
&#160;&#160;&#160;&#160;&#160;&#160;{Buteo lineatus}
&lt;/code&gt;
specifically, the last two lines, is not ideal: it places the common name and the scientific name on an equal level, which causes hassles when having several birds below each other. For example, importing the following:
&lt;code&gt;
Animal
&#160;&#160;{animals}
&#160;&#160;Bird
&#160;&#160;&#160;&#160;[North American]
&#160;&#160;&#160;&#160;&#160;&#160;Red-Shouldered Hawk
&#160;&#160;&#160;&#160;&#160;&#160;{Buteo lineatus}
&#160;&#160;&#160;&#160;&#160;&#160;Bald Eagle
&#160;&#160;&#160;&#160;&#160;&#160;{Haliaeetus leucocephalus}
&lt;/code&gt;
and re-exporting results in
&lt;code&gt;
Animal
&#160;&#160;{animals}
&#160;&#160;Bird
&#160;&#160;&#160;&#160;[North American]
&#160;&#160;&#160;&#160;&#160;&#160;{Buteo lineatus}
&#160;&#160;&#160;&#160;&#160;&#160;{Haliaeetus leucocephalus}
&#160;&#160;&#160;&#160;&#160;&#160;Red-Shouldered Hawk
&#160;&#160;&#160;&#160;&#160;&#160;Bald Eagle
&lt;/code&gt;
and assigning the tag &quot;Bald Eagle&quot; attaches both &quot;Buteo lineatus&quot; and &quot;Haliaeetus leucocephalus&quot; as tags to the image on export - which is not what you want. The strategy is to make the scientific name the child of the common name, as follows:
&lt;code&gt;
Animal
&#160;&#160;{animals}
&#160;&#160;Bird
&#160;&#160;&#160;&#160;[North American]
&#160;&#160;&#160;&#160;&#160;&#160;Red-Shouldered Hawk
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;{Buteo lineatus}
&#160;&#160;&#160;&#160;&#160;&#160;Bald Eagle
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;{Haliaeetus leucocephalus}
&lt;/code&gt;
That way the tagging is correct, and Bald Eagle tag receives the scientific name as expected, as well as &quot;Bird&quot; and &quot;Animal&quot;.

After following this tutorial I thankfully discovered this problem early enough before I had tagged too many images - as the taxonomic tree I created is quite large and required a few hours of rework to get &quot;right&quot; again!
Thanks,
Guido</description>
		<content:encoded><![CDATA[<p>Good day:<br />
Doing the following:<br />
<code><br />
Animal<br />
&nbsp;&nbsp;{animals}<br />
&nbsp;&nbsp;Bird<br />
&nbsp;&nbsp;&nbsp;&nbsp;[North American]<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Red-Shouldered Hawk<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{Buteo lineatus}<br />
</code><br />
specifically, the last two lines, is not ideal: it places the common name and the scientific name on an equal level, which causes hassles when having several birds below each other. For example, importing the following:<br />
<code><br />
Animal<br />
&nbsp;&nbsp;{animals}<br />
&nbsp;&nbsp;Bird<br />
&nbsp;&nbsp;&nbsp;&nbsp;[North American]<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Red-Shouldered Hawk<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{Buteo lineatus}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Bald Eagle<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{Haliaeetus leucocephalus}<br />
</code><br />
and re-exporting results in<br />
<code><br />
Animal<br />
&nbsp;&nbsp;{animals}<br />
&nbsp;&nbsp;Bird<br />
&nbsp;&nbsp;&nbsp;&nbsp;[North American]<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{Buteo lineatus}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{Haliaeetus leucocephalus}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Red-Shouldered Hawk<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Bald Eagle<br />
</code><br />
and assigning the tag &#8220;Bald Eagle&#8221; attaches both &#8220;Buteo lineatus&#8221; and &#8220;Haliaeetus leucocephalus&#8221; as tags to the image on export &#8211; which is not what you want. The strategy is to make the scientific name the child of the common name, as follows:<br />
<code><br />
Animal<br />
&nbsp;&nbsp;{animals}<br />
&nbsp;&nbsp;Bird<br />
&nbsp;&nbsp;&nbsp;&nbsp;[North American]<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Red-Shouldered Hawk<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{Buteo lineatus}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Bald Eagle<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{Haliaeetus leucocephalus}<br />
</code><br />
That way the tagging is correct, and Bald Eagle tag receives the scientific name as expected, as well as &#8220;Bird&#8221; and &#8220;Animal&#8221;.</p>
<p>After following this tutorial I thankfully discovered this problem early enough before I had tagged too many images &#8211; as the taxonomic tree I created is quite large and required a few hours of rework to get &#8220;right&#8221; again!<br />
Thanks,<br />
Guido</p>
]]></content:encoded>
	</item>
</channel>
</rss>

