<?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: Preset Templates in My Lightroom Plugins</title>
	<atom:link href="http://regex.info/blog/lightroom-goodies/template/feed" rel="self" type="application/rss+xml" />
	<link>http://regex.info/blog</link>
	<description>Not a photo blog. A personal blog with photos.</description>
	<lastBuildDate>Tue, 07 Feb 2012 15:03:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: John</title>
		<link>http://regex.info/blog/lightroom-goodies/template#comment-44724</link>
		<dc:creator>John</dc:creator>
		<pubDate>Mon, 05 Dec 2011 02:26:16 +0000</pubDate>
		<guid isPermaLink="false">http://regex.info/blog/photo-tech/template/#comment-44724</guid>
		<description>First, thanks for the wonderful work on this and your other plugins.  I&#039;ve found the ability to custom build captions (especially for flickr) to be very valuable.  I shoot both digital and film and since I&#039;m pretty anal about keeping my information in EXIF I&#039;m wondering the following:

I know you use Phil Harvey&#039;s EXIF tool for various things in your plugins.  Is it possible to build a token that would allow the user to input the field to be read out of EXIF for use in the caption and/or title?

I&#039;m thinking something like {EXIFtool:xmp.film} that would result in &quot;Velvia 50&quot; or whatever happens to be in that field for that image.

In short, I&#039;m looking for a way to exposure more EXIF data than what lightroom recognizes... inside your title/caption presents.

Thanks,

John

&lt;span class=&#039;jfriedl&#039;&gt;That&#039;s a good idea, except that it then requires that I bundle a full ExifTool executable with each plugin, and fire off a separate process for each caption. Those are not brick walls, but at this point enough of a weight to keep it from bubbling up on my todo list... &#8212;Jeffrey&lt;/span&gt;</description>
		<content:encoded><![CDATA[<p>First, thanks for the wonderful work on this and your other plugins.  I&#8217;ve found the ability to custom build captions (especially for flickr) to be very valuable.  I shoot both digital and film and since I&#8217;m pretty anal about keeping my information in EXIF I&#8217;m wondering the following:</p>
<p>I know you use Phil Harvey&#8217;s EXIF tool for various things in your plugins.  Is it possible to build a token that would allow the user to input the field to be read out of EXIF for use in the caption and/or title?</p>
<p>I&#8217;m thinking something like {EXIFtool:xmp.film} that would result in &#8220;Velvia 50&#8243; or whatever happens to be in that field for that image.</p>
<p>In short, I&#8217;m looking for a way to exposure more EXIF data than what lightroom recognizes&#8230; inside your title/caption presents.</p>
<p>Thanks,</p>
<p>John</p>
<p><span class='jfriedl'>That&#8217;s a good idea, except that it then requires that I bundle a full ExifTool executable with each plugin, and fire off a separate process for each caption. Those are not brick walls, but at this point enough of a weight to keep it from bubbling up on my todo list&#8230; &mdash;Jeffrey</span></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lucas Hummig</title>
		<link>http://regex.info/blog/lightroom-goodies/template#comment-44392</link>
		<dc:creator>Lucas Hummig</dc:creator>
		<pubDate>Mon, 24 Oct 2011 11:25:06 +0000</pubDate>
		<guid isPermaLink="false">http://regex.info/blog/photo-tech/template/#comment-44392</guid>
		<description>Hello Jeffrey,

any way to use PhotoDate with a function like &quot;add 1 month&quot;? When we publish to PicasaWeb, we&#039;d like to name the album including a &quot;online until&quot; - date which is 1 months after pictures are created (pictures should be removed after one month) and the visitors should be informed by an appendix in the name of the album.

Of course a template like {Folder}_Album_online_until_{YYYY}/{MM+1}/{DD} is not working. Any way to do this?

Regards from Germany,

&lt;div class=&#039;jfriedl&#039;&gt;&lt;p&gt;Well, it&#039;s a bit kludgy, but you can use the LUA template, along the lines of&lt;/p&gt;
&lt;pre&gt;{LUA=mm==&quot;12&quot; and sprintf(&quot;%04d&quot;, tonumber(yyyy)+1) or yyyy}&lt;/pre&gt;
&lt;p&gt;for the year,&lt;/p&gt;
&lt;pre&gt;
{LUA=mm==&quot;12&quot; and sprintf(&quot;%02d&quot;, tonumber(mm)+1) or mm}
&lt;/pre&gt;
&lt;p&gt;for the month, and&lt;/p&gt;
&lt;pre&gt;
{LUA=tonumber(dd) &lt; 28 and dd or 28}
&lt;/pre&gt;
&lt;p&gt;for the day.&lt;/p&gt;

&lt;p&gt;That all makes it one month from the current date... replace each &lt;b&gt;yyyy&lt;/b&gt;, &lt;b&gt;mm&lt;/b&gt;, and &lt;b&gt;dd&lt;/b&gt; with their upper-case equivalents for the photo date).  &#8212;Jeffrey&lt;/p&gt;&lt;/div&gt;</description>
		<content:encoded><![CDATA[<p>Hello Jeffrey,</p>
<p>any way to use PhotoDate with a function like &#8220;add 1 month&#8221;? When we publish to PicasaWeb, we&#8217;d like to name the album including a &#8220;online until&#8221; &#8211; date which is 1 months after pictures are created (pictures should be removed after one month) and the visitors should be informed by an appendix in the name of the album.</p>
<p>Of course a template like {Folder}_Album_online_until_{YYYY}/{MM+1}/{DD} is not working. Any way to do this?</p>
<p>Regards from Germany,</p>
<div class='jfriedl'>
<p>Well, it&#8217;s a bit kludgy, but you can use the LUA template, along the lines of</p>
<pre>{LUA=mm=="12" and sprintf("%04d", tonumber(yyyy)+1) or yyyy}</pre>
<p>for the year,</p>
<pre>
{LUA=mm=="12" and sprintf("%02d", tonumber(mm)+1) or mm}
</pre>
<p>for the month, and</p>
<pre>
{LUA=tonumber(dd) &lt; 28 and dd or 28}
</pre>
<p>for the day.</p>
<p>That all makes it one month from the current date&#8230; replace each <b>yyyy</b>, <b>mm</b>, and <b>dd</b> with their upper-case equivalents for the photo date).  &mdash;Jeffrey</p>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Colin Johnson</title>
		<link>http://regex.info/blog/lightroom-goodies/template#comment-43793</link>
		<dc:creator>Colin Johnson</dc:creator>
		<pubDate>Sun, 07 Aug 2011 15:02:38 +0000</pubDate>
		<guid isPermaLink="false">http://regex.info/blog/photo-tech/template/#comment-43793</guid>
		<description>I&#039;ve been looking for a way to include a series/sequence number in the template the same way that the file renaming allows for (1 of 12) as part of the file name. Am I missing something really obvious?

&lt;span class=&#039;jfriedl&#039;&gt;No, you&#039;re not missing anything... it&#039;s not there. It&#039;s not necessarily as straightforward as some of the other items, but I&#039;ll give it some thought. &#8212;Jeffrey&lt;/span&gt;</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been looking for a way to include a series/sequence number in the template the same way that the file renaming allows for (1 of 12) as part of the file name. Am I missing something really obvious?</p>
<p><span class='jfriedl'>No, you&#8217;re not missing anything&#8230; it&#8217;s not there. It&#8217;s not necessarily as straightforward as some of the other items, but I&#8217;ll give it some thought. &mdash;Jeffrey</span></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wes Lindberg</title>
		<link>http://regex.info/blog/lightroom-goodies/template#comment-42838</link>
		<dc:creator>Wes Lindberg</dc:creator>
		<pubDate>Thu, 28 Apr 2011 03:12:49 +0000</pubDate>
		<guid isPermaLink="false">http://regex.info/blog/photo-tech/template/#comment-42838</guid>
		<description>Thanks for the great plug-in. I&#039;m hoping to use Lightroom + Zenfolio for a huge graduation portrait project at our college in Gainesville Florida, Friday April 29, 2011. The question I have is how to Publish each client image so that they are in their own client gallery? I&#039;m using the Caption -FileNumber as a unique identifier and I would like that to also be the client access code. My students will be processing 300-600 portrait sessions with 3-5 images each. I&#039;m trying to setup the publish process as simple and fast as possible. Any thoughts?

Thanks,

Wes

&lt;span class=&#039;jfriedl&#039;&gt;You can use the auto-destination feature to create galleries on the fly based upon metadata, and particularly using the LUA &lt;a href=&#039;http://regex.info/blog/lightroom-goodies/template&#039; rel=&quot;nofollow&quot;&gt;templat&lt;/a&gt; you can construct arbitrarily-complex ways of converting the metadata into a gallery name. But if you want more than one image in the same gallery, you&#039;ll need to ensure that those images all share some bit of metadata (e.g. a caption with the subject&#039;s name).   There&#039;s nothing in the plugin that will handle setting an access code for the gallery, so that&#039;ll have to be handled separately. But since you can have the plugin open the gallery in the browser after the upload completes, it&#039;s hopefully not too difficult to just use that page to set the access code. &#8212;Jeffrey&lt;/span&gt;</description>
		<content:encoded><![CDATA[<p>Thanks for the great plug-in. I&#8217;m hoping to use Lightroom + Zenfolio for a huge graduation portrait project at our college in Gainesville Florida, Friday April 29, 2011. The question I have is how to Publish each client image so that they are in their own client gallery? I&#8217;m using the Caption -FileNumber as a unique identifier and I would like that to also be the client access code. My students will be processing 300-600 portrait sessions with 3-5 images each. I&#8217;m trying to setup the publish process as simple and fast as possible. Any thoughts?</p>
<p>Thanks,</p>
<p>Wes</p>
<p><span class='jfriedl'>You can use the auto-destination feature to create galleries on the fly based upon metadata, and particularly using the LUA <a href='http://regex.info/blog/lightroom-goodies/template' rel="nofollow">templat</a> you can construct arbitrarily-complex ways of converting the metadata into a gallery name. But if you want more than one image in the same gallery, you&#8217;ll need to ensure that those images all share some bit of metadata (e.g. a caption with the subject&#8217;s name).   There&#8217;s nothing in the plugin that will handle setting an access code for the gallery, so that&#8217;ll have to be handled separately. But since you can have the plugin open the gallery in the browser after the upload completes, it&#8217;s hopefully not too difficult to just use that page to set the access code. &mdash;Jeffrey</span></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Clay</title>
		<link>http://regex.info/blog/lightroom-goodies/template#comment-42667</link>
		<dc:creator>Clay</dc:creator>
		<pubDate>Wed, 13 Apr 2011 20:52:10 +0000</pubDate>
		<guid isPermaLink="false">http://regex.info/blog/photo-tech/template/#comment-42667</guid>
		<description>Wow using LUA for conditional text was uncommonly easy.  Thank you very much.</description>
		<content:encoded><![CDATA[<p>Wow using LUA for conditional text was uncommonly easy.  Thank you very much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: frank</title>
		<link>http://regex.info/blog/lightroom-goodies/template#comment-41919</link>
		<dc:creator>frank</dc:creator>
		<pubDate>Thu, 13 Jan 2011 01:49:07 +0000</pubDate>
		<guid isPermaLink="false">http://regex.info/blog/photo-tech/template/#comment-41919</guid>
		<description>still wondering what values the OriginalWidth and OriginalHeight tokens return ? is it the original size of the picture or the cropped size ? i am talking about the cropped size after using the resize tool in lightroom not the cropped size that we give on export ?

&lt;span class=&#039;jfriedl&#039;&gt;Yes, that is ambiguous, isn&#039;t it. They&#039;re for the original (possibly pre-crop) of the master image on disk. I&#039;ve pushed new versions that also include CroppedWidth and CroppedHeight to reference the post-crop size of the image in the library. &#8212;Jeffrey&lt;/span&gt;</description>
		<content:encoded><![CDATA[<p>still wondering what values the OriginalWidth and OriginalHeight tokens return ? is it the original size of the picture or the cropped size ? i am talking about the cropped size after using the resize tool in lightroom not the cropped size that we give on export ?</p>
<p><span class='jfriedl'>Yes, that is ambiguous, isn&#8217;t it. They&#8217;re for the original (possibly pre-crop) of the master image on disk. I&#8217;ve pushed new versions that also include CroppedWidth and CroppedHeight to reference the post-crop size of the image in the library. &mdash;Jeffrey</span></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Ogden</title>
		<link>http://regex.info/blog/lightroom-goodies/template#comment-40805</link>
		<dc:creator>Chris Ogden</dc:creator>
		<pubDate>Fri, 17 Sep 2010 14:52:52 +0000</pubDate>
		<guid isPermaLink="false">http://regex.info/blog/photo-tech/template/#comment-40805</guid>
		<description>More great work Jeff!

As others have asked in the above comments, any update on accessing Collection info in LR 3.2 (whether it be in your presets, text exports, etc.)?  

For photo gallery websites that use databases (eg, Joomla, Drupal, etc.), it would be INCREDIBLY useful to be able to export text (csv, xml, whathave you) lists of the desired apps that would include collection(s) hierarchies, image name, path to thumbnail and full image, meta data, etc.</description>
		<content:encoded><![CDATA[<p>More great work Jeff!</p>
<p>As others have asked in the above comments, any update on accessing Collection info in LR 3.2 (whether it be in your presets, text exports, etc.)?  </p>
<p>For photo gallery websites that use databases (eg, Joomla, Drupal, etc.), it would be INCREDIBLY useful to be able to export text (csv, xml, whathave you) lists of the desired apps that would include collection(s) hierarchies, image name, path to thumbnail and full image, meta data, etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://regex.info/blog/lightroom-goodies/template#comment-40582</link>
		<dc:creator>James</dc:creator>
		<pubDate>Mon, 30 Aug 2010 09:08:36 +0000</pubDate>
		<guid isPermaLink="false">http://regex.info/blog/photo-tech/template/#comment-40582</guid>
		<description>Keyword filter question:

I have many keywords grouped into sets that don&#039;t export, for example individual animal names, that are also assigned with &quot;wildlife&quot;.

Is there a way to filter and use just those keywords that are contained within the set &quot;wildlife&quot; as the caption for an image?

Thanks

&lt;span class=&#039;jfriedl&#039;&gt;Not that I can think of, sorry. &#8212;Jeffrey&lt;/span&gt;</description>
		<content:encoded><![CDATA[<p>Keyword filter question:</p>
<p>I have many keywords grouped into sets that don&#8217;t export, for example individual animal names, that are also assigned with &#8220;wildlife&#8221;.</p>
<p>Is there a way to filter and use just those keywords that are contained within the set &#8220;wildlife&#8221; as the caption for an image?</p>
<p>Thanks</p>
<p><span class='jfriedl'>Not that I can think of, sorry. &mdash;Jeffrey</span></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carl M Christensen</title>
		<link>http://regex.info/blog/lightroom-goodies/template#comment-39962</link>
		<dc:creator>Carl M Christensen</dc:creator>
		<pubDate>Sat, 24 Jul 2010 23:15:39 +0000</pubDate>
		<guid isPermaLink="false">http://regex.info/blog/photo-tech/template/#comment-39962</guid>
		<description>There is the token {Keywords} that returns all keywords marked for export. I have the problem that somehow a scattering of keywords in lightroom have been created or changed such that they are checked as do not export. Given the 1000&#039;s of keywords, I&#039;m not feeling up to going through and manually checking every single keyword.

Would it be possible to have a token {KeywordsAll} or some such thing that would return every keyword the photo is marked with. With this, I would place that token in the &quot;Extra tags to register with image&quot; and thus all my keywords would export (since I don&#039;t have any keywords that I don&#039;t export). I realize the best solution would be for me to go through and edit each keyword ... slightly daunting. A nice solution would be if there was a utility for mass selection of all Lightroom keywords for organization, management and changing those kind of details.

&lt;span class=&#039;jfriedl&#039;&gt;I can add {KeywordsAll} easily enough, so it&#039;ll be in the next versions of each plugin as it goes out, but it won&#039;t help your situation because the whole list would be treated as one keyword (the result of the tokens are not subjected to another round of parsing). Tim Armes has a plugin called &lt;a href=&#039;http://www.photographers-toolbox.com/products/keywordmaster.php&#039; rel=&quot;nofollow&quot;&gt;Keyword Master&lt;/a&gt;, so I&#039;ve suggested to him that it offer some way to help in this situation.... &#8212;Jeffrey&lt;/span&gt;</description>
		<content:encoded><![CDATA[<p>There is the token {Keywords} that returns all keywords marked for export. I have the problem that somehow a scattering of keywords in lightroom have been created or changed such that they are checked as do not export. Given the 1000&#8242;s of keywords, I&#8217;m not feeling up to going through and manually checking every single keyword.</p>
<p>Would it be possible to have a token {KeywordsAll} or some such thing that would return every keyword the photo is marked with. With this, I would place that token in the &#8220;Extra tags to register with image&#8221; and thus all my keywords would export (since I don&#8217;t have any keywords that I don&#8217;t export). I realize the best solution would be for me to go through and edit each keyword &#8230; slightly daunting. A nice solution would be if there was a utility for mass selection of all Lightroom keywords for organization, management and changing those kind of details.</p>
<p><span class='jfriedl'>I can add {KeywordsAll} easily enough, so it&#8217;ll be in the next versions of each plugin as it goes out, but it won&#8217;t help your situation because the whole list would be treated as one keyword (the result of the tokens are not subjected to another round of parsing). Tim Armes has a plugin called <a href='http://www.photographers-toolbox.com/products/keywordmaster.php' rel="nofollow">Keyword Master</a>, so I&#8217;ve suggested to him that it offer some way to help in this situation&#8230;. &mdash;Jeffrey</span></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Heiko</title>
		<link>http://regex.info/blog/lightroom-goodies/template#comment-39125</link>
		<dc:creator>Heiko</dc:creator>
		<pubDate>Wed, 26 May 2010 09:47:18 +0000</pubDate>
		<guid isPermaLink="false">http://regex.info/blog/photo-tech/template/#comment-39125</guid>
		<description>Gallery Destination Question:
On Zenfolio, I have a group called &quot;Recital 2008 Saturday&quot; which contains galleries of the structure &quot;D 8 The Potter waltz&quot; and &quot;D 9 Steam heat&quot; and so on. I have put the gallery names into the metadata filed Caption in Lightroom.
So, my hope was that I can upload using an Automatic-Destination Preset, like this one:
&quot;Recital 2008, Saturday &gt;&quot;{Caption}
but it tells me: &quot;?:14813: table index is nil&quot;
I also tried:
Recital 2008, Saturday &gt; {Caption}
&quot;Recital 2008, Saturday&quot; &gt; {Caption}
which always results in the same error.
Can you give me the correct string? Also, will the use of the template create galleries if they do not exist yet?
Thanks a ton!
CU
Heiko

&lt;span class=&#039;jfriedl&#039;&gt;What you are trying to do should work... I&#039;ll take a look at it, but unfortunately even if I fix it locally, I&#039;ll not be able to push out a new version for a couple of weeks. I&#039;ll let you know how it goes... &#8212;Jeffrey&lt;/span&gt;</description>
		<content:encoded><![CDATA[<p>Gallery Destination Question:<br />
On Zenfolio, I have a group called &#8220;Recital 2008 Saturday&#8221; which contains galleries of the structure &#8220;D 8 The Potter waltz&#8221; and &#8220;D 9 Steam heat&#8221; and so on. I have put the gallery names into the metadata filed Caption in Lightroom.<br />
So, my hope was that I can upload using an Automatic-Destination Preset, like this one:<br />
&#8220;Recital 2008, Saturday &gt;&#8221;{Caption}<br />
but it tells me: &#8220;?:14813: table index is nil&#8221;<br />
I also tried:<br />
Recital 2008, Saturday &gt; {Caption}<br />
&#8220;Recital 2008, Saturday&#8221; &gt; {Caption}<br />
which always results in the same error.<br />
Can you give me the correct string? Also, will the use of the template create galleries if they do not exist yet?<br />
Thanks a ton!<br />
CU<br />
Heiko</p>
<p><span class='jfriedl'>What you are trying to do should work&#8230; I&#8217;ll take a look at it, but unfortunately even if I fix it locally, I&#8217;ll not be able to push out a new version for a couple of weeks. I&#8217;ll let you know how it goes&#8230; &mdash;Jeffrey</span></p>
]]></content:encoded>
	</item>
</channel>
</rss>

