id
int64 0
5.38k
| issuekey
stringlengths 4
16
| created
stringlengths 19
19
| title
stringlengths 5
252
| description
stringlengths 1
1.39M
| storypoint
float64 0
100
|
---|---|---|---|---|---|
359 | APSTUD-4896 | 06/08/2012 02:15:46 | PHP Autocompletion for parent methods + namespace | When you tried to access to parent methods which are in different namespace it doesn't work: {code:php|borderStyle=solid} <?php namespace Package1; class Foo { public function __construct(){ } public function fooMethod(){ } } namespace Package2; class Foo extends \Package1\Foo { public function __construct(){ parent:://Nothing is proposed while __construct() or fooMethod() should be listed } } {code} | 13 |
360 | APSTUD-4899 | 06/11/2012 10:13:05 | Implement JSLint-identical rules for most common subset of JS rules | Implement checks for these rules: already_defined* and* assign_exception* avoid_a* bad_assignment* bad_new* bad_number* bad_wrap* conditional_assignment* constructor_name_a* dangerous_comment* dangling_a* empty_block* empty_class* evil* -expected_identifier_a_reserved-(causes a parse error, so we shouldn't need to do this) expected_number_a* function_eval* implied_evil* leading_decimal_a* -name_function-(causes a parse error, so we shouldn't need to do this) not_a_constructor* not_greater* parameter_arguments_a* radix* reserved_a* strange_loop* subscript* sync_a* trailing_decimal_a* unescaped_a unnecessary_initialize* unreachable_a_b* use_array* use_braces* use_object* use_param* used_before_a* var_a_not* weird_new* weird_program* wrap_immediate* write_is_wrong* | 40 |
361 | APSTUD-4903 | 06/12/2012 14:11:28 | PHP parse exception for a specific content | PHP parse error when working on the attached file. {code} java.lang.IllegalArgumentException: Illegal parameter start positions: [I@15aa2b5 at com.aptana.editor.php.internal.indexer.FunctionPHPEntryValue.<init>(FunctionPHPEntryValue.java:113) at com.aptana.editor.php.internal.indexer.PDTPHPModuleIndexer$PHPASTVisitor.visit(PDTPHPModuleIndexer.java:1456) at org2.eclipse.php.internal.core.ast.nodes.MethodDeclaration.accept0(MethodDeclaration.java:82) at org2.eclipse.php.internal.core.ast.nodes.ASTNode.accept(ASTNode.java:285) at org2.eclipse.php.internal.core.ast.nodes.Block.childrenAccept(Block.java:98) at org2.eclipse.php.internal.core.ast.nodes.Block.accept0(Block.java:91) at org2.eclipse.php.internal.core.ast.nodes.ASTNode.accept(ASTNode.java:285) at org2.eclipse.php.internal.core.ast.nodes.ClassDeclaration.childrenAccept(ClassDeclaration.java:119) at org2.eclipse.php.internal.core.ast.nodes.ClassDeclaration.accept0(ClassDeclaration.java:105) at org2.eclipse.php.internal.core.ast.nodes.ASTNode.accept(ASTNode.java:285) at org2.eclipse.php.internal.core.ast.nodes.Program.childrenAccept(Program.java:203) at org2.eclipse.php.internal.core.ast.nodes.Program.accept0(Program.java:196) at org2.eclipse.php.internal.core.ast.nodes.ASTNode.accept(ASTNode.java:285) at com.aptana.editor.php.internal.indexer.PDTPHPModuleIndexer.indexModule(PDTPHPModuleIndexer.java:4118) at com.aptana.editor.php.indexer.PHPGlobalIndexer$WrapIndexer.indexModule(PHPGlobalIndexer.java:118) at com.aptana.editor.php.indexer.PHPGlobalIndexer.processUnsavedModuleUpdate(PHPGlobalIndexer.java:1034) at com.aptana.editor.php.internal.parser.PHPParser.parse(PHPParser.java:149) at com.aptana.parsing.ParsingEngine.parse(ParsingEngine.java:272) at com.aptana.parsing.ParserPoolFactory.doParse(ParserPoolFactory.java:244) at com.aptana.parsing.ParserPoolFactory.parse(ParserPoolFactory.java:231) at com.aptana.editor.php.internal.ui.editor.PHPSourceEditor.getAST(PHPSourceEditor.java:179) at com.aptana.editor.common.AbstractThemeableEditor$3.run(AbstractThemeableEditor.java:1253) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4041) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3660) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2640) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2604) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2438) at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:671) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:664) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:125) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:620) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:575) at org.eclipse.equinox.launcher.Main.run(Main.java:1408) at org.eclipse.equinox.launcher.Main.main(Main.java:1384) {code} {code} java.lang.IllegalArgumentException: Illegal parameter start positions: [I@d0775f at com.aptana.editor.php.internal.indexer.FunctionPHPEntryValue.<init>(FunctionPHPEntryValue.java:113) at com.aptana.editor.php.internal.indexer.PDTPHPModuleIndexer$PHPASTVisitor.visit(PDTPHPModuleIndexer.java:1456) at org2.eclipse.php.internal.core.ast.nodes.MethodDeclaration.accept0(MethodDeclaration.java:82) at org2.eclipse.php.internal.core.ast.nodes.ASTNode.accept(ASTNode.java:285) at org2.eclipse.php.internal.core.ast.nodes.Block.childrenAccept(Block.java:98) at org2.eclipse.php.internal.core.ast.nodes.Block.accept0(Block.java:91) at org2.eclipse.php.internal.core.ast.nodes.ASTNode.accept(ASTNode.java:285) at org2.eclipse.php.internal.core.ast.nodes.ClassDeclaration.childrenAccept(ClassDeclaration.java:119) at org2.eclipse.php.internal.core.ast.nodes.ClassDeclaration.accept0(ClassDeclaration.java:105) at org2.eclipse.php.internal.core.ast.nodes.ASTNode.accept(ASTNode.java:285) at org2.eclipse.php.internal.core.ast.nodes.Program.childrenAccept(Program.java:203) at org2.eclipse.php.internal.core.ast.nodes.Program.accept0(Program.java:196) at org2.eclipse.php.internal.core.ast.nodes.ASTNode.accept(ASTNode.java:285) at com.aptana.editor.php.internal.indexer.PDTPHPModuleIndexer.indexModule(PDTPHPModuleIndexer.java:3867) at com.aptana.editor.php.indexer.PHPGlobalIndexer$WrapIndexer.indexModule(PHPGlobalIndexer.java:92) at com.aptana.editor.php.indexer.PHPGlobalIndexer$7.run(PHPGlobalIndexer.java:441) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) {code} | 8 |
362 | APSTUD-4906 | 06/13/2012 12:48:48 | No deployment option exists in Deploy My Application dialog for Web project | 1. Create a web project via File > New > Web Project; 2. Right-click on the project and select Publish > Run Web Deployment Wizard. Expected result: the dialog should contain options for FTP, Capistrano, Heroku, etc. Actual result: the list is empty. I suspect this has to do with the refactoring of deploy.ui plugin, and the compilation errors we saw and somehow fixed could be related as well. | 8 |
363 | APSTUD-4909 | 06/14/2012 06:26:34 | HTML validation filters don't work | I am using custom HTML tag - lets call it <specialtag>. I added rules in: Options -> Aptana Studio -> Validation -> HTML -> HTML Tidy Validator (I tried all validators on the list) To test: * create a new document with <specialtag></specialtag> in it * add new validation filter .∗specialtag.∗ to the HTML Tidy validator * See "specialtag is not recognized" in the problems view The editor still shows warning message and underscores the content of the <specialtag>. | 3 |
364 | APSTUD-4912 | 06/14/2012 14:16:17 | Add portal controller to return the currently active perspective | Related to APSTUD-4799, this would be a call to return the currently active perspective. | 5 |
365 | APSTUD-4917 | 06/15/2012 16:05:15 | Ruby: Problem formatting Ruby source code where block contains only comments | ctrl-shift-f can't format source code of the attached file. | 8 |
366 | APSTUD-4919 | 06/17/2012 14:07:15 | Terminal displays incorrectly after real estate is exhausted with content. | When the terminal screen is filled up after typing commands and the output goes passed the bottom, the text jumbles up so typing in the terminal no longer works. I attached on screenshot of what happens but it does other things in that it won't work when the content goes passed the bottom. Possibly an issue with buffer flushing. | 13 |
367 | APSTUD-4920 | 06/17/2012 20:31:32 | AssertionFailedException in ThemeingDamagerRepairer.storeScope() | Found in a customer's log file. Unfortunately no reproduction case ATM. Suggested solution: * Catch/rethrow the error message with additional information to that we can possibly fix it in the future. * Or...figure out the root cause and fix it {code} !ENTRY org.eclipse.text 4 2 2012-06-12 23:36:34.144 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.text". !STACK 0 org.eclipse.core.runtime.AssertionFailedException: assertion failed: at org.eclipse.core.runtime.Assert.isTrue(Assert.java:110) at org.eclipse.core.runtime.Assert.isTrue(Assert.java:96) at org.eclipse.jface.text.Position.<init>(Position.java:63) at org.eclipse.jface.text.TypedPosition.<init>(TypedPosition.java:35) at com.aptana.editor.common.text.rules.ThemeingDamagerRepairer.storeScope(ThemeingDamagerRepairer.java:285) at com.aptana.editor.common.text.rules.ThemeingDamagerRepairer.getTokenTextAttribute(ThemeingDamagerRepairer.java:231) at org.eclipse.jface.text.rules.DefaultDamagerRepairer.createPresentation(DefaultDamagerRepairer.java:179) at com.aptana.editor.common.text.rules.ThemeingDamagerRepairer.createPresentation(ThemeingDamagerRepairer.java:80) at com.aptana.editor.common.text.reconciler.CommonPresentationReconciler.createPresentation(CommonPresentationReconciler.java:151) at com.aptana.editor.common.text.reconciler.CommonPresentationReconciler.createPresentation(CommonPresentationReconciler.java:109) at org.eclipse.jface.text.presentation.PresentationReconciler.processDamage(PresentationReconciler.java:566) at org.eclipse.jface.text.presentation.PresentationReconciler.access$3(PresentationReconciler.java:564) at org.eclipse.jface.text.presentation.PresentationReconciler$InternalListener.textChanged(PresentationReconciler.java:225) at org.eclipse.jface.text.TextViewer.updateTextListeners(TextViewer.java:2824) at org.eclipse.jface.text.TextViewer$VisibleDocumentListener.documentChanged(TextViewer.java:403) at org.eclipse.jface.text.AbstractDocument.doFireDocumentChanged2(AbstractDocument.java:769) at org.eclipse.jface.text.AbstractDocument.doFireDocumentChanged(AbstractDocument.java:736) at org.eclipse.jface.text.AbstractDocument.doFireDocumentChanged(AbstractDocument.java:721) at org.eclipse.jface.text.AbstractDocument.fireDocumentChanged(AbstractDocument.java:796) at org.eclipse.jface.text.projection.ProjectionDocument.fireDocumentChanged(ProjectionDocument.java:777) at org.eclipse.jface.text.AbstractDocument.replace(AbstractDocument.java:1191) at org.eclipse.jface.text.AbstractDocument.replace(AbstractDocument.java:1210) at org.eclipse.jface.text.projection.ProjectionDocument.replace(ProjectionDocument.java:629) at org.eclipse.jface.text.DefaultDocumentAdapter.replaceTextRange(DefaultDocumentAdapter.java:248) at org.eclipse.swt.custom.StyledText.modifyContent(StyledText.java:7180) at org.eclipse.swt.custom.StyledText.sendKeyEvent(StyledText.java:7994) at org.eclipse.swt.custom.StyledText.doBackspace(StyledText.java:2266) at org.eclipse.swt.custom.StyledText.invokeAction(StyledText.java:6988) at org.eclipse.swt.custom.StyledText.handleKey(StyledText.java:5915) at org.eclipse.swt.custom.StyledText.handleKeyDown(StyledText.java:5941) at org.eclipse.swt.custom.StyledText$7.handleEvent(StyledText.java:5635) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4128) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1457) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1480) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1465) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1494) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1490) at org.eclipse.swt.widgets.Canvas.sendKeyEvent(Canvas.java:493) at org.eclipse.swt.widgets.Control.doCommandBySelector(Control.java:1060) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5563) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSResponder.interpretKeyEvents(NSResponder.java:68) at org.eclipse.swt.widgets.Composite.keyDown(Composite.java:587) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5473) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:220) at org.eclipse.swt.widgets.Widget.windowSendEvent(Widget.java:2095) at org.eclipse.swt.widgets.Shell.windowSendEvent(Shell.java:2253) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5535) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationSendEvent(Display.java:4989) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:5138) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.sendEvent(NSApplication.java:128) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3610) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2701) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2665) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2499) at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:679) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:668) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at com.aptana.rcp.IDEApplication.start(IDEApplication.java:125) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:622) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:577) at org.eclipse.equinox.launcher.Main.run(Main.java:1410) {code} | 8 |
368 | APSTUD-4921 | 06/18/2012 01:58:10 | Coffee script colorization bug with @ | 0. create new coffee script file 1. create class with new variable @scale_3d_effect 2. variable colorization is bad after "3" | 5 |
369 | APSTUD-4939 | 06/20/2012 15:43:08 | Add trace-level logging for indexing files | In Aptana Studio, we have various complains about how long it takes for Studio to index a set of files. Suggest adding trace-level logging for users to be able to turn on/off additional information about how long indexing is taking. | 5 |
370 | APSTUD-4941 | 06/20/2012 18:15:06 | NumberFormatException in JSStyleValidator.enterNumber() | While attempting to run the JS Style validator against ext-debug-all.js, I get the following sequence of errors: {code} !ENTRY com.aptana.editor.js 4 0 2012-06-20 17:08:02.543 !MESSAGE (Build 0.0.0.qualifier) [ERROR] Error trying to parse JS number: '0x444444' !STACK 0 java.lang.NumberFormatException at java.math.BigDecimal.<init>(BigDecimal.java:459) at java.math.BigDecimal.<init>(BigDecimal.java:728) at com.aptana.editor.js.validator.JSStyleValidator.enterNumber(JSStyleValidator.java:1490) at com.aptana.editor.js.validator.JSStyleValidator.enterNode(JSStyleValidator.java:654) at com.aptana.editor.js.validator.JSStyleValidator.access$1(JSStyleValidator.java:573) at com.aptana.editor.js.validator.JSStyleValidator$1.enterNode(JSStyleValidator.java:458) at com.aptana.parsing.util.ParseUtil.treeApply(ParseUtil.java:251) at com.aptana.parsing.util.ParseUtil.treeApply(ParseUtil.java:227) at com.aptana.editor.js.validator.JSStyleValidator.buildFile(JSStyleValidator.java:447) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.core.build.UnifiedBuilder.buildFile(UnifiedBuilder.java:523) at com.aptana.core.build.UnifiedBuilder.doBuildFiles(UnifiedBuilder.java:432) at com.aptana.core.build.UnifiedBuilder.buildFiles(UnifiedBuilder.java:409) at com.aptana.core.build.UnifiedBuilder.fullBuild(UnifiedBuilder.java:303) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:149) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:728) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:199) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:239) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:292) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:295) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:351) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:374) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) {code} Searching the code, it appears to be on this set of code: {code} chartStyle: { padding: 10, animationEnabled: true, font: { name: 'Tahoma', color: 0x444444, size: 11 }, dataTip: { padding: 5, border: { color: 0x99bbe8, size:1 }, background: { color: 0xDAE7F6, alpha: .9 }, font: { name: 'Tahoma', color: 0x15428B, size: 10, bold: true } } }, {code} | 2 |
371 | APSTUD-5380 | 06/20/2012 23:25:39 | Code Formatter - Right trim lines should trim also comments | Please make option "Right trim lines?" in Code Formatter also trim trailing white-spaces after comments, as no-one probably want spaces at end of line there. | 5 |
372 | APSTUD-4944 | 06/21/2012 08:13:00 | JSLint inside Aptana runs far slower than on the command line | As a check, time the approximate time it takes to lint ext-debug-all.js # Create a new web project # Add ext-debug-all.js into the project # Turn JSLint on as a build validator # Clean the project # Time how long it takes to finish indexing. It will be about 200 seconds for me. Now, download http://code.google.com/p/jslint4java/ and run from the command line Make sure to use java -jar jslint4java-2.0.2.jar --maxerr 1000 ext-all-debug.js to replicate the same number of warnings as we output. It runs in a fraction of the time. | 8 |
373 | APSTUD-4945 | 06/21/2012 09:15:49 | Add support for indexing egg-links | Steps to reproduce: - Install a package using an egg-link: eg, pip install -e /path/to/project - Reference the package from within another project Actual result: - Unresolved symbols. Expected results: - Should be able to use the symbols without errors | 5 |
374 | APSTUD-4946 | 06/21/2012 09:19:57 | Cannot add new lines in ticket submitter | When trying to submit a ticket through the Help->Aptana->Submit Ticket interface, I'm unable to add newlines. This is inconvenient for the "Steps to Reproduce" field, as I cannot format the information into steps, just a single line. Second, pressing enter tries to submit the ticket. | 5 |
375 | APSTUD-4949 | 06/22/2012 08:20:48 | PHP Formatter inserts tab as indent when formatter settings are "Use Editor settings" and edit is set to use spaces | I have my PHP editor policy set to spaces, indent width of 4; and after formatting (which is set to use editor settings) I get a tab as the indent. Before: {code} <?php if ($a) // () { echo $a; } ?> {code} After: {code} <?php if ($a)// () { echo $a; } ?> {code} | 8 |
376 | APSTUD-4951 | 06/22/2012 08:36:26 | php code comments /** bug with */ in preg_match | Try this code and notice the incorrect colorization {code} <?php /** if (preg_match("/% Name.:[a-z]*/", $lines[$i], $line)) { echo $line."<br>"; }**/ ?> {code} | 0 |
377 | APSTUD-4957 | 06/25/2012 11:15:05 | Pydev nightly: indexer only indexes open files | Python indexing seems to have broke with the latest nightly. To reproduce: - Create new python project - Create three files in the project: __init__.py test1.py test2.py - Add the following contents: {code} # test1.py from test2 import Spam #test2.py class Spam(object): pass {code} - Close all editors except test1.py - Add space and delete, to trigger reindexing Actual result: "Spam" is marked as an unresolved import Expected result: "Spam" should be recognised. If you then open test2.py again, and retrigger indexing, the symbol is recognised again. | 8 |
378 | APSTUD-4959 | 06/27/2012 03:45:17 | "Building Workspace" very slow, many DiskIndex.readString() errors in log file | Each time a build workspace operation is launched Aptana chokes on certain files which appear to be javascript files. Killing Aptana, deleting the suspected files and restarting Aptana seems to solve the problem. I t re-appears as soon as the files are put back into the project. There is a large selection of the following errors in the log file: {code} !ENTRY com.aptana.index.core 4 0 2012-06-27 12:04:54.404 !MESSAGE (Build 3.3.0.201206252026) [ERROR] null !STACK 0 java.io.UTFDataFormatException at com.aptana.internal.index.core.DiskIndex.readString(DiskIndex.java:1513) at com.aptana.internal.index.core.DiskIndex.readCategoryTable(DiskIndex.java:1121) at com.aptana.internal.index.core.DiskIndex.mergeCategory(DiskIndex.java:797) at com.aptana.internal.index.core.DiskIndex.mergeCategories(DiskIndex.java:770) at com.aptana.internal.index.core.DiskIndex.mergeWith(DiskIndex.java:931) at com.aptana.index.core.Index.save(Index.java:698) at com.aptana.index.core.Index.query(Index.java:535) at com.aptana.editor.js.contentassist.index.JSIndexReader.getProperties(JSIndexReader.java:414) at com.aptana.editor.js.contentassist.JSIndexQueryHelper.getProperties(JSIndexQueryHelper.java:301) at com.aptana.editor.js.contentassist.JSIndexQueryHelper.getMembers(JSIndexQueryHelper.java:183) at com.aptana.editor.js.contentassist.JSIndexQueryHelper.getGlobals(JSIndexQueryHelper.java:124) at com.aptana.editor.js.inferencing.JSNodeTypeInferrer.visit(JSNodeTypeInferrer.java:659) at com.aptana.editor.js.parsing.ast.JSIdentifierNode.accept(JSIdentifierNode.java:33) at com.aptana.editor.js.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:176) at com.aptana.editor.js.inferencing.JSNodeTypeInferrer.getTypes(JSNodeTypeInferrer.java:260) at com.aptana.editor.js.inferencing.JSNodeTypeInferrer.getTypes(JSNodeTypeInferrer.java:241) at com.aptana.editor.js.inferencing.JSNodeTypeInferrer.visit(JSNodeTypeInferrer.java:361) at com.aptana.editor.js.parsing.ast.JSBinaryArithmeticOperatorNode.accept(JSBinaryArithmeticOperatorNode.java:94) at com.aptana.editor.js.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:176) at com.aptana.editor.js.inferencing.JSSymbolTypeInferrer.processValues(JSSymbolTypeInferrer.java:556) at com.aptana.editor.js.inferencing.JSSymbolTypeInferrer.getSymbolPropertyElement(JSSymbolTypeInferrer.java:339) at com.aptana.editor.js.inferencing.JSSymbolTypeInferrer.processProperties(JSSymbolTypeInferrer.java:461) at com.aptana.editor.js.inferencing.JSNodeTypeInferrer.visit(JSNodeTypeInferrer.java:771) at com.aptana.editor.js.parsing.ast.JSObjectNode.accept(JSObjectNode.java:39) at com.aptana.editor.js.inferencing.JSNodeTypeInferrer.addTypes(JSNodeTypeInferrer.java:160) at com.aptana.editor.js.inferencing.JSNodeTypeInferrer.visit(JSNodeTypeInferrer.java:305) at com.aptana.editor.js.parsing.ast.JSAssignmentNode.accept(JSAssignmentNode.java:84) at com.aptana.editor.js.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:176) at com.aptana.editor.js.inferencing.JSSymbolTypeInferrer.processValues(JSSymbolTypeInferrer.java:556) at com.aptana.editor.js.inferencing.JSSymbolTypeInferrer.getSymbolPropertyElement(JSSymbolTypeInferrer.java:339) at com.aptana.editor.js.inferencing.JSSymbolTypeInferrer.getSymbolPropertyElement(JSSymbolTypeInferrer.java:376) at com.aptana.editor.js.inferencing.JSSymbolTypeInferrer$1.map(JSSymbolTypeInferrer.java:282) at com.aptana.editor.js.inferencing.JSSymbolTypeInferrer$1.map(JSSymbolTypeInferrer.java:1) at com.aptana.core.util.CollectionsUtil.map(CollectionsUtil.java:340) at com.aptana.core.util.CollectionsUtil.map(CollectionsUtil.java:374) at com.aptana.editor.js.inferencing.JSSymbolTypeInferrer.getScopeProperties(JSSymbolTypeInferrer.java:278) at com.aptana.editor.js.contentassist.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:216) at com.aptana.editor.js.contentassist.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:104) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:114) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.core.build.UnifiedBuilder.buildFile(UnifiedBuilder.java:525) at com.aptana.core.build.UnifiedBuilder.doBuildFiles(UnifiedBuilder.java:436) at com.aptana.core.build.UnifiedBuilder.buildFiles(UnifiedBuilder.java:413) at com.aptana.core.build.UnifiedBuilder.fullBuild(UnifiedBuilder.java:307) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:153) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:728) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:199) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:239) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:292) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:295) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:351) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:374) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) {code} | 13 |
379 | APSTUD-4962 | 06/27/2012 15:49:55 | No content assist documentation for Zend Framework | I added zend framework to the php libraries.. but autocomplete does not seem to be working for any of the zend framework | 5 |
380 | APSTUD-4968 | 06/28/2012 12:06:48 | GIT Integration only uses first line of a multi-line commit message | I have an issue where, on some projects, when I do a GIT commit with a multi-line commit message, only the first line of the message is used. The issue is demonstrated in the screencast I put together at http://youtu.be/5AJHkgKRrzk I've updated to the latest Aptana Studio (v3.1.3) and that hasn't fixed it. (I was previously running v3.0.4) I'm not sure if Aptana has built-in GIT so I also updated GIT for Windows to the latest 1.7.11-preview (was previously running v1.7.7). This also had no effect. I've also got msysgit installed, I've upgraded that from 1.7.7 to 1.7.11 too. As far as I know, this hasn't always been an issue. Though I may be wrong. It now seems to be affecting all of my projects. I've got a pretty standard, stand-alone Aptana Studio install - I've not added any plugins or extra modules to it. And I use it in pretty basic ways to code using PHP. The only things that may be unusual: - I don't keep projects in my workspace folder, they're dotted all around my disk. - I recently installed Eclipse as well - this seemed to be a fairly standalone thing that just popped a load of files in a directory. Is it possible that that's interfered with Aptana? I don't know when this issue started, so it's hard to say if it started when I installed Eclipse. I'm not sure what else you'll need to diagnose this. Let me know if you need any configs or .project files or anything. Thanks Ross Wintle | 8 |
381 | APSTUD-4971 | 06/29/2012 05:50:02 | PyDev Mylyn integration cannot be installed on Eclipse 4.2 | It seems that in Eclipse 4.2, the PyDev Mylyn integration cannot be installed even if Mylyn is present on the system. It seems to be a p2 bug... the integration is a single feature.xml file with the contents below, and it seems like p2 does not consider the new mylyn version (3.8) to be greater than the specified version (2.0). It should be possible just removing the version from things and it should work properly (the support needed for the PyDev integration has been available for so long that we shouldn't need to specify a version anymore). <?xml version="1.0" encoding="UTF-8"?> <feature id="org.python.pydev.mylyn.feature" label="Pydev Mylyn Integration" version="0.3.0" provider-name="Fabio Zadrozny"> <description> Integration of Mylyn with Pydev. </description> <copyright> (c) Fabio Zadrozny </copyright> <license url="http://www.opensource.org/licenses/eclipse-1.0.php"> Eclipse Public License </license> <requires> <import plugin="org.python.pydev" version="1.3.7" match="greaterOrEqual"/> <import plugin="org.eclipse.ui.ide"/> <import plugin="org.eclipse.core.runtime"/> <import plugin="org.eclipse.ui"/> <import plugin="org.eclipse.core.resources"/> <import plugin="org.eclipse.ui.navigator"/> <import plugin="org.eclipse.ui.views"/> <import plugin="org.eclipse.mylyn" version="2.0.0.v20070627-1400" match="greaterOrEqual"/> <import plugin="org.eclipse.mylyn.context.core"/> <import plugin="org.eclipse.mylyn.context.ui"/> <import plugin="org.eclipse.mylyn.ide.ui"/> <import plugin="org.eclipse.mylyn.resources.ui"/> </requires> <plugin id="org.python.pydev.mylyn" download-size="0" install-size="0" version="0.3.0" unpack="false"/> </feature> | 8 |
382 | APSTUD-4974 | 06/30/2012 14:05:08 | Interactive Console does not respect user keybindings | Eclipse allows you to set up your own keybindings for various contexts within the IDE, including the console. However, it appears that the PyDev interactive console doesn't respect these keybindings. It would be nice if the interactive console used Eclipse's commands API to make use of the user's keybindings for text editing (e.g. go to line start/end, etc.). For example, I use keybindings based on Emacs. So I can use Ctrl-A to jump to the start of a line, Ctrl+E to jump to the end of a line etc. It would be really, really wonderful if these key bindings could also be activated for the interactive console, and the debugging console. (this is copied from [Sourceforge bug tracker issue 3049914|http://sourceforge.net/tracker/?func=detail&aid=3049914&group_id=85796&atid=577329]) | 20 |
383 | APSTUD-4975 | 07/01/2012 01:55:47 | Outline in javascript signals multiple functions with the same name when declared through prototype | The problem appears when working with javascript files (I'm manipulating a small library) and prototype is used to declare new function in some object. If I change the function's name, in Outline box each prototype function is represented 2 times instead of one. And each time a name is manipulated this happends again, so the number of functions continues to grow. | 8 |
384 | APSTUD-4978 | 07/01/2012 09:24:00 | Can't Open Declaration for some Variables, Constants or/and functions/classes/methods in a PHP file | I discovered a bug in the Code-Assist, and 'Open declaration' feature. The bug make the opening of Declaration places for 'constant, variables, classes, methods, functions' impossible to found (even if the FILE which contains the declaration is already opened in the Aptana Studio 3 Editor!). So, sometimes.. It cannot open declaration (not always, but sometimes), I cannot tell you how reproduce that bug, but, it's certainly reproductible. For example, imagine that piece of php code, file is saved to the disk in a project: {code} <?php // You can see the declaration of the constant JUST below: define('TABLE_PRODUCTS_TO_DISCOUNT_CATEGORIES', 'products_to_discount_categories'); // Now, let's use the constant (tep or not tep_db): $discount_category_query = tep_db_query("select p.products_id, p.products_quantity, p.products_weight, discount_categories_id from " . TABLE_PRODUCTS ." p left join " . TABLE_PRODUCTS_TO_DISCOUNT_CATEGORIES . " using(products_id) where p.products_id in (" . implode(',', $list_of_prdct_ids) . ")"); ?> {code} Now.. Try to select a php constant used in a php code line as for example *TABLE_PRODUCTS_TO_DISCOUNT_CATEGORIES* and then click with right button and select 'Open Declaration', an error is reported showing in red: {color:red}Current text selection cannot be opened in an editor{color}. It's not normal I think, since in olds versions of Aptana Studio 3.0.x this thing 'Open Declaration' opened my 'define' line. (and if the define was in other file, then Aptana just open the file and outline the define line! In Aptana Studio 3.2.x it just not effect, and if effect.. just report and error as showned up!). Is it a bug or a normal new comportment? (can I revert to the old comportment?). | 8 |
385 | APSTUD-4983 | 07/03/2012 03:34:51 | Show in Resource History command generates casting error | Right clicking on a file in the Package Explorer and selecting Team > Show in Resource History produces the following error: {noformat} !ENTRY org.eclipse.jface 4 2 2012-07-03 10:24:36.959 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.jface". !STACK 0 java.lang.ClassCastException: com.aptana.git.ui.internal.history.CommitGraphTable cannot be cast to org.eclipse.ui.part.PageBookView$SelectionProvider at org.eclipse.ui.part.PageBookView.postSelectionChanged(PageBookView.java:910) at org.eclipse.ui.part.PageBookView.access$3(PageBookView.java:908) at org.eclipse.ui.part.PageBookView$3.selectionChanged(PageBookView.java:175) at org.eclipse.jface.viewers.StructuredViewer$3.run(StructuredViewer.java:888) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:49) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:175) at org.eclipse.jface.viewers.StructuredViewer.firePostSelectionChanged(StructuredViewer.java:886) at org.eclipse.jface.viewers.StructuredViewer.setSelection(StructuredViewer.java:1726) at org.eclipse.jface.viewers.TableViewer.setSelection(TableViewer.java:158) at org.eclipse.jface.viewers.Viewer.setSelection(Viewer.java:394) at com.aptana.git.ui.internal.history.CommitGraphTable.setCommits(CommitGraphTable.java:116) at com.aptana.git.ui.internal.history.GitHistoryPage$1$1.run(GitHistoryPage.java:150) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:135) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3529) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3182) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1022) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:916) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:585) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:540) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:616) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:629) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:584) at org.eclipse.equinox.launcher.Main.run(Main.java:1438) at org.eclipse.equinox.launcher.Main.main(Main.java:1414) {noformat} | 8 |
386 | APSTUD-4986 | 07/03/2012 07:24:07 | Git History not showing | h3. Steps to Reproduce - Select a git project - Right click on the project and go to Team > Show repository history h3. Actual Result It's empty. h3. Expected Result We should be able to see the log of previous commit in our git project. It was working well in older version (3.0) | 8 |
387 | APSTUD-4989 | 07/03/2012 09:53:35 | CSS: NullPointerException in CSSElementSelectorHover.getHoverRegion() | No repo case, but should be guarded against {code} java.lang.NullPointerException at com.aptana.editor.html.text.CSSElementSelectorHover.getHoverRegion(CSSElementSelectorHover.java:104) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:711) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:207) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4128) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1457) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1480) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1465) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1270) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3974) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3613) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2701) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2665) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2499) at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:679) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:668) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at com.aptana.rcp.IDEApplication.start(IDEApplication.java:125) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:622) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:577) at org.eclipse.equinox.launcher.Main.run(Main.java:1410) {code} | 3 |
388 | APSTUD-4991 | 07/03/2012 10:01:20 | SWTException: Widget is disposed in CompletionProposalPopup.getSelectedProposal() | Found is a log file: {code} !ENTRY org.eclipse.ui 4 0 2012-06-26 14:18:04.085 !MESSAGE Unhandled event loop exception !STACK 0 org.eclipse.swt.SWTException: Failed to execute runnable (org.eclipse.swt.SWTException: Widget is disposed) at org.eclipse.swt.SWT.error(SWT.java:4282) at org.eclipse.swt.SWT.error(SWT.java:4197) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:138) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3938) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3615) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2701) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2665) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2499) at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:679) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:668) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at com.aptana.rcp.IDEApplication.start(IDEApplication.java:125) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:622) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:577) at org.eclipse.equinox.launcher.Main.run(Main.java:1410) Caused by: org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:4282) at org.eclipse.swt.SWT.error(SWT.java:4197) at org.eclipse.swt.SWT.error(SWT.java:4168) at org.eclipse.swt.widgets.Widget.error(Widget.java:774) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:568) at org.eclipse.swt.widgets.Table.getSelectionIndex(Table.java:1666) at com.aptana.editor.common.contentassist.CompletionProposalPopup.getSelectedProposal(CompletionProposalPopup.java:879) at com.aptana.editor.common.contentassist.CompletionProposalPopup.setProposals(CompletionProposalPopup.java:1165) at com.aptana.editor.common.contentassist.CompletionProposalPopup.access$31(CompletionProposalPopup.java:1162) at com.aptana.editor.common.contentassist.CompletionProposalPopup$12.run(CompletionProposalPopup.java:1741) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:135) ... 22 more {code} | 3 |
389 | APSTUD-4993 | 07/03/2012 10:07:40 | URISyntaxException: Expected authority... in HyperlinkDetector.detectHyperlinks() | From a log file: {code} !ENTRY com.aptana.core 4 0 2012-06-29 15:51:57.847 !MESSAGE (Build 3.1.3.201205292243) [ERROR] Could not encode: http: !STACK 0 java.net.URISyntaxException: Expected authority at index 7: http:// at java.net.URI$Parser.fail(URI.java:2810) at java.net.URI$Parser.failExpecting(URI.java:2816) at java.net.URI$Parser.parseHierarchical(URI.java:3064) at java.net.URI$Parser.parse(URI.java:3015) at java.net.URI.<init>(URI.java:662) at com.aptana.core.util.URLEncoder.encode(URLEncoder.java:47) at com.aptana.editor.common.text.hyperlink.URIHyperlink.<init>(URIHyperlink.java:44) at com.aptana.editor.common.text.hyperlink.HyperlinkDetector.detectHyperlinks(HyperlinkDetector.java:102) at org.eclipse.ui.texteditor.HyperlinkDetectorRegistry$HyperlinkDetectorDelegate.detectHyperlinks(HyperlinkDetectorRegistry.java:80) at org.eclipse.jface.text.hyperlink.HyperlinkManager.findHyperlinks(HyperlinkManager.java:286) at org.eclipse.jface.text.hyperlink.HyperlinkManager.findHyperlinks(HyperlinkManager.java:258) at org.eclipse.jface.text.hyperlink.HyperlinkManager.mouseMove(HyperlinkManager.java:462) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:211) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4128) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1457) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1480) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1465) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1270) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3974) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3613) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2701) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2665) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2499) at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:679) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:668) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at com.aptana.rcp.IDEApplication.start(IDEApplication.java:125) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:622) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:577) at org.eclipse.equinox.launcher.Main.run(Main.java:1410) {code} | 3 |
390 | APSTUD-4994 | 07/03/2012 10:11:33 | Output Studio version to log file on startup | When scanning log files, it's very difficult to tell the current version of Aptana or Titanium being used, unless it's an error we catch and log ourselves. The startup of a Studio instance looks like: {code} !ENTRY org.eclipse.core.net 1 0 2012-07-03 09:13:19.437 !MESSAGE System property http.nonProxyHosts has been set to local|*.local|169.254/16|*.169.254/16 by an external source. This value will be overwritten using the values from the preferences !SESSION 2012-07-03 09:16:18.256 ----------------------------------------------- eclipse.buildId=unknown java.version=1.6.0_33 java.vendor=Apple Inc. BootLoader constants: OS=macosx, ARCH=x86, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/tp1/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86 -keyring /Users/tp1/.eclipse_keyring -consoleLog -showlocation {code} Somewhere in there (or right afterwards), we should log an entry (not through IDELog, since we don't want it o be flagged as an error) that shows the current version. If there is a way we can instead fill in the eclipse.buildId, that's fine too. | 5 |
391 | APSTUD-4995 | 07/03/2012 10:23:34 | Code-formatting in PyDev may take place even with syntax error, yielding wrong results | Having the code below (which has a syntax error), should not be code-formatted, but it ends up being code-formatted, which yields wrong results. {code} '''class Bar: ''' class Foo: a+b #should not be code-formatted ''' ''' {code} To properly fix this, the PyDev parser should have a 'faster' way of operating, which means doing only syntax parsing without generating an actual tree (as the code-formatter is currently text-based and not AST-based) just to get syntax errors. This is especially troublesome when code-formatting on save is used. | 8 |
392 | APSTUD-4998 | 07/04/2012 09:23:26 | Publish button greyed out in Eclipse plugin version on Eclipse 4.2 | h3. Steps to Reproduce Try to right click on publish function or click on publish button but this no work h3. Actual Result The publish button no work in aptana plug in for eclipse h3. Expected Result publish button upload, download and deployment settings | 8 |
393 | APSTUD-5002 | 07/05/2012 15:28:21 | StringIndexOutOfBoundsException in JSLintValidator.run() | Found in my log file. File is attached. {code} !ENTRY com.aptana.editor.js 4 0 2012-07-04 08:49:56.502 !MESSAGE (Build 0.0.0.qualifier) [ERROR] Failed to parse file:/Users/ingo/Documents/Aptana%20Studio%203%20Workspace/new.aptana.com/public/javascripts/jquery.trace.js with JSLint !STACK 0 java.lang.StringIndexOutOfBoundsException: String index out of range: 41 at java.lang.String.charAt(String.java:686) at com.aptana.editor.js.validator.JSLintValidator$JSLint$1.run(JSLintValidator.java:291) at org.mozilla.javascript.Context.call(Context.java:489) at org.mozilla.javascript.ContextFactory.call(ContextFactory.java:504) at com.aptana.editor.js.validator.JSLintValidator$JSLint.getProblems(JSLintValidator.java:227) at com.aptana.editor.js.validator.JSLintValidator.parseWithLint(JSLintValidator.java:133) at com.aptana.editor.js.validator.JSLintValidator.buildFile(JSLintValidator.java:101) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.core.build.UnifiedBuilder.buildFile(UnifiedBuilder.java:525) at com.aptana.core.build.UnifiedBuilder.doBuildFiles(UnifiedBuilder.java:436) at com.aptana.core.build.UnifiedBuilder.buildFiles(UnifiedBuilder.java:413) at com.aptana.core.build.UnifiedBuilder.fullBuild(UnifiedBuilder.java:307) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:153) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:728) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:199) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:239) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:292) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:295) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:351) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:374) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) {code} | 2 |
394 | APSTUD-5007 | 07/06/2012 10:20:05 | Investigate what is causing initial slowness in Studio startup time | Profile Studio startup to see what causes such a delay when opening Studio for file editing. Compare Studio against Eclipse and a vanilla RCP project to find a lower bound. | 13 |
395 | APSTUD-5010 | 07/06/2012 12:07:32 | Formatter breaks when using anonymous functions | Formatter stops working when encounters anonymous function (being passed as an argument for example) i.e. does not highlight mistakes, or vise versa, still highlights them when they are fixed. Commenting out anonymous functions in the code fixes the problem. | 8 |
396 | APSTUD-5015 | 07/09/2012 02:45:53 | Message 'Error: 'eventsDispatcher' - definition not found' | h3. Steps to Reproduce 1. Install Aptana 3.2.0 on Windows Vista. 2. Install JavaScript debugger (from Visual Studio). 3. Create new web project, create HTML file, open and edit it, show it in internal web browser. h3. Actual Result On any action error message is popping up: "Error: 'eventsDispatcher' - definition not found" and asking if I want to open JavaScript debugger. h3. Expected Result No errors. | 8 |
397 | APSTUD-5017 | 07/09/2012 07:44:48 | Autocomplete in html tag attributes eats up following attributes | h3. Steps to Reproduce 1. In a HTML document insert "<video preload="none"></video>" 2. Now place the cursor right before "preload" and start typing "autoplay=" 3. When Aptana suggests the two values "true" and "false" select one and hit TAB or ENTER h3. Actual Result <video autoplay="true"none"></video> h3. Expected Result <video autoplay="true" preload="none"></video> | 8 |
398 | APSTUD-5018 | 07/09/2012 08:41:09 | PHPDoc block is not applied to the vars in the function itself | Aptana is not showing the documentation for the vars which are the parameters to the function. Please see the screenshot for a better description. | 8 |
399 | APSTUD-5020 | 07/09/2012 11:19:24 | PyDev cannot add a Python Interepreter in Juno | Fabio Zadrozny asked (on Twitter) that I lodge this bug report here. I downloaded and installed Eclipse 4.2 Juno. I downloaded and installed PyDev. When I try and create a Python interpreter within PyDev (i.e. connect PyDev to /usr/bin/python2.7) it correctly picks up everything on the PYTHONPATH but on clicking "yes", I get a NPE: java.lang.NullPointerException at org.python.pydev.ui.pythonpathconf.AbstractInterpreterEditor.getNewInputObject(AbstractInterpreterEditor.java:1009) at org.python.copiedfromeclipsesrc.PythonListEditor.addPressed(PythonListEditor.java:134) at org.python.copiedfromeclipsesrc.PythonListEditor$1.widgetSelected(PythonListEditor.java:225) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1276) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3554) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3179) at org.eclipse.jface.window.Window.runEventLoop(Window.java:825) at org.eclipse.jface.window.Window.open(Window.java:801) at org.eclipse.ui.internal.dialogs.WorkbenchPreferenceDialog.open(WorkbenchPreferenceDialog.java:215) at org.eclipse.ui.internal.OpenPreferencesAction.run(OpenPreferencesAction.java:65) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:584) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:501) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:411) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1276) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3554) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3179) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1022) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:916) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:585) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:540) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:601) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:629) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:584) at org.eclipse.equinox.launcher.Main.run(Main.java:1438) at org.eclipse.equinox.launcher.Main.main(Main.java:1414) Also: java.lang.RuntimeException: Information about process of adding new interpreter: - Opening dialog to request executable (or jar). - Chosen interpreter (name and file):'Tuple [Python 2.7 -- /usr/bin/python2.7] - Ok, file is non-null. Getting info on:/usr/bin/python2.7 - Beggining task:Getting libs totalWork:100 - Setting task name:Mounting executable string... - Setting task name:Executing: /usr/bin/python2.7 -u /home/users/russel/lib.Linux.x86_64/eclipse-java-4.2/plugins/org.python.pydev_2.6.0.2012062818/pysrc/interpreterInfo.py - Setting task name:Making pythonpath environment... /usr/bin/python2.7 -u /home/users/russel/lib.Linux.x86_64/eclipse-java-4.2/plugins/org.python.pydev_2.6.0.2012062818/pysrc/interpreterInfo.py - Setting task name:Making exec... /usr/bin/python2.7 -u /home/users/russel/lib.Linux.x86_64/eclipse-java-4.2/plugins/org.python.pydev_2.6.0.2012062818/pysrc/interpreterInfo.py - Setting task name:Reading output... - Setting task name:Waiting for process to finish. at org.python.pydev.core.log.Log.logInfo(Log.java:112) at org.python.pydev.ui.pythonpathconf.AbstractInterpreterEditor.getNewInputObject(AbstractInterpreterEditor.java:1096) at org.python.copiedfromeclipsesrc.PythonListEditor.addPressed(PythonListEditor.java:134) at org.python.copiedfromeclipsesrc.PythonListEditor$1.widgetSelected(PythonListEditor.java:225) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1276) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3554) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3179) at org.eclipse.jface.window.Window.runEventLoop(Window.java:825) at org.eclipse.jface.window.Window.open(Window.java:801) at org.eclipse.ui.internal.dialogs.WorkbenchPreferenceDialog.open(WorkbenchPreferenceDialog.java:215) at org.eclipse.ui.internal.OpenPreferencesAction.run(OpenPreferencesAction.java:65) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:584) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:501) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:411) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1276) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3554) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3179) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1022) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:916) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:585) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:540) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:601) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:629) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:584) at org.eclipse.equinox.launcher.Main.run(Main.java:1438) at org.eclipse.equinox.launcher.Main.main(Main.java:1414) | 5 |
400 | APSTUD-5022 | 07/10/2012 01:46:18 | Context menu in HTML editor - submenu 'Publish' | h3. Steps to Reproduce 1. Create Web Project. 2. Create HTML file and open in editor. 3. Open context menu (right click in editor). h3. Actual Result Submenu "Publish" is initially enabled. It is disabled when hovering mouse over it. h3. Expected Result Submenu "Publish" should be in proper state. | 5 |
401 | APSTUD-5024 | 07/10/2012 06:28:46 | PyDev: when creating a launch the PYTHONPATH used is incorrect | I must say I couldn't reliably reproduce this, but the effect is that when changing the dependencies of a project, the PYTHONPATH used will sometimes not use the proper configuration. I was able to do a debug session in a production environment and saw that the completion cache related to calculating the dependencies of a project was not being properly flushed properly and inspecting the code I found that there was a case where it was possible that after calling nature.startRequests() the nature.endRequests() method was not properly called as it should. Also, after doing this fix, it should also take into account that if this happens again for some reason, this should be logged. | 8 |
402 | APSTUD-5027 | 07/10/2012 23:34:09 | Open Declaration fails on JS when the target is in a different file | This one was posted at: http://stackoverflow.com/questions/10909359/aptana-open-declaration {quote} Open declaration works, if the method is in the same file.. otherwise it fails across multiple files in the same project. That concludes the answer portion, rest is just my angry rant: What is even worse that with HOVER on the function call it actually shows the location where the function is located, that is it shows exact directory and file name, yet F3 or open declaration does nothing as OP said. This means, that there has to be some way of triggering the function lookup across other files in the same project. How can it be that Aptana knows where the function is located, yet is unable to open it within the same project? {quote} | 8 |
403 | APSTUD-5028 | 07/11/2012 06:07:02 | toggling multi-line comments in ruby corrupts syntax highlighting for entire document | If I use the toggle comment shortcut (CTRL+slash) with 2 or more lines, the syntax highlighting of the comments and surrounding ruby code is corrupted (see attached pic). With 'show whitespace' turned on, I can see that the comments have a strange line-feed character at the end (this renders as a small square). This seems to be the cause of the problem. If I copy the comments into a text editor and back again, the weird line-feeds are gone and the syntax highlighting is back to normal. This may be related to: https://jira.appcelerator.org/browse/APSTUD-4985 I've marked this as High priority because it really interferes with my (and I suspect many people's) normal workflow. | 5 |
404 | APSTUD-5038 | 07/11/2012 16:12:45 | Pressing ESC after performing text search sends focus to wrong editor | With multiple editors visible, press cmd+f to perform a search on one of them. After searching press ESC, and the focus goes to another editor (leftmost?) instead of the editor where you were searching. | 5 |
405 | APSTUD-5040 | 07/12/2012 03:44:58 | Assertion Failed in ThemeingDamagerRepairer.storeScope() | Aptana crashed when coding (some PDO function) and cannot open the file anymore with the following error: {code} org.eclipse.core.runtime.AssertionFailedException: assertion failed: at org.eclipse.core.runtime.Assert.isTrue(Assert.java:110) at org.eclipse.core.runtime.Assert.isTrue(Assert.java:96) at org.eclipse.jface.text.Position.<init>(Position.java:63) at org.eclipse.jface.text.TypedPosition.<init>(TypedPosition.java:35) at com.aptana.editor.common.text.rules.ThemeingDamagerRepairer.storeScope(ThemeingDamagerRepairer.java:330) at com.aptana.editor.common.text.rules.ThemeingDamagerRepairer.getTokenTextAttribute(ThemeingDamagerRepairer.java:276) at org.eclipse.jface.text.rules.DefaultDamagerRepairer.createPresentation(DefaultDamagerRepairer.java:179) at com.aptana.editor.common.text.rules.ThemeingDamagerRepairer.createPresentation(ThemeingDamagerRepairer.java:129) at com.aptana.editor.common.text.reconciler.CommonPresentationReconciler.createPresentation(CommonPresentationReconciler.java:179) at com.aptana.editor.common.text.reconciler.CommonPresentationReconciler.createPresentation(CommonPresentationReconciler.java:125) at org.eclipse.jface.text.presentation.PresentationReconciler.processDamage(PresentationReconciler.java:566) at org.eclipse.jface.text.presentation.PresentationReconciler.access$3(PresentationReconciler.java:564) at org.eclipse.jface.text.presentation.PresentationReconciler$InternalListener.inputDocumentChanged(PresentationReconciler.java:119) at org.eclipse.jface.text.TextViewer.fireInputDocumentChanged(TextViewer.java:2888) at org.eclipse.jface.text.TextViewer.setDocument(TextViewer.java:2937) at org.eclipse.jface.text.source.SourceViewer.setDocument(SourceViewer.java:640) at org.eclipse.jface.text.source.projection.ProjectionViewer.setDocument(ProjectionViewer.java:376) at org.eclipse.jface.text.source.SourceViewer.setDocument(SourceViewer.java:588) at org.eclipse.ui.texteditor.AbstractTextEditor.initializeSourceViewer(AbstractTextEditor.java:4030) at org.eclipse.ui.texteditor.AbstractTextEditor.createPartControl(AbstractTextEditor.java:3558) at org.eclipse.ui.texteditor.StatusTextEditor.createPartControl(StatusTextEditor.java:54) at org.eclipse.ui.texteditor.AbstractDecoratedTextEditor.createPartControl(AbstractDecoratedTextEditor.java:440) at com.aptana.editor.common.internal.AbstractFoldingEditor.createPartControl(AbstractFoldingEditor.java:59) at com.aptana.editor.common.AbstractThemeableEditor.createPartControl(AbstractThemeableEditor.java:317) at com.aptana.editor.html.HTMLEditor.createPartControl(HTMLEditor.java:148) at com.aptana.editor.php.internal.ui.editor.PHPSourceEditor.createPartControl(PHPSourceEditor.java:154) at org.eclipse.ui.internal.EditorReference.createPartHelper(EditorReference.java:670) at org.eclipse.ui.internal.EditorReference.createPart(EditorReference.java:465) at org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:595) at org.eclipse.ui.internal.EditorReference.getEditor(EditorReference.java:289) at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditorBatched(WorkbenchPage.java:2945) at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(WorkbenchPage.java:2850) at org.eclipse.ui.internal.WorkbenchPage.access$11(WorkbenchPage.java:2842) at org.eclipse.ui.internal.WorkbenchPage$10.run(WorkbenchPage.java:2793) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2789) at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2773) at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2764) at org.eclipse.ui.ide.IDE.openEditor(IDE.java:651) at org.eclipse.ui.ide.IDE.openEditor(IDE.java:610) at org.eclipse.ui.actions.OpenFileAction.openFile(OpenFileAction.java:99) at org.eclipse.ui.actions.OpenSystemEditorAction.run(OpenSystemEditorAction.java:99) at org.eclipse.ui.actions.RetargetAction.run(RetargetAction.java:221) at org.eclipse.ui.navigator.CommonNavigatorManager$3.open(CommonNavigatorManager.java:185) at org.eclipse.ui.OpenAndLinkWithEditorHelper$InternalListener.open(OpenAndLinkWithEditorHelper.java:48) at org.eclipse.jface.viewers.StructuredViewer$2.run(StructuredViewer.java:866) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:49) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:175) at org.eclipse.jface.viewers.StructuredViewer.fireOpen(StructuredViewer.java:864) at org.eclipse.jface.viewers.StructuredViewer.handleOpen(StructuredViewer.java:1152) at org.eclipse.ui.navigator.CommonViewer.handleOpen(CommonViewer.java:462) at org.eclipse.jface.viewers.StructuredViewer$6.handleOpen(StructuredViewer.java:1256) at org.eclipse.jface.util.OpenStrategy.fireOpenEvent(OpenStrategy.java:275) at org.eclipse.jface.util.OpenStrategy.access$2(OpenStrategy.java:269) at org.eclipse.jface.util.OpenStrategy$1.handleEvent(OpenStrategy.java:309) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4128) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1457) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1480) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1465) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1270) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3974) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3613) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2701) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2665) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2499) at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:679) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:668) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at com.aptana.rcp.IDEApplication.start(IDEApplication.java:125) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:622) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:577) at org.eclipse.equinox.launcher.Main.run(Main.java:1410) {code} | 8 |
406 | APSTUD-5041 | 07/12/2012 08:28:57 | PyDev needs to support new syntax from Python 3.3 | The Python 3 grammar must be updated to support the new 'yield from' expression. See: http://www.python.org/dev/peps/pep-0380/ The full support for this change includes: 1. AST change 2. Grammar change 3. Pretty-print Note: it'll be done in the existing Python 3 grammar (as Python 3.2 is still not used a lot, we'll not create a separate 3.3 grammar just for that change -- so, there should be no changes in the UI). | 13 |
407 | APSTUD-5043 | 07/12/2012 11:36:23 | Submit ticket 'Steps to Reproduce' lacks scrollbars. | h3. Steps to Reproduce When this textarea (Steps to Reproduce) gets filled too far (vertically or horizontally), there are no scrollbars to let the user know he can scroll the text. We should add the vertical bar but wrap the horizontal text so it's on the next line. This should apply to all multi-line text fields in the dialog. h3. Actual Result No scrollbars h3. Expected Result Scrollbars | 3 |
408 | APSTUD-5046 | 07/13/2012 15:17:39 | Studio indexing unchanged files | I've noticed that if I shut down and restart Studio, it appears to be reindexing a number of files, even though they haven't changed. This is a non-trivial list of files, enough to add some additional indexing. As an example: Before (ran 2x): !MESSAGE (Build 0.0.0.qualifier) [INFO] com.aptana.core/debug/builder Finished unified build of 'JavaScript Style'. Took 1,103.952 ms. !MESSAGE (Build 0.0.0.qualifier) [INFO] com.aptana.core/debug/builder Finished unified build of 'JavaScript Style'. Took 1,081.843 ms. After commenting out the indexing of files with encoding changes: !MESSAGE (Build 0.0.0.qualifier) [INFO] com.aptana.core/debug/builder Finished unified build of 'JavaScript Style'. Took 239.482 ms. Similarly, before: !MESSAGE (Build 0.0.0.qualifier) [INFO] com.aptana.core/debug/builder Finished unified build of 'debug_android201'. Took 2,152.666 ms. !MESSAGE (Build 0.0.0.qualifier) [INFO] com.aptana.core/debug/builder Finished unified build of 'debug_android201'. Took 1,731.863 ms. Afterwards: !MESSAGE (Build 0.0.0.qualifier) [INFO] com.aptana.core/debug/builder Finished unified build of 'debug_android201'. Took 191.405 ms. List of files with encoding changes: Resource changed encoding:new.aptana.com/Basil Notes.txt Resource changed encoding:new.aptana.com/doc/README_FOR_APP Resource changed encoding:new.aptana.com/features/contribute.feature Resource changed encoding:new.aptana.com/features/downloads.feature Resource changed encoding:new.aptana.com/features/home.feature Resource changed encoding:new.aptana.com/features/news.feature Resource changed encoding:new.aptana.com/features/studio.feature Resource changed encoding:new.aptana.com/features/support.feature Resource changed encoding:new.aptana.com/log/development.log Resource changed encoding:new.aptana.com/log/newrelic_agent.log Resource changed encoding:new.aptana.com/public/download.txt Resource changed encoding:new.aptana.com/public/images/products/aptana/README Resource changed encoding:new.aptana.com/public/robots.txt Resource changed encoding:new.aptana.com/script/about Resource changed encoding:new.aptana.com/tmp/restart.txt Resource changed encoding:new.aptana.com/vendor/gems/compass-0.10.2/features/command_line.feature Resource changed encoding:new.aptana.com/vendor/gems/compass-0.10.2/features/extensions.feature Resource changed encoding:new.aptana.com/vendor/gems/crack-0.1.7/LICENSE Resource changed encoding:new.aptana.com/vendor/gems/devise-1.0.7/TODO Resource changed encoding:new.aptana.com/vendor/gems/devise-1.0.7/generators/devise_install/templates/README Resource changed encoding:new.aptana.com/vendor/gems/haml-3.0.9/test/sass/data/hsl-rgb.txt Resource changed encoding:new.aptana.com/vendor/gems/haml-3.0.9/vendor/fssm/LICENSE Resource changed encoding:new.aptana.com/vendor/gems/haml-3.0.9/vendor/fssm/spec/root/duck/quack.txt Resource changed encoding:new.aptana.com/vendor/gems/haml-3.0.9/vendor/fssm/spec/root/moo/cow.txt Resource changed encoding:new.aptana.com/vendor/gems/newrelic_rpm-2.11.3/CHANGELOG Resource changed encoding:new.aptana.com/vendor/gems/newrelic_rpm-2.11.3/LICENSE Resource changed encoding:new.aptana.com/vendor/gems/rack-1.1.0/README Resource changed encoding:new.aptana.com/vendor/gems/warden-0.10.5/LICENSE Resource changed encoding:new.aptana.com/vendor/plugins/redirect_routing/README Resource changed encoding:new.aptana.com/vendor/rails/actionmailer/CHANGELOG Resource changed encoding:new.aptana.com/vendor/rails/actionmailer/README Resource changed encoding:new.aptana.com/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/README Resource changed encoding:new.aptana.com/vendor/rails/actionpack/CHANGELOG Resource changed encoding:new.aptana.com/vendor/rails/actionpack/README Resource changed encoding:new.aptana.com/vendor/rails/actionpack/test/fixtures/multipart/hello.txt Resource changed encoding:new.aptana.com/vendor/rails/activerecord/CHANGELOG Resource changed encoding:new.aptana.com/vendor/rails/activerecord/README Resource changed encoding:new.aptana.com/vendor/rails/activerecord/test/assets/example.log Resource changed encoding:new.aptana.com/vendor/rails/activeresource/CHANGELOG Resource changed encoding:new.aptana.com/vendor/rails/activeresource/README Resource changed encoding:new.aptana.com/vendor/rails/activeresource/test/debug.log Resource changed encoding:new.aptana.com/vendor/rails/activesupport/CHANGELOG Resource changed encoding:new.aptana.com/vendor/rails/activesupport/README Resource changed encoding:new.aptana.com/vendor/rails/railties/CHANGELOG Resource changed encoding:new.aptana.com/vendor/rails/railties/README Resource changed encoding:new.aptana.com/vendor/rails/railties/bin/about Resource changed encoding:new.aptana.com/vendor/rails/railties/configs/empty.log Resource changed encoding:new.aptana.com/vendor/rails/railties/doc/README_FOR_APP Resource changed encoding:new.aptana.com/vendor/rails/railties/guides/images/icons/README Resource changed encoding:new.aptana.com/vendor/rails/railties/html/robots.txt Resource changed encoding:new.aptana.com/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/README ---- Resource changed encoding:debug_android201/CHANGELOG.txt Resource changed encoding:debug_android201/LICENSE Resource changed encoding:debug_android201/LICENSE.txt Resource changed encoding:debug_android201/README Resource changed encoding:debug_android201/build.log It seems that these files should not be reporting encoding changes. | 8 |
409 | APSTUD-7160 | 07/17/2012 06:54:11 | PHP Interpreters are gone after an restart | All added PHP Interpreters are gone after restarting Aptana. You have to add them every time you restart Aptana and want to use the debugger. | 5 |
410 | APSTUD-7193 | 07/25/2012 07:58:47 | Pydev 2.6+ not working with Ganymede | When I attempt to open a file I get a java.lang.NoSuchMethodError on org.eclipse.jface.text.rules.WhitespaceRule I can't easily upgrade the version of Eclipse since using Flex 3 which requires it and like having one eclipse for this project instead of segmenting it into 2 (which is possible) | 3 |
411 | APSTUD-7202 | 07/26/2012 19:14:59 | Create interactive console for javascript | Port the interactive console in PyDev to Javascript. Created branch in PyDev: interactive_console_core to handle that. Notes: * Maybe try to integrate browser environment in the shell: https://github.com/envjs/env-js (forum: https://groups.google.com/forum/?fromgroups#!forum/envjs) * Rhino eval loop: https://github.com/aisk/Rhino-REPL/blob/master/src/aisk/rhinorepl/RhinoVm.java * Rhino has a builtin repl: java -cp js.jar org.mozilla.javascript.tools.shell.Main * Javascript XML-RPC library: http://stackoverflow.com/questions/1143772/what-is-the-best-javascript-xml-rpc-client-library * Creating a base-library to be used from PyDev and from JS (created branch interactive_console_core) * Must check how to get code-completion in that environment * Must check how to 'import' javascript scripts into the shell * Add documentation on how to use the console | 0 |
412 | APSTUD-7217 | 07/30/2012 13:55:28 | Function outline not linking line numbers properly | Just updated to RC for the JavaScript duplicate function fix and now the outline doesn't update properly when I add new code. It will display a new function in the outline, but if I double-click any function below that (to go to that function in the editor), it takes me to the line where that function -used- to be. Generally, the function I want is a few lines below where it highlights (the same number of lines I added above it). This is miles better than before (with the duplicates), but I figured I should point it out. I've attached a project file to demonstrate the issue. Add some code where you see the comment block. Then try double-clicking any function below that in the outline. | 5 |
413 | APSTUD-7219 | 07/30/2012 23:39:26 | NullPointerException in HTMLTidyValidator.buildFile() | This appears to happen with untitled files # New File > File from Template > HTML File (any one) # This will appear in the log file {code} Exception in thread "com.aptana.editor.common.text.reconciler.CommonReconciler" java.lang.NullPointerException at com.aptana.editor.html.validator.HTMLTidyValidator.buildFile(HTMLTidyValidator.java:239) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:333) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:273) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:231) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.initialReconcile(CommonReconcilingStrategy.java:145) at com.aptana.editor.common.text.reconciler.CommonReconciler.initialProcess(CommonReconciler.java:188) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:173) Exception in thread "com.aptana.editor.common.text.reconciler.CommonReconciler" java.lang.NullPointerException at com.aptana.editor.html.validator.HTMLTidyValidator.buildFile(HTMLTidyValidator.java:239) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:333) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:273) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:231) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.initialReconcile(CommonReconcilingStrategy.java:145) at com.aptana.editor.common.text.reconciler.CommonReconciler.initialProcess(CommonReconciler.java:188) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:173) {code} | 5 |
414 | APSTUD-7224 | 07/31/2012 13:11:25 | Cache com.aptana.theme.Theme.getTextAttribute(String) for improved editor colorization performance | The uncached calls for getDelayedTextAttribute inside com.aptana.theme.Theme.getTextAttribute(String) seem to be one of the things slowing the initial coloring of the editor and there appears to be place for improvements in the area. | 13 |
415 | APSTUD-7238 | 08/02/2012 10:28:55 | Create "push-studio3-stable" Jenkins build | An analogue of http://hudson-master.hdqt.appcelerator.com/hudson/job/push-titanium-stable/. * Runs the [email protected]/studio3-release script * Users will need to read the console log to copy the routes into download.aptana.com | 5 |
416 | APSTUD-7239 | 08/02/2012 10:33:45 | Git tag Aptana Studio builds on push to stable | Related to APSTUD-7238. As part of that build, (before the push): * Find the version # in the version.txt file * See if that git tag has not already been created. If not, create a new tag of the form "vX.X.X.XXXXX" (note the additional "v" at the front) * Push the tag to the following repos: ** studio3 ** studio3-rcp ** studio3-php ** studio3-ruby ** Pydev ** libraries_com ** swt-webkit ** aptana/*.ruble | 8 |
417 | APSTUD-7240 | 08/02/2012 10:43:36 | Create "push-studio3-rubles-stable" Jenkins build | This makes the latest version of Rubles available to all Studio users. This runs two git commands as part of the build script: * Merge all aptana/*.ruble projects from the master to the stable branch * Push the results back to Github | 5 |
418 | APSTUD-7242 | 08/02/2012 11:56:20 | Install and configure Build Pipeline plugin on Jenkins | This will give an overview of what it takes to build the product and watch its progress: https://wiki.jenkins-ci.org/display/JENKINS/Build+Pipeline+Plugin * Install the build plugin * Configure it based on the studio3 build for master, release and development. | 8 |
419 | APSTUD-7244 | 08/02/2012 15:53:30 | Aptana does not remember spaces settings | h3. Steps to Reproduce # Create a new workspace # Navigate to YAML settings # Change to 4 spaces # Click "Apply", then "Ok" # Close Preferences, then reopen # Note YAML value is back at 2 h3. Actual Result Indentation is only 2 h3. Expected Result Indentation should be 4 | 8 |
420 | APSTUD-7246 | 08/02/2012 18:02:19 | Use JFlex scanner for CSS colorization | We're currently using Eclipse IRules for colorization. From experience with the JS parsing infrastructure, we have found that we can get a good performance improvement by switching over to a JFlex-based scanner. We should consider moving all languages from IRules over to JFlex for this reason. | 13 |
421 | APSTUD-7247 | 08/02/2012 18:04:32 | Use JFlex scanners for CSS partitioning | We're currently using Eclipse IRules for partitioning. From experience with the JS parsing infrastructure, we have found that we can get a good performance improvement by switching over to a JFlex-based scanner. We should consider moving all languages from IRules over to JFlex for this reason. | 5 |
422 | APSTUD-7251 | 08/03/2012 13:08:05 | XHTML: Invalid warning on "html proprietary attribute "xml:lang'" | # Inside Aptana Studio, check out and import Ruble project https://github.com/aptana/html.ruble # Open the following files, and note the invalid warning in the gutter on the <html> node: #* templates/1_1.xhtml #* templates/frameset_1_0.xhtml #* templates/strict_1_0.html #* templates/transitional_1_0.xhtml This attribute is required for XHTML and should not show a warning. | 5 |
423 | APSTUD-7252 | 08/03/2012 13:10:46 | XHTML: Invalid '<!DOCTYPE> isn't allowed after elements' warning | # Inside Aptana Studio, check out and import Ruble project https://github.com/aptana/html.ruble # Open templates/1_1.xhtml, and note the invalid warning in the gutter on the <!DOCTYPE> node This is valid syntax for XHTML. | 5 |
424 | APSTUD-7277 | 08/08/2012 20:01:21 | Lion: High CPU Usage | h3. Steps to Reproduce open resonable size web project with php and with git version control, wait, cpu usage stays around 100% 120% h3. Actual Result high cpu usage h3. Expected Result low usage | 13 |
425 | APSTUD-7280 | 08/09/2012 09:48:53 | Create JS interactive console feature using the PyDev extracted base (using Rhino) | Create an interactive console using Rhino. | 20 |
426 | APSTUD-7286 | 08/09/2012 10:18:57 | Implement LRUCache with virtual memory paging scheme in editor infrastructure | Initially the main issue found is that the caching does not really work well with our multi-parsing strategy. When a parse for a large document is done, say, an html with 30 css and 10 js partitions, each of those will end up requesting a new parse and as our parse cache is an LRU of size = 3, the cache is never used in this situation. On the good side, once we get caches in place properly, when parsing a large document, we may have lots of sub-partitions already cached, which should make the parsing faster when reparsing the full html. Ideas on approaches: 1. A simple approach is simply making the cache larger (say 256), but maybe we should have 2 different caches, one for 'outer' calls and another for 'internal' calls inside the parsing structure, but memory may be a problem here. 2. Or maybe a single cache where we have an LRU with a 'desired' max size but items are only prunned if not accessed for some time (say 10 seconds). 3. Having a SoftHashMap may be a reasonable replacement too. 4. Making proper use of the LRUCache implementation we have which implements a virtual memory paging scheme (each value may have an associated size and the LRU has a size related to that - the parsed document length may be a good tradeof in speed/size of the final generated AST). Selected approach: LRUCache with virtual memory paging scheme + SoftHashMap for pruned entries (which may be restored if still alive). | 13 |
427 | APSTUD-7297 | 08/13/2012 18:11:46 | Test latest CEF version on Linux | Before adopting a newer version of CEF, we need to test whether it will fix the current issues. This can be done independent of Studio. The following steps should be used: -Pull CEF/Chromium code -Run "cef_create_project.sh" to create the project -Run "make -j4 cefclient BUILDTYPE=Release" to build the project -Launch the generated executable | 13 |
428 | APSTUD-7311 | 08/17/2012 11:49:49 | Aptana loses connection settings | h3. Steps to Reproduce create connections, shut down the program, restart and connections are gone. h3. Actual Result no connection info h3. Expected Result expect to not have to recreate connection info for all sites everytime the program is started | 13 |
429 | APSTUD-7318 | 08/20/2012 04:09:38 | Editor blocks certain characters like double quotes, left curly braces, left paranthesis, left braces | Relates to APSTUD-3354. Error is described there in detail. Found same behavior in files with mixed html, javascript code. Occurs in Editors for HTML and Javascript. | 8 |
430 | APSTUD-7320 | 08/20/2012 09:14:57 | Create an extension point to hook into the project creation process | We need a hook into the project creation process to allow post project operations. Currently, we need the following for the extension point: -Listener for project creation -Scoped to project nature -Prioritized so that multiple listeners will be performed in proper order | 8 |
431 | APSTUD-7324 | 08/21/2012 15:08:05 | IllegalStateException setting Job's system property | During the git push aptana found an error, but the terminal below shows that the push was successful. I added you a screenshot. Greetings Leo BTW: This is my 100 Ticket i am creating here. I thing thats a reasion to get out some cake and celebrate :) | 8 |
432 | APSTUD-7330 | 08/23/2012 07:56:26 | Deadlock when updating folding structure. | Got into deadlock when making performance improvements on the partitioning (i.e.: the faster partitioner made this race-condition appear). The problem is that we have paths that lock onto the editor and document in different orders. See stack below: {code} Thread [main] (Suspended) JSSourceEditor(AbstractTextEditor).enableSanityChecking(boolean) line: 4848 <-- trying to lock on editor AbstractTextEditor$3.run() line: 434 AbstractTextEditor$ElementStateListener.execute(Runnable, boolean) line: 599 AbstractTextEditor$ElementStateListener.elementDirtyStateChanged(Object, boolean) line: 438 TextFileDocumentProvider$FileBufferListener.dirtyStateChanged(IFileBuffer, boolean) line: 288 TextFileBufferManager$3.run() line: 706 SafeRunner.run(ISafeRunnable) line: 42 ResourceTextFileBufferManager(TextFileBufferManager).fireDirtyStateChanged(IFileBuffer, boolean) line: 704 ResourceTextFileBuffer$DocumentListener.documentChanged(DocumentEvent) line: 77 SynchronizableDocument(AbstractDocument).doFireDocumentChanged2(DocumentEvent) line: 769 SynchronizableDocument(AbstractDocument).doFireDocumentChanged(DocumentEvent, boolean, IRegion) line: 736 SynchronizableDocument(AbstractDocument).doFireDocumentChanged(DocumentEvent) line: 721 SynchronizableDocument(AbstractDocument).fireDocumentChanged(DocumentEvent) line: 796 SynchronizableDocument(AbstractDocument).replace(int, int, String, long) line: 1191 SynchronizableDocument.replace(int, int, String, long) line: 194 <-- locked on document object SynchronizableDocument(AbstractDocument).replace(int, int, String) line: 1210 SynchronizableDocument.replace(int, int, String) line: 180 ProjectionTextStore.replace(int, int, String) line: 111 ProjectionDocument(AbstractDocument).replace(int, int, String, long) line: 1184 ProjectionDocument(AbstractDocument).replace(int, int, String) line: 1210 ProjectionDocument.replace(int, int, String) line: 629 DefaultDocumentAdapter.replaceTextRange(int, int, String) line: 248 StyledText.modifyContent(Event, boolean) line: 7180 StyledText.sendKeyEvent(Event) line: 7994 Daemon Thread [com.aptana.editor.common.text.reconciler.CommonReconciler] (Suspended) SynchronizableDocument.removePosition(String, Position) line: 249 <-- trying to lock on document SynchronizableDocument(AbstractDocument).removePosition(Position) line: 1124 ProjectionAnnotationModel(AnnotationModel).removePosition(IDocument, Position) line: 492 ProjectionAnnotationModel(AnnotationModel).removeAnnotation(Annotation, boolean) line: 857 ProjectionAnnotationModel(AnnotationModel).replaceAnnotations(Annotation[], Map, boolean) line: 409 ProjectionAnnotationModel.modifyAnnotations(Annotation[], Map, Annotation[]) line: 177 JSSourceEditor(AbstractFoldingEditor).updateFoldingStructure(Map<ProjectionAnnotation,Position>) line: 173 <-- locked on editor CommonReconcilingStrategy.updatePositions() line: 225 CommonReconcilingStrategy.calculatePositions(boolean, IProgressMonitor, IParseRootNode) line: 183 CommonReconcilingStrategy.reconcile(boolean, boolean) line: 256 CommonReconcilingStrategy.reconcile(boolean) line: 231 CommonReconcilingStrategy.fullReconcile() line: 437 CompositeReconcilingStrategy.fullReconcile() line: 125 CommonReconciler.process(DirtyRegion) line: 162 AbstractReconciler$BackgroundThread.run() line: 206 {code} | 8 |
433 | APSTUD-7352 | 08/29/2012 12:35:10 | Add "tags" to templates | Identical to snippets (http://docs.appcelerator.com/titanium/2.1/index.html#!/guide/Creating_a_New_Snippet) we add the concept of tags to templates * Add the field to IProjectTemplate * Modify the scripting models to read and set these values during serialization * Update the wiki documentation to reference the new functionality | 8 |
434 | APSTUD-7358 | 08/30/2012 14:44:15 | Increase height of validation list | In the attached screenshot, the list should have at least one more row inside to account for horizontal scroll bars. Also, the ? should be moved to the right of the text. | 3 |
435 | APSTUD-7359 | 08/30/2012 14:53:46 | "Events" variable/object flagged as error in JavaScript Style Validator | Somewhere between 2.1.2 and 2.2.0, validation now is overly strict about the "events" phrases used in the following code: {code} var Events = Backbone.Events = {} var event; while (event = events.shift()) { } {code} | 8 |
436 | APSTUD-7366 | 09/03/2012 01:47:47 | Trying to write a string that is too long and will overflow the recorded length maximum | If you start aptana and you have some file open, aptana will freeze and write with the following error message: "Trying to write a string that is too long and will overflow the recorded length maximum". To fix this you have to kill anptana and restart it. If you restart aptana you mast close all tabs as fast as you can, because if you need longer than 2 secounds, aptana will freeze again. I added the log file for you. | 13 |
437 | APSTUD-7367 | 09/03/2012 04:20:42 | Auto-completing html attribute value inserts an extra character | The script/stuyle tag type attribute incorrect auto completion. * Add extra double quote * Suggest "texxt" instead of "text" {code} <script type="teext/javascript" "></script> <style type="teext/css" "></style> {code} To reproduce: # Type {{<script type="te}} # Select "text/javascript" from the list # You will end up with {{teext/javascript}} | 5 |
438 | APSTUD-7377 | 09/04/2012 13:34:52 | After some exception is logged, don't log the same exception again for 20 seconds. | To avoid logging the same error over and over again, the suggestion is having a cache with previously logged errors and if some error is already there, don't log it again unless 20 seconds elapsed. | 5 |
439 | APSTUD-7386 | 09/06/2012 11:40:08 | turn off "." as a trigger character for JavaScript | See the parent ticket for the behavior we would like to modify. | 3 |
440 | APSTUD-7393 | 09/08/2012 10:27:06 | StackOverflowError parsing big file (with fast parser) | Having a python file with 2000 lines just repeating: class Spam(object): pass is giving a stack overflow error: {code} java.lang.RuntimeException: java.lang.StackOverflowError at org.python.pydev.parser.fastparser.FastDefinitionsParser.parse(FastDefinitionsParser.java:641) at org.python.pydev.parser.fastparser.FastDefinitionsParser.parse(FastDefinitionsParser.java:631) at org.python.pydev.parser.fastparser.FastDefinitionsParser.parse(FastDefinitionsParser.java:622) at com.python.pydev.analysis.builder.AnalysisBuilderVisitor$1.call(AnalysisBuilderVisitor.java:103) at com.python.pydev.analysis.builder.AnalysisBuilderVisitor$1.call(AnalysisBuilderVisitor.java:1) at com.python.pydev.analysis.builder.AnalysisBuilderRunnable.doAnalysis(AnalysisBuilderRunnable.java:190) at com.python.pydev.analysis.builder.AbstractAnalysisBuilderRunnable.run(AbstractAnalysisBuilderRunnable.java:152) at com.python.pydev.analysis.builder.AnalysisBuilderVisitor.execRunnable(AnalysisBuilderVisitor.java:184) at com.python.pydev.analysis.builder.AnalysisBuilderVisitor.doVisitChangedResource(AnalysisBuilderVisitor.java:175) at com.python.pydev.analysis.builder.AnalysisBuilderVisitor.visitChangedResource(AnalysisBuilderVisitor.java:117) at com.python.pydev.analysis.builder.AnalysisBuilderVisitor.visitChangedResource(AnalysisBuilderVisitor.java:45) at org.python.pydev.builder.PyDevBuilderVisitor.visitAddedResource(PyDevBuilderVisitor.java:281) at org.python.pydev.builder.PyDevBuilder.buildResources(PyDevBuilder.java:314) at org.python.pydev.builder.PyDevBuilder.performFullBuild(PyDevBuilder.java:190) at org.python.pydev.builder.PyDevBuilder.build(PyDevBuilder.java:84) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:728) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:199) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:239) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:292) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:295) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:351) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:374) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) {code} | 5 |
441 | APSTUD-7394 | 09/08/2012 11:57:57 | ClassCastException during parse in Python file with yield in global scope. | When a file has the contents: yield 1 (with yield in the global scope), a ClassCastException is raised. | 3 |
442 | APSTUD-7410 | 09/13/2012 09:03:58 | Error updating the PHP task-tags | Saw this in my logs in a dev workspace. Looks like the comment nodes from PHP have bad offsets? The line pointed at in the stacktrace is: {code:java} String text = new String(source.substring(commentNode.getStart(), commentNode.getEnd() + 1)); {code} Here's the stacktrace: {code} !STACK 0 java.lang.StringIndexOutOfBoundsException: String index out of range: 16374 at java.lang.String.substring(String.java:1934) at com.aptana.editor.php.internal.indexer.TaskTagsUpdater.processCommentNode(TaskTagsUpdater.java:203) at com.aptana.editor.php.internal.indexer.TaskTagsUpdater.updateTaskTags(TaskTagsUpdater.java:175) at com.aptana.editor.php.internal.indexer.PDTPHPModuleIndexer.indexModule(PDTPHPModuleIndexer.java:3862) at com.aptana.editor.php.indexer.PHPGlobalIndexer$WrapIndexer.indexModule(PHPGlobalIndexer.java:92) at com.aptana.editor.php.indexer.PHPGlobalIndexer$8.run(PHPGlobalIndexer.java:549) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) {code} | 5 |
443 | APSTUD-7414 | 09/13/2012 19:03:03 | Class imported from site package shows as error, but still works. | h3. Steps to Reproduce 1. Download wikitools-1.1.1 from http://code.google.com/p/python-wikitools/ 2. Install via python setup.py install 3. Create a new project and write the following file: from wikitools import wiki print(dir(wiki)) site = wiki.Wiki() h3. Actual Result Aptana shows an error for site = wiki.Wiki(), and yet when the program is run, the directory shows Wiki as part of the wiki module. h3. Expected Result Aptana should not show an error. | 0 |
444 | APSTUD-7428 | 09/17/2012 09:14:26 | Aptana Studio 3 crashes randomly in Ubuntu 12.04 and Debian wheezy | This issue seems to occur randomly, often when I click to select a new location for my cursor. I have not found a way to reliably replicate this, but happens 3-4 times per day. note: pydev is a symlink to AptanaStudio3 terminal output: madmaze@TESLA:~/bin$ pydev --sync (Aptana Studio 3:18182): LIBDBUSMENU-GTK-CRITICAL **: watch_submenu: assertion `GTK_IS_MENU_SHELL(menu)' failed (Aptana Studio 3:18182): LIBDBUSMENU-GTK-CRITICAL **: watch_submenu: assertion `GTK_IS_MENU_SHELL(menu)' failed (Aptana Studio 3:18182): LIBDBUSMENU-GTK-CRITICAL **: watch_submenu: assertion `GTK_IS_MENU_SHELL(menu)' failed (Aptana Studio 3:18182): LIBDBUSMENU-GTK-CRITICAL **: watch_submenu: assertion `GTK_IS_MENU_SHELL(menu)' failed (Aptana Studio 3:18182): LIBDBUSMENU-GTK-CRITICAL **: watch_submenu: assertion `GTK_IS_MENU_SHELL(menu)' failed (Aptana Studio 3:18182): LIBDBUSMENU-GTK-CRITICAL **: watch_submenu: assertion `GTK_IS_MENU_SHELL(menu)' failed (Aptana Studio 3:18182): LIBDBUSMENU-GTK-CRITICAL **: watch_submenu: assertion `GTK_IS_MENU_SHELL(menu)' failed (Aptana Studio 3:18182): LIBDBUSMENU-GTK-CRITICAL **: watch_submenu: assertion `GTK_IS_MENU_SHELL(menu)' failed (Aptana Studio 3:18182): LIBDBUSMENU-GTK-CRITICAL **: watch_submenu: assertion `GTK_IS_MENU_SHELL(menu)' failed The program 'Aptana Studio 3' received an X Window System error. This probably reflects a bug in the program. The error was 'BadMatch (invalid parameter attributes)'. (Details: serial 908068 error_code 8 request_code 56 minor_code 0) (Note to programmers: normally, X errors are reported asynchronously; that is, you will receive the error a while after causing it. To debug your program, run it with the --sync command line option to change this behavior. You can then get a meaningful backtrace from your debugger if you break on the gdk_x_error() function.) madmaze@TESLA:~/bin$ Please let me know if you need anymore details | 0 |
445 | APSTUD-7438 | 09/20/2012 11:46:52 | JS Indexing complaining about metadata types declared like Anchor[] | Our JS metadata uses Link[], Anchor[], etc. to declare some properties as arrays of Links/whatever. We use Array<Type> inside the code to denote arrays of a given type. We should convert the old style to new to unify them in our code. Additionally, we don't fully support Array<type> properly, as it breaks our type hierarchy lookups where we really need to strip the generic/type info off the end to lookup Array as a parent type. | 5 |
446 | APSTUD-7442 | 09/21/2012 06:46:01 | JS Functions on overloaded variable names produce broken type strings | We're getting som cases where a variable is re-used many times in javascript resulting in multiple types being assigned, including Function. The way we write Function signatures is not able to be wrapped/unwrapped recursively, so we're getting some broken type strings once there's an overloaded variable that has a Function type with return types. We may need to change from "Function,Type,Type:ReturnType,ReturnType" to "Type,Type,Type,Function<ReturnType,ReturnType>", because a returnType may also have a function with return types, making it impossible to reliably unwrap (i.e. "Function,Number,Object:Function,Array<String>:Boolean"). | 13 |
447 | APSTUD-7449 | 09/21/2012 17:39:30 | Pydev - Attributes in class that inherits from dict do not appear in variable view/debug/perspective | This example contains two class definitions for extending a python dictionary. One extends via inheritance. The other by composition; i.e. dictionary appears as an attribute. I expect instances of each to look nearly the same in the debug-variable view. The composition-style instance appears as I expect. With the inheritance-style implementation, I am unable to see the attribute fields representing my extensions to the built in dict. It does not appear to be a python problem since I am able to set, get and print the fields from within the code or at the console. Composition style works for now. Inheritance-style, is faster and leaner. Attached is a code snippet and screen-shot of what I see. Set the breakpoint where marked and you should see the problem as you expand the fields in the debugger/variable window cheers, -m | 1 |
448 | APSTUD-7479 | 10/01/2012 16:40:27 | "Enable Condition" checkbox in break properties dialog is ignored | Open the breakpoint properties dialog, click "Enable Condition", enter the condition and save. The condition works as expected. Open the dialog again and uncheck "Enable Condition", but leave the condition text unchanged, and save. The breakpoint continues to work as if the condition was enabled. | 5 |
449 | APSTUD-7483 | 10/02/2012 16:27:08 | Debugger expressions name is not readable | The name of an expression in the debugger expressions view is not readable. A different text color would be great. Example white. Please see the screenshot. Greetings Leo | 5 |
450 | APSTUD-7500 | 10/09/2012 20:28:59 | Toggle uncomment shortcut messes up html formatting | When having html contents such as: <a> ....<!-- bar --> </a> Using uncomment to remove the comment will also remove the whitespaces before the comment. | 5 |
451 | APSTUD-7504 | 10/12/2012 09:34:50 | Javascript validators appear in random order | When opening Window - Preferences - Aptana Studio - Validation - JavaScript, validators appear in random order (close preferences window and reopen again - the order will not be the same). | 5 |
452 | APSTUD-7524 | 10/23/2012 14:01:15 | Failed to parse large JavaScript file, resulting in 100% CPU usage | I have a project with the file attached, TI Studio hangs + CPU 100% while indexing that file i join the file but the crash log was too big so i just post the related part here: {code} !ENTRY com.aptana.editor.js 4 0 2012-10-23 10:17:44.434 !MESSAGE (Build 3.0.1.201210221016) [ERROR] Failed to parse file:/Volumes/data/dev/xerox/xstar3/trunk/Client/Titanium/RepairMan/Resources/web/three.min.js for JS Parser Validation !STACK 0 java.lang.IllegalMonitorStateException at java.util.concurrent.locks.ReentrantReadWriteLock$Sync.tryReleaseShared(ReentrantReadWriteLock.java:363) at java.util.concurrent.locks.AbstractQueuedSynchronizer.releaseShared(AbstractQueuedSynchronizer.java:1317) at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock.unlock(ReentrantReadWriteLock.java:745) at com.aptana.index.core.Index.exitRead(Index.java:417) at com.aptana.index.core.Index.query(Index.java:565) at com.aptana.editor.js.contentassist.index.JSIndexReader.getFunctions(JSIndexReader.java:314) at com.aptana.editor.js.contentassist.JSIndexQueryHelper.getFunctions(JSIndexQueryHelper.java:87) at com.aptana.editor.js.contentassist.JSIndexQueryHelper.getMembers(JSIndexQueryHelper.java:184) at com.aptana.editor.js.contentassist.JSIndexQueryHelper.getTypeMembers(JSIndexQueryHelper.java:391) at com.aptana.editor.js.inferencing.JSNodeTypeInferrer.visit(JSNodeTypeInferrer.java:566) at com.aptana.editor.js.parsing.ast.JSGetPropertyNode.accept(JSGetPropertyNode.java:34) at com.aptana.editor.js.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:176) at com.aptana.editor.js.inferencing.JSNodeTypeInferrer.getTypes(JSNodeTypeInferrer.java:263) at com.aptana.editor.js.inferencing.JSNodeTypeInferrer.getTypes(JSNodeTypeInferrer.java:244) at com.aptana.editor.js.inferencing.JSNodeTypeInferrer.visit(JSNodeTypeInferrer.java:364) at com.aptana.editor.js.parsing.ast.JSBinaryArithmeticOperatorNode.accept(JSBinaryArithmeticOperatorNode.java:94) at com.aptana.editor.js.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:176) at com.aptana.editor.js.inferencing.JSSymbolTypeInferrer.processValues(JSSymbolTypeInferrer.java:553) at com.aptana.editor.js.inferencing.JSSymbolTypeInferrer.getSymbolPropertyElement(JSSymbolTypeInferrer.java:339) at com.aptana.editor.js.inferencing.JSSymbolTypeInferrer.processProperties(JSSymbolTypeInferrer.java:461) at com.aptana.editor.js.inferencing.JSSymbolTypeInferrer.getSymbolPropertyElement(JSSymbolTypeInferrer.java:342) at com.aptana.editor.js.inferencing.JSSymbolTypeInferrer.getSymbolPropertyElement(JSSymbolTypeInferrer.java:376) at com.aptana.editor.js.inferencing.JSNodeTypeInferrer.visit(JSNodeTypeInferrer.java:633) at com.aptana.editor.js.parsing.ast.JSIdentifierNode.accept(JSIdentifierNode.java:33) at com.aptana.editor.js.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:176) at com.aptana.editor.js.validator.JSParserValidator.getTypeName(JSParserValidator.java:387) at com.aptana.editor.js.validator.JSParserValidator.checkTypeForDeprecation(JSParserValidator.java:407) at com.aptana.editor.js.validator.JSParserValidator.checkForDeprecations(JSParserValidator.java:211) at com.aptana.editor.js.validator.JSParserValidator$2.include(JSParserValidator.java:175) at com.aptana.editor.js.validator.JSParserValidator$2.include(JSParserValidator.java:1) at com.aptana.parsing.util.ParseUtil.treeApply(ParseUtil.java:155) at com.aptana.parsing.util.ParseUtil.treeApply(ParseUtil.java:121) at com.aptana.editor.js.validator.JSParserValidator.buildFile(JSParserValidator.java:148) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:333) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:273) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:231) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.initialReconcile(CommonReconcilingStrategy.java:145) at com.aptana.editor.common.text.reconciler.CommonReconciler.initialProcess(CommonReconciler.java:188) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:173) !ENTRY com.aptana.editor.js 4 0 2012-10-23 11:51:52.608 !MESSAGE (Build 3.0.1.201210221016) [ERROR] Failed to parse file:/Volumes/data/dev/xerox/xstar3/trunk/Client/Titanium/RepairMan/Resources/include/utilities.js for JS Parser Validation !STACK 0 java.lang.NullPointerException at com.aptana.editor.js.validator.JSParserValidator.buildFile(JSParserValidator.java:146) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:333) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:273) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:231) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:437) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) {code} | 8 |
453 | APSTUD-7572 | 11/19/2012 20:26:09 | Split JS plugin into core and UI parts | We may need to move some NodeJS functionality from Titanium Studio down into Aptana Studio. We built that functionality properly separated into core and UI plugins, and joining them back may cause issues as well as actually breaks proper architecture. As a result, we should split the JS plugin into core and UI properly so we can eventually merge the node stuff down in. | 20 |
454 | APSTUD-7575 | 11/21/2012 14:21:36 | Split CSS Editor plugin into core and UI plugins | We've combined core and UI code in the CSS editor plugin. For proper separation we should split the two apart as we did with the JS plugin. | 13 |
455 | APSTUD-7576 | 11/21/2012 14:22:24 | Split XML Editor plugin into core and UI plugins | We've combined core and UI code in the XML editor plugin. For proper separation we should split the two apart as we did with the JS plugin. | 8 |
456 | APSTUD-7579 | 11/23/2012 16:44:59 | Activating Studio became slow due to too many calls of ProjectPropertyTester (when changing tabs) | The effect is the same from: https://jira.appcelerator.org/browse/APSTUD-3519, but I haven't investigated what's causing those calls to appear this time (I had Aptana Studio open for more than 1 day, before it became unusable, at which point I attached a profiler and got the results attached). The attached profile is from a single switch editor (at which point it tested almost 4000 properties... another thing that's strange is the 1600 calls to GitRepository... but that may be related to the property testers too). I'm on working from the development version. Revision: b1f6fa7 1352764490 2012-11-12 pinnamur | 8 |
457 | APSTUD-7580 | 11/24/2012 11:57:30 | problem in the editor when selecting suggested elements for auto-completion | steps to reproduce: 1) open aptana studio 3 2) create a new web project 3) create an input element letting the editor auto complete --> type="" <-- attribute for you 4) write within the double quotes --> ra <--- let the editor again autocomplete it with --> radio <--- 5) this is the result <input type="raadio"" /> Aptana Studio 3, build: 3.2.2.201208201020 | 1 |
458 | APSTUD-7594 | 12/03/2012 23:42:57 | Split DTD Editor plugin into core and UI plugins | We've combined core and UI code in the DTD editor plugin. For proper separation we should split the two apart as we did with the JS plugin. | 8 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.