issuekey,title,description,storypoint APSTUD-3707,"Add Copy URL actions to right-click context menu of Remote view for S3 files","I was able to connect to our Appcelerator S3 bucket to drag and drog copy image files that I wanted to refer to remotely from the Desktop packaging release links webpage. But I had no easy way to tell what the various URLs were that I could use to refer to the resulting S3 objects/files. Cyberduck lets you right click and choose Copy URL > HTTPS, HTTPS, Signed URL (expiring in one hour, one day, or one week + one hour), Torrent URL.",5 APSTUD-23,"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.
My project indicated that I didn't have a python interpreter configured. I managed to eventually find the dialog, clicked ""auto-configure"" and everything appears to be fine.
Suggest two steps. Clicking on the error icon in the project brings up a dialog asking if you'd like to configure the interpreter. It would first try to auto-configure the interpreter, and then alert if it fails. It could then direct people to the normal preference page where they could fix the problem manually if necessary.
I noticed this by seeing no content in the App Explorer, which is something Ingo had seen. After some digging, it looks like Java filters got applied, which was especially surprising since we shouldn't have any. So I dug further and see JDT plugins in my installation, yet I don't see them belonging to any of the features, so I'm not sure how they got installed.
Assigned to Tender discussion #2083. As reported in Tender:
When I start a long time process in terminal window, neither can i press ctrl-c to break it, nor can i press ctrl-z to pause it
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
Problems encountered while deleting resources.
Problems encountered while deleting files.
Could not delete: E:\SR\documents\eclipse\aptana2569_2\.git\refs. Could not delete: E:\SR\documents\eclipse\aptana2569_2\.git. Could not delete 'E:\SR\documents\eclipse\aptana2569_2'.
Problems encountered while deleting files.
Could not delete: E:\SR\documents\eclipse\aptana2569_2.git\refs. Could not delete: E:\SR\documents\eclipse\aptana2569_2.git. Could not delete: E:\SR\documents\eclipse\aptana2569_2. Could not delete 'E:\SR\documents\eclipse\aptana2569_2'.
Assigned to Tender discussion #896. See Tender request below. Suggestion is to allow one-click or shortcut access to select the content of a tag pair. Suggest modifying HTML ruble command to select tag pair and content to just select tag content
On october 2008 I made this feature request.
http://support.aptana.com/asap/browse/STU-2511
""Select tag area""
This is a feature that every text editor should have, if it is designed to edit html, xhtml or any syntax that envelopes content in matched tags.
When it is available, it significantly cuts down on the time spent editing complex markup.Unfortunately, only one tool I know of has this. Quanta plus. An old, buggy and tired editor that I can't live without.
This feature becomes indispensible once you are familair with it.
So, I logged a request back in october 2008, when a much earlier version on aptana is in circulation.
I occaisonally fire up aptana to remind myself of it's potential, and to make sure I haven't overlooked any kiler features that make me stick with it.But, I'm afraid that I'm dissapointed that this basic feature is still unavailable. And I can't justify using aptana for future projects.
At the moment I am using quanta and a heavily customized emacs environment that allows me to code freely in html, css, js, php, python and my frameworks of choice. I dislike having to use more then one text editor. I'd love to just use aptana. But, without a feature analogous to ""select tag area"", I'm afraid it's game over.
From the current system:
template ""Custom Template"" do |t| t.filetype = ""*.html"" t.invoke do |context| ENV['TM_DATE'] = Time.now.strftime(""%Y-%m-%d"") raw_contents = IO.read(""#{File.dirname(ENV['TM_BUNDLE_SUPPORT'])}/templates/html5.html"") raw_contents.gsub(/\$\{([^}]*)\}/) {|match| ENV[match[2..-2]] } end end bringing it inline with something like project templates:
project_template ""Basic Web Template2"" do |t| t.type = :web t.location = ""templates/basic_web_template.zip"" t.description = ""A basic template which includes only a default index.html file"" end i.e.:
template ""Custom Template"" do |t| t.filetype = ""*.html"" t.location = ""templates/html5.html"" end By default this WOULD DO environment substitution.
This change should apply to all new project wizards we support.
If a user unchecks the ""use default location"" checkbox, provide a warning message right below the location field indicating if the location in question already has pre-existing files. Since the path can be long, make sure it's easy to see the full path to which the user is saving the project.
Currently if you open the find bar with ctrl-f (when no text is selected) it just places the cursor at the beginning of the input - I think it should automatically select the contents of the input so that you can just start typing immediately to replace whatever your last search was.
We should support syntax highlighting/coloring for coffeescript files: http://jashkenas.github.com/coffee-script/
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