{ "id": "87873", "key": "TIMOB-7982", "fields": { "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false }, "project": { "id": "10153", "key": "TIMOB", "name": "Titanium SDK/CLI", "projectCategory": { "id": "10100", "description": "Titanium and related SDKs used in application development", "name": "Client" } }, "fixVersions": [ { "id": "12593", "name": "Release 2.0.0", "archived": false, "released": true, "releaseDate": "2012-03-30" }, { "id": "13170", "name": "Sprint 2012-06", "archived": true, "released": true, "releaseDate": "2012-03-25" } ], "resolution": { "id": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2012-04-02T14:20:40.000+0000", "created": "2012-03-13T16:36:39.000+0000", "priority": { "name": "High", "id": "2" }, "labels": [ "module_app_properties", "parity", "qe-testadded" ], "versions": [ { "id": "12593", "name": "Release 2.0.0", "archived": false, "released": true, "releaseDate": "2012-03-30" } ], "issuelinks": [ { "id": "15733", "type": { "id": "10001", "name": "Cloners", "inward": "is cloned into", "outward": "is cloned from" }, "outwardIssue": { "id": "87857", "key": "TIMOB-7978", "fields": { "summary": "MobileWeb: Titanium.App: certain properties are missing and cannot load the application when it is called", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "priority": { "name": "High", "id": "2" }, "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } }, { "id": "15737", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "outwardIssue": { "id": "87876", "key": "TIDOC-450", "fields": { "summary": "APIDoc: parity on Ti.App getters", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "priority": { "name": "Low", "id": "4" }, "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } } ], "assignee": { "name": "opiecyrus", "key": "opiecyrus", "displayName": "Opie Cyrus", "active": true, "timeZone": "America/Chicago" }, "updated": "2012-04-02T14:20:40.000+0000", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "components": [ { "id": "10202", "name": "Android", "description": "Android Platform" } ], "description": "Steps to Reproduce:\r\n1. Call these properties in an application:\r\nTitanium.App.getId()\r\nTitanium.App.getUrl()\r\nTitanium.App.getGuid()\r\n\r\nActual:\r\nRuntime Error\r\n\r\nExpected:\r\nTo load the correct values\r\n\r\nNote:\r\nNeed to call getID, getURL, getGUID but that is wrong according to the docs, since we have been supporting the wrong case, we need to support the upper-case and the lower-case.", "attachment": [], "flagged": false, "summary": "Android: Titanium.App: certain methods are case wrong and when calling the method gives a runtime error", "creator": { "name": "nhuynh", "key": "nhuynh", "displayName": "Natalie Huynh", "active": true, "timeZone": "America/Los_Angeles" }, "subtasks": [], "reporter": { "name": "nhuynh", "key": "nhuynh", "displayName": "Natalie Huynh", "active": true, "timeZone": "America/Los_Angeles" }, "environment": "SDK: 2.0.0.v20120312213243\r\nDroid 2.2.2, iPhone, Safari\r\n", "comment": { "comments": [ { "id": "186350", "author": { "name": "ngupta", "key": "ngupta", "displayName": "Neeraj Gupta", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Note that iOS supports both uppercase and lowercase. Mobile Web is now adding uppercase (in addition to existing lowercase) to be at parity.", "updateAuthor": { "name": "ngupta", "key": "ngupta", "displayName": "Neeraj Gupta", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-03-13T16:42:04.000+0000", "updated": "2012-03-13T16:42:04.000+0000" }, { "id": "186378", "author": { "name": "ivan.skugor", "key": "ivan.skugor", "displayName": "Ivan Skugor", "active": true, "timeZone": "Europe/Amsterdam" }, "body": "I think that good naming convention is important. Having two naming conventions will lead to confusion (and it is against DRY principles). Since there are names \"UI\", \"iOS\", \"API\" ... I think that \"getURL\" should be good choice.", "updateAuthor": { "name": "ivan.skugor", "key": "ivan.skugor", "displayName": "Ivan Skugor", "active": true, "timeZone": "Europe/Amsterdam" }, "created": "2012-03-14T02:01:48.000+0000", "updated": "2012-03-14T02:01:48.000+0000" }, { "id": "186561", "author": { "name": "opiecyrus", "key": "opiecyrus", "displayName": "Opie Cyrus", "active": true, "timeZone": "America/Chicago" }, "body": "PR https://github.com/appcelerator/titanium_mobile/pull/1681 submitted. Test case to verify variants are supported:\r\n\r\n{code}\r\nTi.API.info(\"getID():\" + Titanium.App.getID());\r\nTi.API.info(\"id:\" + Titanium.App.id);\r\nTi.API.info(\"getId():\" + Titanium.App.getId());\r\nTi.API.info(\"getURL():\" + Titanium.App.getURL());\r\nTi.API.info(\"url:\" + Titanium.App.url);\r\nTi.API.info(\"getUrl():\" + Titanium.App.getUrl());\r\nTi.API.info(\"getGUID():\" + Titanium.App.getGUID());\r\nTi.API.info(\"guid:\" + Titanium.App.guid);\r\nTi.API.info(\"getGuid():\" + Titanium.App.getGuid());\r\n{code}", "updateAuthor": { "name": "opiecyrus", "key": "opiecyrus", "displayName": "Opie Cyrus", "active": true, "timeZone": "America/Chicago" }, "created": "2012-03-14T21:01:34.000+0000", "updated": "2012-03-14T21:01:34.000+0000" }, { "id": "186814", "author": { "name": "wluu", "key": "wluu", "displayName": "Wilson Luu", "active": false, "timeZone": "America/Los_Angeles" }, "body": "Closing bug. Verified fix on:\r\n\r\nSDK build: 2.0.0.v20120316104738\r\nRuntime: v8, rhino\r\nTitanium Studio, build: 2.0.0.201203152033\r\nDevice: Nexus S (2.3.6)", "updateAuthor": { "name": "wluu", "key": "wluu", "displayName": "Wilson Luu", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2012-03-16T10:21:08.000+0000", "updated": "2012-03-16T10:21:08.000+0000" }, { "id": "189548", "author": { "name": "nhuynh", "key": "nhuynh", "displayName": "Natalie Huynh", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Open to update label\r\n", "updateAuthor": { "name": "nhuynh", "key": "nhuynh", "displayName": "Natalie Huynh", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-04-02T14:20:23.000+0000", "updated": "2012-04-02T14:20:23.000+0000" } ], "maxResults": 5, "total": 5, "startAt": 0 } } }