issuekey
stringlengths
8
11
title
stringlengths
16
187
description
stringlengths
10
20k
storypoint
int64
1
40
split_mark
stringclasses
1 value
TISTUD-1853
Add Alloy project nature icon
Need icons for Alloy project nature
3
train
TISTUD-1854
Add Alloy project nature
Need a new Alloy project nature to tag projects with (and with which we can hang new icons, etc, on)
3
train
TISTUD-1855
Creating Alloy projects inside New Titanium Mobile Wizard
Creating a new "blank" alloy project is as follows: - Run regular Titanium Mobile project creations (titanium/project.py scripts) - Run 'alloy new path/to/project' to run the alloy generators - Add Alloy project nature (in addition to the titanium mobile nature, web nature) By default, a new Titanium project is...
8
train
TISTUD-1856
Add blank Alloy project template to project wizard
By default, a new Titanium project is an Alloy project. Select the "blank new alloy template" as the default in the titanium mobile project wizard. This creates an alloy project without any template.
8
train
TISTUD-1857
Filter Resources folder out from Alloy projects
Hide Resources folder - Alloy generates the intermediate files there, most of the app lives in the "app" folder Long-term: - perhaps we root Alloy projects on the "app" folder, and choose an alternate presentation structure like Package Explorer. - What additional folders do we need to hide?
5
train
TISTUD-1858
Enable running of Alloy applications
This may not require any additional work. We may simply need to run the existing builder.py script as we do with typical Titanium projects. See here for confirmation: https://github.com/appcelerator/alloy
8
train
TISTUD-1859
Debugging Alloy applications
It's currently unclear if the work needs to mostly be done on the Studio side or the SDK side. In general, we would need a source map to connect the generated source code with the original source code so that users could place breakpoints in the original JS files and have it break appropriately.
20
train
TISTUD-1860
Enable packaging of Alloy applications
This may not require any additional work. We may simply need to run the existing builder.py script as we do with typical Titanium projects. See here for confirmation: https://github.com/appcelerator/alloy
8
train
TISTUD-1861
Associate Alloy XML files with our XML editor
Associate XML editor with "*.txml" files
2
train
TISTUD-1862
Associate Alloy JSON Style configuration files with our JSON editor
What is the alloy JSON style configuration custom file extension we need to associate with? Does our JSOn parser/editor handle the non-standard "expression" syntax?
2
train
TISTUD-1863
Associate Alloy JS Makefile (*.JMK files) with our JS editor
*.JMK file extension
2
train
TISTUD-1864
Alloy Create View Wizard
Right-click app/views folder Pop up dialog box asking for view name {{alloy generate view <name>}} Add keyboard shortcut for opening dialog and generating view (so user isn't forced to go through UI to do this action and can do so by keeping hands on keyboard)
8
train
TISTUD-1865
Alloy Create Controller Wizard
Right-click app/controllers folder Pop up dialog box asking for controller name {{alloy generate controller <name>}} Add keyboard shortcut for opening dialog and generating controller (so user isn't forced to go through UI to do this action and can do so by keeping hands on keyboard)
8
train
TISTUD-1866
Alloy Create Migration Wizard
Right-click app/migrations folder Pop up dialog box asking for migration name {{alloy generate migration <name>}} Add keyboard shortcut for opening dialog and generating migration (so user isn't forced to go through UI to do this action and can do so by keeping hands on keyboard) This will create a timestamp-ord...
8
train
TISTUD-1867
Alloy Create Widget Wizard
Right-click app/widgets folder Pop up dialog box asking for widget name {{alloy generate widget <name>}} Add keyboard shortcut for opening dialog and generating widget (so user isn't forced to go through UI to do this action and can do so by keeping hands on keyboard) This will create a default widget in your proj...
8
train
TISTUD-1868
Alloy Create Model Wizard
Right-click app/models folder Pop up dialog box asking for model name, with a small table below for adding new values/types {{alloy generate model <name> [column_name:type, ...]}} For example: {{alloy generate model todo name:string active:boolean}} Add keyboard shortcut for opening dialog and generating widget (...
13
train
TISTUD-1870
Content assist for $. in JS files
As an example: {code} <Window> <Button id="b"></Button> </Window> {code} You would then define a controller named index.js and you could automatically bind events inline in your controller code: {code} $.b.addEventListener("click",function(){ alert("You clicked the button"); }); // "$.index" is th...
8
train
TISTUD-1871
Content assist for Alloy XML files
For Alloy XML files, it is a file with XML tags, i.e.: {code} <View id="a"> <Button id="b">Hello</Button> <Label id="t"></Label> </View> {code} Need XML file containing tag information for Alloy tags. See https://github.com/aptana/studio3/blob/development/plugins/com.aptana.editor.html/metadata/html_met...
20
train
TISTUD-1872
Content assist for Alloy JSON style files
The JSON style files specify style information for an app. We can provide CA for the property names, and also possibly common values similar to CSS CA. Need XML file containing CSS style information for the JSON configuration. See https://raw.github.com/aptana/studio3/development/plugins/com.aptana.editor.css/metada...
20
train
TISTUD-1875
Create an extension point to support different command-line interfaces
We need to be able to support V1 (Python) and V2 (Node.js) of the SDKs directly. # Create an extension point which describes the SDK per version range (< 2.2 is v1, >= 2.2 is v2), and allow contributing commands that are designed to run on a specific CLI. # The extension will return a 'command' to run by asking for...
13
train
TISTUD-1877
Add CLI command support for creating a project
Add extensions for the CLI commands that create a Titanium project (mobile / module). h2. Project Creation V1 (Python): {code} /sdk-version/project.py [name] [id] [project-parent-dir] [iphone] [android] [mobileweb] [android.sdk] Environment: DEVELOPER_DIR=[ios.tools] {code} V2 (Node.js): {code} titanium cr...
8
train
TISTUD-1881
Add CLI command support for adding a new platform to an existing project
Add an extension for the CLI command that updates the project with new deploy targets. V1 (Python): {code} sdk-version/project.py [name] [id] [project.dir] [platform] -u {code} As it looks like, V2 does not require the *-u* command, and it's suppose to auto-detect the targets in the tiapp.xml, and build the re...
5
train
TISTUD-1882
iOS: Allow keychain selection
Studio needs to be able to support manually selecting a keychain to choose a developer identity from (the list of such keychains is retrieved by {{security list-keychains}}. A keychain is provided to iOS' builder.py by providing it as argv[9] on the command line, after the deploytype. This value should be a full path p...
8
train
TISTUD-1884
Add CLI support to check for available SDK commands
V2 (Node.js) CLI will support querying for command availability. This would be a check we can do against a SDK to see if a new command is supported by a particular version. For example, rather than doing a version check, we can query the SDK to see if the command "clean" is available. {code} titanium available ...
8
train
TISTUD-1886
Add CLI command support for building a mobileweb project
This one is only for V2 (Node.js). The Python implementation in V1 does not support a building command. We should try call "build" again when we've cleaned all our projects and build automatically is checked. The platform does not support incremental builds, so that call should probably only happen when a 'clean-bu...
8
train
TISTUD-1888
Add CLI command support for cleaning a project
Add "clean" support via the CLI commands extension. V1 (Python): {code} sdk-version/titanium.py clean Working directory: [project-dir] {code} V2 (Node.js): {code} titanium clean [project-dir] {code}
8
train
TISTUD-1890
Add CLI command support to run a pre-requisite check
On V1 CLI support there are scripts that check for prerequisites. Android V1: {code} Process: android.sdk/android list targets Working directory: android.sdk {code} iOS V1: {code} sdk-version/iphone/prereq.py package Environment: DEVELOPER_DIR=ios.tools {code} There does not yet appear to be an anal...
13
train
TISTUD-1891
Add CLI command support to run an Android project
We should support that for all platforms. h3. Run Android V1: {code:title=V1|borderStyle=solid} sdk-version/android/builder.py emulator name [android.sdk] [project-dir] id 6 HVGA sdk-version/android/fastdev.py start [project-dir] {code} V2: {code:title=V2|borderStyle=solid} titanium build --platform=[platf...
8
train
TISTUD-1892
Add CLI command support an Android debug launch
h3. Debug Android V1: {code} sdk-version/android/builder.py emulator [name] [android.sdk] [project-dir] [id] 6 HVGA sdk-version/android/fastdev.py start [project-dir] sdk-version/android/builder.py simulator [name] [android.sdk] [project-dir] [id] 6 HVGA /127.0.0.1:55040 {code} V2: {code} titanium build --pl...
8
train
TISTUD-1893
Add CLI command support for packaging Android applications
Add support for the packaging command via the CLI extension. V2: {code} titanium build --package --platform=[platform] [project.dir] {code} +create the V1 (need to investigate what it is)
8
train
TISTUD-1894
Add CLI command support for packaging iOS applications
Add support for the packaging command via the CLI extension. V1: {code} sdk-version/iphone/prereq.py package Environment: DEVELOPER_DIR=ios.tools sdk-version/iphone/prereq.py package Environment: DEVELOPER_DIR=ios.tools sdk-version/iphone/builder.py distribute [ios.version] [project-dir] [id] [name] "C...
8
train
TISTUD-1895
Add CLI command support for packaging MobileWeb applications
Add support for the packaging command via the CLI extension. V1. {code} sdk-version/mobileweb/builder.py [project-dir] production Working directory: [project-dir] {code} V2. {code} titanium build --package --platform=mobileweb [project-dir] {code}
8
train
TISTUD-1896
Add CLI command support for packaging a MobileWeb Titanium Module
Add support for the packaging command via the CLI extension. V1: {code} project-dir/build.py Working directory: [project-dir] {code} V2: {code} titanium build --package [project-dir] {code}
8
train
TISTUD-1897
Add support for log-in and log-out for the V2 CLI
The V2 CLI requires log-in before execution. The implementation should probably log-in once per session with the credentials the user already provided for the studio. We'll need to make sure we log-out in case the user clicked the log-out. The Studio support a limited time of offline work, and we need to make su...
8
train
TISTUD-1903
Rebrand Node.js functionality as Appcelerator Custom Cloud Services
Existing Node.js functionality is labelled as a "Node.js" project. We need to replace that name with a new name in wizards, project descriptions and preferences (as appropriate)
8
train
TISTUD-1905
Install nettle command-line package
Once a user has Node.js installed, we need to install the nettle package for ACS/Node.js deployment: * We need to check to see if the package is installed * If not, install it. {code} [sudo] npm install nettle -g {code} Suggestion is that we don't really know if we need to sun under sudo. We should try withou...
8
train
TISTUD-1935
Titanium Studio: Themes: unhandled event loop exception when changing theme
unhandled event loop exception when changing theme. log attached. I could not reproduce this issue, it is intermittent. Unknown if this is a regression. In this particular case, I was changing from the Aptana Studio theme to the Aptana Studio 2.x theme. Steps to Reproduce: 1. Open Preferences > Titanium Stu...
3
train
TISTUD-1939
Add CLI command support to run an iOS project
We should support that for iOS. h3. Run iOS V1: {code:title=V1|borderStyle=solid} /usr/bin/killall" -2 "iPhone Simulator" /usr/bin/killall" -2 iphonesim /usr/bin/killall" -2 ios-sim sdk-version/iphone/builder.py simulator [ios.version] [project-dir] [id] Environment: DEVELOPER_DIR=ios.tools {code} V2: ...
8
train
TISTUD-1940
Add CLI command support an iOS debug launch
h3. Debug iOS V1: {code} /usr/bin/killall -2 "iPhone Simulator" /usr/bin/killall -2 "iphonesim" /usr/bin/killall -2 "ios-sim" sdk-version/iphone/builder.py simulator [ios.version] [project-dir] [id] [name] universal ipad 192.168.0.101:55205 Environment: DEVELOPER_DIR=ios.tools {code} V2: {code} titanium...
8
train
TISTUD-1941
Add CLI command support to run a MobileWeb project
We should support that for MobileWeb. h3. Run MobileWeb V1: {code:title=V1 (Browser)|borderStyle=solid} "sdk-version/mobileweb/builder.py" [project-dir] "development" Working directory: /Users/ingo/Documents/Aptana Studio 3 Workspace/MobileProject {code} V1: {code:title=V1 (Android Emulator)|borderStyle=sol...
8
train
TISTUD-1944
Replace Node.js images
We need to replace the current Node.js branding with new branding. * Project wizards * Icons * Project nature
8
train
TISTUD-1947
Titanium Studio: Dashboard: Configure: Android Update: Cancel button does not cancel android update process
When the Android Configure utility is run from the dashboard, and the Android SDK is already installed, the Android-controlled update menu will not close when the Cancel button is pressed in Studio. This is not a regression. This is a usability issue. Screenshot and stack trace attached. Steps to Reproduce: ...
5
train
TISTUD-1948
Implement sign up process through Studio
implement sign up process through Studio. Flow should be: * option for selecting "new User" or "Existing user" * if New User show sign up form with fields: ** First, Last, email ,password, verify password, Agree to EULA, Submit or Cancel (Cancel takes you back to the first screen) ** Once submit show some visual in...
13
train
TISTUD-1949
Studio: Jira Username field looks cramped in Windows 7
When viewing the Submit a ticket window in Windows 7, the username and log out button seem to be squished with little or no white space between them. This does not happen on Mac OS. This is not a regression. Steps to reproduce: 1. Open the ticket submission form (Help > Titanium Studio > Submit a Ticket) Expe...
3
train
TISTUD-1950
Replace Message dialog notifying background job complete with toast popup
This is related to TISTUD-1817, where we tracked down the locations that opened up a Message dialog from a background thread. A more elegant method of displaying the notification is to use a popup toast to notify the user. The popup should only be used for INFO messages, for Question and Error we should still use the M...
8
train
TISTUD-1951
Dashboard: Configure: Android: Improve OS Global Environment Variable detection
If the Dashboard Android Configuration Wizard is run without having the JAVA_HOME variable set, Studio provides no indication it needs to be set. There is only a pop-up indicating Android was downloaded successfully. Note that studio automatically detects JDK to run, but it does not forward this information to the A...
8
train
TISTUD-1953
Change AppID validation to only allow upper and lower letters (A-Z, a-z), digits (0-9), and period '.'
Steps to reproduce: 1. Create default TiMobile app 2. During creation of default app, include an underscore in the application id name e.g.: com.appcelerator.test_1 3. Install app to device Actual: In the console, will get CFBundleIdentifier error. See attachment. Expected: Replace underscores with dashes in the...
5
train
TISTUD-1954
The order of deployment targets is inconsistent between the new project wizard and tiapp.xml editor
See the screenshots; the order of iPhone and iPad is reversed between the two. If we are listing them alphabetically, then the one in project creation wizard should be used.
2
train
TISTUD-1959
PATH environment variable incorrect in python compiler plugins
h2. Problem When attempting to get the PATH environment variable while executing a python compiler plugin, the PATH is incorrect. It does not include the user's current PATH, it only shows the following: {code}/usr/bin:/bin:/usr/sbin:/sbin{code} This makes it difficult for the compiler plugin to execute progr...
8
train
TISTUD-1963
Set "JS Editor" as default editor for *.tss files
The style files used in Alloy are a JSON derivative. For this reason we changed their extension from "json" to "tss". "tss" is short for "Titanium Stylesheet". While there are some improvements that can be made to syntax highlighting for "tss" files, the default "JSON Source Editor" editor works very well on them as is...
2
train
TISTUD-1970
Split "Nettle" feature into separate plugins
We've bundled together the node.js code and the nettle code in a single plugin. Instead, we should create: * com.appcelerator.titanium.acs.core * com.appcelerator.titanium.acs.ui and make those depend on the existing nodejs plugins.
5
train
TISTUD-1973
Titanium Studio: SDK Updates: canceling extraction does not produce a warning
During an SDK update, if the extraction process is canceled, there is no longer an error message generated. This is a regression. This worked in 2.1.0. It is worth noting (not part of the regression) that the partially extracted SDK remains in the SDK folder, resulting in an invalid SDK. When the SDK is in thi...
8
train
TISTUD-1984
Pass in JAVA_HOME to Python scripts
While testing "Build Acceptance TIMOB-7472-A Android Only", I attempted to build a default Titanium Mobile app (just the standard template) and I encounter the following problem: {noformat} [DEBUG] /home/qatester/.titanium/mobilesdk/linux/2.1.0.GA/android/titanium_prep.linux64 com.shastaqa.fresh1 /home/qatester/Tit...
13
train
TISTUD-1980
Package Node.js installer with Titanium Studio Windows installer
Similar to TISTUD-1825, we need to check and see if node.js is installed during the initial Studio install, and if not, run the node.js installer. Once we've updated TISTUD-2001, we just need to alter the installer to actually include the check. See the parent ticket for the URL from which to download the installer.
8
train
TISTUD-1982
Titanium Studio: Progress View: 'Remove All Finished Operations' fails to remove operations, adds them back if they are gone
In the progress view, pressing the double x ('Remove All Finished Operations') will not remove the operations. If the operations are removed one-by-one, then the double x is pressed, they will re-appear. This is a regression. Works as expected in Ti.Studio 2.0.2 Steps to reproduce: 1. Create Multiple Ti.Mobile...
8
train
TISTUD-1983
Add "organization" to iOS developer certificate UI
When choosing from / viewing selected developer certificate (during build for device) the developer's name and a cryptic code are displayed. It would be far more helpful to also include the organization that the certificate is for so I don't have to stop and open up the certificate to see which one is which whenever I ...
8
train
TISTUD-1985
Android Emulator: run config console level ignored on subsequent deployments
Android Emulator console log level is always set to the run config setting used to first launch the console process. Steps to Reproduce: 1. Create and run an android project in the emulator with the run configuration log level set to TRACE using code: {code} alert('SESSION ID: ' + Ti.App.sessionId); Ti.API.e...
5
train
TISTUD-1986
Ability to sort the certificates and provisioning profiles in Titanium Studio Preferences->Titanium->iOS platform
When, there are many certificates or multiple provisioning profiles, its really difficult to sort them. Please add sorting by clicking on the column name.
5
train
TISTUD-1990
Titanium Studio: Console View: Log Level icon should respond to click events
In the console view, the log level icon does not respond to click events, only the small arrow to the right. This is a usability issue. Test Steps: 1. Run titanium project in iOS simulator. 2. Click log level icon in the console view. Actual Result: Nothing happens. Expected Result: Log level drop-do...
5
train
TISTUD-1991
Titanium Studio: Console View: iOS Custom Info Log Level does not display
Ti.API.log() calls with custom log levels no longer display in the studio console. For example: Ti.API.log('CUSTOM', 'CUSTOM'); This is a regression introduced in Studio 2.1.0. This did not affect Studio 2.0.2. Steps to Reproduce: 1. Run code in iOS Simulator: {code} alert('SESSION ID: ' + Ti.App.sessio...
8
train
TISTUD-2000
Migration to Cascades R6: Update the condition for checking the content of the bbndk folder
The folder structure of the bbndk top folder has changed in R6, yielding the following message when trying to configure Studio with the path to the new ndk. "[BlackBerry NDK Home] Could not locate a required directory 'host' under the specified BlackBerry NDK root path '/Applications/bbndk'" The content of the to...
2
train
TISTUD-2004
Studio: Startup: Error "Bad Padding" and "Failed to load Jira user credentials"
At startup in Ubuntu 12.04, my user name and password are not retained for future logins. This results in the user being forced to log-in every time the program restarts. The following is found in the log file: {noformat} !ENTRY com.aptana.ide.security.linux 4 0 2012-07-24 14:07:46.459 !MESSAGE Bad padding !STACK...
8
train
TISTUD-2007
OpenShift: Domain 'null' is not found for user
# Signed in as an existing user, but did not specify a domain # Tried to create a project # Got the attached error (project was not created)
5
train
TISTUD-2008
The typo in the new signup page: should say "privacy policy" instead of "private policy"
null
2
train
TISTUD-2029
Unable to edit proxy schema in splash screen "Proxy Setup..."
Steps to reproduce: [As per setup instructions|http://docs.appcelerator.com/titanium/2.1/index.html#!/guide/Setting_up_Titanium_Studio-section-30086257_SettingupTitaniumStudio-LaunchingTitaniumStudio] 1. Clean TiStudio install with clean workspace/configuration. 2. Launch TiStudio 3. On the splash screen click "Pro...
8
train
TISTUD-2011
Sign-Up Splash: make cursor change to hover on mouseover of hyperlinks
Currently the hyperlinks are active but appear as colored text. Add a hover to the items so the cursor changes to a "hand" to highlight the link nature. See main bug TISTUD-1948 for screenshots. We decided against underlines as they look busy in context.
5
train
TISTUD-2013
Remove redundant Kitchen Sink sample(s) from Titanium Mobile ruble
The new Kitchen Sink version is designed to replace the 3 existing versions. Remove the Kitchen Sink iPad version, and if possible, also remove the Kitchen Sink Nook version. You will need to confirm with eric Merriman about whether or not we can leave the Kitchen Sink Nook version in.
3
train
TISTUD-2014
Sign-Up Splash: Text unreadable in Windows 7
In windows the default text color is black which is hard to read on the blue background. See image for detailed view. Steps to reproduce: 1. While not logged in start Titanium Studio. Expected result: Text on the splash screen should be readable. Actual result: The default color makes the text hard to read.
5
train
TISTUD-2015
Toolbar: Dashboard icon is not functional in new Titanium Studio window instance
Window > New Window new Titanium Studio window instance cannot open the dashboard. This is not a regression. There are no log messages. Steps to reproduce: # Titanium Studio > Window > New Window # Navigate on ToolBar in New window and Tap on "Dashboard" button ("Appcelerator" logo), or Help > Titanium ...
5
train
TISTUD-2017
Build: Android: Error while building Android application
While building for Android I setup my SDK, create a template project, select to build for Android, input a key file I generate using these instructions (link:http://developer.android.com/tools/publishing/app-signing.html#cert). Everything seems to be doing fine till it tries to sign the app. I get the following error: ...
5
train
TISTUD-2023
Replace images in Open Shift feature with new branding
Open Shift has new images and logos. Replace the branding in the project wizards with new images. * Create new project dialog (16px icon) * Wizard banners during project creation (48px image) * Deploy wizards (16px images)
5
train
TISTUD-2024
OpenShift: the ssh private key is created with 644 permisson and it causes an error when creating a project
1. Make sure libra_id_rsa* files don't exist in the ~/.ssh directory; 2. Follow the steps in https://wiki.appcelerator.org/display/tis/OpenShift+Deployment as a new OpenShift user to sign up and then create an OpenShift PHP project. Expected result: the project is created successfully. Actual result: an error di...
5
train
TISTUD-2026
Widget is disposed in WizardNewRedHatProjectCreationPage.getProjectName()
Edge case, but I believe it happened because I had an indexing job running in the background as I was trying to create a project. I kept pressing the "Finish" button but nothing would happen. {code} !ENTRY org.eclipse.ui 4 0 2012-07-30 19:35:15.883 !MESSAGE Unhandled event loop exception !STACK 0 org.eclipse.swt...
3
train
TISTUD-2028
Dashboard: Learn > Developer Reference: Titanium Guides and Titanium Studio Guide need to point to latest
Dashboard > Learn > Developer Reference > Titanium Guides and Titanium Studio Guide need to point to 'latest'. Currently the API Docs link correctly points to 'latest'. Steps to Reproduce: 1. Go to Dashboard > Learn > Developer Reference > Titanium Guides and Titanium Studio Guide and click links. Actual Re...
3
train
TISTUD-2032
Titanium Studio: Dashboard: Learn: Building Native Mobile App: Numbering of video are not in correct numerical order.
Numerical order of Videos under "Building Native Mobile Apps" are not in proper orders. This is not a regression. Step to reproduce: 1. Open Titanium Studio 2. Open "Dashboard" 3. Go to "Learn" box link 4. Check all the videos and its numerical order. Expected Result: Videos should be numbered properly (e...
3
train
TISTUD-2033
Titanium Studio: Dashboard: Learn: Building Native Mobile App: Page# 4, Video# 8 Hyperlink Title " Integrating Contacts & Social Media" linked to Appcelerator Cloud Services.
Building Native Mobile Apps Page# 4 and Video# 8 "Integrating Contacts & Social Media" have different Title and Linked to different video or might be just need to updated the hyperlink text. This is not a regression. Step to reproduce: 1. Open Dashboard 2. Go to "Learn" and "Building Native Mobile App" 3. Br...
3
train
TISTUD-2034
Move Zero-to-App links to new locations on Vimeo
The videos in (https://github.com/appcelerator/titanium_studio_dashboard/blob/master/data/videoCategories.json): {code} { "id": "zero-to-app", "title": "Zero-to-App", "videos": [ { "id": 1, "title": "Preparing for Mobile Development", "isFeatured": true, "length": "6:24", "des...
3
train
TISTUD-2035
Dashboard: Search Option: Change endpoint of search to https://www.appcelerator.com/search
The search option in Dashboard needs to point to the new https://www.appcelerator.com/search endpoint. An example query is http://www.appcelerator.com/search/devblog?qry=wiki
3
train
TISTUD-2038
Add XSD-based Validation for the TiApp editor parts that can support it
Once we have a XSD for tiapp.xml, we need to validate the UI elements in the TiApp editor against it. Doing so requires: * Investigate how to link the UI elements in the editor with the XSD errors. * replacing whatever possible for the current validation scheme in the TiApp editor with the XSD validation.
8
train
TISTUD-2040
The iOS Platform preference page should load the certificates in background
I have quite a few certificates, and when Titanium Studio > Titanium > iOS Platform is selected, the UI will freeze for a while before showing the page. We should improve it to load the certificates in the background so that the page would appear right away, and then fill the table after it's done. We should also no...
8
train
TISTUD-2041
Git tag Titanium Studio builds on push to stable
As part of the http://hudson-master.hdqt.appcelerator.com/hudson/job/push-titanium-stable/ build, (before the push): * Find the version # in the version.txt file * See if that git tag has not already been created. If not, create a new tag of the form "vX.X.X.XXXXX" (note the additional "v" at the front) * Push the...
8
train
TISTUD-2042
Create "push-titanium-rubles-stable" Jenkins build
This makes the latest version of Rubles available to all Studio users * Merge the appcelerator/*.ruble projects from the master to the stable branch * Push the results back to Github
5
train
TISTUD-2044
Projects: new android sdk path not recognized by tiapp until xml reopen
Creating the iOS project without Android SDK setup, restrict the user to update Android as a development target in Tiapp.xml after locate the android SDK locations. Step to reproduce: 1. Open Titanium Studio 2. Select Preference> Titanium Studio> Titanium and delete the Android SDK locations 3. Create new iOS pro...
5
train
TISTUD-2045
MobileWeb Packaging: dirty project not prompted for save
Publishing the dirty project, not prompting any error message and publishing the project successfully. Step to reproduce: 1. Create an Ti.Mobile Project 2. Edit the app.js (Don't save the file) 3. Publish the Ti.Mobile Project Expected Result: User should prompted with error message to save the app.js file. ...
5
train
TISTUD-2047
Create proxy to retrieve authenticated module list
There needs to be some way to retrieve the authenticated list of modules (currently hidden behind OpenID authentication)
8
train
TISTUD-2048
Update "Explore" tab to show list of my modules from API call
null
13
train
TISTUD-2049
Reflect current status of each module in explore tab
null
13
train
TISTUD-2050
When clicking link to install module, run module installation process
null
13
train
TISTUD-2052
Module installation should not allow modules to be corrupt
When installing modules, cancelling the installation should not result in a corrupt module. Steps: 1. Use Help > Install Titanium Module... 2. Specify a module url. 3. Select output location: Titanium SDK 4. During the extaction phase, cancel the job Expected results: The operation is canceled and does not c...
8
train
TISTUD-2054
Web Browser : Viewing the analytics in the studio browser window crashes the studio after closing the window.
Steps to reproduce: 1.Launch the studio. 2.Create a 'Titanium Mobile project'. 3.Right click on the project & click 'Show analytics'. 4.You will see the analytics window in the studio. 5.Now go to 'my apps' from the drop down below your login name. 6.Select any app which has 'view analytics' available. 7.Click o...
8
train
TISTUD-2055
Dashboard: Configure: Android: update default android sdk to 20.0.1
Update default dashboard config android sdk to Android SDK: r20.0.1 Test Steps: 1. Dashboard > Configure > Android. Expected Result: Android SDK: r20.0.1 is downloaded.
3
train
TISTUD-2057
Add custom Alloy project templates to project wizard
Alloy templates are similar to rails templates--less preset set of files, more a set of commands to run to generate a scaffold. We need to present Alloy templates alongside traditional templates as part of the new project wizard. * Need metadata format for Alloy templates and location on disk where they are stored (...
8
train
TISTUD-2059
Dashboard: Configure: Android: Linux: android sdk only partially downloads then fails to run
Unable to run Android update. Step to reproduce: 1. Open Preferences from "Window" menu bar 2. Titanium Studio> Titanium, delete the "Android SDK Home:" location and Save the changes 3. Open "Dashboard" Window and Click "Configure" tab option 4. Click on "Android" and then "Update Android SDK" Expected Resu...
13
train
TISTUD-2063
Dashboard: Text in search box become invisible when focus changes
Description: Text in search box disappeared after searching. Steps to reproduce: Dashboard > type some text in search box > enter Actual Result: Text in search box become invisible. Expected result: Text should be visible.
5
train
TISTUD-2065
Linux: Help > Install Specific Titanium SDK > Install from Update Stream lists duplicates of every sdk
Help > Install Specific Titanium SDK > Install from Update Stream > release lists duplicates of every sdk. Screenshot attached. This is linux-specific. This is not a regression. Steps to Reproduce: 1. Go to Help > Install Specific Titanium SDK > Install from Update Stream > release Actual Result: E...
5
train
TISTUD-2066
An internal error occurred during: "Label Job".
After upgrading to Titanium Studio, build: 2.2.0201208071805 the following showed up as an internal error on restart: {noformat} !ENTRY org.eclipse.core.jobs 4 2 2012-08-08 08:11:07.525 !MESSAGE An internal error occurred during: "Label Job". !STACK 0 org.eclipse.swt.SWTException: Invalid thread access org.ecli...
5
train
TISTUD-2067
Links in Dashboard should honor Eclipse browser settings
When links are clicked in the browser, they are opened in an external browser. The links should be opened using the eclipse preference (either internally or externally in either a specified or default browser). The following tasks are required: -Add a portal action that opens a url in the prefered browser - "openUrl...
8
train
TISTUD-2068
SWTException: Invalid thread access when pressing "Cancel" in login screen
# Open up the login screen # Press "I have an account" # Press "Cancel" # Note the following in the log file: {code} Exception in thread "Thread-2" org.eclipse.swt.SWTException: Invalid thread access org.eclipse.swt.SWT.error(SWT.java:4282) org.eclipse.swt.SWT.error(SWT.java:4197) org.eclipse.swt.SWT.er...
5
train
TISTUD-2069
OS X: Order of Next/Cancel buttons reversed in login screen
According to http://www.useit.com/alertbox/ok-cancel.html, the buttons should be: * Windows puts OK first * Apple puts OK last * KDE uses Windows button ordering, and GNOME desktop uses Mac button ordering. We need to swap the ordering of Next/Cancel for OS X.
5
train
TISTUD-2070
Replace checkbox in template creation page with "Default" entry
Now that the template selection page is first, it's somewhat confusing if you _don't_ want to use a template. Similar to what was done for Alloy, remove the checkbox for "Create the project using one of the templates" and instead replace it with an entry in the template list. # Named "Default Project" # Icon is ...
5
train