aptana3

Aptana Configuration : The interpreter configured does not exist in the filesystem

荒凉一梦 提交于 2019-12-04 08:41:42
Pretty much all said in the title. I've updated to the last version of Aptana (on Windows), and now my interpreter does not work. I've recreated the PYTHONPATH Variable, deleted and reconfigured the python interpreter in Aptana , deleted and recreated it in my project, still not working... It gives me following error: The interpreter configured does not exist in the filesystem And all kinds of error like : Description Resource Path Location Type Undefined variable: None models.py line 48 PyDev Problem Worst part is, I work on a django app. and I can launch it fine, the only problem resides in

Aptana 3 and ruby debugging

感情迁移 提交于 2019-12-03 20:06:43
How I can set the watch on variable's in ruby. I am using Aptana as IDE. I am coming for .NET and am used to seeing the variable values just by hovering over the variable. In aptana 3 i cant find way through which i see current state and values of the variable. I seeing the self object there too much information and difficut to find the value of the variable i am looking for ? Jordan Running This answer to a very similar question includes step-by-step instructions on getting ruby-debug-ide to work with Aptana 3. It's written from an OS X perspective but you should be able to apply it to your

XDebug with Aptana Studio 3

微笑、不失礼 提交于 2019-12-02 19:16:08
I would like to know how i can get XDebug work with Aptana Studio 3 (I already have Aptana Studio 3 on this machine with XAMPP). Do you know a recent article telling me how to do this and explains XDebug? I have no experience nor any knowledge about XDebug, i looked for articles but all seem outdated to me. I realize that this is a old thread but I also had a difficult time finding out how to debug php with Aptana Studio and FireFox so here is a quick how-to to get it working... The easiest way I found is to install wamp server V2.2, this is a very useful program as it installs Apache Server,

Aptana Python stdlib issue with virtualenv

∥☆過路亽.° 提交于 2019-12-02 08:11:28
I recently started working on a project using just vim as my text editor with a virtualenv setup. I installed a few API's on this virtualenv from GitHub. Eventually, the project got a little bigger than vim could handle so I had to move the project to an IDE. I chose Aptana Studio 3. When I started up Aptana, I pointed the project directory to the virtualenv folder that I had created to house my project. I then pointed the interpreter at the Python executable in App/bin (created from virtualenv)/python2.7. When I started reworking the code to make sure I had everything mapped correctly, I was

javascript: Why does this return statement cause a syntax error?

空扰寡人 提交于 2019-12-01 23:44:57
问题 I'm using Apatana 3, i modified the JS code formatter a little bit to let it seem more clear, below is the code after format, it give me an error: copyOffset : function( index ) { return { x : index, y : index }; } firebug give me: SyntaxError: invalid label if i change it to: copyOffset : function( index ) { return{ x : index, y : index }; } will be OK, Anybody who can tell me what's the diff between these two return statement? 回答1: The difference is that the first snippet is actually

Aptana Studio 3.3.1. Javascript code completion

☆樱花仙子☆ 提交于 2019-12-01 21:03:49
I'm new to Aptana and I've just started a project which nature is Web. I have two issues with code completion, did some research online but didn't find the solution. 1) I have this two lines of code. var script = document.createElement("script"); script.type = "text/javascript"; I expect to have code completion in the second line when I type "script. ", and I have some suggestions. But I don't have suggested Script's attributes, in particular in this example the property "type" is not suggested. 2) I cant' "Go to declaration" on "document" object or "createElement" function. I don't know if

Aptana Studio 3.4 HTML preview display error

回眸只為那壹抹淺笑 提交于 2019-12-01 11:58:40
问题 I just updated from Aptana Studio 3.3 to build: 3.4.0.201304151603. I am on a Windows 7 x64 system. After updating, the HTML Preview window no longer behaves correctly. The HTML content is rendered in the right half of the preview window, and the left half is left blank, except for the URL bar controls. The URL to the file being previewed is not shown in the URL field. Wondering if one of my other plugins was causing the problem, I tried a fresh install with no plugins beyond those installed

Update Aptana Studio 3 with latest PyDev

陌路散爱 提交于 2019-12-01 05:11:33
OS is Windoze Vista, 32 bit Aptana Studio 3.4.2 installs PyDev 2.7.0. How do I install PyDev 2.8.2? I went to Help>Install New Software and added the site http://pydev.org/updates , checked 'Show only latest versions …' and 'Group items by category', pressed 'Next' and got the following error: Cannot complete the install because of a conflicting dependency. Software being installed: PyDev for Eclipse 2.8.2.2013090511 (org.python.pydev.feature.feature.group 2.8.2.2013090511) Software currently installed: Aptana Studio 3 3.4.2.201308081805-08082013180610 (com.aptana.rcp.product 3.4.2

Update Aptana Studio 3 with latest PyDev

浪尽此生 提交于 2019-12-01 02:32:22
问题 OS is Windoze Vista, 32 bit Aptana Studio 3.4.2 installs PyDev 2.7.0. How do I install PyDev 2.8.2? I went to Help>Install New Software and added the site http://pydev.org/updates, checked 'Show only latest versions …' and 'Group items by category', pressed 'Next' and got the following error: Cannot complete the install because of a conflicting dependency. Software being installed: PyDev for Eclipse 2.8.2.2013090511 (org.python.pydev.feature.feature.group 2.8.2.2013090511) Software currently

Aptana 3 ruby debugger - Exception in DebugThread loop: undefined method `is_binary_data?'

左心房为你撑大大i 提交于 2019-11-30 04:25:48
I'm trying to debug simple ruby file in Aptana 3. class HelloWorld def initialize() end def greet() puts "hello world" end end h=HelloWorld.new h.greet breakpoint is set to h.greet after I started debug, debugger starts, but when it tries to initialize ruby class, debugger disconnect with message Fast Debugger (ruby-debug-ide 0.4.9) listens on :54749 Exception in DebugThread loop: undefined method `is_binary_data?' for "#<HelloWorld:0x85915fc>":String when I set breakpoint to h=HelloWorld.new debugger starts, but after I stepped into initialize() constructor, it disconnects with previous