Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 7B0B9200C4A for ; Sun, 19 Mar 2017 06:59:51 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 79A5B160B95; Sun, 19 Mar 2017 05:59:51 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id C92DC160B7F for ; Sun, 19 Mar 2017 06:59:50 +0100 (CET) Received: (qmail 35833 invoked by uid 500); 19 Mar 2017 05:59:50 -0000 Mailing-List: contact commits-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list commits@flex.apache.org Received: (qmail 35824 invoked by uid 99); 19 Mar 2017 05:59:50 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 19 Mar 2017 05:59:49 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C56EDE00A4; Sun, 19 Mar 2017 05:59:49 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jmclean@apache.org To: commits@flex.apache.org Date: Sun, 19 Mar 2017 05:59:49 -0000 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: [1/5] git commit: [flex-asjs] [refs/heads/develop] - added statusText for JS archived-at: Sun, 19 Mar 2017 05:59:51 -0000 Repository: flex-asjs Updated Branches: refs/heads/develop ae7d5b743 -> 7cd690da5 added statusText for JS Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/8daf726a Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/8daf726a Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/8daf726a Branch: refs/heads/develop Commit: 8daf726a58e0a8495c92193cdc9cc36c4ba8cf65 Parents: ae7d5b7 Author: Justin Mclean Authored: Sun Mar 19 15:16:14 2017 +1100 Committer: Justin Mclean Committed: Sun Mar 19 15:16:14 2017 +1100 ---------------------------------------------------------------------- .../src/main/flex/org/apache/flex/net/HTTPService.as | 12 ++++++++++++ 1 file changed, 12 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/8daf726a/frameworks/projects/Network/src/main/flex/org/apache/flex/net/HTTPService.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/Network/src/main/flex/org/apache/flex/net/HTTPService.as b/frameworks/projects/Network/src/main/flex/org/apache/flex/net/HTTPService.as index 95ce908..13c5a9c 100644 --- a/frameworks/projects/Network/src/main/flex/org/apache/flex/net/HTTPService.as +++ b/frameworks/projects/Network/src/main/flex/org/apache/flex/net/HTTPService.as @@ -316,6 +316,18 @@ package org.apache.flex.net { return _status; } + + /** + * + * Status text contains more information about the HTTP request made. + * + * @productversion FlexJS 0.8 + */ + COMPILE::JS + public function get statusText():String + { + return (element as XMLHttpRequest).statusText; + } private var _url:String;