{ "id": "87805", "key": "TIMOB-7968", "fields": { "issuetype": { "id": "2", "description": "A new feature of the product, which has yet to be developed.", "name": "New Feature", "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-03-18T11:08:14.000+0000", "created": "2012-03-12T20:50:28.000+0000", "priority": { "name": "High", "id": "2" }, "labels": [ "qe-port" ], "versions": [ { "id": "12593", "name": "Release 2.0.0", "archived": false, "released": true, "releaseDate": "2012-03-30" } ], "issuelinks": [ { "id": "15700", "type": { "id": "10001", "name": "Cloners", "inward": "is cloned into", "outward": "is cloned from" }, "outwardIssue": { "id": "87804", "key": "TIMOB-7967", "fields": { "summary": "Android: Replace Node.text with Node.textContent", "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": "2", "description": "A new feature of the product, which has yet to be developed.", "name": "New Feature", "subtask": false } } } }, { "id": "15706", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "inwardIssue": { "id": "87519", "key": "TIMOB-7918", "fields": { "summary": "MobileWeb: XML parity issue", "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 } } } } ], "assignee": { "name": "mstepanov", "key": "mstepanov", "displayName": "Max Stepanov", "active": true, "timeZone": "America/Los_Angeles" }, "updated": "2012-08-16T04:03:14.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": "10206", "name": "iOS", "description": "iOS Platform" } ], "description": "For MobileWeb parity in 2.0, we need to deprecate the current {{Node.text}} property in our XML API, and rename it to {{textContent}}. We won't be fully implementing {{textContent}} from the DOM3 spec as it requires read-write access, and the traversal rules are slightly different than our current implementation. This is mainly for source level equivalence, until we have time to implement it properly.", "attachment": [], "flagged": false, "summary": "iOS: Replace Node.text with Node.textContent", "creator": { "name": "mculpepper", "key": "mculpepper", "displayName": "Marshall Culpepper", "active": true, "timeZone": "America/Los_Angeles" }, "subtasks": [], "reporter": { "name": "mculpepper", "key": "mculpepper", "displayName": "Marshall Culpepper", "active": true, "timeZone": "America/Los_Angeles" }, "environment": null, "comment": { "comments": [ { "id": "186490", "author": { "name": "mstepanov", "key": "mstepanov", "displayName": "Max Stepanov", "active": true, "timeZone": "America/Los_Angeles" }, "body": "{code:title=app.js}\r\nvar win1 = Titanium.UI.createWindow({\r\n\ttitle: 'Window',\r\n\tbackgroundColor: '#fff'});\r\n\t\r\nvar label1 = Titanium.UI.createLabel({\r\n\tcolor: '#999',\r\n\ttext: '',\r\n\ttextAlign: 'center',\r\n\twidth: 'auto'});\r\nwin1.add(label1);\r\n\r\nvar xhr = Titanium.Network.createHTTPClient();\r\nxhr.onerror = function(e) {\r\n\tTi.API.error('Error received while requesting library data: ' + JSON.stringify(e));\r\n};\r\n\r\nxhr.onload = function() {\r\n\tif (this.readyState == 4) {\r\n\t\tvar xmldoc = this.responseXML.documentElement;\r\n\t\tTi.API.info('Loaded');\r\n\t\tlabel1.text = 'Text: ' + xmldoc.getElementsByTagName('body').item(0).textContent;\r\n\t}\r\n};\r\nxhr.open('GET', 'http://www.w3schools.com/xml/note.xml');\r\nxhr.send();\r\n\r\nwin1.open();\r\n{code}", "updateAuthor": { "name": "mstepanov", "key": "mstepanov", "displayName": "Max Stepanov", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-03-14T13:53:33.000+0000", "updated": "2012-03-14T13:53:33.000+0000" }, { "id": "186492", "author": { "name": "ngupta", "key": "ngupta", "displayName": "Neeraj Gupta", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Please make sure that we have both text and textContent available but text is marked deprecated.", "updateAuthor": { "name": "ngupta", "key": "ngupta", "displayName": "Neeraj Gupta", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-03-14T13:58:14.000+0000", "updated": "2012-03-14T13:58:14.000+0000" }, { "id": "186968", "author": { "name": "blainhamon", "key": "blainhamon", "displayName": "Blain Hamon", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Pull request #1676 merged", "updateAuthor": { "name": "blainhamon", "key": "blainhamon", "displayName": "Blain Hamon", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-03-18T11:08:14.000+0000", "updated": "2012-03-18T11:08:14.000+0000" }, { "id": "214757", "author": { "name": "sbhadauria", "key": "sbhadauria", "displayName": "Shyam Bhadauria", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Environment used for verification -\r\nTested with Titanium SDK: 2.2.0.v20120815194913\r\nTested with Titanium  Studio: 2.1.1.201207271312\r\nDevice - iOS 5.1 simulator\r\nMachine OS - MAC 10.7.3", "updateAuthor": { "name": "sbhadauria", "key": "sbhadauria", "displayName": "Shyam Bhadauria", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-08-16T04:03:14.000+0000", "updated": "2012-08-16T04:03:14.000+0000" } ], "maxResults": 4, "total": 4, "startAt": 0 } } }