aboutsummaryrefslogtreecommitdiffstats
path: root/PySide/QtNetwork
Commit message (Collapse)AuthorAgeFilesLines
* Fix bug 857 - "64bit Windows build broken"Hugo Parente Lima2012-03-081-2/+2
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Lauro Moura <lauro.filho@openbossa.org>
* Add since attribute for classes and enums added on Qt4.6 and Qt4.7.Hugo Parente Lima2012-03-081-2/+2
|
* Remove typesystem verbosity after fix of bug 417.Hugo Parente Lima2012-03-081-5/+5
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* Fix bug #788 - "QIPv6Address.__getitem__ is missing."Paulo Alcantara2012-03-081-5/+38
| | | | | | | Signed-off-by: Paulo Alcantara <paulo.alcantara@openbossa.org> Reviewer: Renato Araujo <renato.araujo@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fixed CMakeLists.txt files to prevent static source files of being deleted ↵Marcelo Lira2012-03-081-0/+1
| | | | by "make clean".
* Type systems of all modules but QtCore and QtGui reviewed.Hugo Parente Lima2012-03-081-5/+12
|
* Updated CMake files to use the "--drop-type-entries" generator option.Marcelo Lira2012-03-088-26/+31
| | | | | | | | | | Instead of maintaining a complex CMake scheme to remove optional type system entries, the generation will rely on the new generator capability of dropping entries given via command line. Reviewed by Bruno Araújo <bruno.araujo@openbossa.org> Reviewed by Lauro Moura <lauro.neto@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Separated class typesystem from the main typesystem.Renato Araujo Oliveira Filho2012-03-088-25/+25
| | | | | | | | | | Remove class specification, detected during the compilation from the main typesystem to avoid errors during the generation. Fixes bug #661 Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Fix bug 650 - "Missing bindings for QNetworkProxyFactory"Hugo Parente Lima2012-03-082-1/+8
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Added QSslCertificate to QtNetwork module.Renato Araujo Oliveira Filho2012-03-082-1/+2
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Fix bug#438 - "Can't find Python.h on OS X"Hugo Parente Lima2010-10-281-1/+1
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Updated PySide cmake files to use Python library information from Shiboken.Marcelo Lira2010-10-261-1/+1
| | | | | | | | | Shiboken cmake files provides information about which Python library to link against through cmake SHIBOKEN_PYTHON_LIBRARIES variable. It also sets the Py_DEBUG flag if necessary. Reviewed by Lauro Moura <lauro.neto@openbossa.org> Reviewed by Renato Araujo <renato.filho@openbossa.org>
* QNetworkReply.errorCode method is now properly called QNetworkReply.errorMarcelo Lira2010-10-131-3/+0
| | | | | Reviewed by Luciano Wolf <luciano.wolf@openbossa.org> Reviewed by Renato Araújo <renato.filho@openbossa.org>
* Workaround to change the documentation about the return value of some functions.Hugo Parente Lima2010-10-071-3/+3
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Revert "Fixed doc of return values."Hugo Parente Lima2010-10-051-3/+3
| | | | This reverts commit bebede17c03c5f6180262a4031c53998142564ad.
* Fixed doc of return values.Hugo Parente Lima2010-10-051-3/+3
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Modified the type system files to make use of nested type declarations.Marcelo Lira2010-09-231-57/+67
| | | | | Reviewed by Luciano Wolf <luciano.wolf@openbossa.org> Reviewed by Renato Araújo <renato.filho@openbossa.org>
* Added missing classes to QtNetwork module.Marcelo Lira2010-09-202-2/+9
| | | | | | | | The missing classes are: QAbstractNetworkCache, QNetworkDiskCache e QNetworkCacheMetaData. Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Added license boilerplates to all typesystem files.Hugo Parente Lima2010-09-091-0/+19
|
* Fix typesystem based on auto OS detection.Renato Filho2010-08-271-1/+2
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Anderson Lizardo <anderson.lizardo@openbossa.org>
* Replace macro checks with actual symbol checkingAnderson Lizardo2010-08-261-42/+5
| | | | | | | | | | | | | This increases a little more the check time, but is also more precise. It is also required for cases where qfeatures.h incorrectly reports support for a feature, but the actual class is not compiled (the case for a couple of classes in Qt Simulator). Additionally, the macro has been made more concise, and is reused for both QtGui and QtNetwork. Reviewed-by: Luciano Wolf <luciano.wolf@openbossa.org> Reviewed-by: Hugo Parente Lima <hugo.lima@openbossa.org>
* Simplify handling of typesystems for multiple OSesAnderson Lizardo2010-08-261-2/+1
| | | | | | | | | | * Factor out install() commands into PySide/CMakeLists.txt * Drop typesystem_<module>_common.xml and typesystem_<module>.xml.in, and make typesystem_<module>_<os>.xml (if exists) include typesystem_<module>.xml (which holds common data) Reviewed-by: Luciano Wolf <luciano.wolf@openbossa.org> Reviewed-by: Hugo Parente Lima <hugo.lima@openbossa.org>
* Various cleanups to CMakeLists.txt filesAnderson Lizardo2010-08-261-3/+2
| | | | | | | | | * Simplify endmacro(), endif() and else() statements * Remove unused and redundant code * Use AUTO_OS for holding the typesystem suffix (instead of MODULE_NAME) Reviewed-by: Luciano Wolf <luciano.wolf@openbossa.org> Reviewed-by: Hugo Parente Lima <hugo.lima@openbossa.org>
* Includded allow flags to some function on QNetworkManager.Renato Filho2010-08-251-0/+9
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Fixed QtNetwork typesystem to work on windows.Renato Filho2010-08-202-1/+14
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Fixed QtScriptTools CMake file and others files.Renato Filho2010-08-201-13/+0
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* created macro to compile pyside modules.Renato Filho2010-08-191-28/+21
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Use correct python lib in debug mode.Renato Filho2010-07-231-1/+1
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Typesystem cleanup.Hugo Parente Lima2010-07-061-37/+10
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* PySide now installs its type system files.Marcelo Lira2010-06-211-0/+3
| | | | | | | | | | | | | | The pyside.pc file now has a "typesystemdir" variable pointing to the directory where the type system files are installed. Example usage: pkg-config pyside --variable=typesystemdir Also set the "PYSIDE_TYPESYSTEMS" CMake variable on libpyside/PySideConfig.cmake.in to point to the same path of pkg-config's "typesystemdir". Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Rename error() method to avoid name clash with the error signal.Hugo Parente Lima2010-06-151-1/+5
|
* Merged typesystem (Qt 4.6 and 4.7)Renato Filho2010-05-264-44/+18
| | | | | | | Start use "since" tag on typesystem to Qt 4.7 modifications. Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>, Marcelo Lira <marcelo.lira@openbossa.org>
* Updated QtNetwork typesystem to support Qt 4.7Renato Filho2010-05-244-8/+38
|
* Includes the postfixes in the install target (allows debug build)Renato Filho2010-05-201-1/+1
| | | | | | | Author: Didier Raboud <didier@raboud.com> Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* MacOs compiler fix.Renato Oliveira2010-05-191-1/+2
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Implemented OPENSSL detection on QtNetwork.Renato Filho2010-05-191-5/+9
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Fixed typesystem parser warnings.Renato Filho2010-04-301-6/+0
|
* QtNetwork/typesystem_network.xml updatesAnderson Lizardo2010-03-311-1/+2
| | | | | Reviewed-by: Lauro Moura <lauro.neto@openbossa.org> Reviewed-by: Hugo Lima <hugo.lima@openbossa.org>
* Use the right typesystem file for QtGui.Hugo Lima2010-03-231-1/+0
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Reviewer: Bruno Araújo <bruno.araujo@openbossa.org>
* Install module headers.Hugo Lima2010-03-231-0/+2
|
* Remove whitespaces from qtnetwork typesystem.Hugo Lima2010-03-181-1/+1
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Reviewer: Lauro Moura <lauro.neto@openbossa.org>
* Remove some methods and ctors which makes no sense in the python world.Hugo Lima2010-03-181-0/+2
|
* QtGui and QtNetwork uses the global header from QtCore, so they must be ↵Hugo Lima2010-02-191-0/+1
| | | | | | compiled after QtCore. Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Do not link a python module to other python module.Hugo Lima2010-02-181-2/+1
|
* Simplify "else" and "endif" statementsAnderson Lizardo2010-02-051-2/+2
| | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Remove nested parenthesis on IF() statement (not supported in CMake 2.6.2)Anderson Lizardo2010-02-051-3/+3
| | | | | | | Nested parenthesis on IF() statemens do not seem to be supported on CMake 2.6.2 (returns syntax errors). Besides, according to the IF() documentation, LESS will always be evaluated before AND, therefore parenthesis are unnecessary.
* Fix list of source files for QtNetwork module.Hugo Lima2010-02-041-70/+33
|
* Do not allow multiple arguments in read_wrapper, but one onlyCarlos Goncalves2010-02-021-10/+0
|
* Initial QtNetwork bindings.Carlos Goncalves2010-02-023-0/+440