<?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: Toolbar Functions 1.2.0</title>
	<atom:link href="http://chadsmiley.com/chadsmiley/2006/07/toolbar-functions-1-2-0/feed/" rel="self" type="application/rss+xml" />
	<link>http://chadsmiley.com/chadsmiley/2006/07/toolbar-functions-1-2-0/</link>
	<description>Things about family, life, coding, and more</description>
	<lastBuildDate>Wed, 04 Apr 2012 15:06:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Chad Schelfhout</title>
		<link>http://chadsmiley.com/chadsmiley/2006/07/toolbar-functions-1-2-0/comment-page-/#comment-2574</link>
		<dc:creator>Chad Schelfhout</dc:creator>
		<pubDate>Fri, 01 Dec 2006 01:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://chadsmiley.com.previewdns.com/chadsmiley/?p=1418#comment-2574</guid>
		<description>Thanks Johan.  This is great.</description>
		<content:encoded><![CDATA[<p>Thanks Johan.  This is great.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johan Känngård</title>
		<link>http://chadsmiley.com/chadsmiley/2006/07/toolbar-functions-1-2-0/comment-page-/#comment-2577</link>
		<dc:creator>Johan Känngård</dc:creator>
		<pubDate>Fri, 01 Dec 2006 00:31:00 +0000</pubDate>
		<guid isPermaLink="false">http://chadsmiley.com.previewdns.com/chadsmiley/?p=1418#comment-2577</guid>
		<description>And here is an improved version, that handles non-standard ports and SSL:&lt;br /&gt;host:=@DbLookup(&quot;&quot;:&quot;&quot;; @Subset(@DbName; 1) : &quot;names.nsf&quot;; &quot;($Servers)&quot;; @Subset(@DbName; 1); &quot;SMTPFullHostDomain&quot;);&lt;br /&gt;normalMode:=@DbLookup(&quot;&quot;:&quot;&quot;; @Subset(@DbName; 1) : &quot;names.nsf&quot;; &quot;($Servers)&quot;; @Subset(@DbName; 1); &quot;HTTP_NormalMode&quot;);&lt;br /&gt;sslMode:=@DbLookup(&quot;&quot;:&quot;&quot;; @Subset(@DbName; 1) : &quot;names.nsf&quot;; &quot;($Servers)&quot;; @Subset(@DbName; 1); &quot;HTTP_SSLMode&quot;);&lt;br /&gt;port:=@DbLookup(&quot;&quot;:&quot;&quot;; @Subset(@DbName; 1) : &quot;names.nsf&quot;; &quot;($Servers)&quot;; @Subset(@DbName; 1); &quot;HTTP_Port&quot;);&lt;br /&gt;sslPort:=@DbLookup(&quot;&quot;:&quot;&quot;; @Subset(@DbName; 1) : &quot;names.nsf&quot;; &quot;($Servers)&quot;; @Subset(@DbName; 1); &quot;HTTP_SSLPort&quot;);&lt;br /&gt;&lt;br /&gt;prefix:=@If(&lt;br /&gt; normalMode = &quot;1&quot; &#124; normalMode = &quot;2&quot;; &quot;http&quot;;&lt;br /&gt; &quot;https&quot;&lt;br /&gt;);&lt;br /&gt;&lt;br /&gt;portSuffix:=@If(&lt;br /&gt; prefix = &quot;http&quot; &amp; port = 80; &quot;&quot;;&lt;br /&gt; prefix = &quot;https&quot; &amp; sslPort = &quot;443&quot;; &quot;&quot;;&lt;br /&gt; prefix = &quot;http&quot;; &quot;:&quot; + @Text(port);&lt;br /&gt; prefix = &quot;https&quot;; &quot;:&quot; + @Text(sslPort);&lt;br /&gt; &quot;&quot;&lt;br /&gt;);&lt;br /&gt;&lt;br /&gt;@URLOpen(prefix + &quot;://&quot; + host + portSuffix + &quot;/&quot; + @WebDbName + &quot;/0/&quot; + @Text(@DocumentUniqueID) + &quot;?OpenDocument&quot;)</description>
		<content:encoded><![CDATA[<p>And here is an improved version, that handles non-standard ports and SSL:<br />host:=@DbLookup(&#8220;&#8221;:&#8221;"; @Subset(@DbName; 1) : &#8220;names.nsf&#8221;; &#8220;($Servers)&#8221;; @Subset(@DbName; 1); &#8220;SMTPFullHostDomain&#8221;);<br />normalMode:=@DbLookup(&#8220;&#8221;:&#8221;"; @Subset(@DbName; 1) : &#8220;names.nsf&#8221;; &#8220;($Servers)&#8221;; @Subset(@DbName; 1); &#8220;HTTP_NormalMode&#8221;);<br />sslMode:=@DbLookup(&#8220;&#8221;:&#8221;"; @Subset(@DbName; 1) : &#8220;names.nsf&#8221;; &#8220;($Servers)&#8221;; @Subset(@DbName; 1); &#8220;HTTP_SSLMode&#8221;);<br />port:=@DbLookup(&#8220;&#8221;:&#8221;"; @Subset(@DbName; 1) : &#8220;names.nsf&#8221;; &#8220;($Servers)&#8221;; @Subset(@DbName; 1); &#8220;HTTP_Port&#8221;);<br />sslPort:=@DbLookup(&#8220;&#8221;:&#8221;"; @Subset(@DbName; 1) : &#8220;names.nsf&#8221;; &#8220;($Servers)&#8221;; @Subset(@DbName; 1); &#8220;HTTP_SSLPort&#8221;);</p>
<p>prefix:=@If(<br /> normalMode = &#8220;1&#8243; | normalMode = &#8220;2&#8243;; &#8220;http&#8221;;<br /> &#8220;https&#8221;<br />);</p>
<p>portSuffix:=@If(<br /> prefix = &#8220;http&#8221; &amp; port = 80; &#8220;&#8221;;<br /> prefix = &#8220;https&#8221; &amp; sslPort = &#8220;443&#8243;; &#8220;&#8221;;<br /> prefix = &#8220;http&#8221;; &#8220;:&#8221; + @Text(port);<br /> prefix = &#8220;https&#8221;; &#8220;:&#8221; + @Text(sslPort);<br /> &#8220;&#8221;<br />);</p>
<p>@URLOpen(prefix + &#8220;://&#8221; + host + portSuffix + &#8220;/&#8221; + @WebDbName + &#8220;/0/&#8221; + @Text(@DocumentUniqueID) + &#8220;?OpenDocument&#8221;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johan Känngård</title>
		<link>http://chadsmiley.com/chadsmiley/2006/07/toolbar-functions-1-2-0/comment-page-/#comment-2576</link>
		<dc:creator>Johan Känngård</dc:creator>
		<pubDate>Thu, 30 Nov 2006 23:50:00 +0000</pubDate>
		<guid isPermaLink="false">http://chadsmiley.com.previewdns.com/chadsmiley/?p=1418#comment-2576</guid>
		<description>Here is another request! A button to open the current document in a web browser. Here is a working contribution:&lt;br /&gt;lookup:=@DbLookup(&quot;&quot;:&quot;&quot;; @SubSet(@DbName; 1) : &quot;names.nsf&quot;; &quot;($Servers)&quot;; @SubSet(@DbName; 1); &quot;SMTPFullHostDomain&quot;);&lt;br /&gt;@If(&lt;br /&gt;	@IsError(lookup); @Prompt([OK]; &quot;Invalid host name&quot;; &quot;Could not get host name from server document&quot;);&lt;br /&gt;	@URLOpen(&quot;{ &lt;a href=&quot;http://&quot;&quot; rel=&quot;nofollow&quot; target =&quot;blank&quot;&gt;Link&lt;/a&gt; } + lookup + &quot;/&quot; + @WebDbName + &quot;/0/&quot; + @Text(@DocumentUniqueID) + &quot;?OpenDocument&quot;)&lt;br /&gt;)</description>
		<content:encoded><![CDATA[<p>Here is another request! A button to open the current document in a web browser. Here is a working contribution:<br />lookup:=@DbLookup(&#8220;&#8221;:&#8221;"; @SubSet(@DbName; 1) : &#8220;names.nsf&#8221;; &#8220;($Servers)&#8221;; @SubSet(@DbName; 1); &#8220;SMTPFullHostDomain&#8221;);<br />@If(<br />	@IsError(lookup); @Prompt([OK]; &#8220;Invalid host name&#8221;; &#8220;Could not get host name from server document&#8221;);<br />	@URLOpen(&#8220;{ <a href="http://"" rel="nofollow" target ="blank">Link</a> } + lookup + &#8220;/&#8221; + @WebDbName + &#8220;/0/&#8221; + @Text(@DocumentUniqueID) + &#8220;?OpenDocument&#8221;)<br />)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chad Schelfhout</title>
		<link>http://chadsmiley.com/chadsmiley/2006/07/toolbar-functions-1-2-0/comment-page-/#comment-2573</link>
		<dc:creator>Chad Schelfhout</dc:creator>
		<pubDate>Tue, 14 Nov 2006 23:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://chadsmiley.com.previewdns.com/chadsmiley/?p=1418#comment-2573</guid>
		<description>I love easy requests, done.</description>
		<content:encoded><![CDATA[<p>I love easy requests, done.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johan Känngård</title>
		<link>http://chadsmiley.com/chadsmiley/2006/07/toolbar-functions-1-2-0/comment-page-/#comment-2575</link>
		<dc:creator>Johan Känngård</dc:creator>
		<pubDate>Tue, 14 Nov 2006 01:16:00 +0000</pubDate>
		<guid isPermaLink="false">http://chadsmiley.com.previewdns.com/chadsmiley/?p=1418#comment-2575</guid>
		<description>Tip: put the version number in your first REM statements in the code, so I know what version I have &lt;img src=&quot;http://www.chadsmiley.com/chadsmiley/home.nsf/emoticons/DLYH-5MZVLY/$FILE/smile.gif&quot;&gt;</description>
		<content:encoded><![CDATA[<p>Tip: put the version number in your first REM statements in the code, so I know what version I have <img src="http://www.chadsmiley.com/chadsmiley/home.nsf/emoticons/DLYH-5MZVLY/$FILE/smile.gif"/></p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced

Served from: www.chadsmiley.com @ 2012-05-21 10:41:34 -->
