<?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: Manage Parameters</title>
	<atom:link href="http://www.kegebein.net/blog/2009/06/manage-parameters/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kegebein.net/blog/2009/06/manage-parameters/</link>
	<description>Random thoughts about ideas, solutions, everything …</description>
	<lastBuildDate>Sun, 22 Aug 2010 17:51:55 +0200</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Unlimited Timer &#171; Gallimaufry</title>
		<link>http://www.kegebein.net/blog/2009/06/manage-parameters/comment-page-1/#comment-28</link>
		<dc:creator>Unlimited Timer &#171; Gallimaufry</dc:creator>
		<pubDate>Wed, 09 Jun 2010 02:16:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.kegebein.net/blog/?p=140#comment-28</guid>
		<description>[...] from my library. I have described two of them – param and param.get – already in the post Manage Parameters. The third – param.delete – is used to remove a parameter from the parameter [...]</description>
		<content:encoded><![CDATA[<p>[...] from my library. I have described two of them – param and param.get – already in the post Manage Parameters. The third – param.delete – is used to remove a parameter from the parameter [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arnold Kegebein</title>
		<link>http://www.kegebein.net/blog/2009/06/manage-parameters/comment-page-1/#comment-9</link>
		<dc:creator>Arnold Kegebein</dc:creator>
		<pubDate>Wed, 24 Jun 2009 17:18:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.kegebein.net/blog/?p=140#comment-9</guid>
		<description>@Mikhail
Thank you for the links. I knew about them already. And as you can see in my newest entry, I consider you and your blog as an inspiration for my ideas working with parameters.

I was working with an Evaluate/Quote solution myself, but were running in some problems too. But I am using evaluation in other CFs, because it can make life so much easier. :-)

I wonder, what you think about my other functions. I am on vacation right now, using the time to add some content to my blog. Expect more from my Custom Function Vault soon.</description>
		<content:encoded><![CDATA[<p>@Mikhail<br />
Thank you for the links. I knew about them already. And as you can see in my newest entry, I consider you and your blog as an inspiration for my ideas working with parameters.</p>
<p>I was working with an Evaluate/Quote solution myself, but were running in some problems too. But I am using evaluation in other CFs, because it can make life so much easier. <img src='http://www.kegebein.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>I wonder, what you think about my other functions. I am on vacation right now, using the time to add some content to my blog. Expect more from my Custom Function Vault soon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: More Fun with Parameters &#8211; Gallimaufry</title>
		<link>http://www.kegebein.net/blog/2009/06/manage-parameters/comment-page-1/#comment-8</link>
		<dc:creator>More Fun with Parameters &#8211; Gallimaufry</dc:creator>
		<pubDate>Wed, 24 Jun 2009 17:04:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.kegebein.net/blog/?p=140#comment-8</guid>
		<description>[...] my previous entry I described two customs functions for managing parameters: param and param.get. They encode and [...]</description>
		<content:encoded><![CDATA[<p>[...] my previous entry I described two customs functions for managing parameters: param and param.get. They encode and [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mikhail_Edoshin</title>
		<link>http://www.kegebein.net/blog/2009/06/manage-parameters/comment-page-1/#comment-7</link>
		<dc:creator>Mikhail_Edoshin</dc:creator>
		<pubDate>Wed, 24 Jun 2009 08:31:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.kegebein.net/blog/?p=140#comment-7</guid>
		<description>I ended up with a similar suite of functions (http://edoshin.skeletonkey.com/2006/02/options.html) (I even used circumflex for the same reason :) but I like your variant more, because in the wrapped form it is more readable than mine.

There&#039;s also a similar solution somewhere in SixFriedRice blog (http://sixfriedrice.com/wp/blog/)

By the way, technically there&#039;s more FileMaker-native way to first Quote() a string and then Evaluate() it. E.g. the param wrapper like that would be:

Quote( List( Quote(key), Quote(value) ) )

and then a similar sequence of Evaluate() steps to fetch a value by a key. It looks that this variant can be made type-aware, but when I test this I get weird results. Besides, this variant loses text formatting, while the Substitute-based one does not.</description>
		<content:encoded><![CDATA[<p>I ended up with a similar suite of functions (<a  href="http://edoshin.skeletonkey.com/2006/02/options.html" rel="nofollow">http://edoshin.skeletonkey.com/2006/02/options.html</a>) (I even used circumflex for the same reason <img src='http://www.kegebein.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  but I like your variant more, because in the wrapped form it is more readable than mine.</p>
<p>There&#8217;s also a similar solution somewhere in SixFriedRice blog (<a  href="http://sixfriedrice.com/wp/blog/" rel="nofollow">http://sixfriedrice.com/wp/blog/</a>)</p>
<p>By the way, technically there&#8217;s more FileMaker-native way to first Quote() a string and then Evaluate() it. E.g. the param wrapper like that would be:</p>
<p>Quote( List( Quote(key), Quote(value) ) )</p>
<p>and then a similar sequence of Evaluate() steps to fetch a value by a key. It looks that this variant can be made type-aware, but when I test this I get weird results. Besides, this variant loses text formatting, while the Substitute-based one does not.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
