<?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 for Extensible Development</title>
	<atom:link href="http://blog.itwarlocks.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.itwarlocks.com</link>
	<description>Profession blog about Software Engineering, Web, *nix, Processes, Tools and more.</description>
	<lastBuildDate>Thu, 25 Feb 2010 10:47:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Accessing WebDAV in Microsoft Word Visual Basic by Jeffrey Ridout</title>
		<link>http://blog.itwarlocks.com/2009/04/28/accessing-webdav-in-microsoft-word-visual-basic/comment-page-1/#comment-80</link>
		<dc:creator>Jeffrey Ridout</dc:creator>
		<pubDate>Thu, 25 Feb 2010 10:47:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.itwarlocks.com/?p=45#comment-80</guid>
		<description>&lt;a href=&quot;#comment-77&quot; rel=&quot;nofollow&quot;&gt;@Chad &lt;/a&gt; I’ve corrected a few typos and added an example document. I hope that helps.
As an added bonus, I’ve added a URLDecode function that will translate the title from URL. No more %20. (Supports åäâöéèêëóòô…)</description>
		<content:encoded><![CDATA[<p><a href="#comment-77" rel="nofollow">@Chad </a> I’ve corrected a few typos and added an example document. I hope that helps.<br />
As an added bonus, I’ve added a URLDecode function that will translate the title from URL. No more %20. (Supports åäâöéèêëóòô…)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Accessing WebDAV in Microsoft Word Visual Basic by Chad</title>
		<link>http://blog.itwarlocks.com/2009/04/28/accessing-webdav-in-microsoft-word-visual-basic/comment-page-1/#comment-77</link>
		<dc:creator>Chad</dc:creator>
		<pubDate>Tue, 23 Feb 2010 17:51:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.itwarlocks.com/?p=45#comment-77</guid>
		<description>I was interested to see how your code worked and how I might be able to leverage it for a project I&#039;m working on.  I copied Listing 3 above and dropped it into a module then created the UserForm shown.  However whenever I try to run the function it gives me that nasty little Object Expected error on the dlgOpenFileDAV.ListDocuments.Clear line.  Thinking perhaps that the form wasn&#039;t loaded I added that in above to no avail.  Whenever I try to  launch the UserForm it gives me the same error but on the line that reads davTest.isCancelled = True.  I can&#039;t seem to locate any definition for the davTest object.  What am I missing?</description>
		<content:encoded><![CDATA[<p>I was interested to see how your code worked and how I might be able to leverage it for a project I&#8217;m working on.  I copied Listing 3 above and dropped it into a module then created the UserForm shown.  However whenever I try to run the function it gives me that nasty little Object Expected error on the dlgOpenFileDAV.ListDocuments.Clear line.  Thinking perhaps that the form wasn&#8217;t loaded I added that in above to no avail.  Whenever I try to  launch the UserForm it gives me the same error but on the line that reads davTest.isCancelled = True.  I can&#8217;t seem to locate any definition for the davTest object.  What am I missing?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Accessing WebDAV in Microsoft Word Visual Basic by Jeffrey Ridout</title>
		<link>http://blog.itwarlocks.com/2009/04/28/accessing-webdav-in-microsoft-word-visual-basic/comment-page-1/#comment-66</link>
		<dc:creator>Jeffrey Ridout</dc:creator>
		<pubDate>Tue, 19 Jan 2010 14:46:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.itwarlocks.com/?p=45#comment-66</guid>
		<description>&lt;a href=&quot;#comment-62&quot; rel=&quot;nofollow&quot;&gt;@Steve&lt;/a&gt; 
I had to do a bit of testing and it might seem a bit odd, but here&#039;s how to create directories:

1. Open the parent directory as done in Listing 1.
2. Grab the RecordSet for the children, as in Listing 1, line 30.

Then create a new Record:
&lt;pre&gt;[code lang=&quot;vb&quot;]
If (davFiles.Supports(adAddNew)) Then
    Dim newDirFields(1) As Variant
    Dim newDirValues(1) As Variant
    newDirFields(0) = &quot;RESOURCE_PARSENAME&quot;
    newDirValues(0) = &quot;newdirname&quot;
    newDirFields(1) = &quot;RESOURCE_ISCOLLECTION&quot;
    newDirValues(1) = True
    
    davFiles.AddNew newDirFields, newDirValues
End If
[/code]&lt;/pre&gt;

Note that using AddNew moves the RecordSet to the end, thus EOF will be &#039;True&#039;.</description>
		<content:encoded><![CDATA[<p><a href="#comment-62" rel="nofollow">@Steve</a><br />
I had to do a bit of testing and it might seem a bit odd, but here&#8217;s how to create directories:</p>
<p>1. Open the parent directory as done in Listing 1.<br />
2. Grab the RecordSet for the children, as in Listing 1, line 30.</p>
<p>Then create a new Record:</p>
<pre class="brush: vb">
If (davFiles.Supports(adAddNew)) Then
    Dim newDirFields(1) As Variant
    Dim newDirValues(1) As Variant
    newDirFields(0) = &quot;RESOURCE_PARSENAME&quot;
    newDirValues(0) = &quot;newdirname&quot;
    newDirFields(1) = &quot;RESOURCE_ISCOLLECTION&quot;
    newDirValues(1) = True

    davFiles.AddNew newDirFields, newDirValues
End If
</pre>
<p>Note that using AddNew moves the RecordSet to the end, thus EOF will be &#8216;True&#8217;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Accessing WebDAV in Microsoft Word Visual Basic by Steve</title>
		<link>http://blog.itwarlocks.com/2009/04/28/accessing-webdav-in-microsoft-word-visual-basic/comment-page-1/#comment-62</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Mon, 11 Jan 2010 21:20:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.itwarlocks.com/?p=45#comment-62</guid>
		<description>This is excellent.  I have two questions:

1. How would one create a new directory on the WebDAV server using this interface?
2. How would one copy a file without using Documents.Open and ActiveDocument.SaveAs?

What I&#039;m trying to do is create code that will copy a WebDAV folder and all of its files to another WebDAV folder.  Using your code above, I can locate the folder and its contents, but I&#039;m lost as to how to create a new folder and copy the contents of the newly created folder.</description>
		<content:encoded><![CDATA[<p>This is excellent.  I have two questions:</p>
<p>1. How would one create a new directory on the WebDAV server using this interface?<br />
2. How would one copy a file without using Documents.Open and ActiveDocument.SaveAs?</p>
<p>What I&#8217;m trying to do is create code that will copy a WebDAV folder and all of its files to another WebDAV folder.  Using your code above, I can locate the folder and its contents, but I&#8217;m lost as to how to create a new folder and copy the contents of the newly created folder.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP based authentication for mod_dav by Jeroen Schellekens</title>
		<link>http://blog.itwarlocks.com/2009/04/27/php-based-authentication-for-mod_dav/comment-page-1/#comment-51</link>
		<dc:creator>Jeroen Schellekens</dc:creator>
		<pubDate>Tue, 22 Dec 2009 00:36:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.itwarlocks.com/?p=43#comment-51</guid>
		<description>Thanks for this great article, combined with the related article about  &quot;Accessing WebDAV in Microsoft Word Visual Basic&quot; this helped me a lot since there&#039;s not a lot of good documentation about this topic.

Greetings from The Netherlands :)</description>
		<content:encoded><![CDATA[<p>Thanks for this great article, combined with the related article about  &#8220;Accessing WebDAV in Microsoft Word Visual Basic&#8221; this helped me a lot since there&#8217;s not a lot of good documentation about this topic.</p>
<p>Greetings from The Netherlands <img src='http://blog.itwarlocks.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTTPS Virtual Hosts on Ubuntu 8.04 LTS Server by olli</title>
		<link>http://blog.itwarlocks.com/2009/06/18/https-virtual-hosts-on-ubuntu-8-04-lts-server/comment-page-1/#comment-29</link>
		<dc:creator>olli</dc:creator>
		<pubDate>Fri, 11 Sep 2009 08:19:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.itwarlocks.com/?p=167#comment-29</guid>
		<description>Hi, 

I have had the same error as al.

I solved it with the &quot;--with-libgnutls-prefix&quot;
but I also had to install pkg-config:

sudo apt-get install pkg-config</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>I have had the same error as al.</p>
<p>I solved it with the &#8220;&#8211;with-libgnutls-prefix&#8221;<br />
but I also had to install pkg-config:</p>
<p>sudo apt-get install pkg-config</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Open Source Enterprise by Jeffrey Ridout</title>
		<link>http://blog.itwarlocks.com/2009/07/08/open-source-enterprise/comment-page-1/#comment-11</link>
		<dc:creator>Jeffrey Ridout</dc:creator>
		<pubDate>Sat, 11 Jul 2009 08:47:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.itwarlocks.com/?p=169#comment-11</guid>
		<description>&lt;a href=&quot;#comment-10&quot; rel=&quot;nofollow&quot;&gt;@fernando trasviña&lt;/a&gt; 
I would if OpenBravo didn&#039;t already supply that functionality. Sugar CRM also only seems to integrate into MS Outlook, so that goes against the OSS office principle.</description>
		<content:encoded><![CDATA[<p><a href="#comment-10" rel="nofollow">@fernando trasviña</a><br />
I would if OpenBravo didn&#8217;t already supply that functionality. Sugar CRM also only seems to integrate into MS Outlook, so that goes against the OSS office principle.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Open Source Enterprise by fernando trasviña</title>
		<link>http://blog.itwarlocks.com/2009/07/08/open-source-enterprise/comment-page-1/#comment-10</link>
		<dc:creator>fernando trasviña</dc:creator>
		<pubDate>Thu, 09 Jul 2009 17:36:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.itwarlocks.com/?p=169#comment-10</guid>
		<description>you should include sugar crm :) to help with customer relationships</description>
		<content:encoded><![CDATA[<p>you should include sugar crm <img src='http://blog.itwarlocks.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  to help with customer relationships</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTTPS Virtual Hosts on Ubuntu 8.04 LTS Server by Jeffrey Ridout</title>
		<link>http://blog.itwarlocks.com/2009/06/18/https-virtual-hosts-on-ubuntu-8-04-lts-server/comment-page-1/#comment-9</link>
		<dc:creator>Jeffrey Ridout</dc:creator>
		<pubDate>Sun, 28 Jun 2009 21:26:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.itwarlocks.com/?p=167#comment-9</guid>
		<description>@al Ok, seems the gnutls went wrong or ldconfig is out of sync.
What does this show:
&lt;code&gt;% ldconfig -p &#124; grep &quot;libgnutls&quot;&lt;/code&gt;

You can also try running mod_gnutls&#039; configure like this:
&lt;code&gt;% ./configure --prefix=/usr --with-apxs=/usr/bin/apxs2 --with-libgnutls-prefix=/usr&lt;/code&gt;
But if I remember correct, it ignores the &quot;&lt;code&gt;--with-libgnutls-prefix&lt;/code&gt;&quot; although it&#039;s mentioned in the &quot;&lt;code&gt;./configure --help&lt;/code&gt;&quot;...</description>
		<content:encoded><![CDATA[<p>@al Ok, seems the gnutls went wrong or ldconfig is out of sync.<br />
What does this show:<br />
<code>% ldconfig -p | grep "libgnutls"</code></p>
<p>You can also try running mod_gnutls&#8217; configure like this:<br />
<code>% ./configure --prefix=/usr --with-apxs=/usr/bin/apxs2 --with-libgnutls-prefix=/usr</code><br />
But if I remember correct, it ignores the &#8220;<code>--with-libgnutls-prefix</code>&#8221; although it&#8217;s mentioned in the &#8220;<code>./configure --help</code>&#8220;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTTPS Virtual Hosts on Ubuntu 8.04 LTS Server by al</title>
		<link>http://blog.itwarlocks.com/2009/06/18/https-virtual-hosts-on-ubuntu-8-04-lts-server/comment-page-1/#comment-8</link>
		<dc:creator>al</dc:creator>
		<pubDate>Fri, 26 Jun 2009 23:13:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.itwarlocks.com/?p=167#comment-8</guid>
		<description>I must admit, I tried to closely follow the above steps, and the listing blocks for libgcrypt-1.4.4 and gnutls-2.8.1 did work. However in the third listing, at the following line:

~/gnutls/mod_gnutls-0.5.5% ./configure --prefix=/usr --with-apxs=/usr/bin/apxs2

produced this error
...configure: error:
libgnutls was not found. You may want to get it from...

i tried to remove the error, but it didn&#039;t work until now</description>
		<content:encoded><![CDATA[<p>I must admit, I tried to closely follow the above steps, and the listing blocks for libgcrypt-1.4.4 and gnutls-2.8.1 did work. However in the third listing, at the following line:</p>
<p>~/gnutls/mod_gnutls-0.5.5% ./configure &#8211;prefix=/usr &#8211;with-apxs=/usr/bin/apxs2</p>
<p>produced this error<br />
&#8230;configure: error:<br />
libgnutls was not found. You may want to get it from&#8230;</p>
<p>i tried to remove the error, but it didn&#8217;t work until now</p>
]]></content:encoded>
	</item>
</channel>
</rss>
