<?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 - Windows XP Pro - Comments</title>
 <link>http://community.activestate.com/os/windows-xp-pro</link>
 <description>Comments for &quot;Windows XP Pro&quot;</description>
 <language>en</language>
<item>
 <title>re: file associations</title>
 <link>http://community.activestate.com/node/3095#comment-7392</link>
 <description>&lt;p&gt;I have not been able to reproduce any problems when setting the default file/edit associations (Windows XP Pro).&lt;/p&gt;
&lt;p&gt;Are you using Komodo&#039;s &quot;Windows Integration&quot; preference and then clicking on the &quot;Re-apply settings to System&quot;?&lt;/p&gt;
&lt;p&gt;If yes, are there any errors after trying to re-apply? You may also want to examine the Komodo log file to see if there are any exceptions (you will need to shutdown Komodo to ensure the log file is completely flushed/written out):&lt;br /&gt;
&lt;a href=&quot;http://community.activestate.com/faq/komodo-file-locations#log_files&quot; title=&quot;http://community.activestate.com/faq/komodo-file-locations#log_files&quot;&gt;http://community.activestate.com/faq/komodo-file-locations#log_files&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Cheers,&lt;br /&gt;
Todd&lt;/p&gt;
</description>
 <pubDate>Mon, 01 Dec 2008 21:10:33 +0000</pubDate>
 <dc:creator>ToddW</dc:creator>
 <guid isPermaLink="false">comment 7392 at http://community.activestate.com</guid>
</item>
<item>
 <title>WriteRegistry Problems</title>
 <link>http://community.activestate.com/forum-topic/perlmsi-writeregistry#comment-7385</link>
 <description>&lt;p&gt;Hello Chris,&lt;/p&gt;
&lt;p&gt;Not too much action on this topic. However, I am working with the MSI, and was intrigued by this problem. BTW, With a bit of experimentation, I did get it to work.&lt;/p&gt;
&lt;p&gt;There are two issues: what is a file name that it is looking for, and the syntax is documented incorrectly for the values.&lt;/p&gt;
&lt;p&gt;If you don&#039;t already have an MSI editor I would recommend getting Orca. It has helped me quite a bit. When I open up the MSI with Orca I found that there is a &#039;File&#039; table in it. I used one of the file names from the table for &#039;&#039;. That got me past the file not found error.&lt;/p&gt;
&lt;p&gt;The next problem is that &#039;Values&#039; is defined as a array of hashes. When in fact the code is looking for an array of arrays. By modifying your code to look like this, I get an MSI file that has registry settings in it:&lt;/p&gt;
&lt;p&gt;          Values   =&amp;gt; [&lt;br /&gt;
                        [&#039;Serial&#039;, &#039;1234&#039;],&lt;br /&gt;
                        [&#039;Version&#039;, &#039;2.0&#039;],&lt;br /&gt;
                     ],&lt;/p&gt;
&lt;p&gt;BTW, I also found bug in the code where you can&#039;t create a Menu shortcut, and Desktop shortcut for the same thing.&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Devin&lt;/p&gt;
</description>
 <pubDate>Mon, 01 Dec 2008 19:47:15 +0000</pubDate>
 <dc:creator>devin</dc:creator>
 <guid isPermaLink="false">comment 7385 at http://community.activestate.com</guid>
</item>
<item>
 <title>re: nice digging</title>
 <link>http://community.activestate.com/node/3115#comment-7382</link>
 <description>&lt;p&gt;Hi AF,&lt;/p&gt;
&lt;p&gt;That is certainly an unintentional side affect. Thanks for getting back to us about this problem and for providing the workaround.&lt;/p&gt;
&lt;p&gt;I&#039;ve added some notes to the Komodo bug about this particular problem.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;br /&gt;
Todd&lt;/p&gt;
</description>
 <pubDate>Mon, 01 Dec 2008 19:24:12 +0000</pubDate>
 <dc:creator>ToddW</dc:creator>
 <guid isPermaLink="false">comment 7382 at http://community.activestate.com</guid>
</item>
<item>
 <title>Anybody?</title>
 <link>http://community.activestate.com/node/3095#comment-7377</link>
 <description>&lt;p&gt;Is no one else having this issue? No comment from the development team?&lt;/p&gt;
</description>
 <pubDate>Mon, 01 Dec 2008 14:49:03 +0000</pubDate>
 <dc:creator>corey1981</dc:creator>
 <guid isPermaLink="false">comment 7377 at http://community.activestate.com</guid>
</item>
<item>
 <title>Problem and workaround found</title>
 <link>http://community.activestate.com/node/3115#comment-7376</link>
 <description>&lt;p&gt;The problem that causes this is that the Komodo debugger is injecting a variable called DBGPHideChildren in the license module that causes mx validation of that module to fail.&lt;/p&gt;
&lt;p&gt;This error is documented in:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.nabble.com/DBGPHideChildren-variable-td20260988.html&quot; title=&quot;http://www.nabble.com/DBGPHideChildren-variable-td20260988.html&quot;&gt;http://www.nabble.com/DBGPHideChildren-variable-td20260988.html&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://bugs.activestate.com/show_bug.cgi?id=64497&quot; title=&quot;http://bugs.activestate.com/show_bug.cgi?id=64497&quot;&gt;http://bugs.activestate.com/show_bug.cgi?id=64497&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The workaround suggested by Marc-Andre Lemburg from eGenix is:&lt;/p&gt;
&lt;p&gt;# Before importing mxODBC for the first time, cleanup the license module:&lt;/p&gt;
&lt;pre&gt;
import mx.ODBC.license
try:
    del mx.ODBC.license.DBGPHideChildren
except AttributeError:
    pass
&lt;/pre&gt;&lt;p&gt;
# Now import mxODBC&#039;s subpackage:&lt;/p&gt;
&lt;pre&gt;
import mx.ODBC.Windows
&lt;/pre&gt;&lt;p&gt;
This works well on my environment (Komodo 4.4).&lt;/p&gt;
&lt;p&gt;thanks to all that helped&lt;/p&gt;
&lt;p&gt;rgds, af.&lt;/p&gt;
</description>
 <pubDate>Mon, 01 Dec 2008 14:49:00 +0000</pubDate>
 <dc:creator>alejandro_tomas_fritz</dc:creator>
 <guid isPermaLink="false">comment 7376 at http://community.activestate.com</guid>
</item>
<item>
 <title>still in trouble</title>
 <link>http://community.activestate.com/forum-topic/file-bsdglob-pm#comment-7372</link>
 <description>&lt;p&gt;I have tried many thing in the past few months, still cant install File-BSDGlob on my system.&lt;br /&gt;
I am not sure if its gonna solve my problem of converting my script to exe, but right now I am just curious on how to install it knowing it doesnt exist in the ppm.&lt;br /&gt;
I tried MINGW, indigoperl, strawberry perl, Gnu make, dmake, nmake...everytime with an error message.&lt;br /&gt;
i will not post error messages for thing not related to activstate but any new advice suggestions are welcome.&lt;br /&gt;
anyone tried to install this file on an XP , with a ppm or manually or any other solution?&lt;br /&gt;
thanks.&lt;/p&gt;
</description>
 <pubDate>Sun, 30 Nov 2008 12:39:56 +0000</pubDate>
 <dc:creator>montklair</dc:creator>
 <guid isPermaLink="false">comment 7372 at http://community.activestate.com</guid>
</item>
<item>
 <title>here is a javascript macro</title>
 <link>http://community.activestate.com/forum-topic/cannot-open-php-file-web-page#comment-7363</link>
 <description>&lt;p&gt;here is a javascript macro to open in browser&lt;br /&gt;
it&#039;s compatible with jstreedrive&lt;br /&gt;
it use mappped URIs&lt;/p&gt;
&lt;pre class=&quot;geshifilter&quot;&gt;var uri=ko.views.manager.currentView.document.file.URI;

prefs = Components.classes[&quot;@activestate.com/koPrefService;1&quot;].
			getService(Components.interfaces.koIPrefService).effectivePrefs;
var mapping = null;
if (prefs.hasPrefHere(&#039;mappedPaths&#039;))
	mapping = prefs.getStringPref(&#039;mappedPaths&#039;);
if (!mapping) {
	return;
}

var paths = mapping.split(&#039;::&#039;);
var mappeduri = &#039;&#039;, mappedpath = &#039;&#039;;
for (var i = 0; i &amp;lt; paths.length; i++) {
	var data = paths[i].split(&#039;##&#039;);
	if (uri.indexOf(data[1]) == 0) {
		if (data[1].length &amp;gt; mappeduri.length) {
			mappeduri = data[1];
			mappedpath = data[0];
		}
	}
}

if (mappedpath) {
	var newpath = mappedpath + uri.slice(mappeduri.length);
	ko.browse.openUrlInDefaultBrowser(newpath);
}&lt;/pre&gt;</description>
 <pubDate>Fri, 28 Nov 2008 17:08:49 +0000</pubDate>
 <dc:creator>jolan</dc:creator>
 <guid isPermaLink="false">comment 7363 at http://community.activestate.com</guid>
</item>
<item>
 <title>Additional information from mx.ODBC</title>
 <link>http://community.activestate.com/node/3115#comment-7362</link>
 <description>&lt;p&gt;I got some additional questions to ask suggested by the people behind mxODBC (&lt;a href=&quot;http://www.egenix.com&quot; title=&quot;http://www.egenix.com&quot;&gt;http://www.egenix.com&lt;/a&gt;):&lt;/p&gt;
&lt;p&gt;* Does the Komodo debugger change the way modules are imported or add&lt;br /&gt;
symbols to the module namespace after import ?&lt;/p&gt;
&lt;p&gt;* Does the Komodo debugger change the Python import path or mechanism&lt;br /&gt;
in some way that could cause it to import a &quot;license&quot; module from somewhere else ?&lt;/p&gt;
&lt;p&gt;It&#039;s also possible, though unlikely, that the debugger introduces&lt;br /&gt;
non-standard attributes in the license module at load-time which&lt;br /&gt;
cause the verification to fail - the license module content may&lt;br /&gt;
not change, since it is digitally signed.&lt;/p&gt;
&lt;p&gt;Any help is welcome, af.&lt;/p&gt;
</description>
 <pubDate>Fri, 28 Nov 2008 15:08:08 +0000</pubDate>
 <dc:creator>alejandro_tomas_fritz</dc:creator>
 <guid isPermaLink="false">comment 7362 at http://community.activestate.com</guid>
</item>
<item>
 <title>changed subject</title>
 <link>http://community.activestate.com/node/3115#comment-7360</link>
 <description>&lt;p&gt;Changed subject and some part of my original post to focus better the thread as related to the debugger (which i understood now thanks to your answers).&lt;/p&gt;
&lt;p&gt;af.&lt;/p&gt;
</description>
 <pubDate>Fri, 28 Nov 2008 09:21:02 +0000</pubDate>
 <dc:creator>alejandro_tomas_fritz</dc:creator>
 <guid isPermaLink="false">comment 7360 at http://community.activestate.com</guid>
</item>
<item>
 <title>environment is the same</title>
 <link>http://community.activestate.com/node/3115#comment-7359</link>
 <description>&lt;p&gt;Both environments are the same, only in &quot;set&quot; i got the PROMPT=$P$G wich does not appear in Edit|Preferences|Environment, but i can&#039;t imagine how this could affect.&lt;/p&gt;
&lt;p&gt;thanks for hint, af.&lt;/p&gt;
</description>
 <pubDate>Fri, 28 Nov 2008 09:07:06 +0000</pubDate>
 <dc:creator>alejandro_tomas_fritz</dc:creator>
 <guid isPermaLink="false">comment 7359 at http://community.activestate.com</guid>
</item>
<item>
 <title>It interessting,
this</title>
 <link>http://community.activestate.com/node/3120#comment-7358</link>
 <description>&lt;p&gt;It interessting,&lt;/p&gt;
&lt;p&gt;this morning I restarted Kommodo Edit and the Menus worked.&lt;br /&gt;
Yesterday I only did the automatic restart after installing the Update to &lt;/p&gt;
&lt;p&gt;&quot;Kommodo Edit, version 5.0.2, build 2604, platform win32-x86.&lt;br /&gt;
Built on Wed Nov 19 18:33:41 2008&quot;.&lt;/p&gt;
&lt;p&gt;seem that not all is realy new initialized on this restart.&lt;/p&gt;
&lt;p&gt;thanks so far&lt;/p&gt;
&lt;p&gt;Ralf&lt;/p&gt;
</description>
 <pubDate>Fri, 28 Nov 2008 07:18:42 +0000</pubDate>
 <dc:creator>MagicMilamber</dc:creator>
 <guid isPermaLink="false">comment 7358 at http://community.activestate.com</guid>
</item>
<item>
 <title>PYTHONPATH or a xmODBC environment variable?</title>
 <link>http://community.activestate.com/node/3115#comment-7357</link>
 <description>&lt;p&gt;Are there any environment variables set in your regular shell which somehow point to to the xmODBC license? It might be worth doing a &#039;set&#039; at the command line and comparing it to what&#039;s in Edit|Preferences|Environment&lt;/p&gt;
</description>
 <pubDate>Thu, 27 Nov 2008 22:40:25 +0000</pubDate>
 <dc:creator>troyt</dc:creator>
 <guid isPermaLink="false">comment 7357 at http://community.activestate.com</guid>
</item>
<item>
 <title>Possibly a corrupted download</title>
 <link>http://community.activestate.com/node/3070#comment-7356</link>
 <description>&lt;p&gt;It might be worth trying the download again via FTP:&lt;/p&gt;
&lt;p&gt; &lt;a href=&quot;ftp://downloads.activestate.com/Komodo/releases/5.0.2/Komodo-Edit-5.0.2-2604.msi&quot; title=&quot;ftp://downloads.activestate.com/Komodo/releases/5.0.2/Komodo-Edit-5.0.2-2604.msi&quot;&gt;ftp://downloads.activestate.com/Komodo/releases/5.0.2/Komodo-Edit-5.0.2-...&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Let us know if that doesn&#039;t work.&lt;/p&gt;
</description>
 <pubDate>Thu, 27 Nov 2008 22:27:58 +0000</pubDate>
 <dc:creator>troyt</dc:creator>
 <guid isPermaLink="false">comment 7356 at http://community.activestate.com</guid>
</item>
<item>
 <title>still same error</title>
 <link>http://community.activestate.com/node/3115#comment-7355</link>
 <description>&lt;p&gt;Thanks for the suggestions Todd, i tried both, checking &quot;debug in separate console&quot; and remote debugging and get the same error.&lt;/p&gt;
&lt;p&gt;My colleagues working with same environment (Win XP, Activestate Python 2.4.3, Komodo 4.4, licensed mxODBC 3.0.2) get the same error. &lt;/p&gt;
&lt;p&gt;best, af.&lt;/p&gt;
</description>
 <pubDate>Thu, 27 Nov 2008 20:28:57 +0000</pubDate>
 <dc:creator>alejandro_tomas_fritz</dc:creator>
 <guid isPermaLink="false">comment 7355 at http://community.activestate.com</guid>
</item>
<item>
 <title>re: environment variables?</title>
 <link>http://community.activestate.com/node/3115#comment-7353</link>
 <description>&lt;p&gt;I&#039;m not really sure why it would run differently from the command line to the debugger.&lt;/p&gt;
&lt;p&gt;A couple of things to try, to narrow this down would be:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;When launching the Komodo debugger, check the &quot;Debug in separate console&quot;&lt;/li&gt;
&lt;li&gt;Try remote debugging, i.e. starting the Python debugger from the command line:&lt;br /&gt;
&lt;div class=&quot;geshi-block&quot;&gt;
&lt;div class=&quot;geshifilter text&quot; style=&quot;font-family: monospace;&quot;&gt;C:\Program Files\ActiveState Komodo IDE 5\lib\support\dbgp\bin\pydbgp.py -d localhost:9000 yourscript.py&lt;/div&gt;
&lt;pre class=&quot;geshi-plain&quot;&gt;C:\Program Files\ActiveState Komodo IDE 5\lib\support\dbgp\bin\pydbgp.py -d localhost:9000 yourscript.py&lt;/pre&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Did those make any difference?&lt;/p&gt;
&lt;p&gt;Thanks,&lt;br /&gt;
Todd&lt;/p&gt;
</description>
 <pubDate>Thu, 27 Nov 2008 20:00:39 +0000</pubDate>
 <dc:creator>ToddW</dc:creator>
 <guid isPermaLink="false">comment 7353 at http://community.activestate.com</guid>
</item>
</channel>
</rss>
