diff --git "a/database/tawos/deep/APSTUD_deep-se.csv" "b/database/tawos/deep/APSTUD_deep-se.csv" new file mode 100644--- /dev/null +++ "b/database/tawos/deep/APSTUD_deep-se.csv" @@ -0,0 +1,477 @@ +"issuekey","created","title","description","storypoint" +"APSTUD-6446","06/05/2006 18:15:21","Preferences dialog too large","At a resolution of 1024x768 some of the preferences are inaccessible. Notably, the main Pydev and the Pylint sub item contain preferences that go off the bottom off the dialog and are not accessible. These dialogs should probably be reorganized. Having too many settings on a dialog may be unwise in any case.",0 +"APSTUD-23","06/08/2011 02:56:21","Aptana tries to open a new instance of itself when opening files via Windows Explorer","{html}
Assigned to Tender issue #49. As reported in Tender:
OS: Win XP
When Aptana is running and I try to open files from my Windows Explorer (with double click or enter) Aptana displays ""Workspace in use or cannot be created, choose a different one"" after showing the splash screen for 2-3 seconds.
Dragging files into my running instance won't cause this behavior. Opening files from my Project view causes no problems, except .htaccess files. As a temp solution I chose to open .htaccess files with Notepad.
This is what I already did (with no luck);
- My installation folder and workspace folder are both writable.
- I did several complete re-installs.
- I removed the .lock file in my workspace folder.
- I created a new workspace folders and switched to it.
- I have administrator rights.
Creating a new workspace will fix my problem temporary but the problem is back within a week.
In Aptana 1.2 I never saw a splash screen when Aptana was running and I opened another file. The files were just loaded in the running instance. Is this caused by Eclipse 3.5?
This is quite annoying cause every time the splash screen shows it either takes up 3 seconds of the file won't open due to the locked workspace.
This may actually be an issue with my VM, but I'm posted this in case it's indicative of some other issue.
At this point, the two popups go away but I see trash further down the screen. That trash moves as I add/remove lines.
I have the latest Aptana 3 installed. I have the preference selected to open projects with double click, it doesn't work. I switched it to single click, same result, didn't work.
Let me know if you need more information!
Thanks,
Jason
To reproduce:
class Eggs(object): def spam(): from string import Template return Template('') + digits # Press CTRL+1 on this line. Hold down CTRL while selecting from string for 'string.digits'
result:
class Eggs(object): def spam(): from string import Template from string import digits return Template('') + digits
expected:
class Eggs(object): def spam(): from string import Template, digits return Template('') + digits