<?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 - Linux - Comments</title>
 <link>http://community.activestate.com/os/linux</link>
 <description>Comments for &quot;Linux&quot;</description>
 <language>en</language>
<item>
 <title>re: older downloads</title>
 <link>http://community.activestate.com/node/3035#comment-7134</link>
 <description>&lt;p&gt;You can download older versions of Komodo, these are available at:&lt;br /&gt;
&lt;a href=&quot;http://downloads.activestate.com/Komodo/releases/&quot; title=&quot;http://downloads.activestate.com/Komodo/releases/&quot;&gt;http://downloads.activestate.com/Komodo/releases/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Cheers,&lt;br /&gt;
Todd&lt;/p&gt;
</description>
 <pubDate>Tue, 11 Nov 2008 20:44:36 -0800</pubDate>
 <dc:creator>ToddW</dc:creator>
 <guid isPermaLink="false">comment 7134 at http://community.activestate.com</guid>
</item>
<item>
 <title>bzr support in Komodo IDE 5.0</title>
 <link>http://community.activestate.com/node/2937#comment-6921</link>
 <description>&lt;p&gt;Note to IDE users: Komodo IDE 5.0 has support for Bazaar, Git and Mercurial.&lt;/p&gt;
</description>
 <pubDate>Fri, 31 Oct 2008 10:57:50 -0700</pubDate>
 <dc:creator>troyt</dc:creator>
 <guid isPermaLink="false">comment 6921 at http://community.activestate.com</guid>
</item>
<item>
 <title>re: 64-bit builds</title>
 <link>http://community.activestate.com/node/2920#comment-6810</link>
 <description>&lt;p&gt;I made a new e-mail account (so my main one wouldn&#039;t be spammed, seeing as how the bug database is public) and subscribed to the bug.  Thanks for looking into it, and I hope that something will come of it soon!&lt;/p&gt;
</description>
 <pubDate>Tue, 21 Oct 2008 14:20:11 -0700</pubDate>
 <dc:creator>MichaelA</dc:creator>
 <guid isPermaLink="false">comment 6810 at http://community.activestate.com</guid>
</item>
<item>
 <title>re: 64-bit builds</title>
 <link>http://community.activestate.com/node/2920#comment-6808</link>
 <description>&lt;p&gt;We are looking in this. You may want to add yourself to the CC-list of the following bug report and you&#039;ll be notified on any progress:&lt;br /&gt;
&lt;a href=&quot;http://bugs.activestate.com/show_bug.cgi?id=80536&quot; title=&quot;http://bugs.activestate.com/show_bug.cgi?id=80536&quot;&gt;http://bugs.activestate.com/show_bug.cgi?id=80536&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Cheers,&lt;br /&gt;
Todd&lt;/p&gt;
</description>
 <pubDate>Tue, 21 Oct 2008 13:27:13 -0700</pubDate>
 <dc:creator>ToddW</dc:creator>
 <guid isPermaLink="false">comment 6808 at http://community.activestate.com</guid>
</item>
<item>
 <title>Some progress</title>
 <link>http://community.activestate.com/forum-topic/catalyst-perl-mvc-project-template#comment-6520</link>
 <description>&lt;p&gt;So I&#039;ve done a little work to make this template &quot;do able&quot;.&lt;br /&gt;
I&#039;m really really new to writing macro&#039;s and the Javascript API documentation for Komodo IDE is a bit lacking...&lt;/p&gt;
&lt;p&gt;I would like to build some Komodo commands to handle running the create scripts and test server, but I have no idea how I would create a command that would detect a project property (of some sort) that would allow the command to find the path of the script. The Catalyst project helper creates scripts (under the aptly named script directory) called myapp_create.pl myapp_server.pl etc.&lt;br /&gt;
The Komodo commands that would map to these scripts would have to reference a property in order to find their names being as the Komodo project name is not always the same as the Catalyst application namespace. Further more the catalyst.pl script builds the scripts with the application package name as lower case with :: converted to _ (underscores).&lt;/p&gt;
&lt;p&gt;Another issue would be that the Komodo project file should really live in the same directory as the catalyst app!&lt;/p&gt;
&lt;p&gt;It currently does this:&lt;/p&gt;
&lt;pre class=&quot;geshifilter&quot;&gt;My::TestApp.kpf
 - My::TestApp
   - lib
   - root
   - script
     - my_testapp_create.pl
     - etc...
   - t
   - Changes
   - Makefile.pl
   - README
   - my_testapp.conf&lt;/pre&gt;&lt;p&gt;
It should be my like this:&lt;/p&gt;
&lt;pre class=&quot;geshifilter&quot;&gt;My::TestApp
 - My::TestApp.kpf
 - lib
 - root
 - script
   - my_testapp_create.pl
   - etc...
 - t
 - Changes
 - Makefile.pl
 - README
 - my_testapp.conf&lt;/pre&gt;&lt;p&gt;
If there are anybody out there who could give a few pointers on how to accomplish this I would be more than happy to take on the mantle of building a komodo-catalyst-kit similar to what was done with Django.&lt;br /&gt;
I would probably even build and release a Perl ModuleMaker project template!&lt;/p&gt;
&lt;p&gt;Here is an oncreate macro that takes care running the catalyst.pl crucible script:&lt;/p&gt;
&lt;pre class=&quot;geshifilter&quot;&gt;var project   = komodo.macro.project;
var name      = /^(.*?)(\.kpf)?$/(project.name)[1];
var catcmd    = &#039;catalyst.pl&#039;;
var packnm    = null;

while(!packnm) {
    packnm = ko.dialogs.prompt(null,&quot;Package Name: &quot;,name,&quot;Catalyst Application Package Name&quot;);
}

var procmd    = [catcmd,name,&#039;{&quot;cwd&quot;: &quot;%p&quot;}&#039;].join(&#039; &#039;).toString();

ko.run.runEncodedCommand(window,catcmd, function (r) {
    if (r != 127) {
        ko.run.runEncodedCommand(window,procmd, function (r) {
            if (r == 0) {
                ko.dialogs.alert(&#039;Catalyst scaffold build!&#039;);
            } else {
                ko.dialogs.alert(&#039;Something went wrong check &quot;Command Output&quot;&#039;);
            }
        });
    } else {
        ko.dialogs.alert(&#039;Unable to locate catalyst.pl in your path&#039;);
    }
});&lt;/pre&gt;</description>
 <pubDate>Thu, 18 Sep 2008 19:52:17 -0700</pubDate>
 <dc:creator>dexpdx</dc:creator>
 <guid isPermaLink="false">comment 6520 at http://community.activestate.com</guid>
</item>
<item>
 <title>Active tclsh 8.4.19 creates strange files under Linux</title>
 <link>http://community.activestate.com/node/2755#comment-6509</link>
 <description>&lt;p&gt;This has been moved to the following bug report:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://bugs.activestate.com/show_bug.cgi?id=80035&quot; title=&quot;http://bugs.activestate.com/show_bug.cgi?id=80035&quot;&gt;http://bugs.activestate.com/show_bug.cgi?id=80035&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;It has to do with a call for finding the libc version which ends up leaving these random files on disk.&lt;/p&gt;
</description>
 <pubDate>Thu, 18 Sep 2008 15:36:48 -0700</pubDate>
 <dc:creator>jeffh</dc:creator>
 <guid isPermaLink="false">comment 6509 at http://community.activestate.com</guid>
</item>
<item>
 <title>ODBC Connection works on Command line, but not in Web Browser</title>
 <link>http://community.activestate.com/forum-topic/dbd-odbc-activeperl#comment-6480</link>
 <description>&lt;p&gt;I have a perl app that happily retrieves from a MS-SQL database when run on the command line.  However, when I run it from a web browser nothing is displayed.  It fails to connect to the database&lt;/p&gt;
&lt;p&gt;It must be due to the browser not running as &quot;my user&quot; and running as the &quot;web user&quot;, which does not have permission to connect.  Where can I check this? &lt;/p&gt;
&lt;p&gt;I feel that I&#039;m really close.  HELP:&amp;gt;&lt;/p&gt;
&lt;p&gt;Many thanks in advance.&lt;/p&gt;
</description>
 <pubDate>Wed, 17 Sep 2008 07:57:46 -0700</pubDate>
 <dc:creator>andrew2404</dc:creator>
 <guid isPermaLink="false">comment 6480 at http://community.activestate.com</guid>
</item>
<item>
 <title>Douglas Aparicio - Ubuntu</title>
 <link>http://community.activestate.com/forum-topic/compatibility-linux-ix86-executable-under-64bits-systems#comment-6287</link>
 <description>&lt;p&gt;Thanks.&lt;/p&gt;
&lt;p&gt;I installed the TclDevKit like user root.&lt;/p&gt;
&lt;p&gt;If TclApp looks for the preferences into the home directory of my account and not the home directory of the account used for installation, by the content of the file GlobalDefault is the same.&lt;/p&gt;
&lt;p&gt;This it is the content of the file:(in /home/douglas/.Tcl Dev Kit/4.1) not like user root.&lt;/p&gt;
&lt;p&gt;douglas@douglas-laptop:~/.Tcl Dev Kit/4.1$ gedit GlobalDefault&lt;br /&gt;
prefixList {}&lt;br /&gt;
checkerDefaults {}&lt;br /&gt;
pkgSearchPathMRUList {}&lt;br /&gt;
pkgRepositoryList /opt/TclDevKit-4.1/tap_help_repository&lt;br /&gt;
iconPath /opt/TclDevKit-4.1/bin&lt;br /&gt;
architecturesMRUList {&lt;br /&gt;
	     tcl&lt;br /&gt;
	     aix-powerpc&lt;br /&gt;
	     hpux-parisc&lt;br /&gt;
	     linux-glibc2.2-ix86&lt;br /&gt;
	     solaris2.10-ix86&lt;br /&gt;
	     solaris2.6-sparc&lt;br /&gt;
	     macosx-universal&lt;br /&gt;
	     win32-ix86&lt;br /&gt;
	 }&lt;br /&gt;
interpPath /opt/TclDevKit-4.1/bin&lt;br /&gt;
pkgSearchPathList {}&lt;br /&gt;
pkgRepositoryMRUList &lt;a href=&quot;http://teapot.activestate.com&quot; title=&quot;http://teapot.activestate.com&quot;&gt;http://teapot.activestate.com&lt;/a&gt;&lt;br /&gt;
prefixPath /opt/TclDevKit-4.1/bin&lt;br /&gt;
defaultArchitectures linux-glibc2.7-ix86&lt;br /&gt;
iconList {}&lt;br /&gt;
interpList {}&lt;/p&gt;
&lt;p&gt;Executing the command:&lt;br /&gt;
douglas@douglas-laptop:~/.Tcl Dev Kit/4.1$ ls -l GlobalDefault&lt;br /&gt;
-rw-r--r-- 1 root root 538 2008-08-18 10:09 GlobalDefault&lt;/p&gt;
&lt;p&gt;It seems better to discuss it to me by mail, I remember my mail to you &lt;a href=&quot;mailto:bermudezdouglas@gmail.com&quot;&gt;bermudezdouglas@gmail.com&lt;/a&gt; or &lt;a href=&quot;mailto:bermudezdouglas@hotmail.com&quot;&gt;bermudezdouglas@hotmail.com&lt;/a&gt; for msn to messenger&lt;/p&gt;
</description>
 <pubDate>Thu, 21 Aug 2008 12:30:45 -0700</pubDate>
 <dc:creator>douglase</dc:creator>
 <guid isPermaLink="false">comment 6287 at http://community.activestate.com</guid>
</item>
<item>
 <title>Re: details</title>
 <link>http://community.activestate.com/forum-topic/compatibility-linux-ix86-executable-under-64bits-systems#comment-6284</link>
 <description>&lt;p&gt;Hm.&lt;br /&gt;
So, you installed ActiveTcl and TclDevKit as user &#039;root&#039;, right?&lt;/p&gt;
&lt;p&gt;However when you are using it now, you are &#039;douglas&#039; (or whatever your own login is). Right again ?&lt;/p&gt;
&lt;p&gt;When TclApp looks for the preferences it looks into the home directory of the account you are using, not the home directory of the account you used for installation.&lt;/p&gt;
&lt;p&gt;Showing me the &lt;em&gt;contents&lt;/em&gt; of the file does not help me. It only confirms what we know already, that the data was not saved. It also confirms that you found this file somewhere. I am guessing that this somewhere was the location I gave you, with &#039;~&#039; being your own home directory. what I have to know are the permissions given to this file, and the owner/group settings of the file.&lt;/p&gt;
&lt;p&gt;So, what are the results of running the command below ?&lt;/p&gt;
&lt;p&gt;&lt;pre&gt;
ls -l &quot;$HOME/.Tcl Dev Kit/4.1/GlobalDefault&quot;
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;My interpretation of your sentence &lt;/p&gt;
&lt;pre&gt;I can read it to the file like root.&lt;/pre&gt;&lt;p&gt; is that the file can be read if you are the root-user. That doesn&#039;t tell us much as the root-user can read everything.&lt;/p&gt;
&lt;p&gt;Side note: I do not seem to get notifications from the web forum for every response you are making, only for some. What do you think about a switch to direct communication by email ? Would that be more convenient for you ?&lt;/p&gt;
</description>
 <pubDate>Thu, 21 Aug 2008 09:57:02 -0700</pubDate>
 <dc:creator>Andreas Kupries</dc:creator>
 <guid isPermaLink="false">comment 6284 at http://community.activestate.com</guid>
</item>
<item>
 <title>details</title>
 <link>http://community.activestate.com/forum-topic/compatibility-linux-ix86-executable-under-64bits-systems#comment-6275</link>
 <description>&lt;p&gt;thanks.&lt;br /&gt;
TclDevKit I installed like user root. I can read it to the file like root.&lt;br /&gt;
The file contains the following thing:&lt;/p&gt;
&lt;p&gt;prefixList {}&lt;br /&gt;
checkerDefaults {}&lt;br /&gt;
pkgSearchPathMRUList {}&lt;br /&gt;
pkgRepositoryList /opt/TclDevKit-4.1/tap_help_repository&lt;br /&gt;
iconPath /opt/TclDevKit-4.1/bin&lt;br /&gt;
architecturesMRUList {&lt;br /&gt;
	     tcl&lt;br /&gt;
	     aix-powerpc&lt;br /&gt;
	     hpux-parisc&lt;br /&gt;
	     linux-glibc2.2-ix86&lt;br /&gt;
	     solaris2.10-ix86&lt;br /&gt;
	     solaris2.6-sparc&lt;br /&gt;
	     macosx-universal&lt;br /&gt;
	     win32-ix86&lt;br /&gt;
	 }&lt;br /&gt;
interpPath /opt/TclDevKit-4.1/bin&lt;br /&gt;
pkgSearchPathList {}&lt;br /&gt;
pkgRepositoryMRUList &lt;a href=&quot;http://teapot.activestate.com&quot; title=&quot;http://teapot.activestate.com&quot;&gt;http://teapot.activestate.com&lt;/a&gt;&lt;br /&gt;
prefixPath /opt/TclDevKit-4.1/bin&lt;br /&gt;
defaultArchitectures linux-glibc2.7-ix86&lt;br /&gt;
iconList {}&lt;br /&gt;
interpList {}&lt;/p&gt;
&lt;p&gt;That to do with this?&lt;/p&gt;
</description>
 <pubDate>Wed, 20 Aug 2008 12:50:03 -0700</pubDate>
 <dc:creator>douglase</dc:creator>
 <guid isPermaLink="false">comment 6275 at http://community.activestate.com</guid>
</item>
<item>
 <title>Re: details</title>
 <link>http://community.activestate.com/forum-topic/compatibility-linux-ix86-executable-under-64bits-systems#comment-6272</link>
 <description>&lt;p&gt;Thank you. That gives me something to work with, as this should not be happening. ... time passes ... Back, and having investigated this a bit. I was able to reproduce your problem if the file we use to store the preferences is not writable.&lt;/p&gt;
&lt;p&gt;Please have a look at the file &lt;code class=&quot;geshifilter&quot;&gt;&quot;$HOME/.Tcl Dev Kit/4.1/GlobalDefault&quot;&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; The filename has spaces in it. You will have to double-quotes as above, or write &lt;code class=&quot;geshifilter&quot;&gt;$HOME/.Tcl\ Dev\ Kit/4.1/GlobalDefault&lt;/code&gt; on the command line to quote just the spaces.&lt;/p&gt;
&lt;p&gt;Is the ownership of that file correct?&lt;br /&gt;
(You should be owner)&lt;br /&gt;
Do you have permissions to write the file?&lt;/p&gt;
&lt;p&gt;If TclApp cannot write to this file it silently discards any changes to the preferences &lt;strong&gt;:(&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;This last is arguably a bug and I will work on fixing it, i.e. have it pop up an error dialog reporting the trouble. Should you wish to please feel free to enter a report at &lt;a href=&quot;http://bugs.activestate.com/&quot; title=&quot;http://bugs.activestate.com/&quot;&gt;http://bugs.activestate.com/&lt;/a&gt; about this.&lt;/p&gt;
</description>
 <pubDate>Wed, 20 Aug 2008 09:27:32 -0700</pubDate>
 <dc:creator>Andreas Kupries</dc:creator>
 <guid isPermaLink="false">comment 6272 at http://community.activestate.com</guid>
</item>
<item>
 <title>details</title>
 <link>http://community.activestate.com/forum-topic/compatibility-linux-ix86-executable-under-64bits-systems#comment-6271</link>
 <description>&lt;p&gt;Greetings...&lt;/p&gt;
&lt;p&gt;I close the dialogue doing click on the &#039;OK&#039;.&lt;/p&gt;
&lt;p&gt;Attempt to execute tclapp again and the data are lost...&lt;/p&gt;
</description>
 <pubDate>Wed, 20 Aug 2008 05:53:13 -0700</pubDate>
 <dc:creator>douglase</dc:creator>
 <guid isPermaLink="false">comment 6271 at http://community.activestate.com</guid>
</item>
<item>
 <title>Re: more</title>
 <link>http://community.activestate.com/forum-topic/compatibility-linux-ix86-executable-under-64bits-systems#comment-6268</link>
 <description>&lt;p&gt;Douglas, &lt;strong&gt;how&lt;/strong&gt; are you closing the dialog ?&lt;/p&gt;
&lt;p&gt;Are you clicking on the button labeled &#039;X&#039; (top-right corner of window) ?&lt;br /&gt;
Are you clicking on the button labeled &#039;Cancel&#039; ?&lt;br /&gt;
Are you clicking on the button labeled &#039;Ok&#039; ?&lt;/p&gt;
&lt;p&gt;Each of these three actions will close the dialog.&lt;br /&gt;
Only one of them will save the data, by design.&lt;br /&gt;
Namely, clicking on &#039;Ok&#039;.&lt;/p&gt;
&lt;p&gt;It is difficult to impossible to help if I do not get the details needed, just generic descriptions.&lt;/p&gt;
</description>
 <pubDate>Tue, 19 Aug 2008 15:53:07 -0700</pubDate>
 <dc:creator>Andreas Kupries</dc:creator>
 <guid isPermaLink="false">comment 6268 at http://community.activestate.com</guid>
</item>
<item>
 <title>more</title>
 <link>http://community.activestate.com/forum-topic/compatibility-linux-ix86-executable-under-64bits-systems#comment-6265</link>
 <description>&lt;p&gt;I talked about to that I close the dialogue and the window of the TclDevKit and when I try to return to execute tclapp it loses the routes that I placed in Edit-&amp;gt;Preferences-&amp;gt; TAP Search Parths..&lt;/p&gt;
&lt;p&gt;how to make these changes permanent?, because I execute the command again and it returns to fail...&lt;/p&gt;
&lt;p&gt;root@douglas-laptop:/opt/TclDevKit-4.1/bin#./tclapp -prefix /opt/ActiveTcl-8.4/bin/base-tcl-linux-ix86 -out /home/douglas/Software/Projects/TCL_TK/Ejecutables/moretest_hayes_netop /home/douglas/Software/Projects/TCL_TK/moretest_hayes_netop.tcl -pkg Expect -pkg base64 -pkg http&lt;br /&gt;
info      | Tcl Dev Kit TclApp&lt;br /&gt;
info      | Copyright (C) 2001-2008 ActiveState Software Inc. All rights reserved.&lt;br /&gt;
info      | Trial license for Trial User.&lt;br /&gt;
info      |&lt;br /&gt;
info      | Embedding license information into wrap result as comments.&lt;br /&gt;
info      |&lt;br /&gt;
info      | Expires: 03-09-2008.&lt;br /&gt;
info      |&lt;br /&gt;
info      | WARNING:  All applications generated by this trial version&lt;br /&gt;
info      |           will also stop working on 03-09-2008.&lt;br /&gt;
info      Expanding...&lt;br /&gt;
info          Following only profile dependencies&lt;br /&gt;
info      P   package http 2.5.5 tcl ...&lt;br /&gt;
info&lt;br /&gt;
info      Issues...&lt;br /&gt;
error         package &#039;Expect -is profile&#039; is not known (Specified, Not recoverable)&lt;br /&gt;
error         package &#039;base64 -is profile&#039; is not known (Specified, Not recoverable)&lt;br /&gt;
error&lt;br /&gt;
error     Aborting&lt;br /&gt;
error&lt;br /&gt;
root@douglas-laptop:/opt/TclDevKit-4.1/bin#&lt;/p&gt;
</description>
 <pubDate>Tue, 19 Aug 2008 12:44:20 -0700</pubDate>
 <dc:creator>douglase</dc:creator>
 <guid isPermaLink="false">comment 6265 at http://community.activestate.com</guid>
</item>
<item>
 <title>Re: more, more, more</title>
 <link>http://community.activestate.com/forum-topic/compatibility-linux-ix86-executable-under-64bits-systems#comment-6264</link>
 <description>&lt;p&gt;When you say &#039;... closing the window&#039;, you are talking about closing the dialog, yes ?&lt;br /&gt;
And when you are reopening it the paths are missing ?&lt;br /&gt;
The application was not closed in the interim ?&lt;br /&gt;
How are you closing the dialog ?&lt;br /&gt;
(I am hoping to gain an understanding of the exact steps you performed. For example, there are 3 different ways to close the dialog and your description doesn&#039;t tell me which way you used).&lt;/p&gt;
</description>
 <pubDate>Tue, 19 Aug 2008 12:20:37 -0700</pubDate>
 <dc:creator>Andreas Kupries</dc:creator>
 <guid isPermaLink="false">comment 6264 at http://community.activestate.com</guid>
</item>
</channel>
</rss>
