<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://community.activestate.com" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>ActiveState Community Site - Perl - Comments</title>
 <link>http://community.activestate.com/tags/perl</link>
 <description>Comments for &quot;Perl&quot;</description>
 <language>en</language>
<item>
 <title>What about mod_perl?</title>
 <link>http://community.activestate.com/faq/activeperl-and-apache-cgi#comment-6472</link>
 <description>&lt;p&gt;How does one use Apache/mod_perl on Linux with ActiveState?&lt;/p&gt;
&lt;p&gt;I use a number of applications, such as RT and Bricologe, that utilize mod_perl. Is there a way to configure Apache to utilize ActivePerl instead of the already installed Perl that comes with the distro?&lt;/p&gt;
</description>
 <pubDate>Tue, 16 Sep 2008 00:05:20 +0100</pubDate>
 <dc:creator>The ITsmith</dc:creator>
 <guid isPermaLink="false">comment 6472 at http://community.activestate.com</guid>
</item>
<item>
 <title>Probably windows command</title>
 <link>http://community.activestate.com/faq/perl-redirect-problems-on-windows#comment-6254</link>
 <description>&lt;p&gt;Probably windows command prompt don&#039;t like white space in file names unless you encase them in quotes, but talking to your database via command prompt is not very secure anyway. Can you not get the output from within your script using DBI?&lt;/p&gt;
</description>
 <pubDate>Mon, 18 Aug 2008 12:18:31 +0100</pubDate>
 <dc:creator>San</dc:creator>
 <guid isPermaLink="false">comment 6254 at http://community.activestate.com</guid>
</item>
<item>
 <title>I found that some of the</title>
 <link>http://community.activestate.com/faq/what-is-the-best-version-0#comment-6253</link>
 <description>&lt;p&gt;I found that some of the modules i wanted to use didn&#039;t work well in 64bit so even if you are using 64bit windows I would still recommend using Perl x86 (32bit) for maximum compatability. &lt;/p&gt;
&lt;p&gt;Don&#039;t bother paying for IIS, Apache works very well and it&#039;s free ;)&lt;/p&gt;
</description>
 <pubDate>Mon, 18 Aug 2008 12:07:19 +0100</pubDate>
 <dc:creator>San</dc:creator>
 <guid isPermaLink="false">comment 6253 at http://community.activestate.com</guid>
</item>
<item>
 <title>Just another note on Ruby testing...</title>
 <link>http://community.activestate.com/unit-testing-komodo-4-3#comment-4115</link>
 <description>&lt;p&gt;The Ruby test harness is actually a Test::Unit harness, but given our time&lt;br /&gt;
frame, and that I had only one place to locate it, it made more sense to&lt;br /&gt;
position it within Rake, instead of using it standalone.&lt;/p&gt;
&lt;p&gt;Live I&#039;ve been saying here, more harnesses will be on their way.&lt;/p&gt;
</description>
 <pubDate>Sat, 09 Feb 2008 03:14:15 +0000</pubDate>
 <dc:creator>ericp</dc:creator>
 <guid isPermaLink="false">comment 4115 at http://community.activestate.com</guid>
</item>
<item>
 <title>The Perl &#039;make test&#039; harness analyzes your environment</title>
 <link>http://community.activestate.com/unit-testing-komodo-4-3#comment-4112</link>
 <description>&lt;p&gt;On non-Windows platforms, it assumes make is called &quot;make&quot;.&lt;br /&gt;
If it finds one in the path, it uses it.  Otherwise it&lt;br /&gt;
doesn&#039;t run the tests.&lt;/p&gt;
&lt;p&gt;On Windows, it first checks the path, but if no &quot;nmake.exe&quot;&lt;br /&gt;
is found that way, it looks in the registry for the location&lt;br /&gt;
of a Visual Studio installation, and finds nmake.exe that&lt;br /&gt;
way.&lt;/p&gt;
&lt;p&gt;Note that if you&#039;re testing an XS library, and nmake wants&lt;br /&gt;
to rebuild part of it, you need to have the Visual C++&lt;br /&gt;
environment loaded when Komodo is launched.&lt;/p&gt;
</description>
 <pubDate>Fri, 08 Feb 2008 18:13:00 +0000</pubDate>
 <dc:creator>ericp</dc:creator>
 <guid isPermaLink="false">comment 4112 at http://community.activestate.com</guid>
</item>
<item>
 <title>Perl Test harness</title>
 <link>http://community.activestate.com/unit-testing-komodo-4-3#comment-4107</link>
 <description>&lt;p&gt;I see that the tests for a Perl project will be run by using the &quot;make test&quot; invocation.&lt;/p&gt;
&lt;p&gt;As Windows users normally use the &quot;nmake.exe&quot; utility (which may or may not be in the PATH Windows looks at to find it), could you perhaps consider adding the possibility to choose the &quot;make/nmake&quot; utility to be used?&lt;/p&gt;
&lt;p&gt;CountZero&lt;/p&gt;
</description>
 <pubDate>Fri, 08 Feb 2008 11:06:21 +0000</pubDate>
 <dc:creator>CountZero</dc:creator>
 <guid isPermaLink="false">comment 4107 at http://community.activestate.com</guid>
</item>
<item>
 <title>Ruby testing tools</title>
 <link>http://community.activestate.com/unit-testing-komodo-4-3#comment-4102</link>
 <description>&lt;p&gt;Ruby has a very active set of developers that focus mostly on testing tools, behavior- and test-driven development. I can name some packages: rspec, heckle, flog, zentest, selenium, cerberus and rcov just popped into my head with little thought. I suspect the most commonly used test-driven development tool at the moment is still Test::Unit, but rspec is gaining ground quickly.&lt;/p&gt;
&lt;p&gt;I think rake is the right &quot;first step&quot;. It&#039;s the Ruby equivalent of Java&#039;s &quot;ant&quot; and Python&#039;s &quot;scons&quot;. But that&#039;s really what it is -- a *build* tool, not a testing tool. The ones I listed above are the testing tools.&lt;/p&gt;
&lt;p&gt;Speaking of new features migrating out of the generic command tool, one of the things I find myself wanting is the ability to associate a file type with an editor *other* than Komodo. For example, a lot of my projects have documents edited with the LyX LaTeX editor. Right now, for example, I have a little command box in the project that I can double-click on to open a specific document in LyX. I suppose I could go find the LyX icon and replace the little terminal symbol with it, and no one would be the wiser. :)&lt;/p&gt;
</description>
 <pubDate>Fri, 08 Feb 2008 04:52:15 +0000</pubDate>
 <dc:creator>znmeb</dc:creator>
 <guid isPermaLink="false">comment 4102 at http://community.activestate.com</guid>
</item>
<item>
 <title>Again, we plan to add support for other harnesses</title>
 <link>http://community.activestate.com/unit-testing-komodo-4-3#comment-4098</link>
 <description>&lt;p&gt;That would include Module::Build, but most of the CPAN modules I sampled&lt;br /&gt;
still use MakeMaker.&lt;/p&gt;
&lt;p&gt;The kind of output that Devel::Cover generates doesn&#039;t fit as well&lt;br /&gt;
in the Komodo Test Plan Results window.  However, ActiveState&lt;br /&gt;
does have a nice solution for pulling graphical information out&lt;br /&gt;
of Devel::Cover runs with version 7.1 of the Perl Dev Kit.&lt;/p&gt;
&lt;p&gt;See &lt;a href=&quot;http://www.activestate.com/Products/perl_dev_kit/fix.mhtml&quot; title=&quot;http://www.activestate.com/Products/perl_dev_kit/fix.mhtml&quot;&gt;http://www.activestate.com/Products/perl_dev_kit/fix.mhtml&lt;/a&gt;&lt;br /&gt;
for more information.&lt;/p&gt;
</description>
 <pubDate>Thu, 07 Feb 2008 22:43:18 +0000</pubDate>
 <dc:creator>ericp</dc:creator>
 <guid isPermaLink="false">comment 4098 at http://community.activestate.com</guid>
</item>
<item>
 <title>Roadmap for unit test support</title>
 <link>http://community.activestate.com/unit-testing-komodo-4-3#comment-4092</link>
 <description>&lt;p&gt;For the alpha we&#039;re supporting one type of test harness for&lt;br /&gt;
each of the four languages listed above.  The next step will be&lt;br /&gt;
to add support for more harnesses (and possibly more languages).&lt;/p&gt;
&lt;p&gt;For Ruby the next step will most likely support running of&lt;br /&gt;
arbitrary tests based on Test::Unit, similar to the current&lt;br /&gt;
support for Python tests.&lt;/p&gt;
</description>
 <pubDate>Thu, 07 Feb 2008 17:55:39 +0000</pubDate>
 <dc:creator>ericp</dc:creator>
 <guid isPermaLink="false">comment 4092 at http://community.activestate.com</guid>
</item>
<item>
 <title>Can the command used for unit tests be changed?</title>
 <link>http://community.activestate.com/unit-testing-komodo-4-3#comment-4089</link>
 <description>&lt;p&gt;For Ruby, you have the unit tests defined by running &quot;rake&quot; and having the user specify the rest of the command line. If that&#039;s *all* it does, then it seems to me that it&#039;s only a shorthand for building a command widget to run Rake. The only difference is that in a unit test, I don&#039;t have to type the first word of the command line when I set it up, just the rest of it. Moreover, the way it&#039;s done now, I&#039;m limited to using &quot;rake&quot; to run my tests.&lt;/p&gt;
&lt;p&gt;What I think would be more convenient would be to either add an extra field to the dialog box for the user to select the test initiation command, or having the user specify the whole command line in the command line entry field you have now. That way, I could start my tests with &quot;spec specs.rb&quot;, which is the way I normally do unit tests.&lt;/p&gt;
</description>
 <pubDate>Thu, 07 Feb 2008 15:20:41 +0000</pubDate>
 <dc:creator>znmeb</dc:creator>
 <guid isPermaLink="false">comment 4089 at http://community.activestate.com</guid>
</item>
<item>
 <title>Reading output logs</title>
 <link>http://community.activestate.com/faq/perl-redirect-problems-on-windows#comment-3355</link>
 <description>&lt;p&gt;In UNIX I can run the following&lt;/p&gt;
&lt;p&gt;$result = system(&quot;$sql_cmd &amp;gt; $output_file&quot;) ;&lt;br /&gt;
if(!open(SQL, &quot; &amp;lt; $output_file &quot;)) {&lt;br /&gt;
  print &quot;Error: output file not opened\n&quot; ;&lt;br /&gt;
  exit 1 ;&lt;br /&gt;
}&lt;br /&gt;
#&lt;br /&gt;
### Process file should happen here... but does not.&lt;br /&gt;
#&lt;/p&gt;
&lt;p&gt;Why does this not work in Windows?&lt;br /&gt;
A) File exists.&lt;br /&gt;
B) Even a for loop trying to make successive open&#039;s does not work.&lt;br /&gt;
C) Files quoted well, all backslashes accounted for.&lt;/p&gt;
&lt;p&gt;What can I do to make this $output_file visible to windows?&lt;/p&gt;
&lt;p&gt;Best Wishes,&lt;/p&gt;
&lt;p&gt;Don Turnblade&lt;br /&gt;
MS, CISSP&lt;/p&gt;
</description>
 <pubDate>Wed, 31 Oct 2007 16:37:26 +0000</pubDate>
 <dc:creator>Arctific</dc:creator>
 <guid isPermaLink="false">comment 3355 at http://community.activestate.com</guid>
</item>
</channel>
</rss>
