<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css" href="/stylesheets/rss.css"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
  <channel>
    <title>Wojno comments</title>
    <link>http://christopher.wojno.com</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description>Exploration through Code</description>
    <item>
      <title>"What is mod_authz_svn_db?" by Christopher Richard Wojno</title>
      <description>&lt;p&gt;VERY under development. And the development is mostly stagnant. Not to say I&amp;#8217;ve given up on it, but that it is certainly not ready for production.&lt;/p&gt;


	&lt;p&gt;If I recall correctly, I had to jump through hoops to get the apache2 libraries to work correctly. On FreeBSD, there&amp;#8217;s a separate package for the core apache stuff. You don&amp;#8217;t sound like an idiot, so I&amp;#8217;m sure you&amp;#8217;ve already made sure you have the development libs. If that&amp;#8217;s the case, then I&amp;#8217;m not sure what&amp;#8217;s wrong given your description. Make sure you have the following in your include directories SOMEWHERE:&lt;/p&gt;


&lt;pre&gt;
#include &amp;lt;httpd.h&amp;gt;
#include &amp;lt;http_config.h&amp;gt;
#include &amp;lt;http_core.h&amp;gt;
#include &amp;lt;http_request.h&amp;gt;
#include &amp;lt;http_protocol.h&amp;gt;
#include &amp;lt;http_log.h&amp;gt;
#include &amp;lt;ap_config.h&amp;gt;
#include &amp;lt;apr_uri.h&amp;gt;
#include &amp;lt;mod_dav.h&amp;gt;
&lt;/pre&gt;

	&lt;p&gt;I apologize for the delayed approval and response. I get so busy I forget I have a blog at times.&lt;/p&gt;</description>
      <pubDate>Wed, 13 Aug 2008 20:41:22 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:33db2883-1ca0-48ae-ae49-1e5786ed7593</guid>
      <link>http://christopher.wojno.com/articles/2007/08/19/what-is-mod_authz_svn_db#comment-57</link>
    </item>
    <item>
      <title>"What is mod_authz_svn_db?" by quadir</title>
      <description>&lt;p&gt;Ah the module I found on tigris that brought me here.  Thank you very much for this work, it looks very promising just based on what I&amp;#8217;ve looked at so far.&lt;/p&gt;


	&lt;p&gt;As my posting to svn-users indicates, I&amp;#8217;m really interested in this.
&lt;a href="http://svn.haxx.se/users/archive-2008-05/0669.shtml" rel="nofollow"&gt;http://svn.haxx.se/users/archive-2008-05/0669.shtml&lt;/a&gt;&lt;/p&gt;


	&lt;p&gt;Compiling dbd mysql proved a bit too complicated for a newcomer like myself, but thankfully Ubuntu and CentOS both come with compiled mod_authz_mysql modules, which is what I&amp;#8217;m using to replace AuthUserFile&amp;#8212;I really like that I can point it at an existing database of users and passwords (from say, a forum).&lt;/p&gt;


	&lt;p&gt;Is this module still under development?  I checked it out of subversion and am attempting to compile on Ubuntu 8.04 with gcc 4.2.3 and the appropriate libraries installed witht he right paths but it fails in the apache2 core, apr and request_rec problems.&lt;/p&gt;</description>
      <pubDate>Tue, 15 Jul 2008 07:20:35 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:b864358b-dbf7-450c-8745-faa7409d7d4a</guid>
      <link>http://christopher.wojno.com/articles/2007/08/19/what-is-mod_authz_svn_db#comment-55</link>
    </item>
    <item>
      <title>"A DNS Server to Call My Own" by quadir</title>
      <description>&lt;p&gt;I&amp;#8217;ve also gotten a lot of joy out of running my own DNS server.  My favorite aspect of it is that I get to choose when it updates with the world.&lt;/p&gt;


	&lt;p&gt;That means if I change the ip for a domain name, or a website I frequent changes ips on their dns servers, I can get the changes immediately instead of possibly waiting 1-2 days for my ISP to wake up and stop ignoring the TTLs.&lt;/p&gt;


	&lt;p&gt;It&amp;#8217;s not a big thing, but often it&amp;#8217;s the little things that count.&lt;/p&gt;</description>
      <pubDate>Tue, 15 Jul 2008 07:06:36 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:061f948b-1ca7-40b5-8111-7e8df90e596c</guid>
      <link>http://christopher.wojno.com/articles/2007/12/30/a-dns-server-to-call-my-own#comment-54</link>
    </item>
    <item>
      <title>"Rendering Forms in a Paragraph" by quadir</title>
      <description>&lt;p&gt;I&amp;#8217;m not seeing the correlation between your example and your conclusion.&lt;/p&gt;


If you want your example to render on a single line, but have discovered that you can&amp;#8217;t put a &amp;lt;form&amp;gt; inside a &amp;lt;p&amp;gt;, the proper solution is to move the &amp;lt;form&amp;gt; outside the &amp;lt;p&amp;gt;:
&lt;pre&gt;&lt;code&gt;
&amp;lt;form action="secret_search" method="post"&amp;gt;
&amp;lt;p&amp;gt;If you're looking for other confidential
search parameters, click
&amp;lt;input type="hidden" value="my secret search parameters"/&amp;gt;
&amp;lt;input type="submit" value="here"/&amp;gt;
!&amp;lt;/p&amp;gt;
&amp;lt;/form&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

If however you wanted them to appear on seperate lines, then either you need to use deprecated linebreaks as you said,  or a better solution would be to make each line it&amp;#8217;s own paragraph.  You could also use div blocks.
&lt;pre&gt;&lt;code&gt;
&amp;lt;p&amp;gt;If you're looking for other confidential
search parameters, click&amp;lt;/p&amp;gt;
&amp;lt;form action="secret_search" method="post"&amp;gt;
&amp;lt;p&amp;gt;&amp;lt;input type="hidden" value="my secret search parameters"/&amp;gt;
&amp;lt;input type="submit" value="here"/&amp;gt;&amp;lt;/p&amp;gt;
&amp;lt;/form&amp;gt;
&amp;lt;p&amp;gt;!&amp;lt;/p&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;Finally you reference the HTML 4.0 specification (not HTML 4.01) and yet your example is clearly XHTML of some sort.  In either case, I think the &lt;strong&gt;best solution&lt;/strong&gt; would be to implement this &lt;b&gt;formatting using CSS&lt;/b&gt;, where you can redefine the rules for p tags and don&amp;#8217;t need to the specification at all but still retain some logical flow.&lt;/p&gt;</description>
      <pubDate>Tue, 15 Jul 2008 07:01:42 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:10646cd2-a9df-4358-82c3-c26532419b72</guid>
      <link>http://christopher.wojno.com/articles/2008/07/14/rendering-forms-in-a-paragraph#comment-53</link>
    </item>
    <item>
      <title>"Rendering Forms in a Paragraph" by Hodinky</title>
      <description>&lt;p&gt;And what about CSS? Isn&amp;#8217;t it any CSS hack for this situation?&lt;/p&gt;</description>
      <pubDate>Tue, 15 Jul 2008 04:02:49 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:59f39221-2353-476b-a49b-2d6ae01132e2</guid>
      <link>http://christopher.wojno.com/articles/2008/07/14/rendering-forms-in-a-paragraph#comment-52</link>
    </item>
    <item>
      <title>"Rails Unit Testing Fixtures: Scenarios" by Hodinky</title>
      <description>&lt;p&gt;I used to use normal fixtures, and I&amp;#8217;m using now your code, and it works prefectly. Thank you Chris!&lt;/p&gt;</description>
      <pubDate>Tue, 15 Jul 2008 01:53:56 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:b4bc18f8-1e14-437b-a86d-e0e3833302c7</guid>
      <link>http://christopher.wojno.com/articles/2008/05/15/rails-unit-testing-fixtures-scenarios#comment-51</link>
    </item>
    <item>
      <title>"Thunderbird Copy to Sent IMAP Connection Error" by Webmaster Tips</title>
      <description>&lt;p&gt;Thanks for posting that.  I was having trouble finding the settings to reduce my IMAP connections.  My hosting company was blocking me.&lt;/p&gt;</description>
      <pubDate>Sat, 22 Mar 2008 22:15:18 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:e8a313d8-547a-4daf-a4cd-072547e83c73</guid>
      <link>http://christopher.wojno.com/articles/2007/12/20/thunderbird-copy-to-sent-imap-connection-error#comment-50</link>
    </item>
    <item>
      <title>"Microsoft and Spam" by Christopher Wojno</title>
      <description>&lt;p&gt;Is that an excuse I hear? /me wink&lt;/p&gt;</description>
      <pubDate>Tue, 19 Feb 2008 19:51:06 -0800</pubDate>
      <guid isPermaLink="false">urn:uuid:81b7eba4-deff-4b5b-a2ed-c4c33cd1794d</guid>
      <link>http://christopher.wojno.com/articles/2008/01/12/microsoft-and-spam#comment-49</link>
    </item>
    <item>
      <title>"Voices of the Lifestream" by Christopher Wojno</title>
      <description>&lt;p&gt;Ah, quite right. I had forgotten about Chrono-Trigger. Sadly, I&amp;#8217;ve never played that one.&lt;/p&gt;</description>
      <pubDate>Tue, 19 Feb 2008 19:48:35 -0800</pubDate>
      <guid isPermaLink="false">urn:uuid:8605cdae-cee6-4596-a3eb-e2d98a23549b</guid>
      <link>http://christopher.wojno.com/articles/2007/12/27/voices-of-the-lifestream#comment-48</link>
    </item>
    <item>
      <title>"Voices of the Lifestream" by Larry "Liontamer" Oji</title>
      <description>&lt;p&gt;Thanks a lot for the kind words on Voices of the Lifestream and OC ReMix in general, Chris. You can always grab most of our music from our torrents area (&lt;a href="http://bt.ocremix.org" rel="nofollow"&gt;http://bt.ocremix.org&lt;/a&gt;), which has over 100 hours worth of free ReMixes.&lt;/p&gt;


	&lt;p&gt;Even if you haven&amp;#8217;t heard of the game or soundtrack of a particlar ReMix, if you check those out anyway you&amp;#8217;ll really find some more great stuff.&lt;/p&gt;


	&lt;p&gt;We&amp;#8217;ve actually got more Chrono Trigger arrangements than Final Fantasy VII arrangements, but in time that could change!&lt;/p&gt;


	&lt;p&gt;Larry &#8220;Liontamer&#8221; Oji
Head Submissions Evaluator, OverClocked ReMix
Creator, VG Frequency
&lt;a href="http://www.ocremix.org" rel="nofollow"&gt;http://www.ocremix.org&lt;/a&gt;
&lt;a href="http://www.vgfrequency.com" rel="nofollow"&gt;http://www.vgfrequency.com&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 02 Feb 2008 02:37:16 -0800</pubDate>
      <guid isPermaLink="false">urn:uuid:ad97a7d8-a62f-45e3-abaf-aad05bdafe95</guid>
      <link>http://christopher.wojno.com/articles/2007/12/27/voices-of-the-lifestream#comment-47</link>
    </item>
  </channel>
</rss>
