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
200
ALOY-1520
09/15/2016 06:14:56
Replace Ti.Ui.iPhone with Ti.Ui.iOS in Alloy
Since 5.4.0.GA we facing a lot of warnings messages because Alloy using Ti.iPhone namespace, I just replaced it with Ti.IOS PR: https://github.com/appcelerator/alloy/pull/795
3
201
ALOY-1526
10/07/2016 08:14:51
Special text property value is not parsed correctly
In the new version we found an error... We get a compiler error. This is caused in the XML file by text="#js:dtgL('report46')" Fun fact when i build the project via command line : ti build —platform ios it works... so it has to be something in the Studio itsself
3
202
ALOY-1523
10/18/2016 19:13:37
Alloy uses old require-paths with new require-behavior
We introduced an updated require-handling in Titanium 6 that matches the full NodeJS specs for handling all kind of files and data structures. Although we are save for older require-paths, we should update the Alloy-internal require-calls as well. Example log: {code} require called with un-prefixed module id: alloy/constants, should be a core or CommonJS module. Falling back to old Ti behavior and assuming it's an absolute path: /alloy/constants {code} It will only be shown in the DEBUG log-level, but adjusting it internally would be the cleanest way here. Thx!
8
203
ALOY-1524
10/18/2016 22:21:50
Replace wrench with fs-extra
Alloy uses {{wrench.js}} extensively throughout its code base, however the module have been deprecated. We should replace it with another module to do filesystem operations, i.e. fs-extra.
5
204
ALOY-1530
11/24/2016 04:12:41
Alloy: Support multiple restrict files
ALOY-1216 is a PR to allow compile only one specific file. This PR supports compiling several specific files. example: {code} alloy compile --config platform=ios,file=app/controllers/index.js,file=app/controller/myCtrl.js {code}
3
205
ALOY-1533
12/27/2016 23:02:45
Upgrade underscore.js to version 1.8.3
Upgrade underscore.js to version 1.8.3 from the current version of 1.6.0. Community PR: https://github.com/appcelerator/alloy/pull/700
0
206
ALOY-1534
01/09/2017 14:40:10
Add support for Backbone 1.3.3 and Underscore 1.8.3
Currently Alloy uses backbone 0.9.2 as default, and there is an ability to upgrade to 1.1.2 through the config.json as per documentation: [https://wiki.appcelerator.org/display/guides2/Alloy+Backbone+Migration]. However, the current release of backbone is 1.3.3. There should be support for this version in Alloy too. And I assume it wouldn't hurt updating the default backbone version either, but I guess thats a breaking change and perhaps another ticket.
1
207
ALOY-1535
01/14/2017 12:27:10
iOS: Warning message thrown when using <View> in <AlertDialog> (Android-only)
When using the {{<View>}} tag in {{<AlertDialog}} on iOS, a warning is thrown, also the platform is set to Android.
1
208
ALOY-1536
01/20/2017 01:29:57
iPad Splash Screen Orientation - No Landscape
This one is pretty simple. Create a generic new alloy project and, and edit the trap.xml file like so: <enable-launch-screen-storyboard>false</enable-launch-screen-storyboard> ... <key>UISupportedInterfaceOrientations~ipad</key> <array> <string>UIInterfaceOrientationLandscapeRight</string> </array> LandscapeLeft won't work either. When the app is launched, the splash screen will appear in portrait mode.
1
209
ALOY-1537
01/27/2017 06:48:52
Update uglify-js and moment.js
Ran {{nsp check}}, two alloy dependencies, {{uglify-js@2.4.15}} and {{moment@2.10.6}}, are returning {{Regular Expression Denial of Service}}. This ticket is to track the progress of updating uglify-js from 2.4.15 to *2.6.1* and moment.js from 2.10.6 to *2.17.1*. Note: ECMAScript 5.1 doesn't permit newline characters in string literals. It requires {{\n}}. According to [903|https://github.com/mishoo/UglifyJS2/pull/903] Uglify also doesn't like it in versions 2.6.2 and after, thus failed some of the test apps. For now, updating to uglify-js@2.6.1 should correct nsp errors. We need to look into alloy compiler if we need a major uglify upgrade.
5
210
ALOY-1541
02/02/2017 10:17:56
XML: Require LeftNavButtons/RightNavButtons not working
Require LeftNavButton/RightNavButton working while LeftNavButtons/RightNavButtons not working example {code:xml|title=index.xml} <Alloy> <NavigationWindow> <Window class="container"> <Require src="navbar" /> <Label id="label">Hello, World</Label> </Window> </NavigationWindow> </Alloy> {code} {code:xml|title=navbar.xml} <Alloy> <LeftNavButtons> <Button>Btn1</Button> <Button>Btn2</Button> </LeftNavButtons> </Alloy> {code} compiled code problem {code:javascript|title=Resources/iphone/alloy/controllers/navbar.js} var leftNavButtons = []; $.__views.__alloyId2 = Ti.UI.createButton({ title: "aaa", id: "__alloyId2" }); leftNavButtons.push($.__views.__alloyId2); $.__views.__alloyId3 = Ti.UI.createButton({ title: "bbb", id: "__alloyId3" }); leftNavButtons.push($.__views.__alloyId3); // >>>>> THIS IS THE ERROR <<<<< // void 0.leftNavButtons = leftNavButtons; $.__views.navbar && $.addTopLevelView($.__views.navbar); {code} while LeftNavButton compile to {code:javascript|title=Resources/iphone/alloy/controllers/navbar.js} $.__views.__alloyId2 = Ti.UI.createButton({ title: "Btn1", id: "__alloyId2" }); __parentSymbol.leftNavButton = $.__views.__alloyId2; $.__views.navbar && $.addTopLevelView($.__views.navbar); {code}
3
211
ALOY-1543
02/25/2017 00:55:17
Widget files are optimized twice during compilation
When MVC generation step of alloy compile, widget files are optimized. So there is no reason to optimize widget file on OPTIMIZING step again. Community PR: https://github.com/appcelerator/alloy/pull/805
3
212
ALOY-1544
02/25/2017 01:52:15
Add optimizingExeptions option to config.json
This PR make you can skip the file when doing an optimization manually. There are no reason to optimize js files which doesn't depends on alloy. Community PR : https://github.com/appcelerator/alloy/pull/818
3
213
ALOY-1550
03/24/2017 17:22:24
Alloy: Update gitignore for default project
When creating a new alloy project with the open source {{ti}} tool it uses the .gitignore from {{Alloy/template/gitignore.txt}}. This file isn't in sync with {{alloy/templates/default/.gitignore}} yet. PR: https://github.com/appcelerator/alloy/pull/821 *Reproduce:* {code:java} ti create -t app -n test --id com.test.test -p all -u test.de -d . cd test alloy new {code}
1
214
ALOY-1557
04/18/2017 12:11:21
Alloy: Keep Changelog up to date
It would be great if the changelog will be updated periodically to reflect the changes: https://github.com/appcelerator/alloy/blob/master/CHANGELOG.md If another resource exists (JIRA/Appcelerator docs link?), please link to it in this CHANGELOG.md file and remove the rest of its contents so that the changelog can be found on a single resource only.
1
215
ALOY-1564
05/22/2017 13:35:55
Broken Require data-binding event translation. Custom events on Required views are being applied to the required root View instead of the required Controller itself, causing an error.
When requiring a view with data binding, for instance: {code:javascript} <ScrollView dataCollection="clclients" layout="vertical" class="Size"> <Label text="{name}" class="header Size" top="10"/> <Require src="products" name="{name}" onClick="doSomething" type="view"/> </ScrollView> {code} the following errors is firing: {code} [ERROR] : Script Error { [ERROR] : column = 18; [ERROR] : line = 40; [ERROR] : message = "undefined is not a function (evaluating '__alloyId146.getViewEx({\n recurse: true\n }).on(\"click\", doSomething)')"; [ERROR] : stack = "__alloyId148\ntriggerEvents\ntrigger\n_onModelEvent\ntriggerEvents\ntrigger\nset\nsuccess\n\nonload"; [ERROR] : } {code} due to this processed code: {code:javascript} doSomething ? __alloyId146.getViewEx({ recurse: true }).on("click", doSomething) : __defers["__alloyId146.getViewEx({recurse:true})!click! doSomething"] = true; {code} which should be: {code:javascript} doSomething ? __alloyId146.on("click", doSomething) : __defers["__alloyId146!click! doSomething"] = true; {code}
3
216
ALOY-1569
06/14/2017 21:45:34
WPATH function to match updated require-handling in Titanium 6
This should also fix WPATH function to match updated require-handling in Titanium 6
2
217
ALOY-1570
06/20/2017 13:58:39
Alloy: exports.baseController does not work since 1.10.0 (Regression)
since 1.10.0 exports.baseController = 'name' does not work. I attached simple project with three controllers * Base * BasedOnBase with exports.baseController = 'base' in js * BasedOnBaseXML with <Alloy baseController="Base"> in xml With Alloy 1.9.11 I got correct result in both cases: {code} function Controller() { require("/alloy/controllers/Base").apply(this, Array.prototype.slice.call(arguments)); ... {code} but with Alloy 1.10.x I get correct code only for BasedOnBaseXML for BasedOnBase I get: {code} require('/alloy/controllers/' + 'BaseController').apply(this, Array.prototype.slice.call(arguments)); this.__controllerPath = 'BasedOnBase'; this.args = arguments[0] || {}; if (arguments[0]) { var __parentSymbol = __processArg(arguments[0], '__parentSymbol'); var $model = __processArg(arguments[0], '$model'); var __itemTemplate = __processArg(arguments[0], '__itemTemplate'); } var $ = this; var exports = {}; var __defers = {}; $.__views.BasedOnBase = Ti.UI.createView({ id: "BasedOnBase" }); $.__views.BasedOnBase && $.addTopLevelView($.__views.BasedOnBase); exports.destroy = function () {}; _.extend($, $.__views); var args = $.args; exports.baseController = 'Base'; {code}
2
218
ALOY-1572
06/23/2017 13:32:48
Alloy doesn't compile external app.js
If your Alloy project has an `app.js` in a subdirectory (example: `lib/app.js`), it is not compiled. So, if you have a pre-processor constant like `OS_IOS` or `OS_ANDROID` in this file, the result is a runtime error because no var defined `OS_IOS` is found. *This is a critical issue, because Alloy produces a broken app!* PR: https://github.com/appcelerator/alloy/pull/836
2
219
ALOY-1574
08/02/2017 16:54:56
Unable to use ES6 import/exports in alloy controllers due to bad code generation
If you add imports or exports to an alloy controller, we can now parse the code and handle it in our use of babel/babylon instead of uglify. BUT, we don't "hoist" the imports/exports to the top of the generated code, so it can become embedded underneath a function which is invalid ES6 code. imports and exports must be "moved" up to the global top-level or else the code is invalid. i.e. {code:javascript} import 'foo' from 'bar'; export const foo = Math.sqrt(2); {code} On a related note, we don't really "handle" ES6 imports/exports anyways down the line, but that's another ticket we can address in titanium CLI/build to just use babel transpilation to generate requires out of them (until the wider JS community has settled how to handle module vs script difference and imports/exports)
5
220
ALOY-1575
08/27/2017 17:54:46
Allow Android to use Ti.UI.RefreshControl as well
We added refresh-control for Android in TIMOB-1072, but we also need Android to use the Alloy <RefreshControl> tag.
0
221
ALOY-1578
08/30/2017 18:35:56
Move Ti.UI.iOS.Toolbar to Ti.UI.Toolbar
Yordan PR: https://github.com/appcelerator/alloy/pull/841 Additional code changes are needed.
2
222
ALOY-1579
08/30/2017 19:17:31
Support Titanium.UI.Android.DrawerLayout
https://jira.appcelerator.org/browse/TIMOB-15910 Usage {code:xml} <Alloy> <Window class='container'> <DrawerLayout> <LeftView> <View> ... </View> </LeftView> <CenterView> <View> ... </View> </CenterView> <RightView> <View> ... </View> </RightView> </DrawerLayout> </Window> </Alloy> {code}
3
223
ALOY-1591
12/07/2017 11:22:12
Transpile Alloy source to allow platform-independent ES6 / ES7 usage
We added Babel transpiling for classic apps in TIMOB-24610. In order to use it in Alloy as well, the Alloy build needs to be updated to properly use it as well. As we had some issues with minification after updating our tooling recently, we need to ensure this won't happen again.
0
224
ALOY-1592
12/07/2017 12:31:59
Builtins: Reimplement measurement by convertUnits
Reimplementing the measurement built-ins. PR: https://github.com/appcelerator/alloy/pull/668
3
225
ALOY-1596
12/19/2017 14:51:40
Mobileweb assets copied on alloy new
h5.Description Similar to ALOY-1322, mobileweb assets are still being copied when creating a new alloy app. There's a lot more mentions of mobileweb in the test suite than blackberry I believe so not sure simple this would be, is it actually more involved that just removing the platform/mobileweb folder? [~fmiao] any recommendations? h5.Steps to reproduce # {{appc new -t titanium -n mwassets --id com.foo}} # {{ls mwassets/app/assets/}} h5.Actual mobileweb assets are there h5.Expected No mobileweb assets
3
226
ALOY-1597
12/20/2017 11:00:18
Use babel-code-frame to provide context when failing to parse code
h5.Description Currently when we are parsing files if we hit a parser error then we output an error that isn't super helpful, it contains an line/column numbers but it would be a much better dev experience if we could show the code using babel-code-frame. We could also expand this to xml/tss parsing errors if the modules we use give us the locations in an easily consumable way {code: title=current} [ERROR] Error generating AST for "/Users/eharris/Documents/projects/repotest/apps/hyperloop-examples/app/controllers/index.js" [ERROR] Unexpected token (1:5) [ERROR] position 5 {code} {code: title=babel-code-frame} [INFO] controller: "index.js" > 1 | x ==== foo | ^ 2 | /** 3 | * I wrap code that executes on creation in a self-executing function just to 4 | * keep it organised, not to protect global scope like it would in alloy.js [ERROR] Error generating AST for "/Users/eharris/Documents/projects/repotest/apps/hyperloop-examples/app/controllers/index.js" {code}
5
227
ALOY-1599
01/11/2018 11:21:29
ALLOY: Model Data binding problem with the first upper case in the model src
There is a problem with code generated for Simple Data Binding with the first upper case letter in model name. I have two models defined: app/models/book.js app/models/Task.js I expect that following XMLs will produce the same code: {code:xml} <Alloy> <Model src="book"/> <Label>{book.name}</Label> </Alloy> {code} {code:xml} <Alloy> <Model src="Task"/> <Label>{Task.name}</Label> </Alloy> {code} But in the first case it is correct: {code:javascript} Alloy.Models.instance('book'); $.__views.Book = Ti.UI.createLabel({ id: "Book" }); $.__views.Book && $.addTopLevelView($.__views.Book); var __alloyId2 = function () { Alloy['Models']['book'].__transform = _.isFunction(Alloy['Models']['book'].transform) ? Alloy['Models']['book'].transform() : Alloy['Models']['book'].toJSON();$.Book.text = Alloy['Models']['book']['__transform']['name']; };Alloy['Models']['book'].on('fetch change destroy', __alloyId2);exports.destroy = function () { Alloy['Models']['book'] && Alloy['Models']['book'].off('fetch change destroy', __alloyId2); }; {code} and in the second case it is invalid: {code:javascript} $.__views.Task = Ti.UI.createLabel({ text: $model.__transform.Task.name, id: "Task" }); $.__views.Task && $.addTopLevelView($.__views.Task); {code} and I get error $model.__transform is undefined
1
228
ALOY-1602
02/01/2018 15:36:12
Avoid some global variables to be only available in parent controller.
Quote from [Github|https://github.com/appcelerator/alloy/pull/859]: {quote} I don't understand why it is necessary to remove "$model", "__parentSymbol" or "__itemTemplate" from the "arguments" variable. This is causing issues when passing "$model" for example to a controller which is inheriting from another controller as per Alloy Controller Inheritance documentation (http://docs.appcelerator.com/platform/latest/#!/guide/Alloy_Controllers-section-src-34636384_AlloyControllers-Inheritance). If we delete it from there, only the parent will have "$model" properly set but the child controller won't as it's deleted from "arguments". Another option would be to run "__processArg()" before calling the parent controller but this would mean only the child controller has `$model` properly set, it will be `null` for the parent one. In order to reproduce: # index.js Alloy.createController('child', \{ $model: aBackboneModelObject \}); # parent.js console.log(_.isNull($model)); // always return false ... # child.js exports.baseController = "parent"; console.log(_.isNull($model)); // always return true {quote}
1
229
ALOY-1603
02/06/2018 15:30:28
Update Moment.js to version 2.21.0
According to the new updates such as backbone.js and underscore.js in Appcelerator CLI 7.0.2, we should also update Moment.js from version 2.16.0 to version 2.20.1
1
230
ALOY-1607
03/01/2018 13:36:55
Latest underscore version is breaking removeListener method in BaseController.js
Latest underscore version (1.8.3) used in Alloy 1.11.0 causes an error using *$.removeListener* method. https://github.com/appcelerator/alloy/blob/2a25b1d50fe22d3f5c4f423a6027e1c1d7748b88/Alloy/lib/alloy/controllers/BaseController.js#L496 I don't know why Appc Team use underscore inside BaseController.js instead use built in prototype functions like 'forEach'. In fact bump to latest underscore version is breaking the normal usage of `$.removeListener`method and this is why: BaseController.js {code:java} removeListener: function(proxy, type, callback) { _.each(this.__events, function(event, index) { if ((!proxy || proxy.id === event.id) && (!type || type === event.type) && (!callback || callback === event.handler)) { event.view.removeEventListener(event.type, event.handler); //This line is removing a item from __events array but a undefined value is placed in the removed index //self.__events.splice(index, 1); removes the item with no undefined value instead delete self.__events[index]; } }); return this; } {code} What happens in the underscore 1.8.3 version *_.each* method? Well, it iterates in the array using a *for*, `undefined` values included. If *event* is undefined when *event.view.removeEventListener(event.type, event.handler);* it fails because *view* isn't in event {color:red}[ERROR] Error catched: Cannot read property 'view' of undefined{color} {code:java} _.each = _.forEach = function(obj, iteratee, context) { iteratee = optimizeCb(iteratee, context); var i, length; if (isArrayLike(obj)) { for (i = 0, length = obj.length; i < length; i++) { iteratee(obj[i], i, obj); } } else { var keys = _.keys(obj); for (i = 0, length = keys.length; i < length; i++) { iteratee(obj[keys[i]], keys[i], obj); } } return obj; }; {code} What happens in the oldest underscore 1.6.0 version *_.each* method? Well, it checks if *forEach* method is present in `Array.prototype` and uses it. This method skipes `undefined`values. {code:java} var ArrayProto = Array.prototype; var nativeForEach = ArrayProto.forEach; var each = _.each = _.forEach = function(obj, iterator, context) { if (obj == null) return obj; if (nativeForEach && obj.forEach === nativeForEach) { obj.forEach(iterator, context); } else if (obj.length === +obj.length) { for (var i = 0, length = obj.length; i < length; i++) { if (iterator.call(context, obj[i], i, obj) === breaker) return; } } else { var keys = _.keys(obj); for (var i = 0, length = keys.length; i < length; i++) { if (iterator.call(context, obj[keys[i]], keys[i], obj) === breaker) return; } } return obj; }; {code} Use case in Titanium: {code:java} $.addListener($.win, 'open', disableClick); $.addListener($.win, 'close', clean); $.addListener($.disable, 'click', disableClick); $.addListener($.label, 'click', close); function disableClick() { //Removes listener but undefined value is placed $.removeListener($.disable, 'click', disableClick); } function close(e) { Ti.API.info('Closing window'); $.win.close(); } function clean(e) { Ti.API.info('Cleaning window'); try { Ti.API.info('Call $.removeListener()'); $.removeListener(); } catch (err) { //It tries to remove event to undefined value //[ERROR] Error catched: Cannot read property 'view' of undefined Ti.API.error('Error catched: ' + err.message); } } {code} How to solve: How you can solve this? So easy... First way: Change _.each for forEach {code:java} removeListener: function(proxy, type, callback) { this.__events.forEach(function(event, index) { if ((!proxy || proxy.id === event.id) && (!type || type === event.type) && (!callback || callback === event.handler)) { event.view.removeEventListener(event.type, event.handler); delete self.__events[index]; } }); return this; } {code} Second way: Adding a simple check in the if... {code:java} removeListener: function(proxy, type, callback) { _.each(this.__events, function(event, index) { if (event && (!proxy || proxy.id === event.id) && (!type || type === event.type) && (!callback || callback === event.handler)) { event.view.removeEventListener(event.type, event.handler); delete self.__events[index]; } }); return this; } {code} As Konstantin Bueschel commented a way to avoid this undefined holes inside arrays is using *splice* instead *delete* *self.__events.splice(index, 1);*
1
231
ALOY-1609
03/07/2018 13:01:38
Add alloy.js plugin file to .gitignore
Every time the alloy version changes, the alloy.js plugin file inside the plugin folder changes too. This pollutes git and a default procedure is to remove the file from git alltogether. This is discussed in a recent kitchensink PR https://github.com/appcelerator/kitchensink-v2/pull/31#pullrequestreview-101563655 by [~hknoechel], [~eharris] and me.
1
232
ALOY-1615
04/26/2018 11:18:11
Audioplayer cannot be created from Alloy without specifying ns property
When creating an audioplayer from alloy this should work: {code} <AudioPlayer id="player" /> {code} But it doesn't, the {{ns}} property needs to be specified as such: {code} <AudioPlayer id="player" ns="Ti.Media" /> {code} it would be great if this can be fixed/improved so the {{ns}} property doesn't need to be specified
1
233
ALOY-1620
05/31/2018 11:19:00
Fix new Buffer deprecation warnings
h5.Description Node 10 produces a deprecation warning when the {{new Buffer}} constructor is used. See https://nodesource.com/blog/understanding-the-buffer-deprecation-in-node-js-10/ if you're curious In most cases I believe the most appropriate swap for us to do is turn {{new Buffer}} into {{Buffer.from}} There is one instance in the alloy code https://github.com/appcelerator/alloy/search?q=%22new+Buffer%22&unscoped_q=%22new+Buffer%22, it might not show up when alloy is ran however as code under {{node_modules}} will not throw the buffer deprecation warning We might also wish to update eslint-config-axway to include the {{no-buffer-constructor}} rule Steps to reproduce to be added as replacement happens
1
234
ALOY-1621
06/12/2018 19:33:53
Move NavigationWindow API from Ti.UI.iOS to Ti.UI (parity)
We are moving the Ti.UI.iOS.NavigationWindow to the cross-platform Ti.UI namespace, for parity with Android and Windows. Related tickets: - Android: TIMOB-24582 - Windows: TIMOB-25537 - iOS: TIMOB-26060 For that, we also need to open the {{<NavigationWindow>}} API for other platforms. Right now, it is only accessible from iOS. This is planned to happen in the SDK 7.4.0 timeframe, with a CLI minor-release that includes a new Alloy version with this fix.
3
235
ALOY-1626
08/29/2018 09:38:17
Alloy: Missing plugins/ directory causes cloned app-projects to fail
As part of ALOY-1609 we ignored the {{plugins/ti.alloy}} directory to prevent some git-glitches around the hook. Unfortunately that caused a regression that causes developers that clone other apps (like from GitHub) to see the following error because the directory is missing: {code} [WARN] Could not find Titanium plugin id=ti.alloy version=1.0 [ERROR] Could not find all required Titanium plugins: [ERROR] id: ti.alloy version: 1.0 {code} We instead need to revert the change and figure out why the hook is rewritten across Alloy versions.
1
236
ALOY-1631
09/19/2018 12:42:17
Define theme from CLI
From [documentation|https://docs.appcelerator.com/platform/latest/#!/guide/Alloy_Themes] {quote}To use a theme, add it to your Alloy project's config.json file with "theme" as the key and the name of the theme folder as the value{quote} For my application I need to apply different themes for customers, so it would be nice to have ability to define theme from command line.
3
237
ALOY-1638
11/17/2018 15:28:57
Theme is "null" when a theme is defined in config.json
I think it is caused by https://jira.appcelerator.org/browse/ALOY-1631. If no theme is defined in the cli, alloy will be called with theses args: {code} alloy.cmd compile C:\myapp --config theme=null,platform=android,version=0,simtype=none,devicefamily=none,deploytype=production,target=dist-playstore {code} theme with be a string with "null" inside. In this file https://github.com/appcelerator/alloy/blob/master/Alloy/commands/compile/compilerUtils.js#L904, we should check if theme is null or a string "null". {code} if (alloyConfig.theme && alloyConfig.theme != "null") { o.theme = alloyConfig.theme; } {code} ---- config.json {code} { "global": { "theme": "abcdef" }, "env:development": {}, "env:test": {}, "env:production": {}, "os:android": {}, "os:ios": {}, "os:windows": {}, "dependencies": {} } {code} In 1.13.4: {code} Alloy 1.13.4 by Appcelerator. The MVC app framework for Titanium. [DEBUG] ----- CONFIGURATION ----- [DEBUG] raw config = "theme=null,platform=android,version=0,simtype=none,devicefamily=none,deploytype=development,target=emulator" [DEBUG] theme = null [DEBUG] platform = android [DEBUG] version = 0 [DEBUG] simtype = none [DEBUG] devicefamily = none [DEBUG] deploytype = development [DEBUG] target = emulator [DEBUG] project path = C:\app\myapp [DEBUG] app path = C:\app\myapp\app [DEBUG] [DEBUG] ----- CONFIG.JSON ----- [DEBUG] dependencies = {} [INFO] [config.json] regenerating CFG.js from config.json... [DEBUG] { "dependencies": {}, "theme": "null", "sourcemap": true, "autoStyle": false, "adapters": [ "localStorage", "properties", "sql" ] } {code} In 1.13.2, theme is defined: {code} Alloy 1.13.2 by Appcelerator. The MVC app framework for Titanium. [DEBUG] ----- CONFIGURATION ----- [DEBUG] raw config = "theme=null,platform=android,version=0,simtype=none,devicefamily=none,deploytype=development,target=emulator" [DEBUG] theme = null [DEBUG] platform = android [DEBUG] version = 0 [DEBUG] simtype = none [DEBUG] devicefamily = none [DEBUG] deploytype = development [DEBUG] target = emulator [DEBUG] project path = C:\app\myapp [DEBUG] app path = C:\app\myapp\app [DEBUG] [DEBUG] ----- CONFIG.JSON ----- [DEBUG] dependencies = {} [INFO] [config.json] regenerating CFG.js from config.json... [DEBUG] { "dependencies": {}, "theme": "abcdef", "sourcemap": true, "autoStyle": false, "adapters": [ "localStorage", "properties", "sql" ] } {code}
3
238
ALOY-1641
01/15/2019 20:39:12
iOS: TabbedBar usage on lower than SDK 8 is broken
h5.Description https://github.com/appcelerator/alloy/pull/918 was bad and was missing several requires, this was not exposed through either eslint or the tests although it should have been (and I should have realised how bad I borked anyways) h5.Steps to reproduce 1. Build kitchensink-v2 with alloy 1.13.6 and sdk 7.5.0 h5.Actual {code} ReferenceError: CU is not defined {code} h5.Expected It should work
3
239
ALOY-1686
05/02/2019 10:27:34
Alloy: App crashes due to context used when accessing Ti.Database API
The current master is broken due to changes in the Obj-C JSCore interface (TIMOB-26038): {code} [ERROR] Script Error { [ERROR] column = 38; [ERROR] line = 214; [ERROR] message = "self type check failed for Objective-C instance method"; [ERROR] sourceURL = "file:///Users/hans/Library/Developer/CoreSimulator/Devices/884D0F2B-46F2-41D5-AA78-C26BC42BF348/data/Containers/Bundle/Application/B1994734-79D4-40DD-9003-C940456A903D/Lambus.app/alloy/sync/sql.js"; [ERROR] stack = " at [native code]\n at Sync(/alloy/sync/sql.js:214:38)\n at sync(/alloy.js:92:22)\n at fetch(/alloy/backbone.js:344:47)\n at (/app.js:45:24)\n at global code(/app.js:225:70)\n at require@[native code]\n at (/ti.main.js:8997:10)\n at doLoad(/ti.main.js:8955:15)\n at loadBootstrapScripts(/ti.main.js:8967:11)\n at loadAsync(/ti.main.js:8972:23)\n at global code(/ti.main.js:8994:10)"; [ERROR] toJSON = "<KrollCallback: 0x600000bfba40>"; [ERROR] } {code} Specifically, changes in {{Ti.Database}} seem to have caused this issues. It was triggered by Alloy models which use Backbone in the background which uses Ti.Database in the background. To reproduce, simply create a new Alloy app and create a model as documented in the docs. For the core-team: This is also reproducible in the app you guys have access to. *EDIT*: After investigating this, it seems like [this selector|https://github.com/appcelerator/titanium_mobile/pull/10381/files#diff-d0e600e43c92d0fe06ffee452771f44cR125] is causing the issues as it's referenced in the sql.js to get the field from the result-set at the specified index.
8
240
ALOY-1737
08/11/2020 20:11:46
Alloy: ListView dataBinding creates deprecated setItems call
When using Alloy ListView databinding it will produce code with {code}setItems(){code} and therefore produce a "using deprecated setter" warning: https://github.com/appcelerator/alloy/blob/6c311743af90da438f9c30bfdbe29275247daa51/Alloy/commands/compile/parsers/Ti.UI.ListSection.js#L163 {code} <ListView id="lst_parks" defaultItemTemplate="default" > <Templates> <ItemTemplate name="default"> </ItemTemplate> </Templates> <ListSection dataCollection="parks"/> </ListView> {code}
1
0
APSTUD-6446
06/05/2006 18:15:21
Preferences dialog too large
At a resolution of 1024x768 some of the preferences are inaccessible. Notably, the main Pydev and the Pylint sub item contain preferences that go off the bottom off the dialog and are not accessible. These dialogs should probably be reorganized. Having too many settings on a dialog may be unwise in any case.
0
1
APSTUD-23
06/08/2011 02:56:21
Aptana tries to open a new instance of itself when opening files via Windows Explorer
{html}<div><p>Assigned to <a href= "http://aptanastudio.tenderapp.com/discussions/problems/49-aptana-tries-to-open-a-new-instance-of-itself-when-opening-files-from-win-explorere"> Tender issue #49</a>. As reported in Tender:</p> <blockquote> <p>OS: Win XP</p> <p>When Aptana is running and I try to open files from my Windows Explorer (with double click or enter) Aptana displays "Workspace in use or cannot be created, choose a different one" after showing the splash screen for 2-3 seconds.</p> <p>Dragging files into my running instance won't cause this behavior. Opening files from my Project view causes no problems, except .htaccess files. As a temp solution I chose to open .htaccess files with Notepad.</p> <p>This is what I already did (with no luck);</p> <ul> <li>My installation folder and workspace folder are both writable.</li> <li>I did several complete re-installs.</li> <li>I removed the .lock file in my workspace folder.</li> <li>I created a new workspace folders and switched to it.</li> <li>I have administrator rights.</li> </ul> <p>Creating a new workspace will fix my problem temporary but the problem is back within a week.</p> <p>In Aptana 1.2 I never saw a splash screen when Aptana was running and I opened another file. The files were just loaded in the running instance. Is this caused by Eclipse 3.5?</p> <p>This is quite annoying cause every time the splash screen shows it either takes up 3 seconds of the file won't open due to the locked workspace.</p> </blockquote></div>{html}
8
2
APSTUD-99
06/08/2011 02:57:23
Content assist popup is shown outside the screen boundaries
As you can see from the image, the JavaScript content assist popup displays outside the screen boundary to the right.
8
3
APSTUD-190
06/08/2011 02:58:33
PHP Autocompletion for parent methods
When you overwrite a parent method you often need to call it from the new method, example: {code} <?php class Parent { public function doSomethingHard() { } } class Child { public function doSomethingHard() { $this->bla = 'foo'; return parent:: # content assist here should have doSomethingHard() } } ?> {code} Aptana does not autocomplete the methods after "parent::" Suggested fix: # Attempt to replicate # Check to see if the item is fixed in 5.4, or in a newer version of the 5.3 parsers # If not in our code and can't be fixed, link to PDT issue referencing the problem
13
4
APSTUD-612
06/08/2011 03:06:33
Redraw error when using JS snippet
{html}<div><p>This may actually be an issue with my VM, but I'm posted this in case it's indicative of some other issue.</p> <ol> <li>Open a JS editor<br></li> <li>type: for<br></li> <li>type a tab<br></li> <li>Allow enough time to pass so that the popup appears next to the two "for" snippets that are available<br></li> <li>type: 2</li> </ol> <p>At this point, the two popups go away but I see trash further down the screen. That trash moves as I add/remove lines.</p></div>{html}
8
5
APSTUD-769
06/08/2011 03:10:37
PHP Debugger
This is something that was shipped with 1.5 (skipped out on 2.0 so don't know if it's there). Don't know if this is planned for 3.0 (on the product page I've seen that JS debugging is coming soon), yet it would be great if this were to be found into Aptana again (same goes for the ability to run a script through the PHP parser to get the output). I've found the debugger to be one of the main Aptana features I use during my lectures (I'm a lecturer at a technical university), helping the students to understand what's going on on "the inside" of a PHP process.
40
6
APSTUD-814
06/08/2011 03:12:01
Option to remove trailing whitespace on file save
Eclipse PDT provides the option to have trailing whitespace automatically removed from files on save (i.e. from the end of a line where it has no impact). Is it possible you could add this useful feature?
13
7
APSTUD-832
06/08/2011 03:12:32
Find dialog cause text selection to "invert" colors
This is what happens: # I select some text - I open the find/replace dialog (I press CTRL+F then click on the magnifier icon in the search bar) # At this point the selection is gone (like it is "inverted" or something similar), so the option to find/replace only in selected line is useless. I'm on the latest build (win7) and never experienced this before. The error log is clean.
8
8
APSTUD-1507
06/08/2011 03:23:51
Enable multi-line search in find bar
There's _still_ no multi line search/replace! Now I know there's the DRY principle that any good coder should utilize. But there's just tons of situations where it's needed. Like wireframing/prototyping where the DRY principle is practically not applicable. Also searching other's code for a specific line is much easier if you can just paste a chunk of code into the search bar. You know - tutorials - that some of us have to do to stay on top. In the meantime, you'll have to use regular expressions (use \R for carriage returns). Longer-term, suggest modifying the find bar to allow for a "multi-line" option. Proposed spec: https://wiki.appcelerator.org/display/guides2/Multiline+Search+and+Replace
0
9
APSTUD-1698
06/08/2011 03:27:54
No file system is defined for scheme
From the log file: {code} !ENTRY org.eclipse.core.filesystem 4 566 2011-02-08 22:01:00.387 !MESSAGE No file system is defined for scheme: reference {code}
5
10
APSTUD-1839
06/08/2011 03:30:26
Allow to open a closed project by double-clicking on it in Project Explorer
{html}<div><p>I have the latest Aptana 3 installed. I have the preference selected to open projects with double click, it doesn't work. I switched it to single click, same result, didn't work.</p> <p>Let me know if you need more information!</p> <p>Thanks,<br> Jason</p></div>{html}
5
11
APSTUD-1889
06/08/2011 03:31:29
The editor find toolbar interrupts certain keyboard shortcuts
Scenario: You have several tabs open, and the cursor/focus is somewhere within the "Find" toolbar that appears at the bottom of the screen (shortcut = Cmd+F). Steps to reproduce: 1. Open a file in the studio editor. 2. Open the find toolbar (CMD+F). 3. With focus in the toolbar press CMD+tab. Expected behavior: User should be able to use OS keyboard shortcuts while in Studio. Actual behavior: Keyboard shortcuts do no work while focus is on the find toolbar. Note: This also happens for the Open Resource shortcut (CMD+T) and the Close Window shortcut (CMD+W).
5
12
APSTUD-2286
06/08/2011 03:39:24
Implement improved terminal hyperlink detection
On terminal windows with a long history of output (a couple pages), scrolling up with the mouse wheel will jump back down once it reaches a certain point. However, if you manually drag the scroll bar up, you can see history beyond the jumping point. I've seen this reproducible on Allen's machine when you tail rails logs. You can see similar symptoms in the attached movie. A short investigation showed that the issue relates to the implementation of hyperlink detection in Terminal. Disabling hyperlink detection eliminates the issue. Suggested fix: Re-implement hyperlink detection code to make it free of scrolling/drawing issues.
8
13
APSTUD-2573
06/08/2011 03:45:01
Pydev local import quick fix does not condense imports from same file
{html}<div><p>To reproduce:</p> <pre> <code class="python">class Eggs(object): def spam(): from string import Template return Template('') + digits # Press CTRL+1 on this line. Hold down CTRL while selecting from string for 'string.digits'</code> </pre> <p>result:<br></p> <pre> <code class="python">class Eggs(object): def spam(): from string import Template from string import digits return Template('') + digits</code> </pre> <p>expected:<br></p> <pre> <code class="python">class Eggs(object): def spam(): from string import Template, digits return Template('') + digits</code> </pre></div>{html}
1
14
APSTUD-2691
06/09/2011 07:46:34
Add F2 support for Content Assist Hover
F2 should pop up the content assist tooltip, or if hovering over content, F2 will provide focus.
20
15
APSTUD-2752
06/15/2011 14:18:11
Support Ruby Watch Expressions
Support watch expressions in ruby. Looks like we can just port the RDT impl over easily. It's a single class with a couple nested classes in it, and it gets registered via a debug.core extension point.
8
16
APSTUD-2798
06/24/2011 08:19:38
Add "Deploy" Menu-Entry to "Merge Results" Context Menu
When using Subclipse to merge some revisions, there's a view "Merge Results" where the merged files are listed. With Aptana 2.x it was possible to Upload the files directly from that view using the ftp connections. In Aptana 3.x there's no menu entry to upload the files from that view: You have to search each of the merged files or directories in the Project Explorer (or App Explorer) and upload it there. *There should be the "Deploy" Menu Entry in the context menu of the "Merge Results"-View.*
1
17
APSTUD-2811
06/27/2011 17:57:11
"Automatically sync my changes with the remote site" only syncs one way
In the deployment settings, "Automatically sync my changes with the remote site" is selected, and "automatically sync in both directions" is chosen. Opening a file on the remote connection, making a change and saving the file does not initiate a sync with the local copy of the file. The local copy remains unchanged. (Opening a file locally and saving does initiate a sync and updates the remote copy as expected.)
8
18
APSTUD-2853
06/30/2011 21:11:38
Create wrapper for InstanceScope() and DefaultScope() in code
InstanceScope() and DefaultScope() constructors have been deprecated in Eclipse 3.7. However, the replacement methods (InstanceScope.INSTANCE) is only available in Eclipse 3.7, so we cannot universally switch to it yet. Adding @SuppressWarnings("deprecation") to all usages is problematic, since it will display "Unused annotation" in Eclipse 3.6 Suggest making wrapper methods for the above items and adding a single @SuppressWarnings to those instances. Thus, we only have two warnings in the problems view rather than the hundred or so we have now.
1
19
APSTUD-2902
07/06/2011 02:42:12
PHP chaining code hinting
using classes with chain desing pattern code hinting breakes when function in chain has parameter. For example in Doctrine_Query class: {{$q = Doctrine_Query::create();}} {{$q->from()->select(); //list of available function is displayed}} {{$q = Doctrine_Query::create();}} {{$q->from('modelName')-> //no code hinting}}
5
20
APSTUD-2916
07/06/2011 15:13:39
Add "Submit a Bug" feature to Aptana Studio Help menu
This would crib from the previous implementation we had for Aptana Studio some years ago: # User needs to set up their JIRA account. There should be a preference area for that # When filing a bug, ask them the following: # A summary of the issue (mandatory) # Steps to reproduce the problem (mandatory) # Include log file, current platform configuration and any other log items # If possible, properly assign component and scope to the item in question (should be part of the method call instantiating this dialog) # Allow them to attach a screenshot The same item would be available from the file menu, though some of these things would not be filled out (i.e. component, scope). This would use the JIRA API to submit the bug (http://confluence.atlassian.com/display/JIRA/JIRA+RPC+Services)
0
21
APSTUD-2944
07/11/2011 01:12:35
Not including user defined variables and functions in JS content assist
Variables and functions defined by user are not shown in code assist. They are also not displayed in outline. Steps to recreate problem: 1. create blank js file 2. open it with JavaScript Source Editor 3. Paste following sample code: {code} function foo() { var eight = 8; } {code} 4. on empty line after function, invoke content assist by pressing ctrl + space Only items from JS core are displayed. There are no items from current file. Attached file shows displayed content assist. "foo" should be one of the proposals, but is not.
0
22
APSTUD-2952
07/11/2011 15:26:48
Implement a new JavaScript validation framework
We have multiple different validators for JS. They are inefficient, out of date, and nearly unmaintainable. Propose creating an infrastructure to replace this with a single way of defining rules. Brief requirements: # Should encapsulate these rules (http://jshint.com/) # It should allow for style/usage validation for things like Titanium Mobile projects. This kind of validation might only happen in JS files in Titanium Mobile projects # It should allow for cross-file validation. Ideally, those rules exist in some form that can be modified and converted into our new format.
0
23
APSTUD-2983
07/14/2011 09:07:03
App Explorer constantly refreshing/resorting contents on Git-bound projects
Steps to reproduce: # Check out a project from git (Suggest using https://github.com/aptana/html.ruble, File > Import > Git Repository) # Switch to using App Explorer # Expand templates folder # Edit 1_1.xhtml. Save # Note order of files/folders reshuffles. This will repeat with each new file edited. See before/after screen shorts below.
8
24
APSTUD-2999
07/17/2011 17:17:21
Can't set breakpoint in haml (ruby) templates
Editor does not allow setting of ruby breakpoints in haml view templates on lines with ruby code (starting with = and -) These ruby code lines should be breakpointable just like in erb templates. If there is a workaround, please describe in detail. Thanks, tv/
1
25
APSTUD-3053
07/21/2011 14:05:08
Support for Mac OS X Lion Full Screen View
Mac OS X Lion has a full screen feature for a lot of native apps. It would be great for Aptana to have a feature like this.
8
26
APSTUD-3100
07/27/2011 15:10:05
Create FindBugs Profile appropriate for validating code correctness
The default FindBugs profile is too strict for our current code base. We need to create a more limited profile that we can use to validate all committed code for possible errors. Please create a profile, run it against some of our current source code to see if it reports what is expected, and pass it around to the other developers for confirmation.
1
27
APSTUD-3130
07/30/2011 07:17:29
Upgrade Unit Test Coverage
Our current unit test coverage hovers around 30% (class, method, block, and line) We need to get this higher. Here are the classes we need to test: Please create a sub-task for the class you want to test, and edit the document to indicate you've claimed that test. If there already is a task created for a particular class, it means someone else has claimed that one, so choose another. If there are a bunch of related classes, you can group that into one task. Coverage goals for all classes below is a _minimum_ of 100% class, 70% method, 80% block, 80% line (default Emma values in Jenkins) * com.aptana.core.util ** KeepAliveObjectPool ** ObjectPool ** ReapingObjectPool ** StreamUtil ** URIUtil
20
28
APSTUD-3149
08/01/2011 15:13:44
Convert cygwin paths to Windows paths in ENV when executing process outside Terminal (console/process/ProcessBuilder)
We ran into an issue with PATH holding cygwin paths on Windows breaking git clones. I added a method to convert between the two, but we need to make sure we convert anywhere we're not executing inside the Terminal/bash.
1
29
APSTUD-3189
08/03/2011 08:42:26
Support Javascript go to definition hyperlinks
This comes from trying to close APSTUD-46, which must have been a Studio 2.x ticket. We should support Ctrl+Clicking to go to definition for Javascript functions, variables, properties.
1
30
APSTUD-3327
08/17/2011 11:44:56
Word Wrap shows keybinding conflict when used as plugin in Eclipse for Java EE
When installing Aptana 3.0.4 as a plugin in Eclipse for Java EE there are conflicts between Aptana and Eclipse plugins regarding keyboard bindings. The following conflicts appear for Java EE plugins: {code} ALT+SHIFT+D R, org.eclipse.wst.server.launchShortcut.debug com.aptana.ruby.debug.ui.RubyShortcut.debug ALT+SHIFT+X R, org.eclipse.wst.server.launchShortcut.run com.aptana.ruby.debug.ui.RubyShortcut.run CTRL+SHIFT+D, org.eclipse.jdt.debug.ui.commands.Display com.aptana.ide.syncing.ui.commands.download org.radrails.rails.ui.command.debug.server CTRL+SHIFT+U, org.eclipse.jdt.ui.edit.text.java.search.occurrences.in.file.quickMenu com.aptana.ide.syncing.ui.commands.upload CTRL+SHIFT+R, org.eclipse.ui.navigate.openResource com.aptana.editor.toggleWordWrapCommand {code} And these additional conflicts appear for the Eclipse Subversive plugin: {code} ALT+CTRL+D, org.eclipse.team.svn.ui.command.UpdateToRevisionCommand com.aptana.deploy.commands.deployApp ALT+CTRL+R, org.eclipse.team.svn.ui.command.CompareWithRevisionCommand org.python.pydev.debug.setnext {code} Full log messages below: {code} !ENTRY org.eclipse.jface 2 0 2011-08-17 17:11:02.486 !MESSAGE Keybinding conflicts occurred. They may interfere with normal accelerator operation. !SUBENTRY 1 org.eclipse.jface 2 0 2011-08-17 17:11:02.486 !MESSAGE A conflict occurred for ALT+SHIFT+D R: Binding(ALT+SHIFT+D R, ParameterizedCommand(Command(org.eclipse.wst.server.launchShortcut.debug,Debug on Server, Debug the current selection on a server, Category(org.eclipse.debug.ui.category.run,Run/Debug,Run/Debug command category,true), , ,,true),null), org.eclipse.ui.defaultAcceleratorConfiguration, org.eclipse.ui.contexts.window,,,system) Binding(ALT+SHIFT+D R, ParameterizedCommand(Command(com.aptana.ruby.debug.ui.RubyShortcut.debug,Debug Ruby Application, Debug Ruby Application, Category(org.eclipse.debug.ui.category.run,Run/Debug,Run/Debug command category,true), , ,,true),null), org.eclipse.ui.defaultAcceleratorConfiguration, org.eclipse.ui.contexts.window,,,system) !SUBENTRY 1 org.eclipse.jface 2 0 2011-08-17 17:11:02.486 !MESSAGE A conflict occurred for ALT+SHIFT+X R: Binding(ALT+SHIFT+X R, ParameterizedCommand(Command(org.eclipse.wst.server.launchShortcut.run,Run on Server, Run the current selection on a server, Category(org.eclipse.debug.ui.category.run,Run/Debug,Run/Debug command category,true), , ,,true),null), org.eclipse.ui.defaultAcceleratorConfiguration, org.eclipse.ui.contexts.window,,,system) Binding(ALT+SHIFT+X R, ParameterizedCommand(Command(com.aptana.ruby.debug.ui.RubyShortcut.run,Run Ruby Application, Run Ruby Application, Category(org.eclipse.debug.ui.category.run,Run/Debug,Run/Debug command category,true), , ,,true),null), org.eclipse.ui.defaultAcceleratorConfiguration, org.eclipse.ui.contexts.window,,,system) !SUBENTRY 1 org.eclipse.jface 2 0 2011-08-17 17:11:02.486 !MESSAGE A conflict occurred for ALT+CTRL+D: Binding(ALT+CTRL+D, ParameterizedCommand(Command(org.eclipse.team.svn.ui.command.UpdateToRevisionCommand,Update to Revision, , Category(org.eclipse.team.svn.ui.command.category,SVN,null,true), , ,,true),null), org.eclipse.ui.defaultAcceleratorConfiguration, org.eclipse.ui.contexts.window,,,system) Binding(ALT+CTRL+D, ParameterizedCommand(Command(com.aptana.deploy.commands.deployApp,Deploy App, , Category(org.eclipse.core.commands.categories.autogenerated,Uncategorized,Commands that were either auto-generated or have no category,true), com.aptana.deploy.internal.handlers.DeployHandler, ,,true),null), org.eclipse.ui.defaultAcceleratorConfiguration, org.eclipse.ui.contexts.window,,,system) !SUBENTRY 1 org.eclipse.jface 2 0 2011-08-17 17:11:02.486 !MESSAGE A conflict occurred for CTRL+SHIFT+D: Binding(CTRL+SHIFT+D, ParameterizedCommand(Command(org.eclipse.jdt.debug.ui.commands.Display,Display, Display result of evaluating selected text, Category(org.eclipse.debug.ui.category.run,Run/Debug,Run/Debug command category,true), , ,,true),null), org.eclipse.ui.defaultAcceleratorConfiguration, org.eclipse.ui.contexts.dialogAndWindow,,,system) Binding(CTRL+SHIFT+D, ParameterizedCommand(Command(com.aptana.ide.syncing.ui.commands.download,Download..., , Category(com.aptana.ide.syncing.ui.commands.category,File Transfer,File Transfer Commands,true), com.aptana.ide.syncing.ui.handlers.DownloadHandler, ,,true),null), org.eclipse.ui.defaultAcceleratorConfiguration, org.eclipse.ui.contexts.window,,,system) Binding(CTRL+SHIFT+D, ParameterizedCommand(Command(org.radrails.rails.ui.command.debug.server,Debug Server, , Category(org.radrails.rails.ui.category,Rails,null,true), org.radrails.rails.internal.ui.commands.DebugServerHandler, ,,true),null), org.eclipse.ui.defaultAcceleratorConfiguration, org.eclipse.ui.contexts.window,,,system) !SUBENTRY 1 org.eclipse.jface 2 0 2011-08-17 17:11:02.486 !MESSAGE A conflict occurred for ALT+CTRL+R: Binding(ALT+CTRL+R, ParameterizedCommand(Command(org.eclipse.team.svn.ui.command.CompareWithRevisionCommand,URL..., , Category(org.eclipse.team.svn.ui.command.category,SVN,null,true), , ,,true),null), org.eclipse.ui.defaultAcceleratorConfiguration, org.eclipse.ui.contexts.window,,,system) Binding(ALT+CTRL+R, ParameterizedCommand(Command(org.python.pydev.debug.setnext,Set Next Statement, , Category(org.python.pydev.ui.category.run,PyDev - Run,Python run category,true), , ,,true),null), org.eclipse.ui.defaultAcceleratorConfiguration, org.eclipse.ui.contexts.window,,,system) !SUBENTRY 1 org.eclipse.jface 2 0 2011-08-17 17:11:02.486 !MESSAGE A conflict occurred for CTRL+SHIFT+U: Binding(CTRL+SHIFT+U, ParameterizedCommand(Command(org.eclipse.jdt.ui.edit.text.java.search.occurrences.in.file.quickMenu,Show Occurrences in File Quick Menu, Shows the Occurrences in File quick menu, Category(org.eclipse.search.ui.category.search,Search,Search command category,true), , ,,true),null), org.eclipse.ui.defaultAcceleratorConfiguration, org.eclipse.ui.contexts.window,,,system) Binding(CTRL+SHIFT+U, ParameterizedCommand(Command(com.aptana.ide.syncing.ui.commands.upload,Upload..., , Category(com.aptana.ide.syncing.ui.commands.category,File Transfer,File Transfer Commands,true), com.aptana.ide.syncing.ui.handlers.UploadHandler, ,,true),null), org.eclipse.ui.defaultAcceleratorConfiguration, org.eclipse.ui.contexts.window,,,system) !SUBENTRY 1 org.eclipse.jface 2 0 2011-08-17 17:11:02.486 !MESSAGE A conflict occurred for CTRL+SHIFT+R: Binding(CTRL+SHIFT+R, ParameterizedCommand(Command(org.eclipse.ui.navigate.openResource,Open Resource, Open an editor on a particular resource, Category(org.eclipse.ui.category.navigate,Navigate,null,true), org.eclipse.ui.internal.ide.handlers.OpenResourceHandler@12b2a18, [Lorg.eclipse.ui.internal.commands.Parameter;@d89fb1,,true),null), org.eclipse.ui.defaultAcceleratorConfiguration, org.eclipse.ui.contexts.window,,,system) Binding(CTRL+SHIFT+R, ParameterizedCommand(Command(com.aptana.editor.toggleWordWrapCommand,Word Wrap, , Category(org.eclipse.ui.category.window,Window,null,true), com.aptana.editor.common.internal.commands.ToggleWordWrapHandler, ,,true),null), org.eclipse.ui.defaultAcceleratorConfiguration, org.eclipse.ui.contexts.window,,,system) {code}
0
31
APSTUD-3343
08/20/2011 13:51:13
No "Synchronize" option in right-click menu
# Create a new local project # Create a connection to a remote server # Right click on a file in the local project. No Synchronize option there. It may be that "Synchronize" is encapsulated by "deploy app", though deploy to me suggests deploying from the root. Suggest we really need the Sync option for FTP/SFTP type sites.
8
32
APSTUD-3376
08/25/2011 17:05:44
PHP: Add Open Type/Method PHP feature
One feature that is sorely missed is Open Type in the Eclipse PHP PDT. Attached is a screenshot of the feature in Eclipse PDT.
5
33
APSTUD-3422
09/06/2011 15:17:11
Show differences in synchronize window extremely slow.
Synchronize files to bring up the Synchronize window. A list of files will show up in the preview window. Right click on any file that needs updating and "Show differences". The software will hang for a LONG time before bringing up the text differences window. These are the exact steps I used to produce the issue: 1. Click on the Project Explorer tab. 2. Click on a project. 3. Right click and deploy app. 4. Synchronize window shows up showing a list of files. 5. Right click on any file that need updating. 6. Click on Show Differences. This is where it hangs. The files I work with range in anywhere from 1K to 150K. The 1K files takes a few seconds to compare. The 150K files takes longer than 5 mins (I gave up after 5 minutes).
8
34
APSTUD-3427
09/07/2011 08:23:30
Add cherry-pick support for Git
We currently have no action/command/UI support for doing cherry-picks for Git, so I have to resort to the command line for this. It'd be nice to add it.
1
35
APSTUD-3430
09/07/2011 12:49:31
Improve the PHP outline to display a true nesting of HTML nodes
We should display PHP nodes nested correctly inside HTML nodes, and vice-verse.
1
36
APSTUD-3482
09/16/2011 11:10:39
Confirm Token Scanners are updated to handle multiple queries for the same token
Related to bug APSTUD-3457, we need to confirm that all Token Scanners have been updated such that querying the scanner multiple times for the same token results in the same returned length and offset.
1
37
APSTUD-3483
09/16/2011 11:27:17
PDT/WST editors are not available in an Aptana PHP project
# Set "Project Natures" to PHP/WEB # Select a file->right click->Open with ## There is no PHP editor (PDT) *.php files, though the Aptana one shows ## There is no WST JS editor/html editor/css editor for *.js/*.html/*.css file # Users are unable to select the PDT/WST editor from the "Others" menu
8
38
APSTUD-3492
09/18/2011 19:29:10
Use Aptana theme for Aptana editors only
[Originally posted here|http://stackoverflow.com/questions/7438868/eclipse-use-aptana-theme-for-javascript-editor-only] When I use Aptana in Eclipse, I like the Cobalt theme for my Javascript. However, this theme ends up making my SVN diff-ing nearly impossible for my Java files, because the background is dark blue, and the text is black in the compare editor. I've look all over the preferences in Eclipse, and can't figure out a way to only use the Aptana Cobalt theme for editing my Javascript files. Here are the things I've tried: - I've made the Aptana JavaScript editor the default for ".js" files - I've made the default for ".txt" and ".java" the normal editors (non-Aptana, whatever they are) - I've tried setting the theme, and making sure that General > Appearance > Colors and Fonts still has all the defaults - I've verified that if I changed the theme to something with a white background, my diff-ing editor gets changed and becomes readable What else can I do?! I just want to use Aptana for Javascript, not my default diff theme.
8
39
APSTUD-3521
09/22/2011 07:10:30
Button on the toolbar for option "Show white space characters"
Create a "quick" button on the toolbar for Aptana option "Show white space characters", please Not easy go to the menu every time for Show/Hide white space characters
1
40
APSTUD-3541
09/23/2011 08:19:35
Changing selection in Project Explorer causes redraw/selection issue
This is a very annoying one. It looks like based on my project selection, new buttons are getting added/removed from the Project Explorer toolbar (specifically sync buttons). As a result I see two issues: 1. The bar goes from being to the right of the view name/tab to underneath it 2. It messes up my ability to select some of the projects intermittently by clicking on them with the mouse. I am forced to use the keyboard to select the "mobile" project. When Local Filesystem or "web" project are selected, it draws the toolbar underneath with disabled up/down and up+down blue arrows. When my "mobile" project is selected, they don't show at all, but there are sync options under the "deploy" menu on the toolbar. "mobile" does have a connections set up for syncing.
5
41
APSTUD-3552
09/26/2011 07:01:19
Drop files from the remote view to a local folder
Hi, it would be very usefull if i could drag some files or folders from the remote view to a local folder on the desktop or any other folder in the fiel browser. The other way from the local folder to the remote view already works fine! This would be very usefull if you have to download some files without to configure the ftp connection in filezilla or any other FTP Client. I searched for already reported tickets, but don't found anythink. If i missed it, sorry for that! Greetings Leo
5
42
APSTUD-3560
09/28/2011 06:38:03
Content assist content wraps short of popup edge
If you have methods with long parameter descriptions, sometimes the auto complete popup it very hard to read, as shown in the attached screenshot (the code is from the Zend Framework). The content should wrap according to the width of the popup (it appears to break early here)
13
43
APSTUD-3565
09/29/2011 06:42:08
Create sub-folder under temp for our temporary files
If i work with a lot of FTP connections, after some hours my /tmp directory is getting very nasty. If you have some other tools that work directly in /tmp, you don't find your own files anymore. (see the screenshot) I think it would be a very nice feature if i could determain a custom path for this files. Normaly on Linux you have /tmp/aptanavfs/... . You can see other tools like pulse, orbit, ssh, ... always using their own subdirectory.
8
44
APSTUD-3569
09/29/2011 10:24:14
Aptana freeze while an FTP Name Conflict
Hi, related to APSTUD-3568. If you are pasting a File in the remote view (FTP connection) by selecting the parent folder manually, the Name Conflict window is popping up. This is correct, but this window is causing a memory peak and the complete Aptana IDE is freezing to death. It takes more than 20 secounds for one letter to show up in the input field. I am not quite sure, but i think is has something to do with Aptana waiting for the FTP LIST Command. Greetings Leo
13
45
APSTUD-3580
09/30/2011 08:59:12
Improve build time of unit test build
The unit test build on development takes way too long. Typically over 40 minutes. We need to investigate to see if we can help speed it up at all, since the actual text execution appears to take less than 9 minutes.
1
46
APSTUD-3586
10/02/2011 03:11:48
PHP No code assist on Class::getInstance() methods
{code} <?php class DemoClass { private $instance; public static function getInstance() { self::$instance || self::$instance = new self(); return self::$instance; } public function hello() { echo 'hello'; } public function world() { echo 'world'; } } ?> {code} In some context locations, the code assist may pop-up automatically to suggest available options. For example, an available list of functions, variables and constants will appear after typing a PHP arrow string '->'. Call other class methods do not work. there was no code assist when used like this {code} DemoClass::getInstance()->??? (??? cant tips like:hello world...methods) {code}
13
47
APSTUD-3595
10/05/2011 07:48:11
PHP: Context Information fails when there is a string in the parameter list
I have 3 Projects, one "core" project, and two related projects, I added the core project to the "Project References" and the "PHP Buildpath". Context information for static PHP functions which is in the core project doesn't show up, if i'm in a file of a related project, but context information popup for functions in the same project. But I'm able to open the declaration. Now even some classes in the current project stopped showing the Context Information Popup. Aptana gets unusable for me, i'm considering to move back to Eclipse PDT... --- The problem always appears if I want to open the context information popup if there is a string in the function call (see my comments). e.g.: <?php $test = str_replace( *when I now open the context information I see '$search, $replace, $subject, $null'* later, when the popup was closed: $test = str_replace("test", *when I now open the context information I see nothing*
20
48
APSTUD-3610
10/07/2011 06:36:35
java.sql.SQLException: Database 'aptanaDB' not found.
See in a user's log file. We should be able to avoid this message, no? {code} !ENTRY com.aptana.usage 4 0 2011-10-05 23:34:12.996 !MESSAGE An error occurred while shutting down the database !STACK 0 java.sql.SQLException: Database 'aptanaDB' not found. at org.apache.derby.impl.jdbc.SQLExceptionFactory.getSQLException(Unknown Source) at org.apache.derby.impl.jdbc.Util.newEmbedSQLException(Unknown Source) at org.apache.derby.impl.jdbc.Util.newEmbedSQLException(Unknown Source) at org.apache.derby.impl.jdbc.Util.generateCsSQLException(Unknown Source) at org.apache.derby.impl.jdbc.EmbedConnection.newSQLException(Unknown Source) at org.apache.derby.impl.jdbc.EmbedConnection.handleDBNotFound(Unknown Source) at org.apache.derby.impl.jdbc.EmbedConnection.<init>(Unknown Source) at org.apache.derby.impl.jdbc.EmbedConnection30.<init>(Unknown Source) at org.apache.derby.jdbc.Driver30.getNewEmbedConnection(Unknown Source) at org.apache.derby.jdbc.InternalDriver.connect(Unknown Source) at org.apache.derby.jdbc.AutoloadedDriver.connect(Unknown Source) at java.sql.DriverManager.getConnection(DriverManager.java:525) at java.sql.DriverManager.getConnection(DriverManager.java:193) at com.aptana.usage.AptanaDB.shutdown(AptanaDB.java:172) at com.aptana.usage.UsagePlugin.stop(UsagePlugin.java:74) at org.eclipse.osgi.framework.internal.core.BundleContextImpl$2.run(BundleContextImpl.java:843) at java.security.AccessController.doPrivileged(Native Method) at org.eclipse.osgi.framework.internal.core.BundleContextImpl.stop(BundleContextImpl.java:836) at org.eclipse.osgi.framework.internal.core.BundleHost.stopWorker(BundleHost.java:501) at org.eclipse.osgi.framework.internal.core.AbstractBundle.suspend(AbstractBundle.java:550) at org.eclipse.osgi.framework.internal.core.Framework.suspendBundle(Framework.java:1097) at org.eclipse.osgi.framework.internal.core.StartLevelManager.decFWSL(StartLevelManager.java:597) at org.eclipse.osgi.framework.internal.core.StartLevelManager.doSetStartLevel(StartLevelManager.java:257) at org.eclipse.osgi.framework.internal.core.StartLevelManager.shutdown(StartLevelManager.java:215) at org.eclipse.osgi.framework.internal.core.InternalSystemBundle.suspend(InternalSystemBundle.java:266) at org.eclipse.osgi.framework.internal.core.Framework.shutdown(Framework.java:690) at org.eclipse.osgi.framework.internal.core.Framework.close(Framework.java:588) at org.eclipse.core.runtime.adaptor.EclipseStarter.shutdown(EclipseStarter.java:415) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:198) 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:592) 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) {code}
1
49
APSTUD-3650
10/11/2011 14:06:30
Create unit tests for snippet tab stop issue
Related fix for APSTUD-3390....needs a set of unit tests.
1
50
APSTUD-3653
10/12/2011 07:48:04
PHP Editor plugin throws exceptions on startup
This is happening on development branch. I get an exception on every startup about the PHP editor plugin. It typically means that some code is taking too long in the start method and needs to be pulled out to do it's work in a Job. {code} !ENTRY org.eclipse.osgi 2 0 2011-10-12 10:46:13.968 !MESSAGE While loading class "com.aptana.editor.php.PHPEditorPlugin$2$1", thread "Thread[Thread-1,6,main]" timed out waiting (5022ms) for thread "Thread[Worker-9,5,main]" to finish starting bundle "com.aptana.editor.php_3.0.3.qualifier [743]". To avoid deadlock, thread "Thread[Thread-1,6,main]" is proceeding but "com.aptana.editor.php.PHPEditorPlugin$2$1" may not be fully initialized. !STACK 0 org.osgi.framework.BundleException: State change in progress for bundle "reference:file:/Users/cwilliams/repos/studio3-php/plugins/com.aptana.editor.php/" by thread "Worker-9". at org.eclipse.osgi.framework.internal.core.AbstractBundle.beginStateChange(AbstractBundle.java:1087) at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:297) at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:440) at org.eclipse.osgi.internal.loader.BundleLoader.setLazyTrigger(BundleLoader.java:268) at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLazyStarter.java:107) at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java:462) at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoader.java:216) at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:400) at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:476) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:429) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:417) at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:107) at java.lang.ClassLoader.loadClass(ClassLoader.java:247) at com.aptana.editor.php.PHPEditorPlugin$2.runInUIThread(PHPEditorPlugin.java:119) at org.eclipse.ui.progress.UIJob$1.run(UIJob.java:95) 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:3938) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3615) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2696) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2660) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2494) at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:674) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:667) 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) at org.eclipse.equinox.launcher.Main.main(Main.java:1386) Caused by: org.eclipse.osgi.framework.internal.core.AbstractBundle$BundleStatusException ... 40 more Root exception: org.eclipse.osgi.framework.internal.core.AbstractBundle$BundleStatusException at org.eclipse.osgi.framework.internal.core.AbstractBundle.beginStateChange(AbstractBundle.java:1087) at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:297) at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:440) at org.eclipse.osgi.internal.loader.BundleLoader.setLazyTrigger(BundleLoader.java:268) at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLazyStarter.java:107) at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java:462) at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoader.java:216) at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:400) at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:476) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:429) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:417) at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:107) at java.lang.ClassLoader.loadClass(ClassLoader.java:247) at com.aptana.editor.php.PHPEditorPlugin$2.runInUIThread(PHPEditorPlugin.java:119) at org.eclipse.ui.progress.UIJob$1.run(UIJob.java:95) 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:3938) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3615) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2696) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2660) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2494) at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:674) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:667) 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) at org.eclipse.equinox.launcher.Main.main(Main.java:1386) {code}
5
51
APSTUD-3663
10/14/2011 04:33:03
JavaScript validation fails trying to parse minified JS as TODO marker
I get this everytime I try to save, or sometimes it pops up after a while. Really annoying. Errors occurred during the build. Errors running builder 'JavaScript Validator' on project 'Chrome-CSSEditor'. assertion failed: Marker property value is too long: TODO "},{token:"comment.doc",merge:!0,regex:"[^@\\*]+"},{token:"comment.doc",merge:!0,regex:"."}]}};d.inherits(f,e),function()... Clearly something is trying to parse minified JS as TODO marker. The file that causes is this: https://raw.github.com/ajaxorg/ace/master/build/demo/kitchen-sink.js
5
52
APSTUD-3675
10/15/2011 17:14:36
JavaScript Comment Auto-complete
The JavaScript editor will not auto-complete common or JSDoc comments if any non-whitespace character precedes the opening token on its line. Steps to Replicate : 1) Open Aptana Studio 2) Open a saved JavaScript file 3) Place either opening token, /* or /**, on a line, after any non-whitespace character(s), e.g., {noformat} function fun85() {/**| } {noformat} 4) Type enter Actual Results : The editor will not auto-complete the comment, i.e., {noformat} function fun85() {/** | } {noformat} Expected Results : The editor should auto-complete the comment, i.e., {noformat} function fun85() {/** * */ } {noformat}
8
53
APSTUD-3682
10/17/2011 18:05:28
Frequent and Random Aptana crashes
i get multiple crashes from Aptana 3.0.5, and I notice it regularly occurs when I am switching back to it (eg. apple-tab) from another app like Chrome. It's happened to me several times today. here is the apple problem reporter info after the app crashed: {code} Java information: Exception type: Bus Error (0xa) at pc=000000000049900d Java VM: Java HotSpot(TM) Client VM (20.1-b02-384 mixed mode macosx-x86) Current thread (0000000012001c00): JavaThread "main" [_thread_in_vm, id=-1601473216, stack(00000000bf800000,00000000c0000000)] Stack: [00000000bf800000,00000000c0000000] Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) J org.eclipse.swt.internal.Callback.bind(Lorg/eclipse/swt/internal/Callback;Ljava/lang/Object;Ljava/lang/String;Ljava/lang/String;IZZI)I J org.eclipse.swt.internal.Callback.<init>(Ljava/lang/Object;Ljava/lang/String;IZI)V J org.eclipse.swt.graphics.Region.getPath()Lorg/eclipse/swt/internal/cocoa/NSBezierPath; j org.eclipse.swt.graphics.GC.setClipping(Lorg/eclipse/swt/graphics/Region;)V+58 j org.eclipse.swt.custom.CTabFolderRenderer.fillRegion(Lorg/eclipse/swt/graphics/GC;Lorg/eclipse/swt/graphics/Region;)V+33 J org.eclipse.swt.custom.CTabFolderRenderer.drawTabArea(Lorg/eclipse/swt/graphics/GC;Lorg/eclipse/swt/graphics/Rectangle;I)V J org.eclipse.swt.custom.CTabFolderRenderer.draw(IILorg/eclipse/swt/graphics/Rectangle;Lorg/eclipse/swt/graphics/GC;)V J org.eclipse.swt.custom.CTabFolder.onPaint(Lorg/eclipse/swt/widgets/Event;)V j org.eclipse.swt.custom.CTabFolder$1.handleEvent(Lorg/eclipse/swt/widgets/Event;)V+270 J org.eclipse.swt.widgets.EventTable.sendEvent(Lorg/eclipse/swt/widgets/Event;)V J org.eclipse.swt.widgets.Display.sendEvent(Lorg/eclipse/swt/widgets/EventTable;Lorg/eclipse/swt/widgets/Event;)V J org.eclipse.swt.widgets.Widget.sendEvent(ILorg/eclipse/swt/widgets/Event;Z)V J org.eclipse.swt.widgets.Widget.sendEvent(ILorg/eclipse/swt/widgets/Event;)V j org.eclipse.swt.widgets.Control.drawWidget(ILorg/eclipse/swt/internal/cocoa/NSGraphicsContext;Lorg/eclipse/swt/internal/cocoa/NSRect;)V+115 J org.eclipse.swt.widgets.Widget.drawRect(IILorg/eclipse/swt/internal/cocoa/NSRect;)V J org.eclipse.swt.widgets.Display.windowProc(III)I v ~StubRoutines::call_stub J org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Lorg/eclipse/swt/internal/cocoa/objc_super;IIIIZ)I J org.eclipse.swt.widgets.Display.applicationNextEventMatchingMask(IIIIII)I J org.eclipse.swt.widgets.Display.applicationProc(IIIIII)I v ~StubRoutines::call_stub J org.eclipse.swt.internal.cocoa.OS.objc_msgSend(IIIIIZ)I J org.eclipse.swt.internal.cocoa.NSApplication.nextEventMatchingMask(ILorg/eclipse/swt/internal/cocoa/NSDate;Lorg/eclipse/swt/internal/cocoa/NSString;Z)Lorg/eclipse/swt/internal/cocoa/NSEvent; J org.eclipse.swt.widgets.Display.readAndDispatch()Z J org.eclipse.ui.internal.Workbench.runEventLoop(Lorg/eclipse/jface/window/Window$IExceptionHandler;Lorg/eclipse/swt/widgets/Display;)V j org.eclipse.ui.internal.Workbench.runUI()I+555 j org.eclipse.ui.internal.Workbench.access$4(Lorg/eclipse/ui/internal/Workbench;)I+1 j org.eclipse.ui.internal.Workbench$7.run()V+55 j org.eclipse.core.databinding.observable.Realm.runWithDefault(Lorg/eclipse/core/databinding/observable/Realm;Ljava/lang/Runnable;)V+12 j org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+18 j org.eclipse.ui.PlatformUI.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+2 j com.aptana.rcp.IDEApplication.start(Lorg/eclipse/equinox/app/IApplicationContext;)Ljava/lang/Object;+137 j org.eclipse.equinox.internal.app.EclipseAppHandle.run(Ljava/lang/Object;)Ljava/lang/Object;+135 j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(Ljava/lang/Object;)Ljava/lang/Object;+103 j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(Ljava/lang/Object;)Ljava/lang/Object;+29 j org.eclipse.core.runtime.adaptor.EclipseStarter.run(Ljava/lang/Object;)Ljava/lang/Object;+149 j org.eclipse.core.runtime.adaptor.EclipseStarter.run([Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Object;+183 v ~StubRoutines::call_stub j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0 j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87 j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6 j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+161 j org.eclipse.equinox.launcher.Main.invokeFramework([Ljava/lang/String;[Ljava/net/URL;)V+211 j org.eclipse.equinox.launcher.Main.basicRun([Ljava/lang/String;)V+126 j org.eclipse.equinox.launcher.Main.run([Ljava/lang/String;)I+4 v ~StubRoutines::call_stub {code} See attached file for full information. Suggestions to investigate: * Narrow down to what changed between 3.0.5 and 3.0.5 (Features, Eclipse version) * Does it matter if the internal browser is disabled * Try to get QA to reproduce it * Perhaps this will dissipate with Eclipse 3.1 (now built on top of Eclipse 3.7.2)
0
54
APSTUD-3689
10/18/2011 08:21:20
Exclude files from the deploy tools using paths rather than by file types
Currently there is only an option to cloak file types from the deployment assistent. But very often it's not only file types with sould be excludet. For an example. I have a PHP project remote and local, i have for example local other usernames and passwords for the database connection. So i have to skip on every deployment the system/config/dbconfig.php or i would kill the live system. Currently there is no way, because cloaking *.php is not realy an option. I think a textfield where i can store the complete path would be very useful. The syntax could be like in an .gitignore file.
5
55
APSTUD-3694
10/19/2011 18:36:32
JavaScript Document Object Content Assist missing documentMode, getElementsByName
JavaScript document object content assist does not contain : documentMode, getElementsByName (reference : http://www.w3schools.com/jsref/dom_obj_document.asp) Steps to Replicate : 1) Open Aptana Studio 2) Open a saved JavaScript file 3) Enter "document." Actual Results : The content assist menu does not include the property documentMode and the method getElementsByName. Expected Results : The above reference expects support of this property and method.
5
56
APSTUD-3695
10/20/2011 01:03:02
JavaScript Window Object Content Assist Missing some height, offset and screen properties, and createPopup method
The JavaScript window object content assist menu is missing many properties and methods. Steps to Replicate : 1) Open Aptana Studio 2) Open a saved JavaScript file 3) Type (without the double-quotes) "window." Expected Results : The JavaScript window object content assist menu should include closed, defaultStatus, document, frames, history, innerHeight, innerWidth, length, location, name, navigator, opener, outerHeight, outerWidth, pageXOffset, pageYOffset, parent, screen, screenLeft, screenTop, screenX, screenY, self, status, and top, and the methods alert, blur, clearInterval, clearTimeout, close, confirm, createPopup, focus, moveBy, moveTo, open, print, prompt, resizeBy, resizeTo, scroll, scrollBy, scrollTo, setInterval, and setTimeout. Actual Results : Content assist is missing the following properties: * outerHeight * outerWidth * pageXOffset * pageYOffset * screenLeft * screenTop * screenX * screenY Content assist is missing the following method: * createPopup
8
57
APSTUD-3696
10/20/2011 16:09:20
Set "Mark Occurrences" as "off" by default
As the title says, make the default setting off.
1
58
APSTUD-3697
10/20/2011 16:10:08
Turn off "Link with Editor" in outline by default
Set the default for this setting as "off"
1