Hello all,
Recently I upgraded to Snow Leopard, and now I can't run programs built with wxPython. The errors I get are (from Eclipse + PyDev):
import wx
File "/var/tmp/wxWidgets/wxWidgets-13~231/2.6/DSTROOT/System/Library/Frameworks
/Python.framework/Versions/2.6/Extras/lib/
python/wx-2.8-mac-unicode/wx/__init__.py", line 45, ...
I am developing on a Mac with Eclipse and have the skeleton for an app
that implements the standard framework callbacks (onCreate, onDestroy,
onPause, etc..). When I set breakpoints in the callbacks the debugger
stops and displays a tab that says
"ActivityThread.performLaunchActivity(ActivityThread
$ActivityRecord,Intent)line:2477" and i...
What are the steps to be followed for Migration of code from JDK 1.5 to 1.6.
Steps followed :
Changed the build Patch of Project as JDK1.6
Changed the Compiler as 6
Clean and deploy the Project
I was getting Compilation error as
*** ERROR ***: Thu Apr 01 05:17:06 PDT 2010 org.eclipse.jst.j2ee.commonarchivecore.intern...
I am trying to set a session cookie from server side :
import javax.ws.rs.core.NewCookie;
import javax.ws.rs.core.Response;
public class Login {
@POST
@Produces("application/json")
@Consumes("application/json")
public Response login (String RequestPacket){
NewCookie cookie=null;
CacheControl cc=new CacheControl();
cookie = Lo...
I'm attempting to compile Arduino code in the Eclipse IDE using WinAVR and the AVR IDE plugin, and I'm running into one major stumbling block - when I try to compile the code I get the following error:
/usr/bin/sh: g++: command not found
make: *** [main.o] Error 127
Yeah, I bet not...I'm using Windows Vista. I have the paths to WinAVR...
For example:
private long p, q, g, h;
I want to split this field declaration as:
private long p;
private long q, g, h;
How can I use ASTRewrite to do it? I tried to use ASTNode copyFd = rewriter.createCopyTarget(fd) to copy the field declaration, modify it, then add to field declaration list, but my modification on copyFd is not ...
Hello,
I'm always getting this message in alert box.
Please tell me what should I do to avoid it?
Thank you
...
I'm having difficulty getting PyDev to work.
I had an installation of Eclipse for PHP developers (1.2.1.20090918-0703). A month ago, I installed PyDev, and everything worked great. I go to fire it up this morning, and PyDev is gone. There is no option to create a Python project, the Python language editor is missing, etc.
Eclipse for ...
I'm unable to find an option to setup remote debugging in JBossWeb 2.1.4 on Windows. It is not installed as a service and there are no .bat scripts where I can edit the JAVA_OPTS environment variable to include:
-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=4142
The only thing in the jboss web bin directory are jbos...
Does anyone know if there exists a plugin to Eclipse which can auto complete filenames for files in the project.
So if I type images/s [Alt+tab] it should present a list of all files located in images starting with s. Like the auto-complete for types but using filenames.
It would be really cool if it worked with all kinds of editors.
...
When using Eclipse PDT with XDebug to debug a PHP web application, is there any way to open up a console window that will allow me to type in and see the value of arbitrary expressions in the current scope?
This would seem like an obvious element of the debugging environment, and I may be missing something, but the only thing resembling...
Ive inherited some code which started out as an Android project but really is just an API to be used by other applications. Hence, the 'build' process usually just produces a JAR file. The problem Im having is that I get errors from the Android build tools in my console which seem to fire everytime I make a change to some files. How do I...
I didn't find any option for that, so I suspect that some views follow the color pattern of the operating system. I'm currently using OS X, and it seems like changing the default background color it's not possible either.
What I'm trying to accomplish is to create a dark background theme, but customization seems only possible on some of...
How to streamline/automate the configuration of Eclipse?
Given N developers running a mixture of Ubuntu and Mac OS X, all with the same version of Eclipse, how to make sure that:
Each developer, on top of his favourite "Available Software Sites" selection, has a common set of installation sources?
Each developer has an easy (automated...
I'm getting the java.lang.OutOfMemoryError exception in Eclipse. I know that Eclipse
by default uses heap size of 256M. I'm trying to increase it but nothing happens.
For example:
eclipse -vmargs -Xmx16g -XX:PermSize=2g -XX:MaxPermSize=2g
I also tried different settings, using only the -Xmx option, using different cases
of g, G, m, M,...
Hi,
I was wondering how to create a Eclipse script (Eclipsemonkey) to commit the current project on closing of Eclipse? You can listen to commands such as "org.eclipse.ui.file.save" (on file save) etc. but what's the command for editor closing? And how can you call a commit action?
...
I'm using regex to match all non-quoted property names in my json files. Eclipse has no problem finding the desired matches, but when I want to replace the matched strings with "$2", I get this error: Match string has changed in file filename.json. Match skipped
Here's the regex I'm using:
((\w+)\s*(?!['"])(?=:))
Any idea on how to w...
Hi,
I noticed that my app is very slow sometimes, so I've done some tests.
It's a very simple web app. One servlet gets some parameters than stores them.
Everything's fine except one thing. It takes too long to get a parameter for the first time. It doesn't matter which parameter I try to get, but for the first time it is very slow. The...
I'm looking for an Eclipse plug-in that shows a system (independent) command line in a view that is ideally synchronized with the current project's local path. So basically a shell within Eclipse.
The reason for this is to be able to execute custom build commands and script faster than specifying them as launch configurations or having ...
Hello, I wonder if anyone can help - I have this error showing recently when debugging in eclipse - what doe it mean by resource, an imported package or the location of some java files ?
Can't find resource for bundle sun.awt.resources.awt, key AWT.EventQueueClass
MissingResourceException (id =45)
I also get an option to "edit source ...