summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlxmlhttprequest.cpp
Commit message (Collapse)AuthorAgeFilesLines
* XMLHttpRequest collection bugAaron Kennedy2010-02-081-45/+45
| | | | | | | QmlXMLHttpRequest was holding a reference to the callback function indefinately. If the callback function also referenced the XMLHttpRequest (which they always do) the QmlXMLHttpRequest would not be destroyed until the application exited.
* Don't create one QNetworkAccessManager per XMLHttpRequestAaron Kennedy2010-02-031-13/+5
|
* XMLHttpRequest redirectionAaron Kennedy2010-02-031-12/+32
|
* Give full error message (with line number) on XMLHttpRequest slot failures.Warwick Allison2010-01-131-14/+16
|
* Pass exceptions where possible, else print.Warwick Allison2010-01-121-29/+42
| | | | Task-number: QTBUG-6507
* Create xhr url with fromEncoded.Tapani Mikola2009-12-091-1/+1
|
* Fix leak.Michael Brasser2009-12-091-0/+1
|
* Merge branch 'kinetic-declarativeui' of ↵Warwick Allison2009-12-061-1/+1
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * small cleanupThierry Bastian2009-12-041-1/+1
| | | | | | | | | | | | make use of QVariant::userType over Qvariant::type make use of char for 1-string character QCoreApplication::translate is static
* | Make QmlScriptEngine reusable in WorkScript, so extra fns are available.Warwick Allison2009-12-041-21/+26
|/ | | | Add Qt.resolvedUrl(url)
* fix includesOswald Buddenhagen2009-12-031-7/+8
| | | | | | | | | | | | - include headers from own directory with "" - include headers from own project without private/ - sort includes from most specific to most generic - make headers self-contained - some whitespace unification no attempt was made at making the qt includes consistent regarding the use of module names and forwarding headers. no attempt was made at sorting includes.
* Undo most of 913dd563064e8047fe738fc9c79135adfb928977Warwick Allison2009-12-021-4/+4
| | | | It seems we're going to have to so a syncqt/configure in Qt modules.
* Remove include styles that rely on configure.Warwick Allison2009-12-011-3/+3
| | | | May help modularization (syncqt and configure are Qt-specific).
* Handle more HTML non-errorsAaron Kennedy2009-11-271-6/+8
|
* Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-11-131-18/+18
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * unwarnWarwick Allison2009-11-131-18/+18
| |
* | XMLHttpRequest testsAaron Kennedy2009-11-131-15/+32
|/
* XMLHttpRequest testsAaron Kennedy2009-11-131-117/+36
|
* Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-11-131-1/+1
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Do not use "QtDeclarative/XXX" style includes in declarative module code,Warwick Allison2009-11-121-1/+1
| | | | | | | | as it breaks reinstalling the module against existing Qt.
* | XMLHttpRequest testsAaron Kennedy2009-11-131-7/+4
|/
* XMLHttpRequest testsAaron Kennedy2009-11-101-13/+102
|
* More XMLHttpRequest testsAaron Kennedy2009-11-101-4/+33
|
* XMLHttpRequest testsAaron Kennedy2009-11-091-34/+102
|
* fix headersWarwick Allison2009-10-291-16/+16
|
* Silence warnings.Michael Brasser2009-10-261-0/+9
|
* Use utf8 instead of latin1 where appropriateAaron Kennedy2009-10-121-3/+3
|
* Remove some warnings.Martin Jones2009-10-091-12/+12
|
* XMLHttpRequest status and statusText were not set in finished or error.Tapani Mikola2009-09-181-0/+10
|
* Added \r\n between the headers in getAllResponseHeadersTapani Mikola2009-09-181-1/+1
|
* Implementations of getAllResponseHeaders () and getResponseHeader ().Tapani Mikola2009-09-181-4/+69
|
* Implement more of XMLHttpRequestAaron Kennedy2009-09-011-15/+868
|
* Implement (parts of) XMLHttpRequestAaron Kennedy2009-08-271-0/+535
This is the first step to allowing QML to interact with REST style APIs in the same way as a webbrowser can.