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/c... | 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... | 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> L... | 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 cha... | 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} ... | 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.... | 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 ... | 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"/> </ScrollVi... | 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 Contro... | 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 bro... | 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 ... | 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>... | 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] a... | 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 mo... | 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> </Allo... | 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 contro... | 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 ... | 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... | 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}} pro... | 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}} The... | 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 access... | 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 pl... | 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 woul... | 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} th... | 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 ... | 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/Core... | 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_p... | 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 ... | 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... | 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<... | 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 P... | 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 bui... | 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 eas... | 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 behavio... | 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 log... | 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">c... | 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 th... | 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. (O... | 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 ... | 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 cod... | 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) # Includ... | 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 aft... | 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 valida... | 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 befo... | 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 othe... | 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 ... | 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 ... | 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 ty... | 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 iss... | 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,... | 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 selec... | 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 config... | 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 Li... | 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... | 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() { ... | 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 ... | 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.getSQLEx... | 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 c... | 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:"[^@\\*]+"... | 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... | 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... | 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 deplo... | 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 n... | 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, defau... | 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 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.