aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlxmlhttprequest.cpp
Commit message (Collapse)AuthorAgeFilesLines
* QtQuick: Fix string related warnings, single character strings.Friedemann Kleint2012-05-141-2/+2
| | | | | | | | | - Fix warnings about truncation from size_t to int (MSVC 2010, 64bit). - Remove single character strings. Change-Id: Iaf4406e4e04d55d2d8b762f3433269868842a6f9 Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
* Keep XMLHttpRequest response data after receiving a server errorTopi Reinio2012-05-011-3/+1
| | | | | | | | | | | | | | | | | Fix XMLHttpRequest.responseText being set to empty string whenever a server status code other than '200/OK' is received. XMLHttpRequest specification says that response entity body is to be returned unless the error flag is set, and the flag is set only in case of abort() or network error. This change enables clients to receive additional error information the server may return in the response body. http://www.w3.org/TR/XMLHttpRequest/#the-responsetext-attribute Task-number: QTBUG-21706 Change-Id: I7e44f481494dc7eddea3868d6f92ee45d7ab0c69 Reviewed-by: Yunqiao Yin <charles.yin@nokia.com> Reviewed-by: Bea Lam <bea.lam@nokia.com>
* The QUrl constructor can be used once again, so use it.Thiago Macieira2012-04-241-1/+1
| | | | | | | Slight performance gain by avoiding a round-trip through QByteArray. Change-Id: Ibcd2e20f92236ca9878e52665b6d677019bb19a4 Reviewed-by: Matthew Vogt <matthew.vogt@nokia.com>
* Call onreadystatechange() when new data available during loadingCharles Yin2012-04-191-5/+4
| | | | | | Task-number: QTBUG-21459 Change-Id: I84e11cbf9ade361d5d578c8871491e631f8e4ea4 Reviewed-by: Michael Brasser <michael.brasser@nokia.com>
* Merge master into api_changesKent Hansen2012-03-231-1/+1
|\ | | | | | | | | | | | | | | Conflicts: src/qml/qml/qqmlboundsignal.cpp src/qml/qml/qqmlpropertycache.cpp Change-Id: I5193a193fa301c0b518291645bf626a5fa07118f
| * Fix typo in QQmlXMLHttpRequest::readEncoding()Kent Hansen2012-03-191-1/+1
| | | | | | | | | | Change-Id: I266de531c12a4b88db722f220d7693f0b6bae7ff Reviewed-by: Michael Brasser <michael.brasser@nokia.com>
* | Remove include of QStringBuilder headerMatthew Vogt2012-03-201-2/+0
|/ | | | | | | | | Th contents of this file should be implicitly included via the QString header, and the forwarding header no longer exists in the api_changes branch. Change-Id: Id567456554f15823e4eeedbcf566af0da64f49ee Reviewed-by: Martin Jones <martin.jones@nokia.com>
* Rename QDeclarative symbols to QQuick and QQmlMatthew Vogt2012-02-241-0/+1797
Symbols beginning with QDeclarative are already exported by the quick1 module. Users can apply the bin/rename-qtdeclarative-symbols.sh script to modify client code using the previous names of the renamed symbols. Task-number: QTBUG-23737 Change-Id: Ifaa482663767634931e8711a8e9bf6e404859e66 Reviewed-by: Martin Jones <martin.jones@nokia.com>