commit 35db2961d9c945a0666ac96dbbd7c9f0c33b8e08
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Wed Mar 30 16:37:43 2011 -0300

    Check for old-style bases before calling tp_new
    
    Instead of creating the type instance and them
    checking for old-style base classes, check
    for them in the beginning.
    
    The later check was causing the new type object
    to "leak" and failing an assert in the
    garbage collector.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
    Reviewer: Hugo Lima <hugo.lima@openbossa.org>

commit 1b992e1bcb85549f892c44c263e312174a8fd20b
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Tue Mar 29 17:26:57 2011 -0300

    Tests for reverse operators
    
    CPython calls nb_and with swapped arguments
    for reverse operators.
    
    This tests checks if the reverse operator
    raises NotImplementedError instead of TypeError
    when there isn't a valid reverse operator.
    
    Raising TypeError would cause the operator to fail.

commit 74b503c946b92286bc00204eb0ed9c50803a6792
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Mon Mar 28 16:13:44 2011 -0300

    Reverse operators raise NotImplemented error.
    
    If it's a reverse operator and the OverloadDecisor fails,
    raise NotImplementedError instead of TypeError.

commit a4024296bf2e7685643b353d435ac575846ebc80
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Mar 24 17:20:42 2011 -0300

    Don't return a overload method if the object is dieing.
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit f269b2a6af8134edbe1bfbc4d53e72ecbe61cdc6
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Mar 23 18:21:45 2011 -0300

    Set object returned by getter function child of the property owner.
    
    Doing this will invalidate the object then the property owner was deleted.

commit 6eabc682fb8ffd9db9057740cf550989c1c25e4f
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Mar 23 18:20:40 2011 -0300

    Check for object validity on property getters and setters before using them.

commit 2e026d26caa4b7005c17d2e00271358093529a0a
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Mar 23 18:19:54 2011 -0300

    Do nothing when trying to make an valid object valid twice.

commit f5c5a9770c7206dd426483d38a0b2b93140f5062
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Tue Mar 22 10:55:13 2011 -0300

    Updated module reload test.
    
    Avoid to load a module twice.
    
    Fixes bug #734.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 7a21a4f1373c069ec3161fe759269f467a592dab
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Tue Mar 22 10:40:15 2011 -0300

    Fixed parentInfo cleanup.
    
    Fixes bug #735.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit caec0092e785137612f441f3ea3e7142da95ae8e
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Fri Mar 18 17:35:16 2011 -0300

    Fix bug 693 - "Heap corruption or double free reported on program exit"
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit f76a944c0a78b898115c8acf0a8f413b1d92bd3f
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Fri Mar 18 15:11:02 2011 -0300

    Fix bug in TypeResolver::getType function.
    
    The function was always using a empty string.

commit 9c82464874bef7535690d245f84b70932109087b
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Fri Mar 18 11:16:50 2011 -0300

    Created documentaion due to the limitation with old style class.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 65539dfc2afd387ff079b85f79b0788c8cdc9052
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Mar 16 18:26:35 2011 -0300

    Register class names without namespaces to fix the mess in Qt signal type names.
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit a58cc4b0c7bee2ad0a4f184eb593b363bfadd920
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Mar 16 18:19:04 2011 -0300

    Use buffer instead of uchar on TypeError messages.

commit fd7a697778c16df3b2376b2d603845baa0f4bd8e
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Tue Mar 15 15:32:13 2011 -0300

    Check for class initialization on function Object.isValid.
    
    Fix bug #696.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit f270c04bddd29a900227137537af860a9013a912
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Mon Mar 14 18:17:37 2011 -0300

    Created unittest for bug #704.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit a72c6be47d0be58a1c3ab174397b79662400e181
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Mon Mar 14 18:17:03 2011 -0300

    Avoid declar shiboken classes derived from old style objects.
    
    Fixes bug #704.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit b39a13a30ba3de38fcadd76b2c06a6b5c1ef2f63
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Mar 16 11:14:23 2011 -0300

    Version bump to 1.0.1.

commit b34bed93928588fef01d39a14626dce8eaf028f9
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Mar 15 16:18:52 2011 -0300

    Fix bug 706 - "dataChanged signal raise an incorrect TypeError"
    
    Now we directly call qRegisterType for all types.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 71cb27e1e11e228a25dcee258ff28d01b983b020
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Mar 2 10:01:08 2011 -0300

    Handles the situation properly when a custom code has a result value attribution.
    
    If a method has a custom code that attributes a value to the Python
    result variable, Shiboken should not generate code with attribution
    to the said variable.
    
    Reviewed by Lauro Moura <lauro.neto@openbossa.org>
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit 2d70150f416772b5efc9fb8c669c8c6cedc0146f
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Mar 2 09:13:27 2011 -0300

    Added a check on CppGenerator::writeClassDefinition for when there's no constructor for a class.

commit 1e76df322a8a476e2898f27878c3edc5b9f72b9a
Author: Marcelo Lira <marcelo@setantas.net>
Date:   Sun Feb 6 00:41:50 2011 -0300

    The option "avoid protected hack" is now set via command line.
    
    Instead of the old ugly way of compiling the behaviour forever using
    "#define".
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit 1cfc5f160ceae291f407ffc58046114fec96da8b
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Feb 7 18:29:54 2011 -0300

    Module reload test now considers .pyo files (in addition to .pyc ones).

commit 30d71761e412b2b5cf833370f291e331ee237ec3
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Feb 16 16:36:43 2011 -0300

    SbkNumber_Check now makes use of PyNumber_Check.
    
    Plus some provisions to handle old-style classes.
    
    Reviewed by Bruno Araújo <bruno.araujo@openbossa.org>
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit d88de0d1776d9c88e52b40382e91669e66f9b708
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Feb 16 14:57:43 2011 -0300

    Added test to certify that old-style classes will not be accepted as numbers (unless they are).

commit 364525b5d30830e6fe7a2936e155235c19fc1465
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Feb 15 13:55:00 2011 -0300

    Added a test to numpy scalar type being accepted as Python scalar.

commit dc2c701cd58efcd6559e3b1e510aa17b8942dd5f
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Feb 16 17:48:45 2011 -0200

    Shows "unicode" instead of "PyUnicode" on error messages.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Lauro Moura <lauro.neto@openbossa.org>

commit bccea1fb7ca73490c766694cc19f2ca9b43baebb
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Feb 15 19:17:08 2011 -0200

    Add support to the remove attribute of reference-count tag.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 938c2e314c94acf9ab24999e79464e58d8e8371d
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Feb 15 16:35:01 2011 -0200

    Fix bug 684 - "New-style signals does not accept signals with enums as arguments."

commit 7901c69c9e404e460aee9b35d0a50f24681c9152
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Feb 10 17:51:40 2011 -0300

    Fixed style of code on CppGenerator::writeReturnValueHeuristics method.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit c167d196107f074d4f814a6bf06729effe0fa80d
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Feb 10 18:34:15 2011 -0200

    Fix string used in tp_name on inner types.
    
    Reviewer: Lauro Moura <lauro.neto@openbossa.org>
              Renato Araújo <renato.filho@openbossa.org>

commit 0374b254dfd955686856d2d13ce5d6b051224130
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Feb 10 17:51:40 2011 -0300

    The heuristics for return value parenting should be overridden by user changes.
    
    Whatever the user puts in the type system XML will take precedence over
    the generator heuristics.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit b1b32623845a15e6c20ac229c3f9fef7c7b2124a
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Feb 10 12:47:19 2011 -0300

    Overloaded call decision now consider inheritance: inheritor is checked before ancestor.
    
    A couple of ShibokenGenerator methods were made "const" to allow them to
    be called from OverloadDecisor.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit e5fc9e22416603a976873f22f99af365bf5bd928
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Feb 10 10:55:13 2011 -0300

    Added test for overload decision situation involving inheritance.

commit 3d8672d3f9209b2e099fc610d266a87f70dedcc2
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Feb 10 10:54:35 2011 -0300

    Marked ObjectType and ObjectModel, from the sample test lib, as explicit.

commit a9578348ff1d5e5d2dd26a97660587af041c4525
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Feb 8 18:20:14 2011 -0200

    Use action="set" instead of action="add" on reference-count tag.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 6bafe84c86b70ad9fd1e62dbe0405175d34e8912
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Wed Feb 9 14:22:12 2011 -0300

    Implemented support to iterator function generation.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Hugo Parente Lima <hugo.pl@gmail.com>

commit 61035b494dd0b5d13ea8cd7f4af7e62b36bb27b8
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Fri Feb 4 19:08:43 2011 -0300

    Fixed signal initialization for types with namespace and types defined
    by typedef.
    
    Fixes bug #657.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 4b3a9db31192820e9d36cdd901be5c46dfa491e6
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Feb 2 19:04:16 2011 -0200

    Don't write return heuristic when there's a parent tag with the returned object involved.
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit fe38422e866da80daa617bf94b0841f7a4457f09
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Wed Feb 2 15:14:04 2011 -0300

    Update apiextractor/generatorrunner dependency version.

commit 5f09931b15a03b445a47cb837f7ccd864853171b
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Wed Feb 2 09:43:51 2011 -0300

    Replaced use from QList to QSet in children list.
    
    Patch from farsmo <farsmo@sogetthis.com>
    
    Reviewer: Hugo Parente <hugo.lima@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit b149541996fcd9fc0afbc0c4babc244c583a26e2
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Tue Feb 1 16:13:49 2011 -0300

    Fixed Cmake files used to find the library after the installation.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit e3c4904d6c618c0fc1258549688db4c1c2916e6e
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Feb 2 10:44:44 2011 -0300

    Fixed a type on a warning about polymorphic-id-expression.
    
    Reviewed by Lauro Moura <lauro.neto@openbossa.org>
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit 81b6d4a6489e8b958418c7db3cccc2b480571af6
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Jan 17 14:52:44 2011 -0200

    Fix bug 616 - "error compiling when public and private methods differ by the const-ness"
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Renato Araújo <renato.filho@openbossa.org>

commit 5132ceaac226b604ba02d335fa10d95a0bda6d5b
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Jan 31 18:37:49 2011 -0200

    Fix bug 655 - "bad re-implementations of QApplication.notify result in a SystemError"
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 35fde19b7177e2cf2af5fa155a80b64e37eae976
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Jan 24 23:32:37 2011 -0300

    Test bindings project files modified to use key/value pair text files.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit 09d1957288d91b216b57019311d2dc9f6b18aa08
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Jan 25 08:41:42 2011 -0300

    Test bindings now use project files instead of generator command line options.

commit 4c682d6121b5fa31c54655cb119d75e39d957ce1
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Jan 17 18:32:12 2011 -0300

    Shiboken binary now responds to the "--version" argument.
    
    The version command line argument was previously answered by GeneratorRunner.
    This commit also generally updates some CMake files.

commit cf352ecf7f7414f57ee84fc020b5a27e6d021917
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Jan 24 08:40:09 2011 -0300

    Added SHIBOKEN_BINARY variable to CMake config file.
    
    It points to the Shiboken generator executable so the users can use it
    instead of calling GeneratorRunner plus a parameter pointing to Shiboken
    generator module.
    
    Also fixed generator_location variable on shiboken.pc file.

commit efe857ee64fa5c383aa3dc034f750f2704dcc2da
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Jan 12 14:29:57 2011 -0300

    Replaced tabs with spaces on cmake file.

commit 42597474323b837bcaf5486b4b342dd4d10739d8
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Jan 12 13:26:53 2011 -0300

    Shiboken executable calls GeneratorRunner with the renamed "--generator-set" argument.

commit 47c7ea62996992d5e6b68f67c914f7d7bdf71864
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Fri Jan 28 19:11:49 2011 -0200

    Fix bug613 - "QSvgRenderer chooses QByteArray overload when given a file path"
    
    QString arguments will always be evaluated before QByteArray arguments.
    
    Reviewer: Luciano Wolf <lucianol.wolf@openbossa.org>
              Renato Araújo <renato.filho@openbossa.org>

commit 4835555d4874527ddaf4b0c3bb4c017da96fa9c0
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Fri Jan 28 16:23:55 2011 -0200

    Fix regression that caused overload sorting to not respect argument type renames.

commit 420098145e4e6e2311e987f45c440ed01902a9cb
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Fri Jan 28 11:57:46 2011 -0300

    Created unit test for enum.__repr__ function.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 9c2d358942798ef6e5ef5260d15c889e9fac95ee
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Fri Jan 28 11:57:21 2011 -0300

    Fixed enum __repr__ function.
    
    fixes bug #617.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 6674f8a265e882fbb1c381c9a7f8ed6e61807dc2
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Jan 28 17:51:05 2011 -0300

    Added the "%CPPTYPE" type system variable.
    
    %CPPTYPE will be converted to the original C++ name of a class,
    without any "Wrapper" suffix or namespace prefix.
    
    Documentation for the new variable was added as well.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit a664eaa9fe791d5102f6089767e83acf3d5a5eba
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Jan 28 17:15:33 2011 -0300

    Type system %TYPE variable is now available for class wide custom code.
    
    %TYPE documentation was updated.

commit 4133c98e691455c2abaa11bf4439e858e9afaf40
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Jan 20 16:14:07 2011 -0200

    Use SBK_PYTHON_INCLUDE_DIR instead of PYTHON_INCLUDE_DIRS or PYTHON_INCLUDE_PATH.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Lauro Moura <lauro.neto@openbossa.org>

commit 434c1a56d407706af899fd58feb50957c2aea353
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Jan 26 11:45:23 2011 -0200

    Fix bug#605 - "Using metaclasses with the PySide classes doesn't work"

commit afe65270f1b28756172b72ba1d6af8f157a998bc
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Jan 25 14:15:51 2011 -0200

    Fix bug#640 - "(elasticnode) Crash in example elasticnodes.py"
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 55daad72b2358614bd4ec69728887ba631f01a4c
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Jan 24 15:19:40 2011 -0200

    Fix bug#633 - "bool of null QDate (possibly other empty QString/null QObj types?) returns True for empty instance; probably should be False"
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Renato Araújo <renato.filho@openbossa.org>

commit 63e2501545f8ef932414ae617f02fe73681e987c
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Jan 24 10:23:30 2011 -0200

    Fix bug#636 - "Unable to navigate back to the main site from the generated documentation"

commit 9fb7cf7616e8e9a8948edff1f203f35d2761a5db
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Fri Jan 21 15:56:44 2011 -0300

    Update module version dependency.

commit c584156614947a7345a82fcdd51ce542ce904407
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Fri Jan 21 14:33:42 2011 -0300

    Updated apiextractor and generatorrunner version dependency.

commit 3293847076330f07de9c70dd82f32bfeede6d317
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Jan 21 10:21:16 2011 -0300

    Shiboken enums now have a tp_print representation.
    
    This fixes the bug #611[1], and an unit test was also added.
    
    [1] http://bugs.openbossa.org/show_bug.cgi?id=611
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit dc0a3de17e9786037746cb02fb52e342f8cae34c
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Jan 19 11:20:29 2011 -0300

    Added test for module reloading.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit 4721af29a2225389528ba5984c53ab551058e690
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Jan 18 16:51:24 2011 -0200

    Add Shiboken::Object::isValid(SbkObject* pyObj, bool throwPyError = true) function to libshiboken.
    
    This function is needed to fix bug#552 when a libpyside code needs to check if a SbkObject is valid
    without set a Python error when it isn't.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Renato Araújo <renato.filho@openbossa.org>

commit 3483a54e6b84210e101d905b55d00858070ab62d
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Jan 18 18:20:00 2011 -0300

    Added more test cases for protected attributes.
    
    The tests are meant to be useful when compiled without the protected
    hack or on the win32 platform.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit cde05a92336a9f5fee1d8d1f591c89dd1ee70328
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Wed Jan 19 09:38:17 2011 -0300

    Fix windows compilation.
    
    Reviewer: Hugo Parente <hugo.lima@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 99760ad3ed66e619e04defcdfe05710899c7afc9
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Thu Jan 13 15:04:03 2011 -0300

    Used c++ pointer during the c++ class attribute get function.
    
    Now all function get for class attribute return the internal memory of
    the c++ attribute.
    
    Reviewer: Hugo Parente <hugo.lima@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 2094d56e312a9f35e606cac30aff4bdd0f2dd13d
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Jan 12 16:24:10 2011 -0300

    Updated Shiboken documentation with advice about duck punching and virtual methods.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit b719c4e8b9238ea8c4d1e022cf597e8cb628f5d7
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Wed Jan 12 19:30:23 2011 -0300

    Optimized setParent function.
    
    Replaced use of find in the children list for check on the current
    child if his has a parent and if the parent is the same.
    
    Fixes bug #556
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Hugo Parente <hugo.lima@openbossa.org>

commit 297151081ffae13c8dbb66ffde61f2c15eaae2a3
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Tue Jan 11 17:07:26 2011 -0300

    Append python name to libshiboken output file
    
    libshiboken is strongly tied to the python
    it was compiled against. This commit adds
    the python name to the output file to make
    this connection explicit.
    
    The generator plugin, binary and includes are
    untouched as they don't depend on python.
    
    Also, Instead of installing the cmake info in a
    single file, ShibokenConfig.cmake will load the
    correct file (ShibokenConfig-<python name>.cmake)
    based on the value of PYTHON_BASENAME when cmake
    is called.
    
    The last shiboken installed will be the default
    as each install will overwrite ShibokenConfig.cmake.
    
    To select an specific python, call cmake with
    -DPYTHON_BASENAME=python2.6, for python2.6 release.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Lauro Moura <lauro.neto@openbossa.org>

commit 498ba2f39e64129d6911cedfd1334032350543eb
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Jan 11 17:34:28 2011 -0300

    Added test to assert the precedence of enum arguments over int implicit conversions.
    
    This test is inspired by bug #511 [1], and it checks the precedence of
    an enum argument over a class that can be implicitly built from an
    integer.
    
    [1] http://bugs.openbossa.org/show_bug.cgi?id=511
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit d9902755a46c299cd50550ae1c7932d1ac4d8f70
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Jan 11 17:31:34 2011 -0300

    The overload decisor must put enums before types implicitly convertible from integers.
    
    Otherwise the enum value will be an acceptable argument for a class that
    expects an integer (signed or unsigned) to be implicitly built, and the
    enum argument will never be called.

commit 5fccb1dafa71929b5a7968d5a3a99f5b442bc2e2
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Mon Jan 10 09:36:34 2011 -0300

    Fix SbkType name when setting exception in virtual
    
    Was generating SbkType<NAME> with '*' in NAME,
    leading to segfaults.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>

commit 4234c5b8fa4ea2b7f5d3872bf87c92786b913abc
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Mon Jan 10 09:22:50 2011 -0300

    Add test for invalid type returning from virtuals
    
    Returning an integer where the binding expects a
    pointer shouldn't segfault.

commit a0186b6c830f17ccbbf97cc234c9d903e16cc456
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Fri Jan 7 15:54:12 2011 -0300

    Initialize ShibokenObject private data.
    
    This avoid errors during the functions call which uses the private data.
    
    Fixes bug #589
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Hugo Parente <hugo.lima@openbossa.org>

commit 635ae97b304dae295bf15d666c06c6e67660629b
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Fri Jan 7 17:39:18 2011 -0200

    Fix bug#530 - "Importing division from future breaks QPoint division"
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Lauro Moura <lauro.neto@openbossa.org>

commit 20f57828674fabc0ef1b5f0fbcea7c8732477979
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Wed Jan 5 19:22:21 2011 -0300

    Use sleep function to give time to process breath.
    
    Fixes bug #580
    
    Reviewer: Lauro Moura <lauro.neto@openbossa.org>
              Hugo Parente Lima <hugo.pl@gmail.com>

commit 786da143a916a81d11ba7bc4f14af71f6893584c
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Jan 4 18:48:25 2011 -0200

    Release the gil for every C++ function call, ignoring allow-thread attribute on typesystem.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Renato Araújo <renato.filho@openbossa.org>

commit 7ed5767ccfe005aaddfc2e5032dac2966154d87c
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Jan 3 15:33:07 2011 -0300

    Added test case for Bug #572.
    
    Bug #572: Giving unicode value as 'body' argument to WebView's load
    method crashes python.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit 3d2aef81fb97baefdc4b3a35a86076a8ed377100
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Jan 3 15:34:35 2011 -0300

    A convertible check must be done on named arguments as it is done on regular arguments.

commit 7563560d32c91d0cf58567358a0f0f85c590056f
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Jan 3 11:10:32 2011 -0300

    Added a Linux man page for Shiboken.
    
    The man page was copied from the 'ubuntu' directory on the old
    'packaging' repository.

commit a24e6bcd2251b6cbd78ec4e69a2b6b591738e697
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Dec 29 18:26:44 2010 -0200

    Add support for operator overload injection.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Lauro Moura <lauro.neto@openbossa.org>

commit 304a8d46c162a3289da16ebcef839ff5c1b8697c
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Dec 29 16:42:38 2010 -0200

    Use QByteArray instead of QString to save 1 pico second :-)

commit 1faf14ceb8a3eff5ecf3b92ce846970171f9e2b8
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Dec 29 16:34:39 2010 -0200

    Add support to fix the bug#493 - "__eq__ and friends not implemented for QKeyEvent == QKeySequence"

commit e5da714a34ea4571573741a79f0733c561f1c13d
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Wed Dec 29 15:39:46 2010 -0300

    Fix test after changes to SequenceToArgcArgv
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
    Reviewer: Hugo Lima <hugo.lima@openbossa.org>

commit 6d0f92a096f0e81fa2e3b219cc38e90821d01b51
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Dec 29 10:55:43 2010 -0200

    Put __file__ on argv only when a empty list is given.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Renato Araújo <renato.filho@openbossa.org>

commit a4d79ddbac83e4b3338dfc5061765f0967f1fcc5
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Dec 29 08:55:46 2010 -0200

    Don't generate type resolvers using the const keyword.
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 670b96db4dd58dc4e265a5e49439f705bb6193c1
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Dec 28 15:24:11 2010 -0200

    Fix bug#495 - "Broken rich compare operators if they use an object-type as parameter"

commit 5bfe40a435b49cf23aac247d1f6336def879ee71
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Dec 28 17:24:18 2010 -0200

    Avoid compiler warning about unhandled constant in switch block.

commit e9f833b5a2d4ce4893bdbfe844f224a1cd689d6a
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Dec 28 15:03:10 2010 -0200

    Fix typo

commit fc997ef702dfe2d40b8420a3c98ca16d9d276596
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Dec 23 15:50:54 2010 -0200

    Fix bug#554 - "Inner classes don't work and give us a segfault"
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Renato Araújo <renato.filho@openbossa.org>

commit b671bda382fc85954a3587dbe728baa728dfe567
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Thu Dec 23 14:40:50 2010 -0300

    Used Qt4.7 code to normalize types for all previous Qt version.
    
    Reviewer: Lauro Moura <lauro.neto@openbossa.org>
              Hugo Parente Lima <hugo.pl@gmail.com>

commit 1f2cc5e621431e4a7bb0126b83c768489b9e11c0
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Thu Dec 23 10:50:34 2010 -0300

    Removed '&' from type registration.
    
    Reviewer: Lauro Mora <lauro.neto@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 1f28cdd2994f9a60e05ce887ad5568e3a9c648e9
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Dec 22 14:58:37 2010 -0300

    Added support for promoting enums from removed namespaces to upper scope.
    
    Classes in namespaces marked not to be generated are always moved to
    upper scopes, the current modification add this same behaviour to enums.
    
    Tests were also added.
    
    Reviewed by Lauro Moura <lauro.neto@openbossa.org>
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit ec2ca67a1b93b5890dacaa3683c0a6079906bd5b
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Wed Dec 22 19:46:49 2010 -0300

    Fixed signal register function.
    
    Use translated type name as type, and exclude const from containers.
    
    Reviewer: Lauro Moura <lauro.neto@openbossa.org>
              Hugo Parente Lima <hugo.pl@gmail.com>

commit 473da995f2ba6f8277b0df7cf4b96a5b36b7edc6
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Dec 22 19:17:02 2010 -0200

    Fix Py_DEBUG detection on Windows.
    
    On Windows sysconfig.get('Py_DEBUG') can return None instead of 0.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Renato Araújo <renato.filho@openbossa.org>

commit ba3791086fc50efb7beeb28302cd7aad67f06af8
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Dec 22 18:50:54 2010 -0200

    Minor changed in CMakeLists.txt

commit 4399a96c668ed38473184f1c389334acacee20e5
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Dec 22 18:46:26 2010 -0200

    Removed WITH_THREAD ifdefs, it causes a lot of warnings on Windows and was always set by our buildsystem.

commit 234091a597d14a1c127b406883324f65a534cde0
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Dec 20 19:24:34 2010 -0200

    Print debug messages to stderr isntead of stdout.

commit 8ac60d130d1735156345839dfc12a061adfdb1f0
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Wed Dec 22 12:39:41 2010 -0300

    Use converter during generation only for primitives types which is
    impossible to convert using by Py_BuildValue.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Hugo Parente <hugo.lima@openbossa.org>

commit f5422ac1aa196c8c061e2e294fe96bbf886013b7
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Wed Dec 22 11:14:54 2010 -0300

    Fixed use of python conversion for type with typedefs.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Hugo Parente <hugo.lima@openbossa.org>

commit 6d4f397eb58c205adc307c23b1c343cbec388489
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Dec 20 13:50:01 2010 -0200

    Fix bug#484 - "Error compiling QtContacts 1.1 (problems with const QList<QVariant>)"
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 94f1ca48808d215c4aa0a7ed2e3459c13a9ade7f
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Dec 20 13:49:15 2010 -0200

    Disable copy of ThreadStateSaver objects.

commit 9459b9da9c85ec0f54d945ffa5b19174c285d9ac
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Dec 17 11:05:53 2010 -0300

    Removed unnecessary code to check the refcount of Python objects returned on virtual methods.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit 81423ee9987008864cf1d66d009afc815c2419e5
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Dec 17 11:00:24 2010 -0300

    Fixed code generation for virtual method ownership release of returned value.
    
    The value returned from Python to C++ shouldn't have its reference
    counting decremented after Python transferring ownership to C++.

commit 45d4e4b0eabc87cd50613a469ce400434b833d6d
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Thu Dec 16 15:58:23 2010 -0300

    Fix register type function to register the type with two names.
    
    Fix signal register, to use arguments type name based on generated namespace.
    
    Fix bug #498.

commit 2d146fad966ae24940c65812cde4c28b645ecf6b
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Dec 16 14:08:29 2010 -0300

    Added tests to check the release of ownership of objects returned from Python.
    
    The ObjectModel test class was introduced to check if the transference
    of ownership of objects returned from Python to C++ through a virtual
    method is working properly.
    
    Also updated the other test that uses the ObjectView class.
    
    Reviewed by Lauro Moura <lauro.neto@openbossa.org>
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit f728e59aa228d5b796b5641bea683333b10919e4
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Dec 15 18:29:06 2010 -0300

    Generate code to release ownership on Python values returned to C++ on virtual methods.
    
    In other words, the following type system snippet will now be recognized
    by the generator:
    
    <modify-argument index="return">
      <define-ownership class="native" owner="c++"/>
    </modify-argument>

commit 4b866fc793113e84c276eb972eb99a457074018c
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Dec 15 18:28:27 2010 -0300

    Fixed typo on generated error message.

commit 5d07b706d29cb80aa10b34fad1f883a78266a9c2
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Wed Dec 15 17:55:51 2010 -0300

    Replaced code generated on funtion getattro to function present on
    libpyside.
    
    Fix bug #525.

commit 709235038fc2ee25984e01759403f1f8a75338f7
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Wed Dec 15 17:55:36 2010 -0300

    Fixed comments typo.

commit fb4035a69475759e58e25d5aa0f061d6c212f4af
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Tue Dec 14 15:19:37 2010 -0300

    Fix object destruction process to avoid pass a invalid object during the
    __del__ function.
    
    Fix bug #505
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit b915f12df2349760309c2f7227bcdbad3c73a7da
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Dec 9 19:37:41 2010 -0200

    Finally fix bug#500 - "If an instance of QPrintDialog is created a deadlock happens on shutdown."
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 66bb59f9be9f7f38af48b1c4dc1108017c06ef72
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Dec 13 18:36:53 2010 -0200

    Fix bug#513 - "Hardcoded bool return type for operator overloads"
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 701b31ef3ddae7c43380d1513f9938f70f46eb7e
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Dec 13 15:22:10 2010 -0200

    Revert "Fix bug#500 - "If an instance of QPrintDialog is created a deadlock happens on shutdown.""
    
    This reverts commit fb90a3df97b53f3ef4878d8beb719d4aa7b0c6cb.

commit fb90a3df97b53f3ef4878d8beb719d4aa7b0c6cb
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Dec 9 19:37:41 2010 -0200

    Fix bug#500 - "If an instance of QPrintDialog is created a deadlock happens on shutdown."
    
    Reviewer: Lauro Mora <lauro.neto@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 33537a0e9b0c3fc362032dec1820f08d248bed77
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Dec 9 15:56:26 2010 -0300

    Code generated for Qt's signals wrapping now deal with arguments with default values.
    
    For instance, the "QAbstractButton::clicked(bool checked = false)"
    signal, can be connected using the two signatures "clicked()" and
    "clicked(bool)". Using
    
      button.clicked.connect(callback_function)
    
    could cause the binding to connect to "clicked(bool)", instead of
    "clicked()", leaving the user unaware of it.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit 5b59c65a0f39198c4613400b9a49000b7d2315de
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Dec 8 16:46:50 2010 -0200

    Added another overload for makeTuple, this time with just one argument.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit ff592945dbf0cb990ca13d60f480eeead7e34a99
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Dec 6 14:30:33 2010 -0300

    Test case for proper generation of constructor altered by conversion-rule tag.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit ee4f78f615160b65b2d8f3f11a6735fd7da9f0fc
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Dec 6 13:52:44 2010 -0300

    Generator now writes the proper variable name on C++ constructor calls.
    
    When a conversion rule is provided for a constructor argument the C++
    constructor, for which the conversion rule doesn't apply, is generated
    with wrong argument names. This commit solves this.

commit 53a4a73c516bbeec546cb20234dad6bd9912fdaa
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Fri Dec 3 16:55:09 2010 -0200

    Write a simpler code to deal with dynamic QMetaObjects.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 07f1fe9dc97e05247043b3e579d94d323a2a48dc
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Fri Dec 3 16:53:26 2010 -0200

    Add subtype init hook.
    
    The hook is invoked every time the user creates a sub-type inherited from a Shiboken based type.

commit a5146ad246af19703671451451564e613e509463
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Dec 1 21:16:40 2010 -0200

    Remove cpp object copier as it was used by anyone and nobody missed him.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Lauro Moura <lauro.neto@openbossa.org>

commit 4954a2e8c95df27168b65519a8b61ce30b8ab0d6
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Dec 1 18:05:33 2010 -0200

    Removed useless stuff from TypeResolver.

commit aebf1341686e1a694a5ad9b24e384ee494683af8
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Dec 1 14:27:39 2010 -0200

    Remove SbkTypeInfo and CppObjectCopier structs, they aren't needed after the fix on qt_metacall.

commit d117950aa36d409140296d7efdfbbfc928722e04
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Dec 1 14:24:37 2010 -0200

    Remove objectDeleter function and use the well known Shiboken::callCppDestructor.

commit 6d2e7d8a5cd7fea0507309107c8b306a44ef2ce0
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Dec 1 14:18:29 2010 -0200

    Remove const version of Converters to avoid hidding generator bugs.

commit 39383ee7bb8c489adf0d251685a9599c44360076
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Nov 29 14:43:53 2010 -0200

    Updated basewrapper.h docs.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 78aa3a49685e0d1775c0a2a7bf447c49db25f654
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Nov 29 14:37:39 2010 -0200

    Add function Shiboken::ObjectType::getUserData(SbjObjectTyoe*)

commit 927a93926b792d83d5205ab7cbb086882c3a0688
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Nov 25 19:38:59 2010 -0200

    Fix shiboken version in doc generation.
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit c4f7eab58b94fdbc934994aca0d0cfff9e8bbe13
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Nov 25 16:49:04 2010 -0300

    Cast PySideSignal object to PyObject before calling Py_DECREF.
    
    This is done because the Py_DECREF macro from Python 2.5 doesn't
    cast the argument to "PyObject*" as 2.6 does. This is a problem
    for PySideSignal objects, for this struct is private, having only
    the forward declaration visible.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit 907842acf4baa9e520431157bf1b0293476d65c3
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Nov 25 15:22:13 2010 -0200

    Fix compilation errors on Windows.
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 6e11fa52dd2d02bb9e4a5cf6aeb1e25e62770ea3
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Wed Nov 24 11:45:23 2010 -0300

    Bump ApiExtractor dependency to 0.9.0

commit ac10a67837433328f6a9ca51475a2eb7e29e4e03
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Nov 24 14:20:44 2010 -0200

    Added BindingManager::visitAllPyObjects function, used to visit all PyObjects with a function.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 2651ec7b04923db3c64ff59fcc5cb9c966d685f6
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Nov 24 14:19:59 2010 -0200

    Speed up hasWrapper function using the find method instead of count.

commit 23de22f194dd1e5dfccce0cc03302af4f4018727
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Nov 23 17:43:51 2010 -0200

    Fix last commit, compre was a fragile and stupid solution.

commit db4316721ebdccf3a782c4888fb01d4407c51b71
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Nov 23 17:43:51 2010 -0200

    Fix value of variable AVOID_PROTECTED_HACK.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Renato Araújo <renato.filho@openbossa.org>

commit fd81c050afca0ff3190e852062837be05017f00f
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Nov 23 15:36:38 2010 -0200

    Fix compilation without protect hack.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit cecb22759c6144c9e28921a18cb5255db9771e28
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Tue Nov 23 15:03:46 2010 -0300

    Fixed generation with use of protect hack.

commit 521cf2b6190a89ecaf19fff925c75bb47b72fa49
Merge: 81a8bd7 605bbf8
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Nov 23 14:56:27 2010 -0200

    Merge branch 'fixapi'
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>
    Conflicts:
    	generator/cppgenerator.cpp
    	libshiboken/basewrapper.cpp
    	libshiboken/basewrapper_p.h

commit 605bbf8d03eaf5c90b1efdb17eabfa66fedc24be
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Nov 23 13:35:42 2010 -0200

    Do not use const and ref when writing converters for object-types, qflags, const ref. value types and enums.

commit 622e6f61a08b8ef31dd996609d69812f53e566b8
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Fri Nov 19 19:04:30 2010 -0200

    SbkBaseType_Type renamed to SbkObjectType_Type.

commit 2a3262852ad7f44648624e1c2f20393fa02019da
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Fri Nov 19 19:01:13 2010 -0200

    Renamed some more internal objects and functions.

commit 04dea49498d185e4be30987e0790c8b45aaef18b
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Fri Nov 19 18:01:23 2010 -0200

    Namespace Shiboken::Wrapper renamed to Shiboken::Object.

commit ea46607ca87ce2233529c8177ab51424337613d2
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Fri Nov 19 17:56:10 2010 -0200

    namespace Shiboken::BaseType renamed to Shiboken::ObjectType.

commit 81a8bd714bf4ea7783277052da932d8a7a909fd1
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Tue Nov 23 11:42:08 2010 -0300

    Fixed generation with AVOID_PROTECTED_HACK.
    
    Fixes bug #476.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Hugo Parente Lima <hugo.pl@gmail.com>

commit 418a56668c8a587530e6bc2a2745b4e385cff5f6
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Tue Nov 23 11:40:19 2010 -0300

    Created debug function on samle bindings.
    
    This function 'cacheSize()' can be used to check how many objects still
    registered on BindingManager.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Hugo Parente Lima <hugo.pl@gmail.com>

commit fb6366565ee8a6718ca72589d0833498285ba048
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Nov 19 18:47:41 2010 -0300

    Fixes SHIBOKEN_PYTHON_INCLUDE_DIR variable for cmake versions lesser than 2.8.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit 1e4ec3e7f694bee931fd9d9af89dcaa405de1d2a
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Fri Nov 19 17:01:22 2010 -0300

    Fix merge mistakes:
        * Replaces PySide::deleteDynamicQMetaObject by
        Shiboken::callCppDestructor<DynamicQMetaObject>
        * Shiboken namespace usage.

commit b2096155a231797afd397acc8908acb691f3c732
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Fri Nov 19 14:30:22 2010 -0300

    Created private pointer for Shiboken Meta Type.
    
    Renamed ObjectType to BaseType.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Hugo Parente Lima <hugo.pl@gmail.com>

commit 36b1807b8c5fe75faf87a593ac0e1d7e9ac8b887
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Fri Nov 19 16:56:22 2010 -0200

    Rename SbkBaseType back to SbkObjectType.

commit e1ea3fe74afca099e7bba884256e0be0e6f7d200
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Thu Nov 18 10:54:10 2010 -0300

    Rewrite parent control functions.
    
    Updated generator to new API.
    Fix bug #462
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Hugo Parente Lima <hugo.pl@gmail.com>

commit 76c2a25f4def623be9c4ab30f2bde36bfed7ae08
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Thu Nov 18 09:25:23 2010 -0300

    Updated some tests to work with new API.

commit 117a65fa1f9300151bb7dc5f33d4210135d615b7
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Nov 18 17:40:02 2010 -0200

    Replaces PySide::deleteDynamicQMetaObject by Shiboken::callCppDestructor<DynamicQMetaObject>
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Lauro Moura <lauro.neto@openbossa.org>

commit 157c00f271b7a7cb963900e7b967070ac0e09c41
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Nov 11 17:58:40 2010 -0200

    Add operator= to AutoDecRef.
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit d5bcf44bc644ed5c5fc983c454b2e4743cf4532f
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Nov 11 17:57:46 2010 -0200

    Do not generate return type check when the return type was modified to PyObject.

commit ed83e5ef62ad4ba04aea50ba1bd10ec4684fd07c
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Nov 10 18:33:00 2010 -0300

    Fix the fix that was previously reverted in d8e2d87f.
    
    Reviewed by Lauro Moura <lauro.neto@openbossa.org>
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit 9d3dfe4077857f1829ecdc6899ac4a383b9c32b7
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Nov 10 20:05:13 2010 -0200

    Added Shiboken::Wrapper::hasParentInfo function.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Lauro Moura <lauro.neto@openbossa.org>

commit f28d985527dd5674db0acbf3009f704b489eb870
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Nov 10 17:23:47 2010 -0200

    Fix the metaObject method written by the generator after the changed in libshiboken.

commit 25b7f82404ea78fe3053cebad52a3404e82bf71d
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Nov 10 16:35:23 2010 -0200

    Changed signature of cppPointer to receive SbkObject* instead of PyObject*.

commit 9b0ebbdba7a3d94611875b368ef1d9abb0d038c5
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Nov 10 16:35:00 2010 -0200

    Added Shiboken::Wrapper::hasOwnership function.

commit c984b7ee0adf8aebbb45f826dd18a6be8d36d5ec
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Nov 10 15:32:48 2010 -0200

    SbkBaseWrapperPrivate renamed to SbkObjectPrivate
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 5c813360b2f647753bfbacaf705504b7710d613c
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Nov 10 15:30:08 2010 -0200

    Remove macro Shiboken_TypeCheck

commit f2a10c2257e40a7f24c457ad45d875f997a2cc5a
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Nov 10 14:45:28 2010 -0200

    Removed macros SbkBaseWrapper_Check and SbkBaseWrapper_CheckExact.

commit 50fae8be6d673c56a10cd414e9f7da1a5151b062
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Nov 10 14:36:07 2010 -0200

    Variable SbkBaseWrapperType_Type renamed to SbkObjectType_Type

commit 7090a14a3412af1d857d3a995dfdb7e575ebf22a
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Nov 10 14:30:42 2010 -0200

    SbkBaseWrapper_Type variable renamed to SbkObject_Type

commit f7ec12bd0547fafd94d114bb78c9ee0e48686043
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Nov 10 14:24:49 2010 -0200

    Rename some internal functions and structs.

commit 5bd16e14f8cfe735762cf7b38f7488af6e36e94d
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Nov 10 14:19:44 2010 -0200

    SbkBaseWrapperType renamed to SbkObjectType.

commit 0316703e8960c6b548e38ad243bdb4fd155b2460
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Nov 10 13:48:01 2010 -0200

    SbkBaseWrapper_TpNew renamed to SbkObjectTpNew, now using C linkage and moved outside C++ namespace.

commit 9016e6ef09c19406d2e57066966eae4d54010728
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Nov 10 11:42:46 2010 -0200

    SbkBaseWrapperType and some other functions used by Python C-API moved outside C++ namespaces.

commit b9ad071fcb2a1fa2f0191815ed7b1f7573e8f01a
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Nov 9 18:57:02 2010 -0200

    Fix camel case of decRefPyObjectlist

commit 3bb009fe0eea00c2d8e294fd45e0a861c9bf19f8
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Nov 9 18:52:40 2010 -0200

    Replace Shiboken::cppObjectIsInvalid by Shiboken::Wraper::isValid

commit 7c099136210ee657a05d3544aacb54e50b4992e9
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Nov 9 18:42:02 2010 -0200

    setCppPointer and getCppPointer moved to namespace Shiboken::Wrapper

commit cc58f2c2b7f80e8b749d3dd0577a9b18902e61bb
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Nov 9 18:16:38 2010 -0200

    Removed macros SbkBaseWrapper_instanceDict and SbkBaseWrapper_setInstanceDict

commit 0949f2b49dcfd9516e4e3e4044a97070533799ad
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Nov 9 17:47:10 2010 -0200

    SbkBaseWrapper renamed to SbkObject

commit f1ad9bf233f1fe88e72d350caaffc5164ce20511
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Nov 9 17:38:21 2010 -0200

    Replaced SbkBaseWrapper_setOwnership by getOwnership and releaseOwnership (both inside Shiboken:Wrapper namespace)

commit 6280785f538dc033e85826bf2525848c75327ea8
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Nov 9 16:47:12 2010 -0200

    Moved Shiboken::SbkBaseWrapper outside Shiboken namespace and added a d-pointer to it.

commit c948d05782056d9b12ab0ccf04fa4e1b30478296
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Nov 9 11:08:59 2010 -0200

    Refactor on sequenceToIntArray.

commit 47006421772b9183d8a6a0fd84ff73f5c35b3f07
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Nov 9 11:07:12 2010 -0200

    Removed deprecated function: PySequenceToArgcArgv

commit d5630195312a4eb107cb6f48aae54038a9ca4681
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Nov 8 17:04:58 2010 -0200

    Create enum python types on the fly, avoiding generation of structs and duplication of many C functions.

commit 95bc879ad706a47c965b2a62dd5b758cbd796b3d
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Fri Nov 5 14:18:54 2010 -0200

    pyenum.{h|cpp} moved to sbkenum.{h|cpp}

commit 1f96f42eb019097ec4f145adce6a4fe342171530
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Nov 10 15:29:56 2010 -0200

    Bump version to 1.0.0

commit 4a21523d46b4aa09d2435e351b0dfb1c95dcee05
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Fri Nov 5 14:02:45 2010 -0200

    Remove unused variables.

commit d8e2d87f8962175f90fea01026e0a6099ad7f93c
Author: renatofilho <renato.filho@openbossa.org>
Date:   Wed Nov 10 12:49:49 2010 -0300

    Revert "Fixed overload decisor sorting to put QStrings after pointers to wrapped objects."
    
    This reverts commit 167959faa575856b48c951fd9cc500049004cf60.
    
    Conflicts:
    
    	generator/overloaddata.cpp

commit 9c6fb1d821065e61f85a59503dea63f4e7b49180
Author: renatofilho <renato.filho@openbossa.org>
Date:   Tue Nov 9 16:09:01 2010 -0300

    Fixed overload functions with QVariant.
    
    Decrease the QVariant priority during the function overload.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 9bb1956c20892af5379a2fa45b2c1e3af306dd25
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 9 15:38:29 2010 -0300

    Removed debug statements mistakenly commited.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit 167959faa575856b48c951fd9cc500049004cf60
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 9 10:08:48 2010 -0300

    Fixed overload decisor sorting to put QStrings after pointers to wrapped objects.
    
    This is a special extension for Qt bindings. Since QStrings accept None
    values the same way object and value types accept, to avoid confusion
    and calling the wrong signature QString must go after object and value
    pointers. This wasn't a problem before, but now QString is a
    primitive-type and the decisor has no access to its implicit
    conversions, and thus can't sort it properly.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit 4120f5e4b8a2781a917d97395b251fbc0bf8c8d8
Author: renatofilho <renato.filho@openbossa.org>
Date:   Fri Nov 5 16:35:59 2010 -0300

    Implemented support to dynamic slots on generated code.
    
    Fixes bug #451.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Hugo Parente Lima <hugo.pl@gmail.com>

commit a97ff930b29f6c4d51fdda0f448d172ceb83654e
Author: renatofilho <renato.filho@openbossa.org>
Date:   Thu Nov 4 17:37:48 2010 -0300

    Fixed code generation for functions virtual with know type
    implementation.
    
    Fixes bug #449.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Hugo Parente Lima <hugo.pl@gmail.com>

commit d77d0948463d31be329c67a4320ab1354219283a
Author: renatofilho <renato.filho@openbossa.org>
Date:   Fri Oct 29 18:55:51 2010 -0300

    Updated code generation to new libpyside files.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Lauro Neto <lauro.neto@openbossa.org>

commit 4e0e1c65ce2eb33ce83b5d6f94ad2ae59e53ca64
Author: renatofilho <renato.filho@openbossa.org>
Date:   Fri Oct 29 16:15:12 2010 -0300

    Updated to new libpyside Signal/Slot namespace.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Lauro Neto <lauro.neto@openbossa.org>

commit 6f6eabfc91d0b034be1b411c451dd1562519252d
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Fri Oct 29 17:05:46 2010 -0200

    Don't use ref. on primitive types when using Converter<T>::toPython.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Renato Araújo <renato.filho@openbossa.org>

commit a53c92a42b29e0c49d28e0cf53f33b9515d78622
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Fri Oct 29 16:31:33 2010 -0200

    Fix injectcode test to work with the newer version of sequencetoArgcArgv.

commit d09decc37b49ca19593131c7fb59486d5cfb1c33
Author: renatofilho <renato.filho@openbossa.org>
Date:   Fri Oct 29 14:03:56 2010 -0300

    Implemented signal instantiation during the getattr function.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 7ac0c10741046f9079b6fdced015140a4846e0c1
Author: renatofilho <renato.filho@openbossa.org>
Date:   Fri Oct 29 14:03:24 2010 -0300

    Created utility function cast on AutoDecRef class.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 5c9f0f811e5d8eac4465b21a2255613aa9f543a7
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Fri Oct 29 15:25:07 2010 -0200

    Fix function PySequenceToArgcArgv to support unicode strings.
    
    Also fix some reference leaks.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Lauro Moura <lauro.neto@openbossa.org>

commit 5348af9f0700715fb4013886178d0915dd3fae80
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Fri Oct 29 10:46:33 2010 -0200

    Bump version and package requirements.

commit 8892aa211cb6c3986480abc251c66a494ada4ab9
Author: renatofilho <renato.filho@openbossa.org>
Date:   Thu Oct 28 17:29:08 2010 -0300

    Fixed typesystem in function where is necessary thread save option.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>

commit 6b4655799df991b784979d9974680208a8766a8c
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Oct 28 15:03:38 2010 -0200

    Uses CPP_SELF_VAR macro and replaces cpp_other by cppOther.
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 6de649a4f272bb98048602738af511d102cd5209
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Oct 28 15:00:59 2010 -0200

    Uses a constant to define the cpp_arg variable, now called cppArg.

commit aee6f385b5ffbed54df2e18ece072a7cc3281768
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Oct 27 15:56:58 2010 -0200

    Simplifies the generated code removing the use of std::auto_ptr.

commit 45f10c2264bef5c25e493bb6f70ef6355a7f94d1
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Oct 27 19:45:19 2010 -0200

    Write copy constructor for Object types when there is one.

commit b146f4117c676a6a65b1e29a09d5f6c86541cd0d
Author: renatofilho <renato.filho@openbossa.org>
Date:   Thu Oct 28 13:46:41 2010 -0300

    Implemented support to dynamic signals created on QML side.
    
    Fixes bug #437.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 016bc9ba8847411cb92ee25a03d50e62f4e9e952
Author: renatofilho <renato.filho@openbossa.org>
Date:   Wed Oct 27 17:11:03 2010 -0300

    Implemented support to conversion without memory allocation.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 4bc7a3822af0476ffc8a86ffac65775c46d6b4da
Author: renatofilho <renato.filho@openbossa.org>
Date:   Wed Oct 27 17:10:24 2010 -0300

    Fixed GilState and ThreadSave code generation.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit b5cf0972d59ba2bf7df99b73a0b2b0c253aae09f
Author: renatofilho <renato.filho@openbossa.org>
Date:   Tue Oct 26 15:40:09 2010 -0300

    Removed unnecessary cast on copy function.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 65e55dba0ff70976e67d8c46699a6ca629ef4bf0
Author: renatofilho <renato.filho@openbossa.org>
Date:   Tue Oct 26 15:38:21 2010 -0300

    Release gil before call C++ function on virtual method.
    
    Fixes bug #423.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit a91a1dad8abaeb71783b9ba26c8d2fb6d2a22eef
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Oct 26 15:10:55 2010 -0200

    Add variable with python include dir to ShibokenConfig.cmake
    
    Reviewer: Lauro Moura <lauro.neto@openbossa.org>
              Renato Araújo <renato.filho@openbossa.org>

commit 633cec7ee29bc130d6af9341a505a2b7377e755b
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Oct 26 13:47:55 2010 -0300

    Added the AVOID_PROTECTED_HACK option to the Shiboken cmake configuration file.
    
    Reviewed by Lauro Moura <lauro.neto@openbossa.org>
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit 9d479c812d4e2e6fc427f96af4ce4f415c8eab0a
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Oct 25 18:25:50 2010 -0300

    libshiboken now sets debug flags for all modules linking against it.
    
    The information was added to cmake and pkg-config files.
    
    Reviewed by Lauro Moura <lauro.neto@openbossa.org>
    Reviewed by Renato Araujo <renato.filho@openbossa.org>

commit 839d7efb8f42e732cfab043ba74384f52502e70b
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Oct 20 16:31:49 2010 -0300

    Fixes libshiboken pkg-config file.

commit 1f7d295c511062f8973a3e9554173752549b0bc6
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Oct 25 16:30:40 2010 -0300

    Updated Shiboken cmake files to provide build type information.
    
    The build type information, contained in the the SHIBOKEN_BUILD_TYPE
    variable, will tell modules linking with libshiboken if
    it was built in Release or Debug mode.
    
    The SHIBOKEN_PYTHON_INTERPRETER variable was also added to the cmake
    Shiboken files, to make it known which Python interpreter (normal or
    debug, in systems where this separation exists).
    
    SHIBOKEN_PYTHON_LIBRARIES variable tells which Python library
    libshiboken was linked against.

commit 7368a0a533c12ba09e7713695415e1f247763883
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Fri Oct 22 19:07:01 2010 -0200

    Added BindingManager::getAllPyObjects method.
    
    This functions returns all PyObjects under the umbrella of BindingManager.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Renato Araújo <renato.filho@openbossa.org>

commit 21cdd2a9adcfb80c0aa5daace04c38b8d8040311
Author: renatofilho <renato.filho@openbossa.org>
Date:   Fri Oct 22 18:39:49 2010 -0300

    Ignore namespace crash on windows.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>

commit ee21e7e6688933d403886d272fe35efd453a8dd0
Author: renatofilho <renato.filho@openbossa.org>
Date:   Fri Oct 22 14:44:11 2010 -0300

    Fixed Wrapper object parent invalidation process.
    
    Fixes bug #432.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 7b2a6342fbb27dce8977cb0c5f385b7798186b02
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Oct 21 18:13:21 2010 -0200

    Fix memory leak when someone tries to register a type already registered.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Renato Araújo <renato.filho@openbossa.org>

commit 05cab011045b73150d3c82d28bc8a30f2ec4f1ed
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Oct 21 18:12:18 2010 -0200

    Removes Converter<char>, because the missuse of it causes memory leak .

commit ca7b986f9b97f3fec3b44224d2e4117ff203fad6
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Oct 21 13:57:34 2010 -0200

    Remove pydict ref leak on pyenum.cpp.

commit 3b4856db47d3786f9aeb1cb2c9174e47c7b5f51d
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Oct 20 18:56:28 2010 -0200

    Fix reference leak when registering enum types.

commit dfa7a3c2caae1e4c162423d9f2bb5d6f63977bcf
Author: renatofilho <renato.filho@openbossa.org>
Date:   Thu Oct 21 13:22:25 2010 -0300

    Updated code generation to new libpyside API.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 4ecf999ebfd00a604de6a8e0859a65f2489263aa
Author: renatofilho <renato.filho@openbossa.org>
Date:   Wed Oct 20 11:44:09 2010 -0300

    Fixed signal register function.
    
    Fixes bug #422.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 20a12c8037e7c44dfac785f8b710682a4af585ca
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Oct 18 16:37:04 2010 -0300

    Updated the overload sorting to handle convertible types inside containers.
    
    The code as it is now will work for containers with wrapped types,
    and will also consider some primitive types implicitly convertible
    for dependency sorting purposes.
    
    One weakness of the current solution is that it doesn't handle all
    possible combinations for containers with multiple types. E.g. for
    Container<T1, T2>, with T1 being implicitly convertible from I1, and T2
    from I2, dependency resolution will take into account
    
    * Container<T1, T2>
    * Container<I1, T2>
    * Container<T1, I2>
    
    but not
    
    * Container<I1, I2>
    
    For the time being every binding is working fine this way, when the need
    arises we can fix it, for now let us not slow down the generation.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit a7aebc0e36f71ef541e3056b334a4e4ab48b3031
Merge: dc5e452 d0a0db8
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Oct 19 17:22:13 2010 -0200

    Merge remote branch 'mainline/1.0'

commit dc5e4520f3551c3d0aff0383f4a199541d83c772
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Oct 19 16:09:42 2010 -0200

    Fix check of return type by python reimplementations of C++ virtual functions.
    
    Use isConvertible function instead of checkType when checking the return value of
    virtual functions returned by python reimplementations when the return value had
    their type changed by the typesystem.
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 2106919936da6d34a1319ad20e283f8cf8fffbce
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Oct 19 15:32:31 2010 -0200

    Write right check type function when guessing the check function for a valid type.

commit c464a4d10b59396115acbd0340fb15f00d71290b
Author: renatofilho <renato.filho@openbossa.org>
Date:   Mon Oct 18 15:28:11 2010 -0300

    Created test for abstract function with not exported type as agument.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 6b57558fefd3a1e3913e8fe386a07da0d8aeedc3
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Oct 18 10:26:53 2010 -0200

    Fix bug#411 - "Incorrect return statement generated in a function that returns a reference"
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 9078b47fcc5fec2d80a242e8a8f494b5b4c4efd1
Author: renatofilho <renato.filho@openbossa.org>
Date:   Fri Oct 15 19:01:58 2010 -0300

    Fixed namespace lookup during the class generation.
    
    fixes bug #414.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit b548f03130cdd2aa7bdcb4bf00f5da8240fc78ee
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Oct 15 17:17:35 2010 -0300

    Added test for overload decisor handling container dependencies.
    
    Explaining with an example. Consider a function called "function" with
    two signatures accepting a list of Point and a list of PointF,
    respectively. Consider also that Point is implicitly convertible to
    PointF.
    
    void function(list<Point>&)
    void function(list<PointF>&)
    
    A list of Point should be checked before a list of PointF.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit d874d137b5062735bbd0fa33b0824d476c0fc127
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Fri Oct 15 16:04:49 2010 -0300

    Fix bug#272 - "__del__ never called by python"
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Lauro Moura <lauro.neto@openbossa.org>

commit ca8b2ee1246853f88eafa05a09684369b6150341
Author: renatofilho <renato.filho@openbossa.org>
Date:   Fri Oct 15 13:36:08 2010 -0300

    Created unit test for unknown class holder.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit d0a0db84cf61855c8920d7fe1643c9a568708b8e
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Oct 11 15:00:46 2010 -0300

    Shiboken::showWrapperMap debug function now shows the refcount of held wrappers.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit d26ecefed858fb548d57f66028f3191b5c298453
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Tue Jul 20 17:57:08 2010 -0300

    Inject code for Point.__reduce__
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 8d21f82291d2a7bc38da95c938450a68c7e7da12
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Tue Jul 20 15:32:58 2010 -0300

    Adding pickling test
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 6deb06937a34e7ef51098336e0541e543d51b8e0
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Tue Jul 20 08:52:22 2010 -0300

    Adding deepcopy test.
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 4478a25b66729490e27460a7fa59ae9bceadd1fd
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Mon Jul 19 17:13:51 2010 -0300

    Initial copy function generator code
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 3ef179b87fb133253181b733e3d1605103632856
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Mon Jul 19 09:25:30 2010 -0300

    Adding value-type copy test

commit 298b9adfc694feac432f4cc7c747c2f3f2952817
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Oct 11 14:59:49 2010 -0300

    Qt signals are added to Python wrappers via the PySide::addSignalToWrapper function.

commit 6aa6cef19beaafa80eecfad4a9f15d619cb80214
Author: Luciano Wolf <luciano.wolf@openbossa.org>
Date:   Fri Oct 8 16:11:28 2010 -0300

    Updating documentation to reflect adoption of wikipages.
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>

commit 9cf34f01876807559e018ad616fc4aa2fd6ddf05
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Thu Oct 7 15:30:15 2010 -0300

    Remove uneeded flag check.
    
    Fixes #405
    
    This check was preventing operations between two
    Flags. Wrong argument type now are handled in the
    Converter calls.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
    Reviewer: Hugo Lima <hugo.lima@openbossa.org>
    Reviewer: Renato Filho <renato.filho@openbossa.org>

commit 5e982a5494a56d53dd3467e438aab6d2a7f08204
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Oct 6 18:53:33 2010 -0300

    Generate code compatible with new properties function names.
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit ed8481cd7accabe1b9a88aa27101bfe13bb87a62
Author: renatofilho <renato.filho@openbossa.org>
Date:   Mon Oct 4 19:16:57 2010 -0300

    Fixed  signal registration when arguments use typedef.
    
    Fixes bug #397.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 4133eda85a6cf5b7e4e1f17c36724cda1d8c42f9
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Oct 5 10:45:25 2010 -0300

    Fix bug#402 - "Exceptions raised in event methods aren't printed to console until termination"
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Renato Araújo <renato.filho@openbossa.org>

commit 6c7e12d9651c1017d64a104b97a7a49631fc0a82
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Oct 4 19:11:27 2010 -0300

    Disable generation of __repr__ function for QObjects.
    
    The Qt implamentation is not usefull to Python developers.
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit b5ce4ccf7c96926ed2eb5e0818ccd6b60e3bb907
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Oct 4 19:11:16 2010 -0300

    Remove trailing whitespaces

commit 8dfabfccc24222815262ffe489bd5729e749384d
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Fri Oct 1 18:28:38 2010 -0300

    Avoid possible race condition when destroying wrappers.

commit ebeaeff37cf52abbc2beed11b27949cc4d632a53
Author: renatofilho <renato.filho@openbossa.org>
Date:   Fri Oct 1 18:52:00 2010 -0300

    Fix function name use on toPytho fucion.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit dc044d7fa9dccd444c4998b2c260a3f2ab54644f
Author: renatofilho <renato.filho@openbossa.org>
Date:   Fri Oct 1 16:49:35 2010 -0300

    Unit test to target conversion.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 645ab74a7d87b845c375cff83c432107a512efc5
Author: renatofilho <renato.filho@openbossa.org>
Date:   Fri Oct 1 16:49:00 2010 -0300

    Implement generation support to target conversion.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 9f05e7d6b625c738f96f16d02f27f93bb1c3fbd9
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Sep 30 17:33:26 2010 -0300

    Fix bug#267 - "Provide human-readable object strings (__repr__)"
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit dcf1b0969fc4e5fc7c92232140ac1d1d751905a2
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Sep 30 10:54:30 2010 -0300

    Shiboken avoids generating code for private enums.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit 385c5799cacd75523a1456cc28c05cade2b11ea5
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Sep 28 19:16:56 2010 -0300

    Optimize TypeResolver::getType function to avoid strcpy and misses on typeresolver hash.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 811a59ebe7be053d0c637310ba197b4e804677ef
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Sep 28 18:25:01 2010 -0300

    All type inherited from Containers are iterables.

commit 43bd25e442557d825b66d979ea9460edede442f4
Author: renatofilho <renato.filho@openbossa.org>
Date:   Wed Sep 29 11:02:40 2010 -0300

    Implement support to object list on ownserhsip functions.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 2177dc5fded5e4251bbc1a3793b5a8e77dbc20fd
Author: renatofilho <renato.filho@openbossa.org>
Date:   Fri Sep 24 16:06:48 2010 -0300

    Created a new rule to parent ownership.
    
    In the new rule if the child object is a Shiboken wrapper class, the object is not invalidade during the parent destructions, the binding manager will wait for object destructor to invalidade the wrapper.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 2e715ed74316704cba426e99ba7fe06ace038ed4
Author: renatofilho <renato.filho@openbossa.org>
Date:   Fri Sep 24 11:25:41 2010 -0300

    Created unit test to unsafe parent (parent created from c++)
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit a94524af29c3d74960935de44a4b20fd4d5eddad
Author: renatofilho <renato.filho@openbossa.org>
Date:   Fri Sep 24 11:24:43 2010 -0300

    Use a auxiliar pointer to do the things faster.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 874d046ce200be7bb0f815a54dcba39909481001
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Fri Sep 24 10:35:58 2010 -0300

    Fix bug#386 - "NUL, SOH, and other characters in generated code"
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit c2ec991687e11c94e3389bc6349b1844af7efe9f
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Sep 23 16:18:19 2010 -0300

    Removed not used doc files.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 681d7d560c45ecb64eb92adfc20b411e87900a30
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Sep 20 19:13:07 2010 -0300

    Updated type system file for test binding to use nested types.
    
    Instead of the awkward:
    
    <enum-type name="Foo::Bar"/>
    <value-type name="Foo"/>
    <value-type name="Foo::Sbrubles"/>
    
    We now use the proper:
    
    <value-type name="Foo">
        <enum-type name="Bar"/>
        <value-type name="Sbrubles"/>
    </value-type>
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit 35bc65d8edc6db5c484e1accafda5787dadfbbf9
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Sep 21 17:21:50 2010 -0300

    Fixes generator to actually use extra includes declared for global enums.
    
    And also for class/namespace enums.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit c8cc5c1c819f23a3f98fbcc05cff3a15714f31d0
Author: renatofilho <renato.filho@openbossa.org>
Date:   Tue Sep 21 15:44:39 2010 -0300

    The CMake configuration for PySide and Shiboken use the PYTHON_LIBRARIES
    variable to link against Python. This is not the correct way to link against
    Python on OS X. Instead of specifying a library or the framework, one simply
    uses the flag "-undefined dynamic_lookup". The symbols will be resolved at
    runtime when the extension module loads.
    
    Fixes  bug #352: Thanks to   Robert Kern <robert.kern@gmail.com>
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit abdb20e1a2f1032b2e467ab13b004ff5c9fbd1a0
Author: renatofilho <renato.filho@openbossa.org>
Date:   Tue Sep 21 13:45:46 2010 -0300

    Move Python debug check to root Cmake file.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 06f1f83e0e8f39cde919bdb8a3441823bc5a5bb2
Author: renatofilho <renato.filho@openbossa.org>
Date:   Tue Sep 21 13:41:55 2010 -0300

    Fixed function use to create wrapper based on QObject.
    
    Fixes bug #360.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 55a8b424067fcf3c6a2cc3f6f9b9708b17553a6f
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Sep 21 11:15:36 2010 -0300

    Add missing CMakeLists.txt file

commit e87fbe13223a7c53404846565e1c74d914e0eab2
Author: renatofilho <renato.filho@openbossa.org>
Date:   Mon Sep 20 18:58:14 2010 -0300

    Use CMAKE_<CONFIG>_POSTFIX  on config files, used for cmake and pkgconfig.
    
    Fixes bug #286.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 231253beff97ce9d81d63ee437b833cc73ed1142
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Sep 20 17:26:09 2010 -0300

    Shiboken generator code moved to the directory generator.
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit a02e6fff64cdfcf2022c73d03d779a2584544842
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Fri Sep 17 14:52:05 2010 -0300

    Do not show shiboken options twice on --help.

commit 9d5a8614ae4a71c5da1d4f9e56dfed1c9dfe58df
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Sep 20 11:22:24 2010 -0300

    Anonymous enums now supported.
    
    Due to their nature anonymous enums aren't considered type by the
    binding generator, rather the enum's values are used wrapped like
    C++ integer constants. Global enum values are added to the Python
    module with "PyModule_AddIntConstant(...)", class related anonymous
    enum values are merely added to the wrapper class dictionary as Python
    integers.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit 4493cee8e2fe680e89f2a730d50646c95c45358f
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Sep 20 11:14:26 2010 -0300

    Added tests for anonymous global and class bound enums.

commit 2b8f4f3d19256f306be1c354eb62a7b367926d43
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Fri Sep 17 20:13:58 2010 -0300

    Fix OverloadData::isSingleArgument
    
    Now returning true *only* when exactly all overloads
    accept exactly 1 argument.
    
    Fixes compilation of QAudioInput and QAudioOutput from
    QtMultimedia. Both have start() and start(QIODevice*) overloads,
    and the previous code was generating 'arg' instead of 'pyargs'.
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 42a3b42f8a00e94dd10e786210739fee7878cf51
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Sep 16 19:12:33 2010 -0300

    Fix bug#339 - "RuntimeError when accessing mousepress event object"
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Lauro Moura <lauro.filho@openbossa.org>

commit 4914a426267dd6f6cf852445f071650b5c0f7971
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Sep 16 16:05:04 2010 -0300

    Add missing CMakeLists.txt file.

commit 091d0efcffa7bb80b653a343d6d41fd8c2fa0b23
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Sep 15 18:24:59 2010 -0300

    Remove reference to specific versions of other projects.
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit c131fb7e27f0116bb5fc212a11e05bf38a061942
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Sep 15 17:36:58 2010 -0300

    Add "doc" target to be able to build the docs out of the source directory.

commit fc0202caa9b0f072ae7185e40555df1a61c9b4ea
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Sep 15 16:18:09 2010 -0300

    Removed outdated and broke Doxygen configuration file.

commit 54ef77809639c5d4599539b9939f28dbd3599513
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Sep 15 15:15:25 2010 -0300

    Fixed copyright year in the generated docs.

commit e792b618ecf6a6bb19046e4faf4b30dcd01794e7
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Sep 15 15:14:50 2010 -0300

    Fixed minor cosmetic issues in the generated code.

commit 56eb6c1f44682f10a7ddc041bcbe0424a552e5c3
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Sep 15 15:14:19 2010 -0300

    Fixed broken sphinx syntax.

commit 039712dfe1bbcbc2af4c831824f206c81d9de9ca
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Sep 15 15:13:56 2010 -0300

    Version bump

commit c793ffb0f0719dcd220f277f9fc0c464a19f9f0a
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Sep 15 10:52:54 2010 -0300

    Fix bug#347 - "Setting properties in constructors gives incorrect results"
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Renato Araújo <renato.filho@openbossa.org>

commit aa1b98fa000f90b9905fcb4a1f1eccefd3851105
Author: renatofilho <renato.filho@openbossa.org>
Date:   Tue Sep 14 18:33:21 2010 -0300

    Generate correct python function definitions.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 58692e4b27957b587a9b8bd5075fbcb0daad7998
Author: Luciano Wolf <luciano.wolf@openbossa.org>
Date:   Mon Sep 13 16:16:40 2010 -0300

    Fix code generation for modified constructors.
    
    Reviewers: Renato Araújo <renato.filho@openbossa.org>
               Hugo Parente Lima <hugo.pl@gmail.com>

commit c3059779d7628fdbb140ed02cdc0cc7ca80e7ad8
Author: Kalev Lember <kalev@smartlink.ee>
Date:   Sat Sep 11 15:21:58 2010 +0300

    Fix up shiboken.pc file generation
    
    Use @var@ syntax instead of ${var} in shiboken.pc.in; configure_file is
    called with @ONLY option in CMakeLists.txt, which means that ${var}
    doesn't get replaced.

commit 76a9acb72693e670b141b2eb57f14cad1d1a1cef
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Thu Sep 9 18:20:09 2010 -0300

    Created cmake option 'ENABLE_VERSION_SUFFIX' to use version on generated files to allow multiples version installed simultaneous.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 167f72f50ea327d2976c29dc526311dae7addf45
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Sep 9 15:43:06 2010 -0300

    Bump the shiboken version due to BIC changes in commits:
    
    1eda671a34eba38e7e74e592e4ae88fa6803bcba
    b4c007c3ee9932b7a384b2b4fcdc8b4be2dfbad9

commit f6a0978ea7be1a482e859883e1437e1478b39b8a
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Sep 9 15:41:33 2010 -0300

    Bump the required versions for ApiExtractor and GeneratorRunner.

commit dfb9d496c469570c355db3daaa3c02952813e5ad
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Sep 8 19:44:54 2010 -0300

    Change the license boiler plates of all LGPL files removing the special exception.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Renato Araújo <renato.filho@openbossa.org>

commit b9b777ec9f1be48d4b1e8f217c5eb7cc60bb773c
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Sep 6 14:22:11 2010 -0300

    Retore thread state in the first line before the C++ call to avoid any other
    Python call.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Renato Araújo <renato.filho@openbossa.org>

commit 5d23ed3a8801b7152e2c3a601e3bb64595d79046
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Fri Sep 3 16:16:26 2010 -0300

    Avoid call functions when an error occurs on argument conversion.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Hugo Parente Lima <hugo.pl@gmail.com>

commit 3fed4510716ad6444c77ecd50466f514e1f03848
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Sep 2 20:31:36 2010 -0300

    Fix bug#320 - "OR'ing Qt alignments doesn't work; adding them does"
    
    Also fixes another bugs found in our QFlags implementation.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Renato Araújo <renato.filho@openbossa.org>

commit 515f5edc0f3f3d8ecbd9b583b55f294d607abdf9
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Thu Sep 2 17:07:07 2010 -0300

    Make the ownership transfer to CPP in native virtual functions.
    
    Fixes bug #304.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Hugo Parente Lima <hugo.pl@gmail.com>

commit 7d38f877d69fe44dbe7c36fb15cd477acccb4500
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Sep 1 14:40:15 2010 -0300

    Fix bug#316 - "QAbstractItemModel.createIndex is broken"
    
    Use SbkNumber_Check instead of PyNumber_Check, because PyNumber_Check returns true
    for all user types.
    
    This commit also disable the generation of _Check macros and replaces all entries
    with Converter<T>::checkType.
    
    Those changes are on the same commit because SbkNumber_Check conflicts with a macro
    generated by "other" binding which binds a type named "Number".
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Renato Araújo <renato.filho@openbossa.org>

commit 2a5ad3e48e5a148bc87bd6dbb74c695dd352a79a
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Aug 31 17:08:32 2010 -0300

    Use the correct path separator on Windows.

commit 821885b67d27844c0ecfe9ef7b753e640e96eb6c
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Aug 31 10:22:32 2010 -0300

    Fix linker problems on MSVC.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Renato Araujo <renato.araujo@openbossa.org>

commit f942fd1bfa1f0c9ec38775f0c5224dd89002d2aa
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Mon Aug 30 19:10:22 2010 -0300

    Impleted auto code for classes derived from list container.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Hugo Parente Lima <hugo.pl@gmail.com>

commit 2ca00ccaa21c99f99da4cd610dee3c1f56d34565
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Fri Aug 27 15:09:15 2010 -0300

    Release the python threads inside of injected code.
    
    Fixes bug #321
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Hugo Parente Lima <hugo.pl@gmail.com>

commit 1eda671a34eba38e7e74e592e4ae88fa6803bcba
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Aug 30 11:19:22 2010 -0300

    Fix the type resolver algorithm.
    
    The new algorithm do the following:
    
    - Try to use type_info on the object the get the object real name.
    - Try to find a type resolver with the name returned by type_info.
    - If a type resolver was found, get the python type.
    - Else, ask binding manager to resolve the type walking on all possible
      subclasses found in the inheritance tree.
    
    The binding manager has a graph representing the class inheritance tree.
    
    Note: This commit break the libshiboken ABI, but not the API.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Renato Araújo <renato.araujo@openbossa.org>

commit 3dc673c7bcbad1613b9d3d6ff3dd4a73be41915d
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Aug 30 11:11:47 2010 -0300

    Add -Wno-strict-aliasing to debug and release builds using GCC.

commit 47ab0d6bb7203c9a33c53d1b6d93f6305413c8e4
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Thu Aug 26 11:47:55 2010 -0300

    Generated original_name with "*" for object classes.
    
    Use base type original_name to derived classes.
    Fixes bug #311.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Hugo Parente Lima <hugo.pl@gmail.com>

commit 7a1ef1d7ec85a19698060497bdf5b58081fcb6d6
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Tue Aug 24 18:28:02 2010 -0300

    Move gilstate implementation to a sparated file.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Hugo Parente Lima <hugo.pl@gmail.com>

commit ff729cca1a0398d847d5b0363e61be98a0c099c0
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Tue Aug 24 17:24:33 2010 -0300

    Doc for new inject code rule.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Hugo Parente Lima <hugo.pl@gmail.com>

commit 2926ebb67df6ebe19cdf5b4961386f425a187f21
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Tue Aug 24 16:43:05 2010 -0300

    Accepts inject conde on virtual functions before call c++ code.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Hugo Parente Lima <hugo.pl@gmail.com>

commit 4dc680453961dd23e6d0df764824f2d52cdedae0
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Tue Aug 24 16:41:06 2010 -0300

    Verify if the arg received on invalidateWrapper, is Py_None or NULL.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Hugo Parente Lima <hugo.pl@gmail.com>

commit 687db5a645e4a32f47b7bc0479950c50aaca6632
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Tue Aug 24 16:40:00 2010 -0300

    Move ThreadStateSaver implementation from the header to a cpp file.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Hugo Parente Lima <hugo.pl@gmail.com>

commit 25dc57003ae47dd6d66cd44156872ff484868bce
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Aug 24 16:46:37 2010 -0300

    Fix bug#308 - "Confusing error for wrong argument types"
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Renato Araújo <renato.filho@openbossa.org>

commit a55f92588474349b8b5623525b359c655e950fec
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Mon Aug 23 11:53:31 2010 -0300

    Included vector header on generated files.

commit f85d49d567874dbccfdd09157435c7c92e38bafb
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Mon Aug 23 11:51:09 2010 -0300

    Fixed CMake config file for libshiboken.

commit df48c2eadf550938062e8e5af53a5372d97bcdb5
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Fri Aug 20 14:33:47 2010 -0300

    Removed generation of #warning in cpp files move this message to generator report.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Hugo Parente Lima <hugo.pl@gmail.com>

commit 9572636c419f2948cbf1814b78137f0b2e9bc93c
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Fri Aug 20 11:31:57 2010 -0300

    Avoid create arguments parser to function without default arguments.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Hugo Parente Lima <hugo.pl@gmail.com>

commit d3deef0368e7918dd0550bd153eb494cae35dfbe
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Fri Aug 20 11:39:28 2010 -0300

    Fixed shiboken library name on windows.
    
    It's now called shiboken.dll instead of libshiboken.dll.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Renato Araújo <renato.filho@openbossa.org>

commit 7424b2743cd1d00740af92965582b9e9c8391960
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Fri Aug 20 11:22:15 2010 -0300

    Fixed config file to work on windows.

commit 5dcd01b645743816d6e7976b446d6f12eb7eaa33
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Fri Aug 20 10:58:39 2010 -0300

    Fixed install dir on windows.

commit b0ae63688bb1299476188ad9f1c022553a25912a
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Aug 19 18:40:36 2010 -0300

    Get ride of PyMODINIT_FUNC, since it doesn't correctly set the visibility rules on Linux.
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 2937fea56a9899627ddf4c796f7445bbbf94b0c2
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Thu Aug 19 18:28:38 2010 -0300

    Fixed tests enviroment vars.

commit 57d17c090802a93aeffc3e85730a950edfd6f448
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Aug 19 16:34:52 2010 -0300

    Fix mem leak in shiboken tests.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Renato Araújo <renato.filho@openbossa.org>

commit f33d2585d59405e47a0b0592b7888caaa87d467f
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Thu Aug 19 12:04:28 2010 -0300

    use MSVC flag to detect the compiler on hash library.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 7701c41779a72d9a6dd8359da33345f4acc93856
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Thu Aug 19 12:02:50 2010 -0300

    Use .pyd to python modules on windows.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit d0c503628bdc5183f7f4792e10a4e105ff795d81
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Aug 19 15:23:20 2010 -0300

    Remove definition of NOCOLOR constant.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Renato Araújo <renato.araujo@openbossa.org>

commit 307e16cc9378a96cb937e44f42bb6a1548c77a99
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Aug 19 15:22:28 2010 -0300

    Fix problems with dllimport/dllexport in some shiboken functions/variables.

commit f056f08a8495f89037292b3c273aba254610ee8a
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Wed Aug 18 19:14:30 2010 -0300

    Fixed module initialization export.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 285c84f27d60df6bf117731fa71a33717d063013
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Tue Jul 20 14:50:00 2010 -0300

    Fixed tests to run on windows.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 3478cb5e2d3ea79c265e10a0a5963c967aa48d79
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Wed Aug 18 18:46:55 2010 -0300

    Include python headers befor use Python macros.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 80f6e98976e522fb5c0056fe848a8c144f23fc05
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Wed Aug 18 18:36:26 2010 -0300

    Fixed libsample export to avoid warnings on windows.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit b50262bc0a325ad8f79907cee6f70218e776c13d
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Wed Aug 18 18:13:39 2010 -0300

    Fix flags used when compiling using MSVC.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit b3d8877b8de94f6ddd166ab0c50acfc43a48574c
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Wed Aug 18 18:11:46 2010 -0300

    Use CMake DEFINES to export symbols.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 224be40cc9c31c381b62f7c1bfdde0f2c3b1fef7
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Wed Aug 18 18:08:00 2010 -0300

    Used the define MSVC in goggle hash to compile with native windows API.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit b4c007c3ee9932b7a384b2b4fcdc8b4be2dfbad9
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Tue Jul 20 14:00:44 2010 -0300

    fixed tests exported symbols.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit da5a88b3b53b4769e77eff1d48cc9a2c7152f6c2
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Tue Aug 17 14:40:19 2010 -0300

    Fixed bug on named args parser.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Anderson Lizardo <anderson.lizardo@gmail.com>

commit 08027d04146bf528ac33a0686aa1a1a81312b9a3
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Aug 16 17:51:41 2010 -0300

    Fix bug 294 - "If the function must return a QFlags<T> and you return T, an exception is throw."
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Renato Araújo <renato.filho@openbossa.org>

commit a61017d620189108ab844ce9398f453f534de5f3
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Mon Aug 16 18:15:28 2010 -0300

    Implement support to signal connection on constructor using named arguments.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit f548708c9643481b023763aa25722a5a25a268e1
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Thu Aug 12 18:04:01 2010 -0300

    Create unit test to function with ambiguous signature in Python side.
    
    Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 6e6e88c719568af17b0dcbd6584f7f1b6c9acc80
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Aug 11 18:21:34 2010 -0300

    Adds support for property setting in QObject derived constructors.
    
    Now QObject properties can be set through named arguments passed to
    their constructors. E.g.: to add a new property-value pair to a newly
    created QObject just do:
    
    obj = QObject(objectName='bar')
    
    this is equivalent to
    
    obj = QObject()
    obj.setProperty('objectName', 'bar')
    
    The constructor way to set properties will only work for already
    existing properties, dynamic properties must be set with the
    QObject.setProperty method.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit 8dcacb90f0d61b47e295daa501fb9c2af97b42f3
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Thu Aug 12 11:40:32 2010 -0300

    Use isValuetype to verify if the class has copy constructor.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 388c5084c66244c3d5753dd2bedcfc4c0135d4c1
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Aug 12 10:02:01 2010 -0300

    Register wrapper class on type resolver.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 3152bd2bd728bac6ef751bb8acd64100c4ca8a83
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Wed Aug 11 17:27:52 2010 -0300

    Created unit test to operator().
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit ecfb5f1a7508cef02789363446c66bacf02ce3fa
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Aug 11 13:07:47 2010 -0300

    Fix debug build when no debug symbols was found for Python libs.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Renato Araújo <renato.filho@openbossa.org>

commit 6485031031d546abbec2b761546e7ed3eb3e1ff1
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Tue Aug 10 14:24:23 2010 -0300

    Use 0 as default value to Valuepointer.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 96b70b2d4c22e97dd88924886454e7cfb0172136
Author: Kalev Lember <kalev@smartlink.ee>
Date:   Wed Aug 4 14:09:14 2010 +0300

    Modified one more test to use assert_(not a == b) instead of assertNotEqual
    
    Similar to 83c272, avoid using assertNotEqual which in Python 2.7 uses
    the != operator; that operator however is intentionally left undefined
    in Point class.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
    Reviewed by Renato Araujo <renato.filho@openbossa.org>

commit 4a73d09fa2480cd6ef84309c0ca7fe295442b472
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Aug 4 16:44:52 2010 -0300

    C++ wrapper code is generated for functions whose visibility was modified to private.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit 5c2551705ae6ecfb7baa1c71cfbc4bdbf012943d
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Aug 4 16:42:57 2010 -0300

    Added function to check if a function visibility was changed to private.

commit d7d9c581c81df322c8db820d58ce5cbf7796c8b2
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Tue Aug 3 19:45:57 2010 -0300

    Bump to version 0.4.1.

commit 647ebad0984a661a30047c18c0761b966ca06b6e
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Thu Jul 29 09:57:22 2010 -0300

    Invalidate remaining instances when shutting down
    
    Instead of using assert(), invalidate the remaining instances
    in ~BindingManager().
    
    This will prevent them of trying to access it again. As the
    program is already finishing, the dangling C++ instances
    will be freed anyway.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
    Reviewer: Renato Filho <renato.filho@openbossa.org>

commit 83c2720bcaf235927a04a12d82b7c0a70711316d
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Aug 3 12:05:04 2010 -0300

    Modified tests using Point and assertNotEqual to use assert_(not a == b).
    
    This is due to Point intentionally not having a != operator and
    assertNotEqual implementation using the __ne__ operator on Python 2.7.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit 001fa6fdcc415f5fbe25774e2391290440e6c21b
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Aug 3 11:58:55 2010 -0300

    Revert "Created operator != or __ne__ in Point class, to avoid  tests errors with Python 2.7."
    
    This reverts commit ce4b5f535f43bd2ff800b709f88c6f9c5be68003.
    
    The unittest.assertNotEqual method has changed in Python 2.7 to use the
    "!=" operator. The Point class was intentionally left without a "!="
    to test if Shiboken would raise a NotImplementedError exception.
    This commit will be reverted and the tests using Point and
    assertNotEqual must be changed to avoid the possible usage of "!=".

commit c7dd52ce9950f179415fcc39ca5899311a1737ad
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Aug 3 11:03:02 2010 -0300

    Added custom code to VoidHolder.gimmeMeSomeVoidPointer().
    
    The said method retuns a void pointer never before seen on the Python
    side. The code injection puts the void pointer in a BaseWrapper object.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit b7e7ac6f77e1128a16c5556baffd5e9b94df74c4
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Aug 3 10:57:05 2010 -0300

    Modified the void* converter to deal with all pointers as coming from Python.
    
    This is the common case, for the situation when C++ returns a never
    before seen void pointer it'll be necessary to write custom code to
    deal with the result.

commit 02503b1952b4c0558081206e31e92ad43886f9b5
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Aug 3 10:53:44 2010 -0300

    Objects of the BaseWrapper type must call a deallocator.
    
    A BaseWrapper object must clean the used resources (e.g. remove the C++
    pointer to Python wrapper mapping) when dying.

commit f2532a7fff116cb825f99b0d6c4032fe054dfde5
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Aug 3 10:47:58 2010 -0300

    Added a case for VoidHolder test that uses a native Python object.
    
    The test stores a native Python object as a void pointer in C++ and
    takes it back.

commit ce4b5f535f43bd2ff800b709f88c6f9c5be68003
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Mon Aug 2 17:39:00 2010 -0300

    Created operator != or __ne__ in Point class, to avoid  tests errors with Python 2.7.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit d4976e7a2db93f6b031c219062b68c7310bd35ed
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Mon Aug 2 16:24:44 2010 -0300

    Bump version due to ABI changes.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>

commit 750c67576ea3356c0dd95d92ca1d667a220f11a8
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Mon Aug 2 14:30:43 2010 -0300

    Uses insert to append items to std::list.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 9cba9a581d503accb04e517d982d734b7795139f
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Thu Jul 29 18:08:42 2010 -0300

    Fixed reference leak on shiboken make tuple.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 6bb544de68ee3af71e27ccead37b10788f16dd8a
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Thu Jul 29 15:43:16 2010 -0300

    Dealloc dict object on wrapper destructor.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
             Luciano Wolf <luciano.wolf@openbossa.org>

commit 419499bbaf4c6e4f55a0083d8ec65749440a38de
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Tue Jul 27 15:58:38 2010 -0300

    Create a new copy from object when convert from PyObject to const ref.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 21460348ae4a73877ecbcc610d5ccd66a390d0c1
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Jul 27 14:24:46 2010 -0300

    BindingManager destructor now asserts if the wrapper map is empty.
    
    The assertion is only used in debug mode. The duck punching test
    was altered to avoid failing when run with debug. Check the
    duck punching test file for a better explanation.
    
    Also added a debug helper method "showWrapperMap" to the binding
    manager, it shows the contents of the C pointer to Python wrapper
    mapping.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit 7bd306347b8d55343e783a340f8bdc723111944f
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Jul 27 11:05:05 2010 -0300

    Fixed build to completely avoid debug symbols when compiling in release mode.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit 1b4094837f983d6273a81daffc5bbffedc82cf2c
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Tue Jul 27 10:07:18 2010 -0300

    Fix char* converter
    
    Fix tests.
    Created warnning about return last ref of python object.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 8a16ff951633c3755cf370228709afaf416b0407
Author: Luciano Wolf <luciano.wolf@openbossa.org>
Date:   Fri Jul 23 17:35:21 2010 -0300

    Fix elasticnodes segfault.
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 2e827e65689b0bc0437c5bfffc6479151a774b31
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Fri Jul 23 10:59:10 2010 -0300

    Fixed memory leak.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 2194250dbb9d8863d70b90e167b4d3527ff832ed
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Jul 20 15:30:31 2010 -0300

    Added a custom cmake file to help finding Python debug provisions.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit 10828a918d387d34cafb8709cea18f02d1af7af2
Author: Luciano Wolf <luciano.wolf@openbossa.org>
Date:   Wed Jul 21 17:01:58 2010 -0300

    Fix error message, avoiding segfaults when dealing with primitive types.
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit b47c32c81fca966740f790992f1b00f23bf49ada
Author: Luciano Wolf <luciano.wolf@openbossa.org>
Date:   Mon Jul 19 16:30:54 2010 -0300

    Fix bug #252.
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 40ffc6fb370024ed7e342736d0e5d37f6b9029ac
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Mon Jul 19 15:43:56 2010 -0300

    Fixed inject code to works on windows.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit ce76d9fa88985aac2460ea6c528183b5a6357ea4
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Mon Jul 19 15:43:30 2010 -0300

    Moved python detection to root CMakelist.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 794d2608f15155ceba9b6a201fccffbc40d68d45
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Mon Jul 19 14:22:51 2010 -0300

    Use correct python library in debug mode.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit cd479852ad2c9d0f5cdfbba9f91952a8cd3b8688
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Mon Jul 19 14:22:15 2010 -0300

    Removed "lib" prefix from shiboken plugin.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit c947f458b3f833135490d8fad8ec6265f6d20c4f
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Thu Jul 15 16:30:48 2010 -0300

    Fixed protected hack generation to work with new libapiextracotr api.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit c67bee3be1198fcab90d45c96ff3cdb3d4a7bb2d
Author: Luciano Wolf <luciano.wolf@openbossa.org>
Date:   Wed Jul 14 15:33:15 2010 -0300

    Fix segfault when dealing with converter(void *).
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 29ca2a7c419ce854779d77091eb22c6bae8c4516
Author: Luciano Wolf <luciano.wolf@openbossa.org>
Date:   Tue Jul 13 14:12:51 2010 -0300

    Enable support for NativePointer type (eg.: void *, QChar *, etc)
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 1b1ff6303514314c199d070b9453d5dc80a21d87
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Tue Jul 13 15:01:47 2010 -0300

    Use 60 secs to default test timeout.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 6988b9cb5d770389123ced8f55cec617b2217ddb
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Jul 13 11:17:47 2010 -0300

    Fixed wrong overload decisor generated code.
    
    The decisor must check for the number of arguments before calling
    Converter::isConvertible method, to avoid passing NULL pointers to it.
    Unit tests were added.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit 4807359481f136145f404421ab8e99dd5f4cfefd
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Fri Jul 9 15:29:30 2010 -0300

    Use list on keep reference map.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>

commit c740aa812e6556747c51f2ac117c7107739aacab
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Fri Jul 9 10:26:50 2010 -0300

    Create referenceMap on demand.
    
    Implemented 'variable-name' support on 'reference-count' tag.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 0984ab74d8861038882b2c2aabbe0c7a2f5da797
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Fri Jul 9 10:25:49 2010 -0300

    Fixed ref leak on list cpp conversion.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 962613407aa0c793ed5b96dfd2cc494c877d952f
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Fri Jul 9 10:53:51 2010 -0300

    Increase required versions of ApiExtractor and GeneratorRunner.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Bruno Araújo <bruno.araujo@openbossa.org>

commit 3a5631f5c67606fea83037eaf6db5aceca327ecb
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Jul 8 17:14:19 2010 -0300

    Remove old code inherited from boost python generator.

commit ecb3ad016b75c5ae235f17a245817bea41aad3c4
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Jul 8 17:13:59 2010 -0300

    Adapt to recent changed in ApiExtractor API.

commit 914449569177af5c294efab6c2225df6bab6eb64
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Thu Jul 8 10:53:41 2010 -0300

    Implemented support to properties.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Hugo Parente Lima <hugo.pl@gmail.com>

commit ab9ad25af6065a71a4b968d250dc479f2585c7f3
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Jul 6 17:42:55 2010 -0300

    Fixes bug#253 - "Segmentation Fault when clicked on ListWidget with TableModel"
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit d83a157f2b973c245c772d9ec27403f8f33cf73d
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Jul 5 18:32:41 2010 -0300

    Fix Converter<bool>::toCpp, to correctly convert number to boolean values.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 8a6790433c874ff6882c7c191582b66e092ae6c5
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Fri Jul 2 14:06:17 2010 -0300

    Store class orignal name to future use.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Hugo Parente <hugo.lima@openbossa.org>

commit 95b44627e2080c25a6fba858b18a68727c064d16
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Fri Jul 2 16:26:57 2010 -0300

    Add support for static fields.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 7a726a6338e80bdfe9a4a926af29176012859f88
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Thu Jul 1 16:15:47 2010 -0300

    Do not write setters for const fields.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit e4d8e78f5390b54338a1229f7e8d9c73a1930f1e
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Jun 28 08:21:41 2010 -0300

    Added test for finding type scope in cases involving inheritance.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit 8c973bffccd02365e855af602dc108aa8ba59b72
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Jun 29 17:46:29 2010 -0300

    Create specializations for createWrapper function when a class inherits QObject.
    
    We need this to call PySide::signalUpdateSource to setup the signals on objects
    originated from C++.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 346b26bf5a37117f2fca587d8add5611910e2736
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Tue Jun 29 10:03:03 2010 -0300

    Fix bug#256 - "PySide does not support signals with containers."
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Renato Araújo <renato.filho@openbossa.org>

commit 72cf2ba5a39e3f2008fbb5e24ed59ff3cb3955fb
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Fri Jun 25 16:31:53 2010 -0300

    Fix overload decisor written on constructors.
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit a553d5f1f8037b553767595f6c8b11d564e6179f
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Fri Jun 25 17:44:40 2010 -0300

    Fixed scope for class fields.

commit 0648daae2a791e2870c79ba1edd6573a41df62a9
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Fri Jun 25 15:19:02 2010 -0300

    Generate cpp file with "using namespace ..." if class inside of
    namespace.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Hugo Parente <hugo.lima@openbossa.org>

commit 4ca6e3d79ac57419d0c89286964445a01f8c2278
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Jun 23 17:56:48 2010 -0300

    Do not export init_CLASSNAME functions.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Renato Araújo <renato.filho@openbossa.org>

commit 9d11979a31f55f91086373764508faaaf15ad73c
Author: Catalin Iacob <iacobcatalin@gmail.com>
Date:   Sun May 16 12:38:15 2010 +0200

    Don't use PyAPI_FUNC in cpp files.
    
    Using it leads to MSVC error:
    C2491 definition of dllimport function not allowed
    This is because dllimport should only be specified when declaring
    a function not when defining it.

commit 516bdb49bbfdbd5ff916c1c5aa3997e830818933
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Wed Jun 23 16:55:46 2010 -0300

    Fix cmake files used by other projects to detect Shiboken.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit d6fe9d4e6b62ceaab016611b7f68bfadcc0d29a5
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Tue Jun 22 18:40:58 2010 -0300

    Implementad generation of objects without namespace if namespace was
    marked to gneration="no";
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Hugo Parente <hugo.lima@openbossa.org>

commit 2f7c24248b6f8b398b6211f3bf6e09767ea913d8
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Jun 21 11:15:30 2010 -0300

    Fix bug: "Debug build fails to run the tests (doesn't work) [_Py_AddToAllObjects: Assertion (...) failed]"
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 102a3c3ae6b55f69a00a08c8a3847b114edf2322
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Jun 21 11:11:45 2010 -0300

    Add unit test for bug#237.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit c20a1028599734352c7491abf539d607a9ff748d
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Fri Jun 18 15:13:40 2010 -0300

    Removed missing local include path for hash library.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit d2175970450b01829c510d745c227e8b68e1f3e6
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Fri Jun 18 14:49:37 2010 -0300

    Find installed google hash library.
    
    Reviewers: Luciano Wolf <luciano.wolf@openbossa.org>,
               Marcelo Lira <marcelo.lira@openbossa.org>

commit 3c8595282a7ba485b464b8114e8f9adb8559eeaf
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Fri Jun 18 11:43:39 2010 -0300

    Fixes the build-tests by including the library postfixes in the program
    calls
    
    Author: Didier Raboud <didier@raboud.com>
    Reviewers: Luciano Wolf <luciano.wolf@openbossa.org>,
               Marcelo Lira <marcelo.lira@openbossa.org>

commit 2da7dfc7264d366ab3de11f784a631880cbf296f
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Jun 17 17:48:15 2010 -0300

    Updated documentation.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit 24edb80bfdcb2869861533eefe4016d2e04f65db
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Jun 17 15:42:09 2010 -0300

    Adds support for named arguments in function calls.
    
    Only C++ arguments with default values will be turned into Python
    named arguments.

commit 8681b1cc239def38edbf53d4bf77e3e6f302f344
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Jun 17 15:35:48 2010 -0300

    Fixes minor error in ternary expression.

commit 7d4d634e03f17c1db90ccc4230d31610d8084d96
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Jun 16 16:32:14 2010 -0300

    Adds a method to tell if multiple Python arguments must be used in the code.
    
    The CppGenerator::pythonFunctionWrapperUsesListOfArguments(OverloadData)
    method returns true if the Python wrapper for the received OverloadData
    should handle with a single or multiple Python arguments.

commit a46578e6edbdc6427439830c94f0e29cf6c6a2f1
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Jun 15 18:05:27 2010 -0300

    Added methods to check if overloads contain any argument with default values.
    
    The hasArgumentWithDefaultValue methods from OverloadData returns
    true if any argument in the overloads or in the single function
    passed has a default value assigned to it.
    A non-static version of this method uses the overloads described
    by the OverloadData object.
    
    Also added the method getArgumentsWithDefaultValues(func) to return
    a list of the function's arguments that have default values.

commit 98350997b78efbdbe35a56a0700ac16541229c22
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Jun 16 15:59:01 2010 -0300

    Modified some methods on OverloadData to accept references to function lists.
    
    The methods originally accept copies of AbstractMetaFunctionLists,
    now they use references instead.

commit 2d7c878bc764d34f4a7649f8adc69f54ebd6eae9
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Jun 15 17:45:41 2010 -0300

    Added method fullPythonFunctionName(func) to ShibokenGenerator.
    
    It accepts an AbstractMetaFunction and returns the full name in
    Python, including the module namespace.
    E.g.: "sample.SimpleFile.exists"

commit c41a765a198af87f59857f251f695d5e2dbca3c3
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Thu Jun 10 18:41:43 2010 -0300

    Created unit tests for named arguments.
    
    Reviewers: Luciano Wolf <luciano.wolf@openbossa.org>,
               Marcelo Lira <marcelo.lira@openbossa.org>

commit dca3033db3d4f3562c838b9ee910482d8c96bc70
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Thu Jun 17 13:55:00 2010 -0300

    Used CMAKE_DEBUG_POSTFIX in plugin name on generatorrunner.
    
    Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>,
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 9214943397eb156d79c6b762460a28d458366995
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Tue Jun 15 19:27:54 2010 -0300

    Create getType function on TypeResolver.
    
    This function allow the programmer discovery if a type is Object or
    Value type.
    
    Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>,
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 8671479384870a0c6f819f333adde85e66213756
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Thu Jun 17 14:20:45 2010 -0300

    Add libother directory to LD_LIBRARY_PATH, shiboken can be compiled with CMAKE_SKIP_RPATH=true.
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 59af9acf0d9d12e34f97b7c6da4b2f4008ecceca
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Wed Jun 16 18:29:33 2010 -0300

    Fix bug#237 - "core dump when call wrong constructor inside of a class"
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 79c71a20c1e6d8830672b1c094ee132b99663de1
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Wed Jun 16 15:36:24 2010 -0300

    chmod -x on all tests.
    
    We can't run they standalone anyway, because they need some env vars to be exported like PYTHONPATH.

commit b22d72848c3ce6a8433399a5e9e3d182ff08c13d
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Jun 15 15:11:11 2010 -0300

    Overload decisor code modified to separate the decision and caller parts.
    
    This makes the generated code more clear and eases future improvements
    as named argument support. There is room for performance improvements.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit 7f433285d4e78a9525d6b72fcaf679a208d45bf3
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Jun 15 15:03:45 2010 -0300

    Added method to OverloadData to return the list of overloads without repetition.
    
    The method OverloadData::overloadsWithoutRepetition() returns the
    overload list of the OverloadData object removing "almost" duplicated
    functions. For our purposes "foo()" and "foo()const" means the same,
    so the constant version is removed.

commit 7e6b26aeeb9d97cbae6ac9fca290b109fdd2e828
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Jun 15 14:57:58 2010 -0300

    Added method to guess scope of function argument default values.
    
    The default values for arguments are simple strings, sometimes during
    binding code generation scope information is needed. The method
    ShibokenGenerator::guessScopeForDefaultValue tries to guess scope
    information for default values.

commit 93262f84164a48800024b61479ff16561ed811fa
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Jun 15 14:49:26 2010 -0300

    Adds a test for function call that triggers an implicit conversion.

commit c2683738a2c42447a03f0a6f369e89447374ab54
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Jun 15 14:47:02 2010 -0300

    Added test function with an integer argument that have an enum as default value.

commit 34c5a73107e90e874e3f392a7effb4c598882190
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Jun 14 20:02:10 2010 -0300

    Shiboken::cppObjectIsInvalid(PyObject*) now returns false when the argument is NULL.
    
    Because NULL objects aren't invalid Python wrappers.

commit 4bab9a89c8a0bd22b1a95e46cf75d9e2dd7f42e1
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Mon Jun 14 15:03:29 2010 -0300

    Fix problems on MacOSX due to uninitialized variables and mixing of int, uint and ulong variables.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit f516832ae986a42e7b01f2bcf01b1f1c76259718
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Fri Jun 11 18:59:38 2010 -0300

    MSVC complains about the missing operator< in Str when we use it on a std::list.

commit e750294ed669ec541a6d297ab4f8906e66204794
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Thu Jun 10 19:57:58 2010 -0300

    Fixed checkType of int and floating point converters.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Marcelo Lira <marcelo.lira@openbossa.org>

commit d1ec4ab5b10d8d2ef125af08bccf467076791815
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Wed Jun 9 16:43:24 2010 -0300

    Automatically register all primitive types on TypeResover.
    
    Reviewer: Renato Araújo <renato.araujo@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 4e58a45ea523118bef5e746edb7383c799d65a27
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Mon Jun 7 18:48:49 2010 -0300

    Added Converter<T>::checkType.
    
    This method is needed because you can not call Converter<T>::isConvertible inside
    a Converter<Y>::isConvertible implementation, otherwise it'll create a 2-step
    implicit conversion.

commit b5e3a03a2f5907fb1cf6673dd0c2c29930f5eb64
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Jun 7 16:40:06 2010 -0300

    CppGenerator now considers user defined default constructors for primitive types.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit 1ce9b9d85814c39e6e5fdf68b71d93a778417221
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Mon Jun 7 10:02:37 2010 -0300

    Bump version to 0.3.3.

commit 8c886a1d9c24d00e52c6dab1e37b96268e588fc3
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Jun 2 14:45:08 2010 -0300

    ShibokenGenerator::filterFunctions method becomes static.
    
    It doesn't use instance information and can now be called by other
    static methods.
    
    Reviewed by Renato Araújo <renato.filho@openbossa.org>
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit c81e079e0ac53c96d87e32e060a9b98f6a563bfc
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Jun 2 18:27:42 2010 -0300

    Avoid crashing CppGenerator if the module entry couldn't be retrieved.

commit e2738233c5bffb1fd0ad0f44c1a930c366329faa
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Jun 2 13:33:59 2010 -0300

    Added support for protected fields when not using the "protected hack".
    
    Tests were also added.

commit 7bc6f1512b1febc026d81917f33b1ea90d23fe24
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Jun 2 07:57:07 2010 -0300

    Fixes code generation for classes with private destructors.
    
    This fix is specific for the cases when the "protected hack" is
    turned off.
    Also added some tests.

commit 47d4a1f545eb7f348e46d39230a73a1b465e57a4
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon May 31 15:25:12 2010 -0300

    Generator improved to handle protected enums without the protected hack.

commit dfdc92fbe5288064987beb097f50a73a63d2546e
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon May 31 10:02:21 2010 -0300

    Adds protected enum test cases.

commit a7ff3eba6db91b02b64fd3eb188c78c66b282c0b
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri May 28 10:33:41 2010 -0300

    Fixes generation of classes with protected virtual destructors.
    
    The problem appears when the binding is generated without the
    protected hack.

commit 28dc75fbf711f90ea96c0f0cbef21bc9fe2f0ab0
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Fri May 28 14:01:43 2010 -0300

    Use external CXX_FLAGS on compilation flags.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>,
              Marcelo Lira <marcelo.lira@openbossa.org>

commit e6071345414a61032c6dac2928703c3f500ae7fb
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Fri May 28 11:02:48 2010 -0300

    Disabled GCC optimization flags by default.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>,
              Marcelo Lira <marcelo.lira@openbossa.org>

commit ba2f7e3391bd05d79f861d14bf34ebb0205d78e4
Author: Luciano Wolf <luciano.wolf@openbossa.org>
Date:   Wed May 26 10:46:16 2010 -0300

    Fix Shiboken version number to generate documentation.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
              Renato Araújo <renato.filho@openbossa.org>

commit 440715431fb1abae0a089eaeae76df0686558097
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Wed May 26 19:28:08 2010 -0300

    Fixed declaration of class SimpleFile.
    
    Move FILE member to internal structor to avoid errors on compilation of
    debian PPC.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>

commit 666a4deb3be66237800145ba0ad9f894575f044d
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Tue May 25 19:12:21 2010 -0300

    Fixed use  of constructor for code snip.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>,
              Marcelo Lira <marcelo.lira@openbossa.org>

commit cbd2e80d0351fa19ee1ad67f9516fa0e975fc561
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Mon May 24 15:08:14 2010 -0300

    Fix segfault in function return modification.
    
    Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>,
              Luciano Wolf <luciano.wolf@openbossa.org>

commit b8b2278c78a42962c0158cda2c0427c27e3be09b
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Fri May 21 16:32:38 2010 -0300

    Cosmetic changes.
    - Don't use stream operator on macros.
    - Avoid use of INDENT << INDENT.
    - Rename some variables on generated code to follow our coding style.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
              Renato Araújo <renato.filho@openbossa.org>

commit 980a1a15f6cc34af58c121cbdbad2e40c878617a
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Thu May 20 10:52:46 2010 -0300

    Add a call to PySide::initQtMetaType for every type when the pyside extensions mode is on.
    
    Reviewer: Renato Araújo <renato.filho@openbossa.org>
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 7bbe60a475322395eb7522a9b2fbee6682a47818
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Wed May 19 18:49:02 2010 -0300

    Moved creation of MetaObject before injection code on constructor.
    
    Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>,
              Luciano Wolf <luciano.wolf@openbossa.org>

commit b71a7511d8b76922b738c0f8102a85d27b673b8e
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Tue May 18 11:40:04 2010 -0300

    API fixes.
    
        * Export enums without macro
        * Declare virtual destructor on all classes with virtual functions
        * Fix extern "C"  declaration scope
    
    Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>,
              Marcelo Lira <marcelo.lira@openbossa.org>

commit 960774e63afe0a9386383c71c4831fab7c42e790
Author: Luciano Wolf <luciano.wolf@openbossa.org>
Date:   Mon May 17 14:13:26 2010 -0300

    Export signals to the generated cpp files.
    
    Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>,
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 226144304f75e749424a9f7ae2dc9a566c3cfc4e
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Fri May 14 15:16:22 2010 -0300

    generate code necessary to register signal and slot.
    
    eviewer: Hugo Parente Lima <hugo.lima@openbossa.org>,
              Luciano Wolf <luciano.wolf@openbossa.org>

commit fc7800974e6a9830ebb4fc583763b038a63ae231
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Wed May 12 17:18:02 2010 -0300

    Replaced current generated code to DynamicQMetaObject to new way, to
    allow collect PyType info.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>,
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 2351a7009b83beadb12c75210278684a5b08b362
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Mon May 10 11:44:11 2010 -0300

    Created userdata on Python type object.
    User type userdata to store metaobject information.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>,
              Luciano Wolf <luciano.wolf@openbossa.org>

commit e3f3c1007a435e647eb0ee026559b9a64b44da9e
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Fri May 7 10:09:10 2010 -0300

    Register values types as object types too.
    
    Fixes bug #121.
    
    Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>,
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 7271b442d9393add8a3da3e66e5462ad553c87c6
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Tue May 4 18:47:05 2010 -0300

    Bump to version 0.3.2

commit d269b0d39f370735abe37a2466e2be97dd94af2f
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Tue May 4 11:21:53 2010 -0300

    Updated git-archive use to keep compatibility with git version 1.6.

commit 409358b63cde1e287b69888c7d27f2ad3482e16a
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Tue May 4 11:08:14 2010 -0300

    Fix SONAME, as proposed by Didier Raboud.

commit 6546f3a0ce260167a6202be007976bf6a192a406
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Tue May 4 11:10:48 2010 -0300

    Bump version to 0.3.1.

commit 7a4e7f84b5822a6aca1d1d773c3a2df326111aac
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Mon May 3 18:53:12 2010 -0300

    Created file .gitattributes.

commit ab1cfe757ef719ded786f2d4d1e6a06132e1f228
Merge: 425fd9e 29ad9f3
Author: Luciano Wolf <luciano.wolf@openbossa.org>
Date:   Mon May 3 17:24:55 2010 -0300

    Merge branch 'websiteupdate'

commit 29ad9f3baf3540a82c008d66373e7e8534aff5a6
Author: Luciano Wolf <luciano.wolf@openbossa.org>
Date:   Thu Apr 29 15:14:05 2010 -0300

    Update shiboken documentation.

commit 425fd9ef6e65aa1c951e761d33ef1cbcd3571c22
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Fri Apr 30 10:49:52 2010 -0300

    Added tests for user added functions declared inside namespaces.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
    Reviewer: Renato Araújo <renato.araujo@openbossa.org>

commit 60c2c6adecf05648e2938995f7f5c6969303d0ab
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Fri Apr 30 10:07:17 2010 -0300

    Fix bug #212
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
    Reviewer: Renato Araújo <renato.araujo@openbossa.org>

commit d402db5680452241a5b85f7a4fd7db9bcc9ddbb8
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Thu Apr 29 18:41:50 2010 -0300

    Adding test for #212 - Overloads with enums

commit 902c70b6f34c6c712d867047d2e58ac41864c0be
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Thu Apr 29 11:21:42 2010 -0300

    Use translateTypeForWrapperMethod for all types.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
    Reviewer: Renato Araújo <renato.araujo@openbossa.org>

commit 6553c81c39d5c2c6cbea2b6350052493b388419c
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Thu Apr 29 11:20:36 2010 -0300

    Removes random pasted code?

commit fac083e1a889da4e3c65b3dc5db536da3252eb95
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Thu Apr 29 11:19:44 2010 -0300

    Known what flag to use on PyBuildValue when a container is used.

commit e34d19b113b6460560de61e5ba40068f91b991ef
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Thu Apr 29 09:02:02 2010 -0300

    Use qualified C++ names on multiple inheritance helper functions.

commit fa4b91e8de101ffb63dcfee6ae95a36e5755fb77
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Thu Apr 29 11:10:23 2010 -0300

    Fixed refcount leak on virtual functions args.
    
    Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>,
              Luciano Wolf <luciano.wolf@openbossa.org>

commit 55e4336840093a118da89602b43b91f36a115344
Merge: 4939c25 da4915f
Author: Luciano Wolf <luciano.wolf@openbossa.org>
Date:   Fri Apr 23 15:33:05 2010 -0300

    Merge remote branch 'luck/fixprivctor'

commit 4939c254ad0710783bc8cc1ce51a9228990ad5e2
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Thu Apr 22 17:51:10 2010 -0300

    Fix problem when 2 globals functions with the same name were declared in different headers.
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
    Reviewer: Renato Araújo <renato.araujo@openbossa.org>

commit 842677f082fc2f08a36d17541993aa39605f8b8f
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Fri Apr 16 19:48:24 2010 -0300

    Do not delegate inner class initialization to the enclosed classes.
    The same applies for namespaces, so all classes are directly initied in
    init_MODULE function. This solves some bugs regarding class dependencies
    and their initialization order.

commit ffbe891de37f48aa3ae8210e306d7e10adf0df7d
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Fri Apr 16 19:44:28 2010 -0300

    Add namespaces to the array of type indexes.

commit 3b75837ab1250e9cd2edde24c0e36c19ede7baf8
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Fri Apr 16 19:42:11 2010 -0300

    Remove generation of unused code.

commit 3b2ea763f95723e33105accf7a3fd0535cb67f85
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Fri Apr 16 16:50:00 2010 -0300

    Use qualified class name when callign a method like self->ClassName::method().
    
    This fix some problems compiling bindings for classes under C++ namespaces.

commit 5c59d232ecd1c03f920a11cd899e0699fc70c96b
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Fri Apr 16 16:09:52 2010 -0300

    Added support for enums inside classes inside namespaces.

commit ee42bc70bf41683d99a6862af22a1f4b3e006311
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Fri Apr 16 15:36:20 2010 -0300

    Write converters for classes inside namespaces.

commit d69b148ea0666e55fa283038287328699eb86bc4
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Fri Apr 16 15:22:02 2010 -0300

    Minor tweaks in global header generation.
    
    Also uses FileOut class to write the file, so the file is only written if needed.

commit 735a1c4fd5a1af96fb26793a707c4151094bae9c
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Fri Apr 16 14:37:01 2010 -0300

    Add test for classes and inner classes inside namespaces.

commit 541a47b1c003cfc9eaec685918ad54a463f202c2
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Fri Apr 16 14:36:13 2010 -0300

    Add declaration of global functions on sample typesystem.

commit 63bb4a282c30d7ceecf4f23465db48524a20ebf7
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Wed Apr 14 14:15:55 2010 -0300

    Add include headers of global enums.

commit 068ac86d025006256aa1edfcccf4304bcd280779
Author: Carlos Goncalves <mail@cgoncalves.info>
Date:   Wed Mar 24 23:44:39 2010 +0000

    Do not build tests if explicitly wanted to. Default is to build.
    
    The majority of users don't need tests built. This will reduce build time
    significantly, and packagers will be thanked for it. To not build tests append
    -DBUILD_TESTS=False to cmake parameters.
    
    Reviewer: Anderson Lizardo <anderson.lizardo@openbossa.org>
    Reviewer: Hugo Parente <hugo.lima@openbossa.org>

commit b24af354ea6f05253150179467aa77e7c999611e
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Tue Apr 20 19:56:45 2010 -0300

    Fixed argument policy propagate.
    
    Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>,
              Luciano Wolf <luciano.wolf@openbossa.org>

commit da4915fd1ddfd1e04a6ef21b0117d83fc7fe2d5d
Author: Luciano Wolf <luciano.wolf@openbossa.org>
Date:   Wed Apr 14 19:14:21 2010 -0300

    Support to "only private constructor available" case.

commit f0f1aa01139a073430eb2c5feb767dedc45d3b4f
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Tue Apr 13 17:39:41 2010 -0300

    Fix memory leak when calling methods with some caracteristics.
    
    To leak memory you need to call a method which the C++ version have one or more
    argument passed as reference, so in python you pass a implicity convertible type.
    
    E.g.: the method expects "const QString&" and you pass a Python string which will
    be implicitly converted to a QString, the memory used by this implicitly generated
    QString leaks.
    
    Reviewer: Anderson Lizardo <anderson.lizardo@openbossa.org>
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>

commit 22ca04e79698d7cd630134dab0e497ae4efa624e
Author: Thomas Berg <merlin66b@gmail.com>
Date:   Sat Apr 10 16:39:04 2010 +0200

    Remove export macros from inlined classes.
    
    The GilState and ThreadStateSaver classes are purely inline,
    and should not be declared with dllexport/dllimport macros. The
    dllimport macro forces MSVC not to inline the classes in client code,
    which causes linker errors, since the symbols are not included in the
    shiboken dll.
    
    Reviewer: Hugo Parente <hugo.lima@openbossa.org>
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>

commit 25c3249b514a3311337aadf8d29d600591a28d0d
Author: Thomas Berg <merlin66b@gmail.com>
Date:   Sun Mar 21 03:02:22 2010 +0100

    Add missing include for MVSC.

commit f1286fb409867f5844954b53b0e86b8490267263
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Thu Apr 8 14:53:34 2010 -0300

    Unit test for multiple derived classes.

commit 4623048983f0c230c47909545cb457018d97951b
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Thu Apr 8 19:19:45 2010 -0300

    Remove warnings about "deprecated conversion from string constant to 'char*'".
    
    These warnings are due to the Python C API using a char* as parameter when
    it should const char*.
    
    Reviewer: Anderson Lizardo <anderson.lizardo@openbossa.org>
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>

commit 3b61b201210760c922a293f79f5904ba51cda4e2
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Wed Apr 7 18:01:34 2010 -0300

    Remove extra blank spaces added in generated code.
    
    "return Foo()       ;" becomes "return Foo();"
    
    Reviewer: Lauro Moura <lauro.neto@openbossa.org>
    Reviewer: Anderson Lizardo <anderson.lizardo@openbossa.org>

commit 62c909a374789f16ad97014464f91821f714cea6
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Wed Apr 7 17:31:22 2010 -0300

    Better error messages when reimplementing virtual methods.

commit 0650666ccfe1ac83b20a4ffffa1d8b61669c2dd8
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Thu Apr 8 14:26:46 2010 -0300

    Add another test case to multi_cpp_test.py

commit f06b4c2dd7b07482c5c465935fccfb56a7f3285b
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Thu Apr 8 17:29:56 2010 -0300

    Adding test for mixed Python/C++ mult. inheritance
    
    Reviewer: Bruno Araujo <bruno.araujo@openbossa.org>
    Reviewer: Anderson Lizardo <anderson.lizardo@openbossa.org>

commit a58bd1e5072e84882b13d10da9e051cb8eede5ed
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Wed Apr 7 18:44:49 2010 -0300

    Adding multiple inheritance + virtual method test
    
    Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
    Reviewer: Anderson Lizardo <anderson.lizardo@openbossa.org>

commit b312f591f757af4616c87e5c5cc477150cd032ca
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Apr 5 18:25:42 2010 -0300

    Only convert None to a null pointer when there aren't conversions defined for it.
    
    Reviewer: Anderson Lizardo <anderson.lizardo@openbossa.org>
    Reviewer: Bruno Araújo <bruno.araujo@openbossa.org>

commit 71f54720342ad64826fa469c18e22ec7bcde0b4d
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Apr 5 18:24:43 2010 -0300

    Small cosmetic changes to the generated code.

commit 140eab5f0afaaad6f0f1c3ccec507692cf68ce13
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Apr 5 16:58:36 2010 -0300

    Fix crash caused by a None type passed as argument in comparison functions.

commit 2f9545f876f13cf53d795c488d04dd4cdfd654af
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Apr 5 16:57:35 2010 -0300

    Add extra options for ShibokenGenerator::writeBaseConversion.

commit bc4b77ef8cc4f17973d416c44521c65b66bc2bc7
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Apr 5 16:55:05 2010 -0300

    Added unit test for crash with references, None types and comparison functions.

commit 72af00dc0491b5c2f14bf0fd3c4d2c5e3fdf4c71
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Apr 5 16:54:10 2010 -0300

    Do not segfault when a null pointer is passed to Str constructor.

commit 8752f1655bbd65cd5588fa6246c1fe274e2a0f5e
Author: Hugo Parente Lima <hugo.pl@gmail.com>
Date:   Mon Apr 5 16:53:29 2010 -0300

    Do not write Py_RETURN_FALSE twice.

commit 319e5f2467e8682865f1206ae4ce4b3e2bdff147
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Apr 1 18:10:37 2010 -0300

    Added enum meta type, this will ease you to known if a PyObject is a Shiboken enum.

commit 9a5e72d08f908183d7bf8abcb3546cf509f9362d
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Mar 31 16:25:20 2010 -0300

    Added flag is_user_type to identify types created by the user which inherits binded types
    from binded types.

commit c6d32c0339749257ac1b97a48f3c8fdd6f10e50c
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Mar 30 14:44:24 2010 -0300

    libsample's Point extended with a reverse operator defined in libother.
    
    The libother's Number class now defines a multiply reverse operator
    with libsample's Point class. Tests were added to check if the
    generated binding correctly calls Number.__rmul__ method with
    Point as argument.
    
    Reviewed by Anderson Lizardo <anderson.lizardo@openbossa.org>
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit 7c7d35f56293f4b7d7ce000bc03bab6f4d9994be
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Mar 30 14:42:44 2010 -0300

    Improved the code that calls reverse operators added in other modules.
    
    The previous generated code were generated only for shift operators
    (<< and >>), this version works for all binary operators.

commit 72647558891dff9d80aa9013f3bd6a82fe53753e
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Mar 30 14:37:23 2010 -0300

    Extended extended reverse shift operator test.
    
    Just added the basic case of "Collector << ObjectType".

commit 60b8cc95b2ef28d7e253b813f0db0d31cb8ae845
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Mar 30 11:47:08 2010 -0300

    Version bump to 0.3.0 due to many ABI changes.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
    Reviewer: Anderson Lizardo <anderson.lizardo@openbossa.org>

commit 1262d40cefc7fdfce799871160473fdaf5bfa553
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Mar 29 19:32:46 2010 -0300

    Do not install all headers, just the necessary ones.

commit e111bc2f3398d6855dc5e4309d5e45d85d6aae63
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Mar 29 18:38:09 2010 -0300

    SbkBaseWrapper_Dealloc_PrivateDtor renamed to deallocWrapperWithPrivateDtor.

commit 1ef34b1c56ab65bdc572cac4728dfa3dec5456ca
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Mar 29 18:24:34 2010 -0300

    SbkBaseWrapper_clearReferences not exported anymore.
    So it was moved to basewrapper private header.

commit b634bc0b55e940ed5ad014dcf1245c91f06f52ba
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Mar 29 18:20:01 2010 -0300

    SbkBaseWrapper_keepReference renamed to keepReference.
    
    The huge prefix was removed because we are already under Shiboken namespace.

commit 1da0a532711cfd3165d5c3d2723fa715c4e31175
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Mar 29 18:13:45 2010 -0300

    Class Shiboken::ParentInfo doesn't need to be exported.
    
    It was moved to basewrapper private header.

commit c0c093d485798aec96ea7a7230c0639797cd9830
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Mar 29 17:47:02 2010 -0300

    Add support for multiple inheritance involving more than one C++ object.

commit 6046687f8f78e1b674e7b4265ce5fb93dce078eb
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Mar 29 18:08:42 2010 -0300

    Removed "Shibo" prefix from ShiboParent and ShiboChildrenList.
    
    We are under Shiboken namespace, so there is no need for yet another prefix.

commit 8af03b6247eb8620ebc91bed8006206a70e24d79
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Mar 29 17:54:04 2010 -0300

    Move all python2.5 compatibility code to a separate header.

commit e5d554bb614ab0c1a9c057d2d191cb62b3355a82
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Mar 29 17:34:57 2010 -0300

    Use PyTuple_GET_SIZE instead of PyTuple_GetSize.

commit ddd02b6aaf1de46005f7387d5f64f4edde6af7d8
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Mar 29 17:32:27 2010 -0300

    SbkBaseWrapper_New gets a non-const void pointer instead of a const one.
    
    The motivation is simple, we will change this pointer a lot, so it must not be const.

commit d3b8a53760ba7c768aaeb547ea541f0806e6e999
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Mar 29 17:22:40 2010 -0300

    Use a non-template function for Python object deallocation.

commit b0f8a5c519297bff918c864e76a3bc66e51980c9
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Mar 29 17:14:34 2010 -0300

    Added some simple tests about multiple inheritance from two C++ objects.

commit 83f06bf7d0f5b6f32bbb652973f11b6eb60cd2ba
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Mar 29 17:08:27 2010 -0300

    On setParent, when the child is a sequence, do not always call setParent for all elements.
    Only do it if the sequence is a native Python sequence.

commit 669a4c45eb61d769bc46c976e2b0c50aed25e80e
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Mar 25 20:04:02 2010 -0300

    Add std::ostream& operator<<(std::ostream& out, PyObject* obj) to create better and easier debug messages.

commit 42276efa04d94d79b0b98d070550e95f67870ae3
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Mar 24 20:30:01 2010 -0300

    Fix setParent function when the child is a sequence object.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
    Reviewer: Anderson Lizardo <anderson.lizardo@openbossa.org>

commit 306a4e241ad54ccb96e85e4d5bd532eff83a8a1f
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Mar 26 15:54:27 2010 -0300

    Fixes type casting on generated copy constructors.
    
    If a C++ class "A" with a public copy constructor has a generated C++
    wrapper, the Python wrapper constructor should cast the given argument
    that comes as "A*" to "AWrapper*" before calling
    "AWrapper(const AWrapper&)".
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>
    Reviewed by Lauro Moura <lauro.neto@openbossa.org>

commit 817e90dab1c2727bf4e5b96fdf1ba8a39dfd0736
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Mar 24 17:48:35 2010 -0300

    Adds test case for libsample's Size class copy constructor.
    
    Also fixes samplebinding type system indentation.

commit 03525843adab2fceda8c1e3aa2d9f1ad72bcda89
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Mar 24 17:44:02 2010 -0300

    More descriptive warning message on OverloadData::sortNextOverloads().
    
    Also fixed some typos and imprecisions on comments.

commit bfa9fa8a904b5759e0b1b967e29fc0820f25eaec
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Mar 24 14:10:56 2010 -0300

    Add SOVERSION to libshiboken
    
    Reviewer: Anderson Lizardo <anderson.lizardo@openbossa.org>
    Reviewer: Lauro Moura <lauro.neto@openbossa.org>

commit 5a139c46996ba2ee5459afc64263ebd7867aa50f
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Mar 23 17:30:55 2010 -0300

    Shiboken generator and libshiboken now share the same version number.
    
    Version bumped to 0.2.0.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
    Reviewer: Lauro Moura <lauro.neto@openbossa.org>

commit 519344814bcedf55b6e3073b80939fc8ec9370db
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Mar 23 16:55:46 2010 -0300

    Changed routine to create source packages.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
    Reviewer: Lauro Moura <lauto.neto@openbossa.org>

commit 1cd5adbb53161e3fbe7e016ffb580c81b5ec8205
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Tue Mar 23 16:48:43 2010 -0300

    Small fixes in documentation
    
    Reviewer: Hugo Lima <hugo.lima@openbossa.org>
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>

commit e253f00a604ffad4398173bea2916ca4d28ae1c4
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Tue Mar 23 16:48:10 2010 -0300

    Adding basic compile information

commit 43bc4ffc096abf7695c1b1051793744a15a86512
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Mar 23 16:03:23 2010 -0300

    Remove duplicated definition of libshiboken_VERSION.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
    Reviewer: Lauro Moura <lauro.neto@openbossa.org>

commit 26c960fc8e893a4edc655d8548a5ec56f7262bc4
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Mar 23 12:47:33 2010 -0300

    Fixes Converter<void*>::toPython method.
    
    The void* converter transforms a C++ NULL pointer in a Python None.
    An unit test for this case was added as well.
    
    Reviewed by Anderson Lizardo <anderson.lizardo@openbossa.org>
    Reviewed by Bruno Araújo <bruno.araujo@openbossa.org>

commit a38c294732542b8d25ca1a34856c2ffa4fa2b1ac
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Mar 23 10:43:25 2010 -0300

    Enum's __invert__ method must use 'self' argument.
    
    Reviewed by Anderson Lizardo <anderson.lizardo@openbossa.org>
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit a0a406b06c46f3f8f678e57807037d7a8d34d08f
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Mar 23 10:42:48 2010 -0300

    The __not__ method is not generated any more since it is not being used.

commit fc635bdc0a32888745d4428e6e033da7a9afbc7c
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Mar 22 17:22:37 2010 -0300

    Adds tests to type system modifications regarding reference to pointer type.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>
    Reviewed by Lauro Moura <lauro.neto@openbossa.org>

commit 60b44f86deb16f925dc5fac4602c638c47cbc614
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Mar 22 17:07:57 2010 -0300

    Fixes virtual method writer to handle modification to return type.
    
    No code is generated for return value conversion on virtual method
    callers if code is provided to handle said conversion via code injection
    or custom conversion rule.

commit 53927d41dd236d21e58d2c88371880ebbacf1fef
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Mar 22 17:05:45 2010 -0300

    Fixed virtual method callers to consider modifications to return type.
    
    Type modifications done to the value expected to be returned by a Python
    override of a virtual method are now handled properly.

commit c5ad7e927b7a27f0c38d547fe4d6d66540bc4f75
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Mar 22 17:03:21 2010 -0300

    Updated ShibokenGenerator::injectedCodeHasReturnValueAttribution.
    
    The method now checks native code injections instead of only target
    language code.

commit 2d01f9d633e74718669bc40e9789ed513dfc8b59
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Mar 22 17:00:31 2010 -0300

    Converter<T*>::toCpp specialization now converts None to NULL pointer first.
    
    With the recent changes to Converter's behaviour, in particular to
    isConvertible method, Converter<T*>::toCpp must deal with Py_None
    values first.

commit c8ee3423948143cf1123586e6a95ebaa5578dc14
Merge: a50c2a8 fb5d06e
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Mon Mar 22 16:23:58 2010 -0300

    Merge branch 'operator'

commit a50c2a87185d0caeada88a658547c58f87a9d0bb
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Mar 22 15:00:03 2010 -0300

    Fix pkgconfig libdir variable with lib64/ or lib32/ directories.
    
    Reviewer: Bruno Araújo <bruno.araujo@openbossa.org>
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>

commit 4ffdd19f47f5f159cae856695d9528b23ce62eae
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Mar 22 11:36:23 2010 -0300

    Fix CppGenerator::writeMinimalConstructorCallArguments when the class has non-primitive
    types with default values.
    
    Reviewer: Bruno Araújo <bruno.araujo@openbossa.org>
    Reviewer: Anderson Lizardo <anderson.lizardo@openbossa.org>

commit fb5d06e1fed8942ffc934f2ae77c9464e0f8ad40
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Thu Mar 18 15:27:57 2010 -0300

    Make sure reverse shift operators are called
    
    Solves #119
    
    Reviewer: Bruno Araujo <bruno.araujo@openbossa.org>
    Reviewer: Anderson Lizardo <anderson.lizardo@openbossa.org>

commit 50e58a81949c32c3154f5bd65fc68f2b3f8d7d26
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Thu Mar 18 17:39:20 2010 -0300

    Adding greedy method to Collector
    
    This method will somehow conflict with the external
    operator in libother OtherObjectType

commit d4e41a5795d74d8ad55069374c34d2dc0a4c33f6
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Thu Mar 18 17:20:21 2010 -0300

    Adding OtherObjectType to libother
    
    Used in external reverse operators defined in other modules.

commit 60e06714df272ceac68e7e4c46116cd11e6f8eaa
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Tue Mar 16 19:54:51 2010 -0300

    Fix SbkBaseWrapper_Check cast

commit d96d5df9b8d3f5caaa66a7f75f2f8fe1a1395159
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Mar 22 14:42:32 2010 -0300

    Fix error message for containers, replacing QList by list, QHash by dict, etc.
    
    Reviewer: Bruno Araújo <bruno.araujo@openbossa.org>
    Reviewer: Anderson Lizardo <anderson.lizardo@openbossa.org>

commit b8de1873b727e57ce627a3826e2fc7c3874a847d
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Mar 19 12:04:00 2010 -0300

    Adds a test for a method with modifications and custom conversion rules.
    
    The test function does nothing in fact, it is there just to
    cause a situation that could cause a compilation problem if
    the generator is not working as it should. In other words
    if it compiles, then it is ok. :)
    
    The added method was a dummy clone of a similar QPixmap.loadFromData
    method signature that prevented QtGui from compiling properly.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>
    Reviewed by Anderson Lizardo <anderson.lizardo@openbossa.org>

commit 0dad65f437926bb6520e022e533c08381056f890
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Mar 19 11:44:46 2010 -0300

    Better handling of replaced types and custom conversions in the overload decisor.

commit 18939a16a6ec9963887e00fd63918b7deb740fde
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Mar 19 11:41:42 2010 -0300

    Adds ShibokenGenerator::buildAbstractMetaTypeFromString.
    
    This method tries to build an AbstractMetaType from a string, it is
    used by guessCPythonCheckFunction to better handle type replacements
    identifying types already known by the type database for the currently
    generated, instead of treating said replacements as mere blobs.

commit 72786ec7a77908530080f1e44a12080128b8c367
Author: Matti Airas <matti.p.airas@nokia.com>
Date:   Thu Mar 18 16:29:42 2010 -0300

    Minimal grammar fixes
    
    Reviewer: Hugo Parente <hugo.limra@openbossa.org>
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>

commit dd70b0c75366379f89e0bb46c15638d5f54904ab
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Mar 19 14:55:33 2010 -0300

    Added a unit test to check the object-type hashability.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
    Reviewer: Bruno Araújo <bruno.araujo@openbossa.org>

commit 42fd70af65f843853df851657f175351c072ff76
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Mar 19 14:48:54 2010 -0300

    Allow hash-function tag to be definied in object-types (Fix bug #186).

commit deca7c24a273857d6bc3f735fdea863265a2bc1f
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Mar 18 17:41:08 2010 -0300

    sortOverload function should use not use primitive types aliases.
    
    Also in this commit: enums now takes precedence over unsigned int and unsigned long.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
    Reviewer: Lauro Moura <lauro.neto@openbossa.org>

commit b1eee94589cc0337ea8a26fee0c523582a0419e3
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Mar 17 16:34:07 2010 -0300

    Write enum checks before int, long and bool checks.
    
    Enums are implicitly converted to these types in C++, if we dont do that
    the enum version of some functions can never be called, because the int one
    will be if the int check was written before the enum check.

commit 75ce5d993f212581ba2fb1e623fed2c585f1c216
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Mar 17 14:12:00 2010 -0300

    Speed up conversions of lists from python to c++ if the list class
    is binded by Shiboken (like QStringList).

commit 1c1002df611d9f0283379a94e943c0563a9f8804
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Mar 17 14:11:02 2010 -0300

    Added ObjectTypeReferenceConverter, so object-types can be used as references.

commit ca2febda4080bb7ea2bd94aa9c8bf3ce18dccac0
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Mar 17 14:09:23 2010 -0300

    Sequence conversion are made ONLY for python sequences.
    Not for binded types implementing sequence protocol, otherwise this will
    cause a mess like QBitArray being accepted by someone expecting a
    QStringList.

commit b6e8e35cdcf9946ad6672df340b55fa8843b72b9
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Mar 17 14:08:42 2010 -0300

    Added Shiboken::isShibokenType function to check is a object have a type
    generated by Shiboken generator.

commit eb27a7968d34b6fd7f46324bab313ee5956f8c74
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Mar 16 14:15:44 2010 -0300

    Just try to reduce a bit the noise in source code caused by the use of templates.

commit 12a36f7c83326c22b46cbc4d6ce7c76c545826a7
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Mar 16 13:50:45 2010 -0300

    Add a default implementation for SbkType, so not binded types will return a null pointer.
    
    Pro: Will be possible to write template functions to handle sequence conversions.
    Cons: We will not have an unresolved symbol when an error occur on generator.

commit 94e1c785c8d6f3dca195f1005fe0c3ee0f02ead5
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Mar 16 13:43:27 2010 -0300

    Move the checks to verify if an object is invalid to Shiboken::cppObjectIsInvalid function.

commit 59c0dc6bd2a86207d5f500d767bea98c8c16d3e9
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Mar 15 15:42:33 2010 -0300

    Renamed templates used for conversions of containers.

commit dc8dcf70f06304105d9a4e6467d98a266dbfe78f
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Mar 5 15:43:14 2010 -0300

    Changed the semantic of Converter<T>::isConvertible method.
    
    The new semantic is:
      Returns true when the type can be converted to T OR the type is T.
    The old semantic was:
      Returns true when the type can be converted to T and false if the
      type is T, however int and float converters did not follow this
      rule, because they used PyNumber_Check on their isConvertible implementation.

commit f52951862649d104abf664da5d456b0e0bb987fd
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Mar 15 14:34:40 2010 -0300

    Added test for conversion of lists with invalid contents.

commit 579e99ea8c58f3a7d11d5e7549cb3383a68500a5
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Mar 5 15:38:41 2010 -0300

    Do not incref and decref the python dict reference on python to c++ conversions.

commit 1a259891dfe104c204da3ae06bc3e3924e98de26
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Mar 5 15:37:11 2010 -0300

    Fix reference leak in StdPair converter.

commit 7dc3fd531da613df2ffee3ae152c316021bb0e2a
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Mar 3 15:10:06 2010 -0300

    Remove boost::graph dependency from Shiboken generator.

commit 10872ead263959d103eea17507f6ccd16757e8b6
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Mar 3 15:09:43 2010 -0300

    Object-types are not copyable at all.

commit 21bcdc289ba9ece35780369a5e86a68498a6ddae
Author: Matti Airas <matti.p.airas@nokia.com>
Date:   Wed Mar 17 17:09:15 2010 -0300

    added support for pure virtual methods returning void ptrs
    
    the return statements now have correct values for pure virtual methods
    returning void pointers. also added a dummy test for this (can't really
    test it properly until the semantics of casting the python return value
    into a void pointer is properly defined -- if ever).

commit f9b62c6a5b3f7232bb00a5ab39fd8037fc9c7d81
Author: Matti Airas <matti.p.airas@nokia.com>
Date:   Wed Mar 17 17:01:27 2010 -0300

    bugfix: always write the return statement
    
    the return statement within the error block was only written if there
    was something to return. now an empty statement is written if no return
    value is expected.

commit 5d89be16960be4aec9ba8c8709e3902794521ce5
Author: Matti Airas <matti.p.airas@nokia.com>
Date:   Wed Mar 17 16:20:03 2010 -0300

    fixed a typo in the test class name

commit f4db0c74e0f267c102fff6eb47ecc3eae628a637
Merge: dbeca96 edc9cbf
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Mar 4 16:34:45 2010 -0300

    Merge branch 'master' into extensibleconversions
    
    Conflicts:
    	cppgenerator.cpp
    	libshiboken/basewrapper.cpp
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>
    Reviewed by Lauro Moura <lauro.neto@openbossa.org>

commit edc9cbfcfde439ccfe7100f53efc5d1e4ec34480
Author: Didier Raboud <didier@odyx.homelinux.org>
Date:   Thu Mar 4 16:25:14 2010 +0100

    Link shiboken_generator against apiextractor
    
    shiboken_generator uses several apiextractor symbols and classes, sot
    it must link against it.
    
    Reviewed-by: Anderson Lizardo <anderson.lizardo@openbossa.org>
    Reviewed-by: Marcelo Lira <marcelo.lira@openbossa.org>

commit 36376eb1c97cad139b40197cefd6650e8afc49b2
Merge: a6c665d 8287b5b
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Mar 3 17:47:12 2010 -0300

    Merge remote branch 'hugopl/typediscovery2'
    
    Conflicts:
    	libshiboken/conversions.h

commit 8287b5b65ac0bd697f45bdebe833ad36263dfc75
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Mar 2 16:30:48 2010 -0300

    Init tb_base of SbkBaseWrapperType_Type on struct declaration instead of
    on initShiboken function.
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
    Reviewer: Lauro Moura <lauro.neto@openbossa.org>

commit dbeca960863dadbe8d496195bc60202619314214
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Mar 2 17:22:47 2010 -0300

    Adds tests for a class without implicit conversions being extended in another module.
    
    One value type class, called NoImplicitConversion, without implicit
    conversions of any kind is declared in the first library, libsample.
    In the other library, libother, ExtendsNoImplicitConversion defines
    a conversion operator to turn itself into a NoImplicitConversion class.
    The unit tests tries to pass an ExtendsNoImplicitConversion object
    where a NoImplicitConversion is expected.

commit 5a76209fc8e75b3201dbaded61d626bfb4712e43
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Mar 2 15:21:21 2010 -0300

    Remove the "(destructor)" cast to avoid wrong code to be silently compiled.

commit 6876a8978adc8f6ca08a6c4bd876d2d44babfdac
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Mar 2 15:09:17 2010 -0300

    Turn Number::m_value private to not cause problem when compiling with "avoid protected hack" on.

commit 3a4263a603b8caa4f93dcd534971bf7ffaf65e9f
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Mar 2 14:34:01 2010 -0300

    Use polymorphic-id-expression to discover the correct type of a C++ object.

commit ac7573693042bc8f9d4d94958d89d5b15add39f2
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Feb 26 14:57:06 2010 -0300

    Add test for bug on the current type discovery algorithm.

commit cff48628063b8cf145c01a0f84c19fabd75682db
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Mar 2 17:10:32 2010 -0300

    Adds support for extensible converters for value type classes.
    
    Value type classes without implicit conversions use the default
    implementation provided by ValueTypeConverter. This commit updates
    ValueTypeConverter to check for extended conversions, since even a
    class without implicit conversions in one module could get some
    conversion operators in another.
    CppGenerator now writes 'isConvertible' calls to all object and
    value types checks leaving the door open to extended conversions.

commit ddc5bef058932584f5da644b606fad74707a63c7
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Mar 2 11:34:11 2010 -0300

    Generator now writes code to support extended conversions.
    
    Removed "new_ctor_operator" test from black list.

commit aeb0fe66f39b46ddb2e963067c91b426f9a013d0
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Mar 2 11:31:36 2010 -0300

    Adds extended conversions writer functions.
    
    Adds the functions responsible for writing code for functions that
    supports extensible conversions.

commit ea999da07ab6d244ffb982d7a3c86da1a8976f44
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Mar 2 11:27:26 2010 -0300

    Adds convenience methods to return the name of extended conversion functions.
    
    ShibokenGenerator got the methods:
    * QString extendedIsConvertibleFunctionName(TypeEntry*)
      Returns the name of an extended "isConvertible" function.
    * QString extendedToCppFunctionName(TypeEntry*)
      Returns the name of an extended "toCpp" function.

commit caa2fdfe7fa7c9450bb06dc1e6c017a04e6fa403
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Mar 2 11:23:29 2010 -0300

    Adds ShibokenGenerator::getExtendedConverters() method.
    
    It returns all types from a previous module that could be generated
    by a conversion operator defined in the current module, as well as
    all the possible arguments for the conversion.

commit 42154013b5ecd075288c7ccc9fe341875ad3431b
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Mar 1 17:28:27 2010 -0300

    Wrapper meta type can now point to converter extensions.
    
    The SbkBaseWrapperType structure now stores pointers to functions
    that extend the type Converter methods 'isConvertible' and 'toCpp'.
    This is used when a module is extended by another module that defines
    a conversion operator for a class in the first module.

commit a6c665dd07b5841e033f1558b2fcf391d5fba403
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Mar 2 13:45:57 2010 -0300

    Refactored and documented base Converters.
    
    To improve legibility and understanding ConverterBase<T> was renamed
    to ValueTypeConverter<T>, and ConverterBase<T*> specialization is
    now an independent base converter ObjectTypeConverter<T>.
    Converter_CppEnum was renamed to EnumConverter.
    The HeaderGenerator and custom converters for the test bindings were
    updated accordingly.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>
    Reviewed by Lauro Moura <lauro.neto@openbossa.org>

commit 3403bb5af2ad9bea8c119840884e537bd46ac41b
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Mar 1 17:47:16 2010 -0300

    Removed unnecessary code from HeaderGenerator::writeTypeConverterImpl.

commit 34c599246c7e25194bce4157e166b9bead2a1795
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Mar 1 14:03:56 2010 -0300

    Adds unit test for implicit conversion defined by a conversion operator.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit db7ce37a0de3e52f2940d8823e4308e89ffbb052
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Mar 1 14:01:27 2010 -0300

    Generator noew handles implicit conversions that are conversion operators.
    
    Previously all implicit conversions were constructors, now they could be
    conversion operators, with no explicit arguments except for the owner
    class where they where defined.

commit 083d500b97e2ad5ac85402f7a6df068ca2ecbd73
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Feb 26 15:00:19 2010 -0300

    Shiboken generator now supports references to pointers as arguments.
    
    Two methods with references to object type and value type pointers
    were added to BlackBox test class just to check the compilation.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit 67de28cf5c65cc5137d18502caa2f0ddcd69c2af
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Feb 25 20:22:00 2010 -0300

    Rename SbkCreateWrapper to createWrapper, to follow our fuction naming conventions.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit e0c08ae6c367335a1152107e1b1e23e59e1bc3a5
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Feb 25 19:57:18 2010 -0300

    Do not get the pointer of SbkType<T> function, so the compiler doesn't need
    to implement this function (inlining it when needed).
    
    This safe amazings 8KiB from QtGui :-)

commit e8483c6c8f28a8fda67443cdc4480ff4252c288d
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Feb 25 19:11:32 2010 -0300

    Fix bug #142 by eliminating the CppCopier::copy function and adding it to a field in SbkBaseWrapper_Type.

commit 29364cfe33c86f9a0cd884e99e0f63d44785abae
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Feb 25 19:08:30 2010 -0300

    Added test for use of ObjectCopier of a type declared in other module.
    
    This should create undefinied symbols on other module if it fails.

commit f1427d101d4d0d73070f250d598d7fdc64ff2b52
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Feb 25 18:25:01 2010 -0300

    Rename init_shiboken to InitShiboken, to follow our naming convention.

commit 3a184c23994189a24cb7f65dd413d32ea373929c
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Thu Feb 25 17:58:42 2010 -0300

    Fix Config.cmake library path
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit 87e9b581d64e2d34b2cc63ecc80b946be38ad190
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Feb 24 19:30:05 2010 -0300

    Fix bug#142.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org> and Luciano Wolf <luciano.wolf@openbossa.org>

commit ea10af7b04f581034a32bf1f051ad0d024cfcc9c
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Feb 24 17:52:46 2010 -0300

    Adds a 'new' function to the SbkBaseWrapperType meta type.
    
    When a Python programmer extends a wrapped C++ class the newly created
    type must inherit its parent class' special information (e.g. multiple
    inheritance casting). The 'new' function for the wrapper meta type
    copies the parent information for the extended type.
    
    As it is now the meta type new works properly only with a Python class
    inheriting from a single wrapped C++ type.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit db98871a87cf4c74f4e54b1b7185edf9ad0c0db4
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Feb 24 17:02:22 2010 -0300

    Remove FindShiboken.cmake file in favor of ShibokenConfig and Version .cmake files.
    
    This is the right way to go, according to:
    
    - http://www.cmake.org/pipermail/cmake/2009-April/028504.html
    - http://www.cmake.org/Wiki/CMake_2.6_Notes#Packages
    
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit 96301fc2ee0659b2fd04db259c7440291c3361cd
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Wed Feb 24 16:33:31 2010 -0300

    Fixed QMetaObject.className return value.
    
    Reviewed by Lauro Moura <lauro.neto@openbossa.org>

commit 622c131f1b50f8206c189a3836fd0142163196eb
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Feb 24 15:16:34 2010 -0300

    The C++ pointer for a Python wrapper is now acquired using a Converter.
    
    The macros for casting a wrapper C++ void pointer to a specific
    C++ pointer are no longer generated, converters are used instead.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit 828ed8e7fc3fa0a3184ddd884e8622a0e5bde080
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Feb 24 14:00:49 2010 -0300

    The special cast function can now cast a pointer to all ancestor classes.
    
    It also stopped using specific "cptr" cast macros, for these are to be
    abandoned since they're considered harmful to multiple inheritance
    casting.

commit d84917a9b4c302c0eea4ee011f23ab8ed5bb1022
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Feb 24 13:59:07 2010 -0300

    Adds method ShibokenGenerator::getAllAncestors(metaClass)
    
    The new method returns a flat list of all the given class' ancestors.

commit c3ace01b0c18b340e2453771ab529bce694d621b
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Tue Feb 23 19:02:13 2010 -0300

    Fixed support for innerclass.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 32397a568e20d5b6860520cd45ff0833f27a8642
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Tue Feb 23 17:38:45 2010 -0300

    Remove inplace operators of flags
    
    Enums and flags are now treated as immutable types, so
    using a inplace operator will create a new flag object
    and attribute it to the name which the operator is called.
    
    flags = Qt.Window
    flags |= Qt.Dialog # This will create a new object and attribute
                       # to flags
    
    This was done in order to prevent changing the original objects as
    the the inplace operator in line2 would modify the object pointed by
    Qt.Window.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 506a97bad2ab5cf9b09f735a59f9dcea68bbd276
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Tue Feb 23 12:45:14 2010 -0300

    Adding default value for enum/flag constructor

commit 742eba6e0898f08c5ca04c1eb8292fc3d7b60a43
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Tue Feb 23 12:38:27 2010 -0300

    Fixing Enum '~' invert operator
    
    Was being registered as __neg__ instead of __invert__

commit 58665a95e5f798f76d4ee01f2790f416d494da3c
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Feb 23 16:57:48 2010 -0300

    Write hash function for types with hash function specified in typesystem.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit f26689a4061e88b2f4c6bb591c076934065490d5
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Feb 23 16:56:54 2010 -0300

    Add writeToCppConversion overload with AbstractMetaClass instead of AbstractMetaType.
    This is needed by hash function writer.

commit 5fd502941af27f52c8c92e27ab43abafe85351ed
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Feb 23 16:55:35 2010 -0300

    Add hash function for Str and proper unit test.

commit 8b21935e055b2761cea73d2c5f9e2b23409ac3c2
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Feb 23 16:54:40 2010 -0300

    Pass QStrings by const references instead of by value.

commit 1195a4e8cf7319f9bd4da248ff48e2cd0fa193bc
Author: Luciano Wolf <luciano.wolf@openbossa.org>
Date:   Mon Feb 22 11:38:55 2010 -0300

    Add support for "signed short" type (needed in QtCore.QTextStream)
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit fe8c88c03d24219c991ff6011b96ef51515ffe4d
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Feb 23 14:41:06 2010 -0300

    - Fix method writeTypeCheck, so it finally correct decides when to use PyNumber_Check or a more specific type check function.
    - Promote bool type as a specialization of int, as we do with float.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 26d74212fcdb0167c71a24872434b3787f2d322d
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Feb 23 11:36:07 2010 -0300

    The C++-like enum values are now registered inside the related enums.
    
    Originally the values of an enum were registered in the scope that
    enclosed the enum declaration, just like C++ does, now in addition
    to this the values are registered inside the enum type.
    To exemplify, the following C++ enum:
    
      Scope {
        enum Foo {
            Value
        };
      };
    
    can be accessed in Python as this:
    
      Scope.Value
    
    as well as this:
    
      Scope.Foo.Value
    
    The enum unit tests were expanded to check for this new behaviour.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit 14a56fd8500a8746bcc78c2b1cb0683e7de8010a
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Feb 22 17:34:07 2010 -0300

    Remove warning in injected code related to comparison between signed and unsigned integer expressions.
    
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit 2650f48bf987b3fb7bd80cbfaef9f9a993d32999
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Feb 22 17:33:07 2010 -0300

    Remove warnings related to comparison between signed and unsigned integer expressions.

commit bb887c264a35f550ce9551e84192f73886d2b191
Author: Anderson Lizardo <anderson.lizardo@openbossa.org>
Date:   Mon Feb 22 10:46:55 2010 -0400

    Fix memory corruption due to missing parenthesis in ternary operator
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit a71641d51bca4ca7ae4435f7674b7b33dab39457
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Sat Feb 20 18:18:34 2010 -0300

    Adds the convenience method 'isPairContainer' to ShibokenGenerator.
    
    It checks if an AbstractMetaType represents a C++ pair container.
    Also updated code to make use of the new method.
    
    Reviewed by Lauro Moura <lauro.neto@openbossa.org>

commit 5ce831e73fc4b8bee7a5b62d7485eee11f498a92
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Sat Feb 20 17:49:26 2010 -0300

    Adds the convenience method 'isCString' to ShibokenGenerator.
    
    It checks if an AbstractMetaType represents a C string.
    Also updated code to make use of the new method.

commit 02e5d72cceae2b03ce25068567e3c4c903a4df3d
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Sat Feb 20 17:34:41 2010 -0300

    The C string converter now transforms a Python None in a C null pointer.
    
    The conversion of '[const] char*' to C++ now accepts an None object
    and gives back a NULL pointer.

commit 92a957859814d40d86e7e1287ec1b9c2b717a923
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Sat Feb 20 17:31:24 2010 -0300

    Adds test for C++ 'const char*' argument receiving a Python None as a null pointer.
    
    The test function 'countCharacters(const char*)' now returns -1 when
    receiving a null pointer.

commit 75507160e33339291d391cbdd0893fc0c9d4d3f5
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Sat Feb 20 17:01:55 2010 -0300

    Message for signature errors treats C++ null pointer as Python None.
    
    C++ '0' (or 'NULL') default value is translated as Python 'None'
    in error message for wrong method calls.

commit 4d89c3d81477a730b7d7ce6c9b5c062ee8cd1ec7
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Sat Feb 20 14:37:51 2010 -0300

    All enums are now extensible to match the C++ casting behaviour.
    
    Now the user can build new values of a particular enum type passing
    an integer to its constructor. Thus, the following C++ code:
    
      MyEnum val = (MyEnum) 1;
    
    is the equivalent of this Python code:
    
      val = MyEnum(1)
    
    The enum unit tests were also updated.
    
    Reviewed by Lauro Moura <lauro.neto@openbossa.org>

commit 08acf3d1c3f5fd364ebd29ae00f48b6f6ad2f97d
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Feb 19 16:55:07 2010 -0200

    Fix bug on overload resolution when the generator needs to decide if
    it can expect the argument to be any number type or an explicty type,
    e.g. float.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit a49868b79fe2c02106b7d89a502d3a86a7027398
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Feb 19 16:54:31 2010 -0200

    Added more tests for bugs found in overload resolution.

commit 7a389f29dbb34a8f557bd3375b151486aa6fdd51
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Feb 19 16:53:15 2010 -0200

    Added previousOverloadData attribute to OverloadData, so we cna walk on overload data tree.

commit be1f91e9f6849312a68b17a7677aa9133fbd45c3
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Fri Feb 19 17:02:58 2010 -0300

    Fixing array deallocation in example
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 5f80d538253837cf474fe10601374be40a2b8b98
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Thu Feb 18 19:17:25 2010 -0300

    Adding test for sequenceToIntArray
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 4b0fa3fd45ed42cf881a25897ed66b5c0cf3a3fa
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Thu Feb 18 17:53:53 2010 -0300

    Adding sequenceToIntArray helper function

commit f425ded9520c965202b62b1c2d172608f803497b
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Feb 18 17:28:45 2010 -0200

    Some optimizations and code cleanup on conversion code for std containers.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit d0442ea7fdd623238674334889b6b096fa07b9d0
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Feb 18 17:28:14 2010 -0200

    other binding does not link against sample binding.

commit 51af8146a5c3b456fec32e1f62b17c178af390cd
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Feb 18 17:26:29 2010 -0200

    Converter<T> doesn't inherits ConverterBase, to avoid uneeded template instanciations.

commit b656da109ac75d18854c37b7d1d732addb1e9612
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Feb 18 17:20:18 2010 -0200

    User definied converters are written outside Shiboken namespace.

commit c0fe3e41eec887bfdde8494d860f7d359e8219de
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Feb 18 17:18:33 2010 -0200

    Add some comments on the generated global header.

commit 589c2f447187e5071094648d5fe4046784ca28fd
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Feb 18 17:17:27 2010 -0200

    Write all converters on global header to avoid the module from exporting any symbols.

commit 985d583110b9175d8b98fcdeaa2e0d83f3cc566f
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Feb 18 17:40:38 2010 -0300

    Adds test for cast operator for a class in a different module.
    
    The new test adds a Number class to test library libother which defines
    an cast operator to Str, from libsample. The unit test tries to build
    an Str object passing an Number parameter.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit d55111e3521728eee0b85eac5c3054a3901e8044
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Feb 18 16:56:03 2010 -0300

    libother now uses its own library export macros instead of libsample ones.

commit 9a79bfd18af4abe30351c2091bb8ae5d3bc23b59
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Feb 18 16:38:06 2010 -0300

    Fixes method call error messages for constructors.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit 01d4e01928987984c2d6b04f13794ce6776f7f67
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Feb 18 13:59:22 2010 -0200

    Write a verbose error messages when the function arguments don't match.
    
    This will increase the binding size, so there's an option to disable
    verbose error messages. "--disable-verbose-error-messages"
    
    Reviewed by Renato Araújo <renato.filho@openbossa.org> and Marcelo Lira <marcelo.lira@openbossa.org>

commit 9dac886d87f546bd9d2ed3162192c0af5f733b74
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Feb 17 16:51:22 2010 -0300

    The generator takes "default ownership" modifications into account.
    
    The default ownership does nothing. This is useful to avoid automatic
    heuristically based generation of code defining parenting.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit 21151a2f4dc03ef6d62efcfb4a0f1f9d3dcb5183
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Feb 12 18:18:50 2010 -0200

    Do not export Sbk*Type variables.
    
    To access Sbk*Type variables from other modules, you need to use the array provided via CObjects.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit fa5740279daa22be3c424c8fab4468447b3cbcaf
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Feb 11 11:47:27 2010 -0200

    Do not declare and export  *_New functions on global header.

commit d23df801cb5e7edf57a1d8613a187619d5eb989e
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Feb 12 02:01:54 2010 -0300

    Deallocator for classes with private destructor now calls reference clearing function.
    
    Reviewed by Lauro Moura <lauro.neto@openbossa.org>

commit 62c590edfdbf1f4006c86b2e6f2c70cd64583553
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Feb 12 01:52:34 2010 -0300

    Fixes the type checking for class' fields of primitive numeric types.

commit 107bec51c179b74bdba888e5de4adb3b953018ca
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Feb 12 01:47:30 2010 -0300

    Removed tests related to reference keeping from black list.

commit 63be3ef99ec2e8a6e9ff00856d836f6bcb015794
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Feb 12 01:46:14 2010 -0300

    Updates the code written to support reference keeping.
    
    The classes that kept references to other objects now make
    use of the new SbkBaseWrapper_keepReference helper function
    from libshiboken.

commit fb5c0970b0ada2fb5029757ecda17b11eee1ead1
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Feb 12 01:42:03 2010 -0300

    The method needsReferenceCountControl checks also in the class' ancestry.
    
    ShibokenGenerator::needsReferenceCountControl checks the object
    and all its ancestry for the need to support reference counting
    control of other objects pointed by the present class.

commit 2c07ee6229c012ee3624fcdf0fbb281bfef964d7
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Feb 12 01:28:01 2010 -0300

    Adds support for managing objects referred by a Python wrapper.
    
    A mapping to referred objects has been added to the SbkBaseWrapper
    structure to keep track of objects used by a given Python
    wrapper. This differs from ownership or parenting, since
    the referee is not responsible for destroying the
    referred object. It is more akin to a model/view relationship
    when many views refers to one model but don't own it, and
    the model must be kept alive as long it is referred.
    
    Two methods were added to assist the reference keeping:
    
    * SbkBaseWrapper_keepReference
      Causes a referred object reference counter to be
      increased and any previous used object refcount is
      decreased.
    SbkBaseWrapper_clearReferences
      Decrements the reference counter of all referred
      objects. It is called when the Python wrapper referee
      is destroyed.

commit 40f7ab459308a71d5fdabd82de758f7fac01c63b
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Feb 12 01:20:03 2010 -0300

    Removed some member initializations from SbkBaseWrapper_New.
    
    The same initializations are made in SbkBaseWrapper_TpNew
    which is called by SbkBaseWrapper_New.

commit 010b4230f1b643d20a42a41764d048660a2e1db1
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Tue Feb 9 20:19:22 2010 -0300

    Register enums within type resolver
    
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit 6e0f28129b5b7f0ca9f632345ba890e49ba6b215
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Tue Feb 9 20:19:14 2010 -0300

    Adding typeresolver.h to shiboken.h

commit 2378dd2f4b79299c78e6dfaba567830c1cc5fd4a
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Thu Feb 11 12:58:21 2010 -0300

    Fixed error handling on Python object constructor.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 973de3370cc5c97531faf5cf57f5cb58d951bda0
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Feb 11 12:37:20 2010 -0300

    Fixes problem with CppGenerator::writeTypeCheck due to a bad rebasing.
    
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit 03c865ebe0222f09099344dc3d08d1c54349080c
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Feb 10 15:41:38 2010 -0300

    The tests for C++ class' fields and reference count will fail.
    
    Tests that check if a referred object reference count was decreased
    after its keeper object death. Since support for post-mortem reference
    cleaning wasn't implemented yet the tests are marked as a known fail.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit 29aa5049a8790dd2c758c3b76a08182dc8021c28
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Feb 9 16:10:42 2010 -0300

    Adds 'reference-count' tag to ObjectView::setModel from test bindings.

commit 5316ff58e5c527360d22cd43328990da10ce4ec7
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Feb 9 15:36:30 2010 -0300

    Adds support to arguments marked as keep reference in the type system.
    
    Every method marked to increment the reference count of any argument
    must decrement the reference count of previously held objects. A
    dictionary is used to associate the method overload and Python wrapper
    instance with the previously set object.

commit e823354fc4e1b5518d47d986bd25b1533637e64f
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Feb 9 14:38:53 2010 -0300

    Adds 2 convenience methods to ShibokenGenerator to check for refcount mods.
    
    The new expressively named methods hasMethodsWithReferenceCountModifications
    and needsReferenceCountControl returns boolean values to help generation
    of code for reference counting support.

commit 8eb50faa234bc5d26ac721ca8fe5f263cf55230d
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Feb 8 15:08:47 2010 -0300

    Adds CppGenerator::argumentNameFromIndex method.
    
    The method returns a textual representation of the argument index
    for the given method.

commit 18e0f058e4d293ba9c75f73529e946c46eb89873
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Feb 5 11:42:19 2010 -0300

    Adds tests for reference counting in model/view style relationships.

commit 54b41b60e7c1b5bf2597cf1cc3ca4da428f2437e
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Feb 4 20:05:10 2010 -0300

    Fixes reference counting for public class' variables member setters.
    
    When setting a class' public variable that is a pointer to a C++
    object the Python wrapper for that class should have its reference
    count increased, and the old referred pointer decreased.

commit acdd27d2497bbc769025e3efe683f67378bd907e
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Feb 3 21:00:52 2010 -0300

    Adds tests for classes with public member variables.
    
    Three kinds of types are represented: primitive, value and object types.
    The unit tests also check for correct reference counting.

commit ec2b9250a03e0aa5778938ff7fc2441350cefc65
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Feb 3 20:15:51 2010 -0300

    Shiboken now generates code for public class variable members.
    
    Whenever a class has AbstractMetaField objects, which represent
    class member's of the likes of variables, the generator produces
    get/set functions for the Python class wrapper.

commit 67c9c92f80b83f60b1a5572f82ad5230c5e7201c
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Feb 3 20:24:42 2010 -0300

    Adds some name generator methods to ShibokenGenerator.
    
    Added the following self evident methods to ShibokenGenerator:
    * QString cpythonGettersSettersDefinitionName(const AbstractMetaClass*);
    * QString cpythonGetterFunctionName(const AbstractMetaField*);
    * QString cpythonSetterFunctionName(const AbstractMetaField*);

commit d3bec23d192e3570cbf0a73fd27dfda2077402d7
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Feb 3 20:22:24 2010 -0300

    Adds a new overload to CppGenerator::writeTypeCheck.
    
    The new writeTypeCheck method receives an AbstractMetaType instead
    of an OverloadData. The core functionality was moved to the new
    method that is called by the old one after it had its own stuff done.

commit f9e7cacfd4654dad676875b39b463ae1f6f72258
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Mon Feb 8 15:07:20 2010 -0300

    Implement support to conversion rule.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 586cd6b6cf67e9c186d2c42d076cbf99f1836ba4
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Feb 9 12:06:54 2010 -0300

    Adds tests for argument removal and type modification for virtual methods.
    
    Reviewed by Lauro Moura <lauro.neto@openbossa.org>

commit df7a5518466ce74ca3023b61ce1be21592f97252
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Feb 8 20:39:46 2010 -0300

    Fixes generation of binding reimplementation of modified virtual methods.
    
    Argument removal and type modification no longer affects the generation
    of virtual method signatures in the binding code.

commit 3b98369c971d23b8a45cfbf1b3a60f6ccee1f7ab
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Feb 8 20:27:33 2010 -0300

    Adds test for argument removal plus argument type modification.

commit 46eeae2c1bf48b221a6b97f7b9369e0d7e0f8a06
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Feb 8 20:25:53 2010 -0300

    Fixes the checking for argument type replacement on overload decisor.

commit 92f3f9f69e231fd78537f6d1ed123b8c78a0cdc2
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Feb 8 20:22:58 2010 -0300

    Modified signature of OverloadData::addOverloadData.
    
    Changed the second argument from AbstractMetaType to AbstractMetaArgument,
    this helps to get the correct type replacement information for arguments.

commit cfd1c97717e8bdf05a0fa9aada851c7bcd4385b2
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Fri Feb 5 18:02:51 2010 -0300

    Fixing sort overload
    
    Now sorting OverloadData recursively
    
    Reviewer: Renato Filho <renato.filho@openbossa.org>

commit 7d4f470fd6babc417222133bec8e8b9b13737ce2
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Feb 8 15:58:37 2010 -0200

    Fix overload decisor bug trigged when two overloads have the same numerical argument in the same position.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 7e5fdc89ce33d301ef63c471b527442b760b6fc1
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Feb 4 20:02:10 2010 -0200

    Do not try to call constructors created on typesystem by add-function tag.
    
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit 658f6cbbb19ec9c2a2f8a0a0d703d8107ce9d722
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Fri Feb 5 16:28:01 2010 -0300

    Shiboken::setParent also accepts list of children.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit c9e3bb47ee0eb929c6b4c43f9e3cd432ed449fc9
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Feb 5 11:34:36 2010 -0200

    Check if the cptr pointer is valid on constructor, if not, an error happenned.
    
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit 8236fa3c1dda5674d4449726d018026b2682a569
Author: Anderson Lizardo <anderson.lizardo@openbossa.org>
Date:   Thu Feb 4 11:46:22 2010 -0400

    Implement ShibokenGenerator::isCopyable based on BoostPythonGenerator
    
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit a761b0b0e439811fb2ce8b9a64b249f50cad02a5
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Feb 4 18:26:09 2010 -0200

    Fixed OverloadData::invalidArgumentLengths(), so it take care of removed arguments.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 22f1f61fec7cff3721c895b3d3071943405c57fa
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Thu Feb 4 15:20:46 2010 -0300

    Fix Weakreference support
    
    - Flag for types with private destructor
    - Cleaning weakrefs in normal destructor
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit 46ea7e162321028a786dfc02cc8325cb20f2d957
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Feb 4 16:59:22 2010 -0200

    When used inside a static function, %CPPSELF will be replaced by the
    class type, and %CPPSELF. by "<Class Type>::"
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 9e080452addad7853b41f416a0fb66d3d74a292a
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Thu Feb 4 14:07:33 2010 -0300

    Fixing tuple construction and adding more makeTuple
    
    For 4 and 5-item tuples
    
    Reviewed by Hugo Parente Lima <hugo.lima@openbossa.org>

commit 8f843229b8ff51af57e7bcc5c78a9821becac079
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Tue Feb 2 19:24:52 2010 -0300

    Ignore None return when virtural function can return NULL.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit 2f0d1d28afaeb39130c1619e7a51907a5b182f69
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Wed Feb 3 14:07:27 2010 -0300

    Adding support for weakreference
    
    Reviewer: Renato Filho <renato.filho@openbossa.org>

commit e557d7f4990e17c92174ca434e90ef03c059825e
Author: Anderson Lizardo <anderson.lizardo@openbossa.org>
Date:   Wed Feb 3 09:42:41 2010 -0400

    Add workaround for hardware bug that causes failures on two "size" tests.
    
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit 0fd47ac015e1eb01d06150ee453e52aac904f1e7
Author: Anderson Lizardo <anderson.lizardo@openbossa.org>
Date:   Wed Feb 3 09:57:41 2010 -0400

    Add missing PythonInterp check
    
    tests/CMakeLists.txt uses PYTHON_EXECUTABLE without calling
    find_package(PythonInterp), making this variable empty and thus not calling the
    correct interpreter (especially inside Scratchbox).

commit b7da6f1362e7acffcd64ca7c09cd5c522395ae05
Author: Anderson Lizardo <anderson.lizardo@openbossa.org>
Date:   Wed Feb 3 09:53:45 2010 -0400

    Fix build with Python 2.5 when using Py_INCREF()
    
    On Python 2.5, Py_INCREF() does not cast the passed pointer to PyObject* (like
    in Python 2.6 and newer versions). To make sure the generated code works on
    Python 2.5, use reinterpret_cast<PyObject*>().

commit 95d80742bc2916c88c0b7eac7a7b40c064ba1afe
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Wed Feb 3 16:18:46 2010 -0300

    Fixed possible error in reparent process;
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit 17ff35fce3df1b4e52758aaf017cc0261f48deca
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Feb 3 16:21:38 2010 -0200

    Fix indentation problems on code injections.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org> and Renato Araújo <renato.filho@openbossa.org>

commit dfa2689d3868fe37f7142367fbcea426f3772dbd
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Feb 3 16:11:34 2010 -0200

    Fix issue triggerd when an code injection on constructor tries to use
    the object being constructed before it was fully constructed.
    
    For this use case, use inject-code with position=end.

commit 7b6b5aebc499c79c59f7fd7f3124037991ab555c
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Tue Feb 2 19:24:52 2010 -0300

    Created a check for virtual functions return.
    
    Reviewed by Hugo Parente Lima <hugo.lima@openbossa.org>

commit 05bfd60c0ca9798b7a2df97104eec2c18d48b268
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Mon Feb 1 21:41:28 2010 -0300

    char converter return string instead of int
    
    Only if not specified signed/unsigned
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>

commit 813bc2a8a7b65d273ca3e4f4009041f2923d25de
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Tue Feb 2 16:45:15 2010 -0300

    Fixed declaration of inline function on header without implementation.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit 11840009c679ef0e1114894d3c286e595b83d54d
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Feb 2 17:15:07 2010 -0200

    - Write return value policy on reimplementations of virtual functions.
    - Decref references returned by the python implemantation.
    - Print error, if it happen on python code of an virtual function called from C++.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit f6c452eb4e262f3870846316000dfa8e02983a32
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Feb 2 17:11:37 2010 -0200

    Do not add an extra indentation on code injections.
    Write an comment on start and ending of code injections.

commit aade17f52185d7c1b0e412aaf678cb9c7ea8a28d
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Feb 2 15:19:47 2010 -0200

    Fix writeMinimalConstructorCallArguments to avoid ambiguities and support custom primitive types.

commit c93e69463a58a88a76432cc11728f59f053dcd76
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Feb 2 15:08:54 2010 -0200

    Remove warning about ugly conditions on if clause.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit ebcb5006507381455feb59fb109c437f99169cb8
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Feb 2 14:41:52 2010 -0300

    Fixes ShibokenGenerator::injectedCodeCallsCppFunction.
    
    The function now recognises uses like "... new %TYPE(..." on code
    injections as calls to the C++ function.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit 8fb11ea5ff063f23785ac4ce7e1f3187ae0aa774
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Feb 2 11:43:52 2010 -0200

    Implement return value heuristic.
    
    If the method returns a pointer and there are no policies for the return type, the returned value is
    considered child of the current object (self).
    
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit 7bed51517c9bcb9e5f152751b1a3c43d71682f55
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Mon Feb 1 20:31:31 2010 -0300

    Fixed  added constructor generation.
    
    Reviewed by Hugo Parente Lima <hugo.lima@openbossa.org>

commit 1e70badf548becec2a45b0b451e8a5cb322c0dc0
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Feb 1 18:33:48 2010 -0200

    Use Shiboken::AutoDecRef to handle python references.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 8edbbe2723eedc2c013dc1e23a18a4db3713da25
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Feb 1 18:32:38 2010 -0200

    Fix crash when a virtual function with enum in they arguments is called from C++ and have an
    implementation in Python.

commit b792bd74dd76a3e58e3ce69714d7432c8aa007a6
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Mon Feb 1 14:40:54 2010 -0300

    Fixed operator comparation for objects with differents types.
    
    Reviewed by Hugo Parente Lima <hugo.lima@openbossa.org>

commit e476e135cc1732e0a8879f015aa0e35319cfebf8
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Mon Feb 1 14:40:24 2010 -0300

    Fixed overload function generation for fuctions with removed arguments.

commit b281b75fb73895b0f1d73da3403d8b5faf2da759
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Jan 29 17:48:54 2010 -0200

    Small refactor on filterFunction function.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit aaea0b1ca9d5416f0b66ea85be765471124b0e4f
Author: Renato Filho <renato.filho@openbossa.org>
Date:   Fri Jan 29 16:30:11 2010 -0300

    Create test for constructors with implicitly conversion and default args.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit 5655af724889ce5d6be3baecdcee8740310447fb
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Jan 29 11:30:29 2010 -0200

    Add check of conversions errors on constructors.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 6798b116c9a651a7ce7b73d13b5481a509dd3158
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Jan 28 22:33:09 2010 -0200

    Write type conversions for pure virtual methods.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 6a3cf558071a156a9bed24af89a4cfb056ce106b
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Jan 28 22:15:41 2010 -0200

    Do not throw a Python exception when the user calls a pure virtual method of an object
    wihtout C++ Wrapper (Shell) class.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit af98f2bd0db84f5698e9fd5896262b61e17d03bc
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Jan 28 21:35:33 2010 -0200

    Add test for an impossible type discovery when the type has virtual functions.

commit 6daffa0a3452ee36ca8c39cf90fb0cefcbb5c205
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Jan 28 15:53:40 2010 -0300

    Adds support for void pointer conversions.
    
    A new converter specialization was added to deal with 'void*'
    conversions. In the case of C++ generating a unknown void pointer
    a BaseWrapper is used to hold the said pointer.
    There is a new test for this situation.
    
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit 22eb430cecf6ddc10eed04dd67c81485aba84ab6
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Jan 28 17:19:33 2010 -0200

    Changed API for PySequence_to_argc_argv.
    
    It was renamed to PySequenceToArgcArgv and a new argument was added, besides some documentation.
    
    If the sequence is empty and defaultAppName (the new argument) was provided, argc will be 1 and
    argv will have a copy of defaultAppName because some libraries, like Qt, need at least one element
    in argv (the application name), otherwise it'll crash somewhere inside Qt.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit 02cdcb7e0e49b22cd10a5146d5a85cec9bfca7bd
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Jan 27 10:41:44 2010 -0200

    Do count non exported classes when filling the tp_bases field.

commit 35cb2ccfbae93645f357dc83e13a4882eff80d23
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Jan 26 21:54:15 2010 -0200

    Export converters when needed.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 2d462f1397e87ee929b795ba896ca3d5344c2583
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Jan 26 21:19:50 2010 -0200

    Use qualified C++ names to generate "init" functions.

commit df3b7134e1ff05fde57e8e3f74835131e34110d4
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Jan 26 19:22:30 2010 -0200

    Use qualified C++ names on variables inside richComparison functions.

commit b62fe3b11c547f493196e97bceb1601fb1ad73d6
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Jan 26 18:54:51 2010 -0200

    Do not use C++ qualified name to generate the number protocol struct.

commit cd2dceceefdb01781962be84768f0e0828dd956e
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Jan 26 18:35:08 2010 -0200

    Write cptr macro for inner classes.

commit 59bf883ba7a3678ad11e9eed7ddc93636b4c3424
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Jan 26 18:34:32 2010 -0200

    writeMinimalConstructorCallArguments knowns about enums.

commit e5654bd14cc0d034192104bb4325ba639d4f043c
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Jan 26 17:39:18 2010 -0200

    writeMinimalConstructorCallArguments knowns about QFlags.

commit b003e79b0671e4ec0253986c3cf11f4efce24e45
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Jan 26 17:38:44 2010 -0200

    Fix the detection of number and rich comparison protocol.

commit 17d63d67f7156bae868e0239c3a588d07bc87534
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Jan 25 17:48:45 2010 -0200

    Add protected hack to global header.

commit f691800c52b9047cf02f6787a546e5a112f7c962
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Jan 25 17:05:56 2010 -0200

    Write CopyCppObject function for inner classes.

commit bedeefb654bf3a884cbf8c3855c212e37efb299a
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Jan 25 16:24:26 2010 -0200

    Do not print #error when an pure virtual function is removed by typesystem.
    Write a default implementation and print a warning instead.

commit 96ec538edebf7f754fbb6cbff7f126a71673a0e1
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Jan 15 17:48:07 2010 -0200

    Write the enum name based on enum module, not the current module being generated.

commit 08d106b8d67ca22045d3a59b4a05ac0e35d09bd9
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Tue Jan 26 13:57:54 2010 -0300

    Fixing includes
    
    Reviewed by Hugo Parent <hugo.lima@openbossa.org>

commit 56ef82ec2648e0f55232e8b004be60d4ea785db5
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Jan 25 14:30:24 2010 -0200

    Shiboken generator doesn't need to link against QtXml and libapiextractor as informed by "ldd -u"
    and confirmed by "ldd -r".
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 0c0c256c244ce171151a0dac2e444912bb1f9692
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Mon Jan 25 12:02:38 2010 -0300

    Setting CMAKE_BUILD_TYPE before usage
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit a01d5c8d9e056a06a3aa4a16bc608b125da105ac
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Jan 22 16:54:44 2010 -0200

    Do not remove the "const" from "const char*" types when converting
    python arguments to C++.
    
    This fixes bug #133
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 502ae1c940487e65577f735fecfeecd2092d8c1c
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Jan 22 16:48:12 2010 -0200

    Add overflow check to unsigned int, because we need it on 64bit platforms.

commit c6bbc80f277b1c490fadef26ab64a613d45276aa
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Jan 22 02:04:23 2010 -0300

    Fix implicitconv_numerical tests
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit c6898072bfb72d76d5e15e8fd59b5e86752006e3
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Jan 22 01:00:32 2010 -0300

    Fix bug on overflow check routines under 32 bits platforms.

commit 62bd3820c222cfb6af57c2ff4b23b8b819743bbf
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Jan 21 13:33:26 2010 -0300

    Adds support for Duck Punching (aka Monkey Patching).
    
    The simplest definition of duck punching for our purposes is
    the ability to change the definition of a method in an instance of
    a class.
    To allow this behaviour the SbkBaseWrapper structure had to be
    extended with a 'ob_dict' which is a PyObject pointer to the instance
    dictionary. It is originally set to NULL until the user tries to access
    it. This dictionary could be accessed through the '__dict__' instance
    property. For now it is read-only.
    
    The generator was updated to handle the instance dictionary, and an
    extensive duck punching test was also added.
    
    Reviewed by Hugo Parente Lima <hugo.lima@openbossa.org>

commit cd12b72f152f970a86cac12f62a0f9d1edd3f6d8
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Jan 20 15:50:10 2010 -0200

    Add special conversion rules to the char type.
    
    A type is convertible to char if it is a number or a 1-sized char.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 9ac13a27e49439ffcef2291da01ee4c8b6b930d0
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Jan 20 15:46:01 2010 -0200

    When verifying for the aliased type of a primitive type, go to the last aliased type instead of just the first one.

commit d269265cebf40e2da5fb9ee4904d3ec815f06e80
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Jan 20 15:43:08 2010 -0200

    Added another constructor to Str class, just to test the new char behaviour.
    
    The new behaviour consists in accepting numbers or 1-sized strings when a
    char is expected.

commit f7f4da79cf71242a494ca407ccd26d64b1735cc5
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Jan 20 14:18:07 2010 -0200

    Small refactoring to sortOverloads function, so it's a bit easier to read (IMO).

commit a3b3f49ee20164d8cbe9d8ae70d67b7aa834ed92
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Jan 19 13:49:24 2010 -0200

    Converter<PyInt> now follows the Converter interface.
    
    - Converter<PyInt>::isConvertible should return bool instead of int and
    - Converter<PyInt>::toPython must receive "const PyInt&" instead of just "PyInt".

commit 7c53af9664740467c65724577c9210593e308a85
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Jan 19 13:58:41 2010 -0300

    Generator now supports overloads with both static and non-static methods.
    
    When a class contains one or more overloads with static and non-static
    signatures Python must accept both usages, but for this to work some
    steps must be taken:
    
    * The overload method is defined with its own PyMethodDef structure,
      instead of being parte of an array of definitions.
    * The overload method is marked as static in the PyMethodDef.
    * This method definition is inserted in the PyMethodDef array for the
      class.
    * A tp_getattro function is generated and registered for the Python
      wrapper. It is used to intercept instance calls to methods with
      static versions to add the 'self' to the PyMethod.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit cca03574c6a683e9644210d3038775843792f9d7
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Jan 19 13:37:25 2010 -0300

    Adds helper methods to ShibokenGenerator.
    
    These are the methods added to ShibokenGenerator:
    
    * classNeedsGetattroFunction(metaClass)
      Returns true if a tp_getattro function should be generated for the
      given class. At the moment the only criteria is that the class
      has an overload with both static and non-static versions of a method.
    
    * getMethodsWithBothStaticAndNonStaticMethods(metaClass)
      Returns a list of methods of the given class where each one is part
      of a different overload with both static and non-static method.
    
    * cpythonMethodDefinitionName(metaFunc)
      Returns the name of a method definition (a single method, i.e.
      a PyMethodDef struct) for a given method.
    
    * cpythonGetattroFunctionName(metaClass)
      Returns the name of a 'tp_getattro' method for a given class.

commit e540d86f173b151997313ba23e7fe382bd2623c4
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Jan 19 13:55:35 2010 -0300

    Adds helpers to OverloadData to check for static and non-static methods.
    
    OverloadDecisor received some new methods: hasStaticFunction,
    hasInstanceFunction and hasStaticAndInstanceFunctions.
    They are useful to check if an overload contains both static and
    non-static signatures.

commit 2e7bab62943ada0320ce0cd7c8a6d6be6e64a6f3
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Jan 18 21:28:58 2010 -0200

    Adds test case for overload with static and a non-static versions of a method.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 258702853d4cc7ce09d0862cecb2fa08d986da7e
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Jan 18 17:58:44 2010 -0200

    Bucket::m_locked is accessed by multiple threads and must be volatile,
    otherwise the code won't work with some compiler optimizations turned on.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit ae513bfa93f194acb7ed7e358ae65812e2f4c214
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Jan 18 15:25:13 2010 -0300

    Common variable names are stored as #defines instead of C++ static methods.
    
    Reviewed by Hugo Parente Lima <hugo.lima@openbossa.org>

commit f8e64fa28917dfd7446f8710ec2a1a33ef06cebc
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Jan 18 11:00:39 2010 -0300

    Expanded thread locking tests with two more cases.
    
    Added a virtual method marked to allow threads and tests for C++
    calling it and also a Python reimplemented version.

commit cd23ce8002ea34c5baabf060b3065b9cbb7618a3
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Jan 18 10:51:03 2010 -0300

    Generator now makes use of the GilState and ThreadStateSaver classes.
    
    Generated code now makes use of the new convenience classes instead
    of directly using the Python provided PyGILState_STATE and PyThreadState.

commit 4cc55bd5ced408b987f41a0c0cd55fa99a869ba3
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Jan 18 10:46:38 2010 -0300

    Adds convenience ThreadStateSaver class to libshiboken.
    
    ThreadStateSaver class just wraps the Python Thread save and restore
    operations. Its destructor also ensures the restoration of saved
    thread state if the method ends abruptly, e.g. when the wrapped
    C++ library throws an exception.

commit 79774d9827ba3883ac1862aee86c890634fa21a9
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Jan 15 21:13:48 2010 -0300

    Adds convenience GilState class to libshiboken.
    
    GilState class puts some sugar over the Python GIL usage and also
    adds the safety of a final GIL release when the GilState destructor
    is called when get out of scope.

commit d9c5531a3cf0967e2595cef18c63892c0d64d551
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Jan 15 18:26:57 2010 -0300

    Adds CppGenerator::writeCppSelfDefinition method.
    
    The code to write the definition of cppSelf was in two places and
    contained an #ifdef clause, now it is a writer method.
    Also added the ShibokenGenerator::cppSelfVariableName() method
    to be used instead of directly writing the "cppSelf" string.
    Updated custom code on test binding to remove warning.
    
    Reviewed by Hugo Parente Lima <hugo.lima@openbossa.org>

commit de5187268ab7dd96fc5fa98c583086fc5afe5b48
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Jan 15 17:08:10 2010 -0300

    Updated type system variable replacement for '%0' (aka C++ return value).
    
    Now the variable is replaced by a C++ return variable instead of
    getting the value directly from the PyObject.

commit 72ca828dde351cc3b715eec5447fe4ea5c46ec01
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Fri Jan 15 15:39:41 2010 -0300

    Adding new tests related to threads/GIL locking
    
    - Event loop - calling virtual methods from C++
    - Event loop with thread - calling virtuals from C++ along with
                               accessing the binding from another python
                               thread
    - Thread locking - blocker C++ method that is unlocked from another
                       python thread
    
    For these tests, a new ObjectType subclass was added, Bucket, which
    is just a container for the producer/consumer tests and has the
    lock/unlock method.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 007d8cf6955f0f99a41bad8c69c9da7789d6bbe8
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Thu Jan 14 14:35:51 2010 -0300

    Fixing shebang on runtest.sh

commit 417b5ddc9eeaaa1ab42d8d321dc3176b1965a4d8
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Jan 15 12:19:18 2010 -0300

    Wrapped virtual methods now locking the GIL in the right places.
    
    A code injection on the tests was updated.
    
    Reviewed by Hugo Parente Lima <hugo.lima@openbossa.org>

commit 4587abd19af6be7148dbe7891f909652e40a9aa2
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Jan 15 12:12:21 2010 -0300

    Added ShibokenGenerator::shouldDereferenceAbstractMetaTypePointer method.
    
    It checks if a meta type should be dereferenced by the Python method
    wrapper passing it to C++.
    ShibokenGenerator::shouldDereferenceArgumentPointer now calls the new
    method.

commit d2c94d6d62458419d54a698e67c8b123808ff09d
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Jan 14 18:42:16 2010 -0300

    Adds support for "allow-thread" type system tag on Python method wrappers.

commit eb7c0a57011784e517da94eebb9fb2adf7efd316
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Jan 14 18:37:09 2010 -0300

    Adds ShibokenGenerator::threadStateVariableName() method.

commit 24a81fbd44393b109828940f2cebc4644f1f7ba8
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Jan 14 17:19:43 2010 -0300

    Adds OverloadData::hasAllowThread() method.
    
    The method checks if any of the functions in OverloadData have
    allow-thread flag set to true.

commit 57431112269fe3a17e9e68dd08ee8dc65620bca7
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Jan 14 18:39:02 2010 -0300

    libshiboken initialises Python threads if available.

commit 992e7170d4254257e4341d82c82aeec981396e2e
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Jan 14 14:45:31 2010 -0300

    Values returned from C++ are now stored in a C++ variable.
    
    The previous behaviour was to pass the result, if any, straight to
    the to-Python-converter method. Separating the C++ from the Python
    part allows us to release the thread lock when calling C++ and taking
    it back before calling the converter filled with Python calls.
    Also renamed "retvalVariableName()" to the more meaninful name
    "pythonReturnVariableName()" and added "cppReturnVariableName()".
    Also updated the type system variable replacement to recognize "%0" as
    "cppReturnVariableName()".

commit d7a8026ba537a8db0fe217f5b52bcfaadaaa0265
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Jan 15 19:30:10 2010 -0200

    Add -Wno-strict-aliasing to GCC compiler flags.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 3e562e090d65067ba93c451fa104db100101d77c
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Jan 15 19:28:08 2010 -0200

    ProtectedVirtualDestructor must be object-type instead of value-type, because we can't
    pass a object with nonpublic destructor by value.

commit dd1446c3913ec9e4f0f78317ed6e154dbf5390fd
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Jan 15 19:27:56 2010 -0200

    Remove warning about using a uninitialized variable

commit e80dd001e5129261e512220ff2b1b8d23b0fd64b
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Jan 15 18:25:31 2010 -0200

    Add option -DAVOID_PROTECTED_HACK to turn off the protected hack.

commit 3115f49e63fb760a3af1b1b7b57029e6c0c7a6d5
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Jan 15 18:24:46 2010 -0200

    Correctly set diferent CXX_FLAGS for release and debug builds.

commit 0a99e765efc8f86a00d0e2e1fb4e30df331fa3c3
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Jan 15 11:28:05 2010 -0200

    Fix custom converters from libsample.

commit 2ad0dcc5860d9e791e6036a525b0114b7106031b
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Jan 14 22:34:47 2010 -0200

    Added SbkDbg stream class, used to print debug messages.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit ff5d72bd2d994050823382d1f884c62e41824eb3
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Jan 14 21:58:33 2010 -0200

    Added template specialization SbkType<signed char>(), needed by someone.

commit 310154f1e794177b6ae1bb2b4d06be548ba55c7e
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Jan 14 21:01:47 2010 -0200

    Inc. the reference of the return value when returning self on inplace operator overloads.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 8657f7eff10c27bf450bb742e377144d2a08019f
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Jan 14 16:02:31 2010 -0200

    Changed prefix of local generated C functions to avoid name clash with bindinded method names.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 370a3b6cf2a57bf63c1d4041a0de5085485b37fe
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Jan 14 15:58:04 2010 -0200

    Added a convenience overload for cpythonBaseName, with AbstractMetaClass as parameter.

commit 67f0c4988020833210537757fbd51ecb84825ce8
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Jan 14 15:18:19 2010 -0200

    Implemented type discovery feature.
    
    The problem:
    
    - There are two class, A and B, B inherits from A.
    - You are inside a virtual method reimplemented in python with just one parameter of type A*.
    - But the object referenced by a variable of type A* is an instance of B and it was created by C++,
      not Python!
    - Shiboken needs to create a PyObject of type B, not A! This does not makes sense for C++, but does
      for Python, because python variables does not store type information, just values.
    
    To achieve this we use RTTI to get the real type name of a variable, then we create the PyObject using
    the TypeResolver infrastructure initially developed to help with signal slot problems. In other words,
    the TypeResolver class has been moved from libpyside to libshiboken.

commit c40f61ff076928f07591070763069cc75918768e
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Jan 14 14:40:36 2010 -0200

    Removed type discovery tests from blacklist and added "other" binding directory to the PYTHONPATH.

commit 4ec281e299faadeb20dac4a7cf55f16c9124ebeb
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Jan 14 14:27:45 2010 -0200

    Removed warninig: missing braces around initializer for 'PyTypeObject' from basewrapper.cpp

commit c06ceb1aab9b8199a75f9b9572a0556c8b9a6a97
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Jan 13 13:57:09 2010 -0200

    Fix transfer ownership on return values.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 1bfff6f2f2549dd3a4e068e5bd767f72d8c7bd8b
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Jan 11 17:48:17 2010 -0200

    Fix object initialization.
    
    The C++ object instanciation was made in tp_init function instead of tp_new function. Now tp_new just
    create a useless python object which will be filled in the tp_init function.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 9e7c52bbef25fb118452aacae4f8e05ca5c9cf9a
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Jan 11 14:03:45 2010 -0200

    Added tests for the bug related to tp_new vs tp_init problem.

commit ef6fff7e7cacd4bee51afe64d4301e228ab2eade
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Jan 11 13:55:56 2010 -0200

    Use the package name instead of the module name to generate the "global" header file name.

commit cdb91dc7438da10abe071eb852dc0db00ad90695
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Jan 7 15:45:48 2010 -0200

    Added Shiboken::makeTuple inline method to help with constructions of Python tuples
    from C++ objects.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit eb980e2beb0a3a9c1fca4bc217a61a67a2996710
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Jan 8 17:27:10 2010 -0200

    ShibokenGenerator::getBaseClasses don't return null pointers.
    
    Reviewed by Lauro Moura <lauro.neto@openbossa.org>

commit 56f308aa8aa2b188a9d18dd54a084ea76cfed90e
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Jan 4 11:20:36 2010 -0300

    Improved template variables to deal with custom types.
    
    When template variable representing a C++ argument (%#) is represents
    a custom type it is replaced by the Python argument (%PYARG_#), since
    custom types are not converted to C++.
    
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit adc8e9f427160d20fe85d1f222a26d696c3b4479
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Dec 30 14:54:20 2009 -0200

    Try to decref py_result if an error happenned.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit f92949abe5640493b7e89e94ea00f1dedfbd2657
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Dec 29 17:05:48 2009 -0200

    Add -> operator to AutoDecRef class.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit d99271db59b6776bbba042dcf67b99942d0abf1b
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Dec 29 15:51:44 2009 -0200

    Always use global method indexes in qt_metacalls instead of local indexes.

commit f6a9728c7fdba439c2fba826afbc38b45c94e047
Author: renato <renato.filho@openbossa.org>
Date:   Mon Dec 28 16:55:14 2009 -0300

    Implemented support for classname on MetaObject.
    
    Reviewer: Hugo Lima <hugo.lima@openbossa.org>

commit 7f5c1759587b1225a7b7310800d4efafc6b64160
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Dec 29 16:56:58 2009 -0300

    Puts derived and otherderived tests on the black list.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit ef1d065f23b6e9c206cb44b5fd2c36708bb238ca
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Dec 8 11:24:48 2009 -0300

    Adds "libother" as a new test library.
    
    New test library and corresponding binding were added to check for
    intermodule problems. The CMake linkage type for the modules had to
    be changed from MODULE to SHARED.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit e67ea3ffab7c161785636b78c41f3b624ec0f5ab
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Dec 29 13:15:45 2009 -0300

    Generated module headers now include headers of required modules.
    
    Example: "other" module depends on "sample" module, so the generated
    module header for "other" (i.e. "other_python.h") will include
    "sample_python.h".
    Of course the required module include path must be set by the build
    system.

commit 9f79c3de8192c4ce5f0ae86687d3ece2196323ba
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Dec 29 10:09:58 2009 -0300

    Adds test for modified function using type system template.
    
    The new test adds a "toInt(bool* ok = 0, int base = 10)" method to
    Str class. The modification uses a type system template function
    that uses the variable "%2" to reference the "base" argument; in
    the case when the thing is called without parameters "%2" should be
    replaced by "10" instead of a converted C++ variable name.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit 731a68999274ab58fb35f3d3238f713fbf91c878
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Dec 28 16:51:08 2009 -0300

    Modifies ShibokenGenerator::writeCodeSnips semantics.
    
    A NULL pointer in the "lastArg" parameter of writeCodeSnips means that
    the function being processed will be called without arguments. The
    behavior prior to this change was that a NULL lastArg indicates that
    all arguments are to be used.

commit e489074ccb5bf5b98564d9752907a5657506f4e4
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Dec 28 10:55:54 2009 -0200

    Wrapper classes of QObjects store a pointer to their own meta object, a dynamic one.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 2fc991d0239cfa0111c5fa9629e183add4076bbf
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Dec 28 10:46:37 2009 -0300

    Adds test case for type discovery.
    
    C++ returns a new instance of Derived as its ancestor Abstract pointer
    and the bindings must produce a Python wrapper of Derived type.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit ff6ac013b7be3b4900a0abfe57e1467fcf908635
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Dec 22 19:48:28 2009 -0300

    Replaces SbkCopyCppObject template function with the CppObjectCopier template struct
    
    In addition to the mere use of SbkCopyCppObject to copy C++ objects,
    it is needed to know if a C++ type has a C++ wrapped produced by the
    generator. To solve this SbkCopyCppObject was transformed in the template
    struct CppObjectCopier with the methods copy and the constant member
    isCppWrapper.
    The Converter[Base]<>::createWrapper methods were replaced by template
    function SbkCreateWrapper.
    Also some refactoring was made on the Converters code to improve legibility.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit b06e2adc558688f0788f998ab51e6afb08895150
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Dec 22 19:15:36 2009 -0300

    Changed SbkBaseWrapper_New signature to use "bool" instead of "unsigned int" in some parameters.

commit 4f6d31013a2c01faf66d8581c4d21465ccc66f7c
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Dec 21 17:34:31 2009 -0300

    Improves TypeResolver code generation for the PySide extension.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit 315c1fa52fcb7976b58bd07aa88b306fa1c4d7e7
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Dec 21 17:33:36 2009 -0300

    Removes unnecessary comments from Complex converter test header.

commit 30b8dbe1327ecf34143f33c2005bc1064f671b08
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Dec 21 17:28:34 2009 -0300

    Improvements and refactor on libshiboken's converters.
    
    Short methods in Converter and ConverterBase variations received the
    "inline" keyword.
    A convenience "toPython" signature receiving "void*" as parameter was
    also added to the converter classes.

commit 1f0fdbdfa55b027d22fbf492108e6cbce2fffaac
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Dec 21 17:19:08 2009 -0300

    Refactored SbkType specializations and replaced "long long" by "PY_LONG_LONG".

commit f54ddefd58b0ee7499c84c26beaab9452cd453cb
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Dec 21 16:08:12 2009 -0200

    Disabled AutoDecRef obj. copy. and added some useful cast operators.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 27f6ed14ad776cdc5a9587211709ffcc19b92d8f
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Dec 18 11:43:00 2009 -0300

    New unit test for added function with varargs parameter.
    
    Reviewed by Hugo Lima <hugo.lima@openbossa.org>

commit 6a2d25727e23273127a52a303361941f0d22b271
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Dec 18 11:42:03 2009 -0300

    Adds support for added functions that receives varargs arguments.

commit d31ac61663db41013333d16aa61a16ba71ecf5fd
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Dec 18 11:33:57 2009 -0300

    Adds OverloadData::hasVarargs() which says if there is a varargs argument among the overloads.

commit 808a89b409672d1a3c2082b848983ba58e0b462a
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Dec 18 11:31:05 2009 -0300

    Adds AutoDecRef class that holds a PyObject pointer and decrefs it when get out of scope.

commit 337f95e404fb25f0035a36aa046fbe51e9af8d18
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Dec 17 14:14:18 2009 -0200

    Register object-types with * at end into TypeResolver.

commit 9ab2b614214ac925f17818ceda176a543d674fd9
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Dec 16 17:42:50 2009 -0200

    Add metaObject() method to every class derived from QObject when
    the flag enable-pyside-extensions is on.

commit fe681d0b1105c5e4ce61130700a2707b86320d94
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Dec 16 15:26:27 2009 -0200

    Write SbkType<T> function implementation for inner classes.

commit 41ecfb5863ff4242f49d20071d3ea872caffc9df
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Dec 16 15:14:16 2009 -0200

    Added template specializations for SbkType<T> when T is a primitive type.

commit 0133a99f71e88c9e0642f05a7d55ef798275260a
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Dec 15 12:21:34 2009 -0200

    Added the option --enable-pyside-extensions to enable PySide extensions.
    
    You need to enable these extensions if you are generating a binding for a Qt-based library
    and need to pass some types through the signal slots mechanism.
    
    If you turn this flag on, you also need to link the generated bindings with the
    libpyside, besides add libpyside include path to your project.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit f41cf0af8ed705d342ea448acac89659eea64bfd
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Wed Dec 9 19:34:12 2009 -0300

    Tests for numerical implicit conversions and fixes
    
    Added a test for simple implicit numerical conversions involving
    doubles, signed and unsigned ints and longs.
    
    Some fixes to the converters were also made, mostly related to
    adding manual checks for boundaries with doubles for negative values
    
    Also put the overflow check in a single template
    
    Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>

commit 61570eb7e4ce1ed0f926425d87d26dc3fdb81729
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Dec 16 15:07:40 2009 -0300

    New test adding a function to the module.
    
    Reviewed by Lauro Neto <lauro.neto@openbossa.org>

commit ec7d467093d1b58d038f0b1739aca0247431266a
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Dec 15 15:45:58 2009 -0300

    Updates virtual method tests.

commit 3255dc5168867b9cff41d716b2bfb0641da2bd6b
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Dec 15 15:42:03 2009 -0300

    Removes unused method ShibokenGenerator::hasInjectedCodeOrSignatureModification.

commit 83df2914d6c98e40b9aeb1154149427276f45417
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Dec 15 14:42:53 2009 -0300

    Updates generator to use improvements in API Extractor regarding function modifications.

commit cdcb5567c77b3f703541839101cad564605b7f61
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Dec 14 10:24:41 2009 -0300

    All wrapped classes now inherit from the SbkBaseWrapper of the metatype SbkBaseWrapperType.
    
    The wrapped classes are described with a SbkBaseWrapperType structure which
    extends the PyTypeObject with information about multiple inheritance and
    parenting ownership. This works well for the classes produced by the generator
    but inheriting classes written in Python continues using the PyTypeObject to
    describe themselves. To fix this the SbkBaseWrapperType is now a metatype for
    all the wrapped classes and anyone inheriting from them.
    
    In addition all the wrapped classes now inherit from SbkBaseWrapper, since
    Python's PyType_Ready method need that multiple inheriting classes have a
    common base class with the same size of the classes involved in the multiple
    inheritance, which disqualifies Python's base "object" class.
    
    The metatype and the base wrapper type are initialized by calling the new
    Shiboken::init_shiboken() function. This is done by all the imported binding
    modules, but it is really run only in the first call.
    
    Another noteworthy change is the replacement of PyTypeObject as a basis for
    SbkBaseWrapperType by the PyHeapTypeObject, since the latter is the proper
    choice for types created on the heap, e.g. user defined classes extending
    the generated wrapper classes.
    
    Reviewed by Hugo Lima <hugo.lima@openbossa.org>

commit 0f31a28bcb0d802f461fd2012dd2a239decb81b0
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Dec 11 14:40:21 2009 -0300

    Renamed ShiboTypeObject to SbkBaseWrapperType to clearify its relationship with SbkBaseWrapper.

commit 88dc53b65f0fa7d6dc918198d7800501861ea3ac
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Dec 9 16:11:58 2009 -0300

    Converter<T>::copyCppObject method was replaced by a template function.
    
    Added the template function
    
    T* SbkCopyCppObject(const T& cppobj);
    
    whose task is simply to copy a C++ object. If the binding has a C++ class
    wrapper for it, the function is specialized to use the copy constructor
    of the C++ wrapper class. This replaces the  Converter<T>::copyCppObject
    method.
    
    Also moved implementation of Converter<T>::toPython from the generator to
    ConverterBase<T> in the conversions header, for it makes use of the
    SbkCopyCppObject.
    
    Reviewed by Lauro Neto <lauro.neto@openbossa.org>

commit 23ade48975d7755c38219c86a141f0a910c3e00e
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Dec 8 15:54:21 2009 -0300

    Added convenience method to get the file name for a module's global header.
    
    Reviewed by Hugo Lima <hugo.lima@openbossa.org>

commit 459b585c20262c17f7efe0702aa0251bf678cbc6
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Dec 8 15:34:54 2009 -0300

    Module header now uses the visibility macro on the Python type structure declaration.

commit 1803c35baacb454b49c1b7326c531f0c8115b6c7
Author: Luciano Wolf <luciano.wolf@openbossa.org>
Date:   Fri Dec 4 13:30:08 2009 -0300

    Implement support to slice operator.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit b27f6f347dc19db7706b69c0e7c22e74dea2853b
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Dec 8 12:59:40 2009 -0300

    Fixed inconsistency on type system variables and added a new one.
    
    The %# group of type system variables are meant to be replaced by
    C++ arguments and %PYARG_# by Python arguments. For some reason %0
    is replaced by the Python return variable and %PYARG_0 is considered
    invalid by the replacement system. Now %PYARG_0 is replaced by
    the Python return variable and %0 by the C++ version.
    
    The %CONVERTTOCPP type system variable was added.
    
    Fixed ShibokenGenerator::injectedCodeHasReturnValueAttribution to
    consider a return value attribution when the user does "%PYARG_0 = ..."
    instead of "%0 = ...".
    
    The changes were documented and all the test bindings inject codes
    were updated to use the modified variables properly.
    
    Reviewed by Hugo Lima <hugo.lima@openbossa.org>

commit dd1680a72c7709439f0ea5b91d1ac6f7957c1179
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Dec 8 12:14:10 2009 -0300

    Improved rich comparison writer to use cpythonBaseName method.

commit f38e34a3a987f15e947d45efb0ef7ffeb7f3275e
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Dec 8 11:59:57 2009 -0300

    Renamed a lot of Shiboken things with "Py" prefix to use "Sbk" prefix.
    
    To avoid confusion of Python stuff with Shiboken generated stuff.
    For example: a C++ class called "String" would have the PyString_Type
    wrapper generated for it, mixing with the proper Python PyString_Type;
    now the generate code will have things like SbkString_Type, SbkString_New,
    SbkString_someMethod, and so on.
    
    PyBaseWrapper and its variants were renamed to SbkBaseWrapper.
    
    PyType<T>() is now SbkType<T>()
    
    PyEnumObject was renamed to SbkEnumObject.

commit dc1ca0f9a9aa216973a6ab1f458f0f965033530d
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Dec 7 18:59:20 2009 -0300

    Adds StrList test to check classes that inherit from containers.
    
    StrList class inherits from std::list<Str> and expand it with a
    couple of methods. The added tests perform many different comparisons
    using other StrList objects, Python sequences of Str objects,
    and Python sequences of Python strings.

commit cd830d9435ab10c7961bc4d73644c9532495ce80
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Dec 7 17:58:29 2009 -0300

    Moved container converters from test library to libshiboken's converter header.
    
    The implementation of converters for pair, list and map containers was
    moved from libsample test binding to libshiboken/conversions.h. The
    implementation must be used with types similar to the C++ STL containers
    of the same name.

commit 16ff7b614c9caf8837f72e7143984b252b71f63e
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Dec 7 16:58:56 2009 -0300

    Added Shiboken_TypeCheck macro that makes use of PyType<T>().
    
    The Shiboken_TypeCheck calls Python's PyObject_TypeCheck using the
    type pointer stored in PyType<T> for the type being checked.
    Conversion<T*>::toCpp(pyobj) converter tries first to convert pyobj
    to the Python wrapper for type T and only second to any of the
    convertible types. If pyobj is neither of those, 0 is returned as
    the C++ object. This works fine for Py_None and invalid values are
    not expected to be passed because the generated code checked the
    types first.

commit c1c196a2338d3529c2ec71cc6e375ef64e926689
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Dec 7 15:13:36 2009 -0200

    Do not generate the method Converter<T>::createWrapper, it'll be
    auto generated by the compiler using the function PyType<T> to get
    PyTypeObject of a type T.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 0e532bfaf3d4eb710aa5999764942337b9342304
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Dec 7 13:23:59 2009 -0300

    Adds Overflow check to integer types conversions.
    
    Unit tests were added also.
    
    Reviewed by Hugo Lima <hugo.lima@openbossa.org>

commit fbf30507a2317bf88472ab5c67dd2abd1636bc18
Author: Chris Hills <chaz@chaz6.com>
Date:   Sat Dec 5 22:04:33 2009 +0100

    Correct install location for FindShiboken.cmake
    
    Reviewed by Hugo Lima <hugo.lima@openbossa.org>

commit 516658a73a1c4e121277cca95497614df0dcd3ae
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Sat Dec 5 02:47:03 2009 -0300

    Added unit test for Python class inheriting from a C++ class with multiple inheritance.

commit 5b051968b2c73939bbca2e92296b6f546d911446
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Sat Dec 5 02:44:57 2009 -0300

    Constructor initializes multiple inheritance information for Python derived classes.
    
    The Python wrapper constructor for classes that have multiple inheritance
    now copies the needed information (mi_offsets, mi_init and mi_specialcast)
    from the nearest wrapped class parent in the inheritance hierarchy.

commit 7da644719810ab43d304101f21e0e514109ab86b
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Dec 4 16:34:49 2009 -0200

    Multiple inheritance works as desired for 99.9% of all known use cases!
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit c625d0acea417a7fa4beb9fa888fd2e67fd4e50c
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Dec 4 16:14:25 2009 -0200

    Remove multiple_derived from the test blacklist.

commit 88d1620754d316d14bfb7f47db1ea39bf12b0cee
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Mon Nov 30 19:13:52 2009 -0300

    Initial ownership documentation
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit fb8e301e45907c43b65a2b7a17dd7f6363746e3a
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Dec 2 19:14:14 2009 -0300

    Extended implicit conversion test with a case that uses a reference to an ObjectType.
    
    Reviewed by Lauro Neto <lauro.neto@openbossa.org>

commit bfde7a8074a86f547402bcf6deae3e407a8db3bb
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Dec 2 19:03:51 2009 -0300

    Fixed argument conversion writer and type translator to handle references to object-types.

commit 2dbe941b2b0e163e49cffe6626b1f47a06b8a7c8
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Dec 2 15:38:22 2009 -0300

    Expanded protected method tests with cases of reimplemented grand parent and grand grand parent methods.

commit 866f657323d75f2331101d56048bb94e1532b10e
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Dec 2 15:19:38 2009 -0300

    Expanded virtual methods tests with a case of reimplementation of a grand parent method.

commit 458432be438fb750ae351460536cb7cb3e14263d
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Dec 2 11:53:18 2009 -0300

    Modified the BindingManager::getOverride method to use Python __mro__.
    
    Using the CLASS->tp_mro, which contains the list of method resolution for
    a Python class, to find an override for a wrapped C++ virtual method is
    more correct than relying in the ShiboTypeObject's baseWrapperType value.
    Also baseWrapperType was removed from ShiboTypeObject structure.
    
    Reviewed by Hugo Lima <hugo.lima@openbossa.org>

commit 943a413287b522475532583147a78c6517613006
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Dec 2 14:52:32 2009 -0200

    Remove Qt specific and useless code from header generator.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit 2348f619a3a75036527bc311c57987dc4eb9c345
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Dec 2 14:51:46 2009 -0200

    Dont write "::" in include guards.

commit d0e43624f8fbe76c0d942c627ccccf0d4ac7960f
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Dec 2 14:30:46 2009 -0200

    Add test black list.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit a84378bff4a45aaba839855d6f9151898adbee52
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Dec 2 11:32:03 2009 -0200

    Add support for distributed compilation using icecc.

commit 3c433205280de89d4d7709dfb29426492fdbdbe6
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Dec 1 21:26:20 2009 -0300

    Removed all undue usage of lambda with assertRaises on unit tests.
    
    Reviewed by Lauro Neto <lauro.neto@openbossa.org>

commit 9fdba4372215c5fe243eacf8ca10ce51904b5d69
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Dec 1 20:29:35 2009 -0200

    Add parenteses when dereferencing a variable replaced in a template.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 4d2edcd46c8b4cfaddb03edf2dfb5fbc7068e720
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Dec 1 20:29:10 2009 -0200

    Try to guess the check function for custom types.

commit ebb3ddc32fbab6793263652e9a92738678bbc310
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Dec 1 20:21:54 2009 -0200

    Do not try to write the C++ version of an argument when the argument type is a
    custom type.

commit d7c654862dfcf12241484cb575b389f6cc541e69
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Dec 1 19:02:20 2009 -0200

    Fix %PYARG variable substitution on constructors.

commit 0f8b230fd2dbc1c618ce8fcc84efa5d741ce1a0f
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Dec 1 18:33:45 2009 -0300

    Improved tests for the QLayout-like ObjectTypeLayout.
    
    In the new test case an ObjectType uses a layout that contains another
    layout, both created in C++, and then get deleted. Custom code was used
    to achieve the correct parentship handling
    
    Reviewed by Hugo Lima <hugo.lima@openbossa.org>

commit 95ee90a0c334b587860d4e54b7bf8c079379d7c6
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Dec 1 18:30:03 2009 -0300

    Fixed type system variable replacement to allow %CONVERTTOPYTHON outside functions.

commit 41e15ab24936095dc8ef2eac6c2bb53c4e4ffe6f
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Dec 1 15:27:35 2009 -0300

    Fixed inverted parentship semantics.
    
    The parentship was expressed inverted in the type system and was
    working because the generator implementation was also screwed.
    
    Reviewed by Hugo Lima <hugo.lima@openbossa.org>

commit 6ea32275b157bcf3a97725172a06122b4ff98d0a
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Dec 1 11:36:45 2009 -0300

    Updated ObjectType and ObjectTypeLayout to resemble the Qt's QLayout class.
    
    Also added more test cases that use ObjectTypeLayout.

commit 64cda5a441fd912469c4ad2c7afcc39f0da6819c
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Dec 1 10:19:03 2009 -0300

    Type check writer now adds isConvertible check to object-types and value-type pointers.

commit f532dd366b70e39000e1431b9dc3ba805f29af57
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Dec 1 10:15:42 2009 -0300

    Converter's basic isConvertible and toCpp methods consider None as C++ NULL pointer.

commit 106a1aceccb2ebac8b13e0b102ce4f015d9fee3d
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Dec 1 10:14:24 2009 -0300

    Shiboken::cppObjectIsInvalid now accepts None values as valid.

commit be59882e51be2b19d44eb0c925a759dbc813470e
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Dec 1 10:12:11 2009 -0300

    Added a new signature of cpythonIsConvertibleFunction to ShibokenGenerator.
    
    Added cpythonIsConvertibleFunction(const AbstractMetaType*) to
    ShibokenGenerator to generate "isConvertible" checks that adds
    the pointer sign '*' to value pointers and object types.

commit 040a38dd87f34e1dc9c8c144943a59f3a434f477
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Nov 30 17:47:54 2009 -0300

    Added tests for object reparenting.

commit 3cd048ce7e6be098b5428bff3e59f0fe1aa14293
Author: Luciano Wolf <luciano.wolf@openbossa.org>
Date:   Tue Dec 1 11:22:14 2009 -0300

    Fix some ownership tests.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 1b1c6f7dadaeb5872a3d3a170782cb8cf52f4940
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Dec 1 10:57:56 2009 -0200

    Dereference pointers when the argument is passed by value when replacing template variables like %n.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 2867ee6f75990d2540baabc55fdfc0c8f527b12d
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Nov 30 19:03:03 2009 -0200

    Fix issues with parent tag.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit ea768f172b2114c0a07e07e5ae7903f675bc665d
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Nov 30 18:00:24 2009 -0200

    Added documentation to shiboken command line options.

commit ed4721dd84cb3f637dabb6803c7692c11437f80a
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Nov 30 17:37:40 2009 -0200

    Removed useless sphinx template file

commit 659ce4c3b9854b3670a7a2c6f685f73eafac53d4
Author: Luciano Wolf <luciano.wolf@openbossa.org>
Date:   Mon Nov 30 18:30:39 2009 -0300

    Implement 'child return' examples and support.

commit fe71552f4f254d84f2563ee24f108f5dd2c559c6
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Nov 30 17:20:34 2009 -0200

    Added tests for something like QLayout.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit fdd64b248fb7bf6c6da3d3785e1ce2ec8d26bdbb
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Nov 30 14:54:15 2009 -0200

    Support parent rules for return values.

commit 0986fe76a6caedcd77d0334efe2c09e38ff2a087
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Nov 27 19:50:48 2009 -0200

    Add the generator flag "enable-parent-ctor-heuristic".
    
    When enabled, this heuristic will check every constructor for an argument named "parent",
    if the argument is a pointer, then it'll be the parent of this object.

commit 78bf7bca1fe92052ae7b64827ae81bbe25bd8c3d
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Sun Nov 29 01:26:56 2009 -0300

    Added method to take care of the details of ownership transfer to C++.
    
    Simple ownership transference, i.e. without parenting, is now performed
    by the new BindingManager::transferOwnershipToCpp method. It remove the
    parent of the transfered object and proceeds transfer or invalidation
    if needed. The generated code for simple ownership transfer from Python
    to C++ now reflects this change.
    
    Fixed the method BlackBox::keepObjectType that steals an ObjectType
    ownership to C++ to remove it from its parent also. The BlackBox
    class does not take care of the stolen object as a proper parent
    would, but its destructor deletes the object, so the "unparenting"
    is needed to avoid freeing the same memory twice.
    
    Created an unit test that adds children to a parent ObjectType and then
    steal the children to C++ with BlackBox.keepObjectType.
    
    Reviewed by Hugo Lima <hugo.lima@openbossa.org>

commit 697f24dfa96b15a46e9e5afa79e102e9a5100d73
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Sun Nov 29 00:40:38 2009 -0300

    Fixed some typos in tests' comments.

commit 0e2de944d5ddfce144a824280e08febbc8a1271a
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Sun Nov 29 00:19:47 2009 -0300

    Wrapper invalidation method recursively updates children objects status.
    
    BindingManager::invalidateWrapper checks if the object to be invalidated
    carries any children objects and recursively invalidates them.
    
    Shiboken::destroyParentInfo function was refactored to call the new
    recursive wrapper invalidator and then call a helper function that
    only destroy the parent information.
    
    The invalidate parent test was updated.

commit 22fb6d89c445174e77afe698d247c72d05e1576a
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Nov 27 20:27:43 2009 -0300

    Some fixing and refactoring for the ObjectType test class.

commit 1dffc65e80f7ed87d51322de10492c7aec7106ca
Author: Luciano Wolf <luciano.wolf@openbossa.org>
Date:   Fri Nov 27 18:29:07 2009 -0300

    Fix objects/points methods to return a list + fix example using them.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 5d2e5cd85ec6950f5bb848fe08e66cd8520cf29d
Author: Luciano Wolf <luciano.wolf@openbossa.org>
Date:   Fri Nov 27 17:17:08 2009 -0300

    Use map instead of list inside BlackBox class.
    
    Now keepObjectType/keepPoint and retrieveObjectType/retrievePoint
    uses a ticket to get the object from a map. It's a way better than
    lists.

commit 62de488a772ad9369887fcb4482df149b7c49b94
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Nov 27 17:52:06 2009 -0300

    Fix identation of generated code for C++ wrapper destructor.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit f0b311979e924fe17d0212613692fa95649c5b8d
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Fri Nov 27 16:56:09 2009 -0300

    Add test for delete child in python
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit cb864734e69ef75f131ce7b46e7fa463f8ab1876
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Wed Nov 25 19:12:02 2009 -0300

    Adding test for deleting parent

commit 0931a0322e19541a86b73fad81da43c10c75d15c
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Thu Nov 26 18:27:43 2009 -0300

    Add invalidate parent test
    
    Using BlackBox to invalidate the parent

commit 4521af39d3ba97bb206f3bf321f77d0c84f5f303
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Thu Nov 26 15:49:49 2009 -0300

    Add test for deleting child in cpp

commit 104eb1dd5d662e75f39badbcb689d8137cf2f5b9
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Thu Nov 26 15:46:02 2009 -0300

    Add removeChild and killChild to ObjectType test

commit eb5cadcdddf834d5df0b36d19d9411e4cf931cce
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Nov 27 16:22:46 2009 -0200

    Implemented primitives to solve the parent/children problem.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 3c2e7df28e219a1628f7ed0f1e63b831d07fc69c
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Nov 27 16:21:25 2009 -0200

    Add parent tags for ObjectType class.

commit 396c6b7ea7f774c60a44b36617bf7a767c208d59
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Nov 27 16:06:46 2009 -0200

    Small fixes for parent/child unit tests

commit cd074d305fddf1a3aced9513909adcf9ce632975
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Wed Nov 25 19:12:02 2009 -0300

    Adding test for deleting parent

commit 9dbb330536497b07e803dda7c6368d7e875b2c3b
Author: Luciano Wolf <luciano.wolf@openbossa.org>
Date:   Fri Nov 27 15:11:09 2009 -0300

    Test ownership transfer from Python to C++
    
    There are 3 tests to be implemented in order to check the correctness.
    - 1. Correct the assert function inside kindergarten example to raise an exception [done];
    - 2. Use "create" method to return a C++ created instance and use it to test ownership [done];
    - 3. Use e.g.: "Point" class as a value-type to test "invalidate non-polymorphic".
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 909b8b91f808db71ce3658e88ed19808a5744c10
Author: Luciano Wolf <luciano.wolf@openbossa.org>
Date:   Fri Nov 27 11:38:46 2009 -0300

    Improving ownership transference tests.

commit 82d9090fa5d60fbe29caea2f0097e9ed6d649de3
Author: Luciano Wolf <luciano.wolf@openbossa.org>
Date:   Thu Nov 26 19:39:51 2009 -0300

    Renaming -> KinderGarten to BlackBox

commit acad8ceeef196c725eeabe7cf2a042a91eecbee3
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Nov 26 19:01:24 2009 -0300

    Added convenience method BindingManager::invalidateWrapper(const void*).
    
    This new invalidateWrapper finds the Python wrapper for a C++ pointer
    and then invalidates it.
    
    Virtual destructors for C++ wrappers call the invalidateWrapper on
    the "this" pointer.

commit f694fbbff8999bde36fcd161c3b3f369c7f3e6a1
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Nov 26 17:33:26 2009 -0300

    Added tests for the validity of Python wrappers used as method arguments.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit 609f863f04e9f29e562f7b091bd4f1cb603b23dd
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Nov 26 17:16:49 2009 -0300

    Updated method call writer to use the new PyBaseWrapper.containsCppWrapper.
    
    CppGenerator::writeMethodCall now generates code that uses containsCppWrapper
    when moving ownership from Python to C++. It deals with these cases:
    
    1. The wrapped object has no virtual destructor: just calls invalidate
    2. The wrapped object has a virtual destructor: checks if it was created
       by Python (containsCppWrapper is true), if so just transfer the ownership
       to C++, otherwise invalidate the Python wrapper immediately.
    
    It also writes an #error clause if the ownership transfer described in the
    type system was meant to be performed in a non-wrapped type (e.g.: a PyInt
    can not have its ownership transfered to C++, since it is converted).

commit f6fa5d8ace42ded446cbbf95a50cffc068aecc62
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Nov 26 17:16:12 2009 -0300

    Added the "containsCppWrapper" flag to the PyBaseWrapper.
    
    The containsCppWrapper flag says if the C++ pointer held by the
    Python wrapper has a binding generated C++ wrapper and was created
    by Python. This means that the C++ object has a virtual destructor
    that will invalidate the Python wrapper if it is destroyed when its
    ownership is with C++.
    
    PyBaseWrapper_New function was expanded with the "containsCppWrapper"
    parameter, and CppGenerator::writeConstructorWrapper was updated to
    use it.
    
    The PyBaseWrapper structure was documented with comments.

commit a3574b9365f0ba24f2d53d3b615ac926457ebb06
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Nov 26 17:01:12 2009 -0300

    Wrapped C++ object validity checks now consider implicit conversions.
    
    When CppGenerator::writeInvalidCppObjectCheck if called for a function
    parameter and said parameter has implicit conversions that use other
    wrapped C++ classes the validity check is written for them too.

commit c98a8d83110459e486f623919deafd604f1424e4
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Nov 26 16:57:44 2009 -0300

    BindingManager::invalidateWrapper also removes ownership of the object from Python.

commit dc9bff2ee00700f7adb1dd11b2eac9f2b040fa68
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Nov 26 16:54:11 2009 -0300

    Fixed OverloadData::numberOfRemovedArguments(func, int finalArgPos).
    
    The parameter "finalArgPos" refers to a position in the modified
    function, when it is provided the removed argument counter must
    consider the removed arguments before the final position.

commit d31812c2b3ecb93d1326c00a11fbb4e4bca6f6ed
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Nov 26 16:51:36 2009 -0300

    Added convenience method OverloadData::isSingleArgument(overloads).

commit 736854dc7e64cb2bdcb8d765aace6ee51d8c1150
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Nov 26 11:01:18 2009 -0300

    Python arguments are now checked for Python wrapper validity.
    
    If the expected argument type has implicit conversions the type of
    the Python object is also checked.
    
    The invalidate-after-use test was moved from the ObjectType test
    to its own test file.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit 517d1c914879bcf243442aac4b393e8ee3c26ff9
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Nov 26 09:21:14 2009 -0300

    Renamed Shiboken's function cppObjectIsValid to cppObjectIsInvalid.
    
    CppGenerator::writeInvalidCppObjectCheck receives the name of the PyObject
    to be checked and do not set the exception message anymore, since it is
    done by Shiboken::cppObjectIsInvalid.

commit ffbb8bb1df621ab3f31f859e62d21e06f9ed8a80
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Nov 25 18:46:33 2009 -0300

    Added the invalidateWrapper method to BindingManager.
    It sets the wrapper as invalid and removes the relation of C++ objects
    to the Python wrapper from the mappings.
    
    Moved BindingManager::releaseWrapper(void*) to BindingManagerPrivate,
    since it should only be used by releaseWrapper(PyObject*).
    
    Modified includes on conversions.h to use quotes instead of < and >.
    
    Reviewed by Hugo Lima <hugo.lima@openbossa.org>

commit 9f228238498dea95db7eb8c2f0b21186ea98d206
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Nov 25 17:04:22 2009 -0300

    Fixed visibility for multiple derived test classes.
    
    Reviewed by Hugo Lima <hugo.lima@openbossa.org>

commit ecc97184c0025d701ce7789e61ee55b84c29b942
Merge: b973238 32ec53b
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Nov 25 16:52:48 2009 -0300

    Merged with multipleinheritance branch

commit b973238682789a8f6dc68ec824df8c8e14be0ce9
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Tue Nov 24 15:01:32 2009 -0300

    Add overload dependency on PyObject
    
    PyObject_Check should be the last one in the overload type check
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 8dcbf2b6ea6c79d0a984a0d87fb598c6d1fc62d8
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Sat Nov 21 18:00:17 2009 -0300

    Improve overload sorting
    
    Now adding a new dependency: If the overload type is a
    container or template and the contained type is also in the
    overload list, the contained type is checked first.
    
    Added due to QList<String> and QString.
    
    WARNING: Not sure yet if this is the best fix :)

commit 133172661836d496856a190358c0d60ed64dd486
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Mon Nov 9 22:09:00 2009 -0300

    Adding test case for sorting overload data

commit a7ad5fdfc6cef168d538605ee0dec0e14f55f7d1
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 24 19:28:00 2009 -0300

    Added an PyObject* specialization to the Conversion template to
    avoid problems when converting PyObjects to C++.
    Tests where also added for this.
    
    Reviewed by Lauro Neto <lauro.neto@openbossa.org>

commit b8db6d3d44eb4e7bdb1e680acb51b91dba64bbc6
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 24 19:01:47 2009 -0300

    Updated the code injection writer to replace "%TYPE" and "%0" by the
    proper values when they are used in a constructor code injection.

commit 8346dba84250919d435d0115b0f776f4d01ea4fe
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 24 19:00:16 2009 -0300

    Updated Shiboken to use AbstractMetaFunction::isUserAdded() instead
    of the removed AbstractMetaFunction::UserAddedFunction enum item.

commit fd4185bd29c74113b645eb165d8c4e3fda580c99
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 24 18:57:47 2009 -0300

    Fixed custom code writing of "native" class for constructors.

commit 0a1c9c647646ab1b905a967437cdbda7036e6a49
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 24 18:10:43 2009 -0300

    Updated libsample classes that are missing the LIBSAMPLE_API macro.

commit 2c32ffea81cd5acc6502cd9864d5dc4d5f63c64f
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 24 13:19:53 2009 -0300

    Added tests for classes with virtual and non-virtual protected methods,
    for virtual protected destructors, and for non-virtual protected methods
    modified with signature removal, add-function and code injection.
    Also improved the tests for non-protected virtual destructors.

commit 81282d09cd9b03bade993957a9fc2791eda3393e
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 24 13:15:16 2009 -0300

    Added an option to generate code without using the "#define protected public"
    hack, that doesn't work on the MS Windows platform. When generating the
    bindings it adds public dispatchers for protected methods on C++ classes
    that have them. When avoiding the hack classes that have protected methods
    get C++ wrappers instead of just the ones with virtual methods.
    On top of this, support for virtual (and protected) destructors have improved.

commit e00d987174d56826d9a5fb9ba9983409ad71c375
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 24 10:47:08 2009 -0300

    Added unit test for virtual destructor.

commit ffa52e72c2b8cc5d7a6086d4a5a270eac91de8b9
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Nov 23 14:51:56 2009 -0300

    Added ShibokenGenerator::shouldGenerateCppWrapper(metaClass) method.

commit e243cc91579f8df5e51518a5cfae75cc995d39ec
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Nov 23 21:34:40 2009 -0200

    Fix location of tr1's hash functions and namespace on msvc.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit 982db27e691d4df0276b7e9fbfa471f53c8647a3
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Nov 23 21:18:29 2009 -0200

    Added visibility rules to libsample.

commit fc9458dc83858ad76a5d589c3cd787ef5a1d5d16
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Nov 23 19:35:11 2009 -0200

    Remove -lutil from target_link_libraries. This library *must* be provided by cmake.
    If any distro doesn't provide this by default, this is a distro bug, not a
    shiboken one.
    The other problem is that an unix/linux/gcc specific flag can't be placed here, because
    it doesn't makes sense on windows.

commit 91428f941656255f7c39f40639c0528ac7f02902
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Nov 23 19:33:30 2009 -0200

    - Add msvc compiler flags.
    - Add boost include directories to include path.
    - Work when the generatorrunnerplugin_dir variable have white spaces.

commit 4373e985191194ada48a81bc0db592c0312b4c3d
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Nov 23 19:26:28 2009 -0200

    Use "unsigned int" instead of "uint".

commit 7289fd3ff34ee42bb6b43203cb0f813f38ee927d
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Nov 23 19:19:50 2009 -0200

    Fix dllimport/dllexport macros.

commit 94c954319c72fb70ad82255aba0b7314666585d9
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Nov 23 19:17:54 2009 -0200

    Uses __FUNCTION__ instead of __PRETTY_FUNCTION__, which is a GCC extension.

commit c9fb996124de535c1b7e446aa983a0165b60131c
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Nov 23 19:02:45 2009 -0300

    Removed the use of fileno from the SimpleFile test, since it is Linux specific.

commit aab893abc80a1c7db0581220abdccd935e7720f8
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Nov 23 11:17:57 2009 -0300

    removed boostpythongenerator legacy comment

commit 4861eb3deb00c9d6a153de5c36de29c9ccd85529
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Sun Nov 22 13:41:06 2009 -0300

    Removed unused method ShibokenGenerator::signatureForDefaultVirtualMethod.
    Used only by boostpythongenerator and remained untouched after the
    Shiboken fork.

commit 8f76c2ace7d74c6382b398126f1dcd8cda617d29
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Sun Nov 22 13:33:54 2009 -0300

    Added a great deal of tests to virtual method modification cases.

commit c48f9163b42c20c91c33183a1835e0b356f104dc
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Sun Nov 22 13:18:43 2009 -0300

    Added the method injectedCodeCallsPythonOverride(func) to
    ShibokenGenerator, it returns true if a code injection
    on a virtual method override (a "native" inject-code) does
    a call to the Python override.
    
    Added the %PYTHON_METHOD_OVERRIDE type system variable,
    it is replaced by the name of the pointer to a Python
    method that represents an override to a C++ virtual method.
    
    A code injection in the "native/end" position for a method
    modification is now put before the dereferencing of the
    variables used in the Python call (the method object and
    the Python argument tuple).
    
    If a call to the Python override method is detected on
    code injections of the "native" class from method
    modifications, the generator doesn't write the same
    call again.
    
    All documentation was updated with the changes.

commit e85fcb77b2f1c9db7fbb3008d073609bf710190a
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Sat Nov 21 23:10:46 2009 -0300

    Added the type system %PYTHON_ARGUMENTS variable. It is used in
    "native" code injections to get the Python tuple of objects converted
    from C++ arguments received from a virtual method call. The tuple is
    the one to be passed to a Python override of the wrapped C++ virtual
    method.
    
    Other type system variables were improved to have a smarter replacement
    depending if they are part of a code injection of the "native" or "target"
    classes.
    
    * %PYARG_#
      In the context of a native code injection it represents one item in the
      Python argument tuple, acquired with PyTuple_GET_ITEM. If the binding
      developer attributes some value to the variable the code snippet writer
      tries to be smart and sets the tuple item with PyTuple_SET_ITEM.
      See the updated documentation for more details.
    
    * %CPPSELF
      Replaced by "this" in native code injections.
    
    The documentation was updated with the new information.

commit 8560b8437fdc84f16221cabb37397f092f52e087
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Sat Nov 21 21:29:12 2009 -0300

    The code injections in the native/beginning position come after the
    C++ arguments conversion to a Python argument tuple. The documentation
    was updated with this information. The virtual method writer was also
    fixed to not convert removed arguments.

commit 2b8bc79e05b3e6800f6c31e4d66991c288029710
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Sat Nov 21 20:50:20 2009 -0300

    Added method ShibokenGenerator::injectedCodeUsesPySelf to check
    if the user injected code uses the "%PYSELF" type system variable.
    This is useful to provide the Python wrapper pointer to native
    method code injections.
    Also updated the documentation comment for injectedCodeUsesCppSelf.

commit b1f210acf3e564a0757b44c1838773b72908cd4c
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Nov 20 15:43:15 2009 -0300

    Added a great deal of test cases for argument removal and modification.

commit 68dab51ea3e835b6739385a9e415e0093f397392
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Nov 20 15:14:19 2009 -0300

    Renamed OverloadData::hasDefaultValue to OverloadData::getFunctionWithDefaultValue
    and modified it to return a pointer to the actual AbstractMetaFunction with the
    default value (or NULL if it doesn't has the value), instead of just returning a
    boolean. The overload decisor writer makes use of this new behavior to get the
    correct function for a method call with default values.

commit c476a59f4f8709723bceaa1973251ee0c3032ecc
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Nov 20 14:25:59 2009 -0300

    Added test case for method overloads with different return types.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit 63745320ed1c2f61f472d7f438317cef0808fe35
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Nov 20 14:09:18 2009 -0300

    Added the writeNoneReturn method to CppGenerator to attribute Py_None
    to the Python method wrapper return variable, after a call to a C++
    function that returns void, but only when any of its other overloads
    has a return type different from void.
    Also documented the CppGenerator::writeOverloadedMethodDecisor method.

commit d4325c727704f294019a759d20a4fda57bb4d5dc
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Nov 20 13:28:26 2009 -0300

    Added methods to OverloadData:
    * OverloadData* headOverloadData() const;
      Return the root OverloadData object for the current OverloadData.
    * QStringList returnTypes() const;
      Returns a list of the possible return types for the current OverloadData.
    * bool hasNonVoidReturnType() const;
      Returns true if any of the overloads for the current OverloadData has a
      return type different from void.

commit 0a7e1e307a3686c7e12d422913f08c8790293f61
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Nov 20 14:36:54 2009 -0300

    Added the method ShibokenGenerator::injectedCodeHasReturnValueAttribution
    that checks if a function returning 'void' needs to have the Python method
    wrapper return value set to Py_None. This happens when any of the other
    overloads for the function return type is different from 'void'.

commit 8a42258c1e991db1aa04bcaf79b11793b1ca0ca5
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Nov 19 16:29:12 2009 -0300

    Updated the type system description of the sample binding to use the
    proper type system variables instead of calling Shiboken directly.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit 91a8a3e5be3e7ee6bcfc4ce288e54e1ae6aa2f9b
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Nov 19 16:16:38 2009 -0300

    Some refactoring and cleaning on CppGenerator::writeMethodWrapper.
    CppGenerator::writeMethodCall now passes to the injected code writer
    the last argument to be used in a call, if it is not the last one,
    so the code writer can make smarter decisions when replacing type
    system variables in user written code.

commit 923d660de00f5d7397fa4ab047f8db4407f1930c
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Nov 19 15:57:31 2009 -0300

    Modified ShibokenGenerator::writeCodeSnips to receive also an
    AbstractMetaArgument indicating the last C++ argument available
    (i.e. converted from Python arguments to C++) to be used in the
    type system variable replacement. If a variable in the user's
    custom code is not ready, it is replaced by the argument default
    value.
    Also updated the documentation.

commit 41d487c7dab6dca179cbb90b113e8fe06cd420ce
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Nov 19 12:51:55 2009 -0300

    Added the type system variable "%ARG#_TYPE" which returns the C++ type
    for the argument indicated by the numeric index '#'; wrong indexes will
    issue a generator warning.
    The documentation was updated as well.
    
    Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>

commit 630885e316f17988e9a88cb1cbf8b26c0082f72c
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Nov 19 10:14:33 2009 -0200

    When the user adds a function with an argument unknown for the typesystem,
    the generator writes type checks as TYPENAME_Check, so this macro allows
    users to add PyObject arguments to their added functions.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 50c612a7d34a0776cd68686eead6035ddf80b0ab
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Nov 19 10:57:48 2009 -0300

    Major refactor on the methods writeOverloadedMethodDecisor and
    writeMethodCall from  CppGenerator. The code is shorter and more
    clear.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit b60132d7da4dbf0c2d06b84b1cfc9586cca3eef6
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Nov 19 10:55:04 2009 -0300

    Fixed type system variable replacement for %# and %ARGUMENT_NAMES
    to handle correctly removed arguments and also consider variable
    values with default values.
    The documentation was updated with the new information.

commit 7909835691c3589364169c3c8b8e06263490cb07
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Nov 19 10:13:25 2009 -0300

    Fixed OverloadData::isFinalOccurrence method to consider removed arguments.

commit 403d2ff8d2c073d673a983b87c9813705ca39496
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Nov 18 15:08:01 2009 -0200

    Use google dense hash table instead of std::map in BindingManager.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 32ec53b32affed4707712f33cd6a370ecc62ad7f
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Nov 16 14:26:53 2009 -0300

    Added new cases to multiple inheritance tests.

commit 3f3e7a567129990e05ca9d5a2e641438b888f713
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 17 10:40:14 2009 -0300

    Modified the multiple inheritance initializer function to consider
    cases where the pointer is casted to void* and then casted to a
    parent pointer, and after that to a grandparent pointer.
    The multiple inheritance initializer is now using a STL set object
    to avoid registering the same offset multiple times.

commit 1dacb1f53874fe0e78fae1a613f1d3167c97efc7
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 17 10:38:51 2009 -0300

    Added the method ShibokenGenerator::hasMultipleInheritanceInAncestry(metaClass)
    which returns a boolean indicating if there are cases of multiple inheritance
    in any of its ancestors.

commit 07dcd7d4cb8d5576f028a227164f3652afc48e51
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 17 09:39:00 2009 -0300

    Updated the %PYTHONTYPEOBJECT type system variable to use the new
    ShiboTypeObject structure.

commit 4141dc2c0aeca64c37f1d119948e265b9fbf16f3
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Nov 16 00:26:31 2009 -0300

    Binding manager releaseWrapper(PyObject*) method fixed to release
    the multiple inheritance pointers registered for a class with this
    trait.

commit 0d5ddc094018a4b2a7e1caf4d57f39bf38ac8930
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Nov 16 00:23:47 2009 -0300

    In multiple inheritance cases the binding manager only assigns a
    wrapper to a base pointer plus offset if the latter is greater than
    0 to avoid duplicated associations with the base pointer.

commit 88f1e3aa4f3677687355813f4ff326d273a17e48
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Nov 16 00:19:04 2009 -0300

    Added the getAncestorMultipleInheritance method to CppGenerator,
    it returns a QStringList with the names of all classes that are
    multiple parents for the current class or any of its ancestors.
    The purpose is to get a list of all possible casts that could
    change the memory address of the base pointer of a class.

commit 2807ddf87ab5d85698011a4260c833c7fc577fe2
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Sun Nov 15 23:34:40 2009 -0300

    modified the unused method ShibokenGenerator::getBaseClasses to
    return an AbstractMetaClassList (AbstractMetaClass does not
    provide such a method)

commit d20e2dd6a0212b2d8a89cbdc9dc99faabb61bd0c
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Sun Nov 15 23:40:18 2009 -0300

    Classes that have multiple inheritance in some point of its ancestry
    now receive the multiple inheritance information, the initialization
    function will be that of the first ancestor that have multiple
    inheritance.
    
    Example:
        class MDerived : public Base1, public Base2
        clas SonOfMDerived : public MDerived
    
        MDerived defines the function PyMDerived_mi_init to register the
        multiple inheritance information, and SonOfMDerived just uses the
        ancestor function.

commit 1081714f5275261420a74ac333a117fd2bbca0c4
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Sun Nov 15 01:20:07 2009 -0300

    Shiboken retrieves a Python wrapper object from its corresponding
    C++ object using the memory address of the former to retrieve the
    latter. When multiple inheritance is involved, a C++ object passed
    to C++ could be caught back downcasted to one of its parents with
    a different memory address, following the memory layout for
    multiple inheritance used by the compiler. This poses a problem
    to keep the Python identity of a C++ object.
    
    The solution was to extend the traditional PyTypeObject with a
    number array with all the possible displacements to be added to
    an object pointer to produce the memory addresses for the valid
    pointers that could appear from all the possible type casts
    involving the object parents. All the possible pointers are
    registered (and unregistered) by the binding wrapper manager.
    
    To store the multiple inheritance information the ShiboTypeObject
    structure was created, expanding the original PyTypeObject with
    two fields:
    
    mi_offsets
      an integer array containing the possible displacements from the
      object base pointer. The array has the value -1 at its end.
    
    mi_init
      the function that will initialize the mi_offsets array it is
      called at the first instaciation of a multiple inheriting object.

commit 80282277d0845a65739c33675aa9a91b10faa4b1
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Nov 12 09:48:17 2009 -0300

    improved multiple inheritance tests with a myriad of new cases

commit 75988e117f22d6bd228dc3fa54887bfcf3773b00
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Nov 18 09:20:36 2009 -0300

    Fixed ownership modification writer: the argument index for the self
    object is -1 not 0.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit bcc342a9ae9bf5126a28fe462f98c4f7e51a5d1f
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Nov 18 09:18:19 2009 -0300

    Moved the validity check for wrapped C++ objects to a CppGenerator
    method, since it is used in more than one place. Also clearified the
    error message.

commit a1ba9ad5e6b8c9c9a9e48929faa6c7a337ed8573
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 17 21:46:03 2009 -0300

    Conversion for function/method arguments with modified types will
    not be generated anymore. The user must provide its own conversions
    for those cases.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit 5696943e8b699d425cba5cbabd5837fd5b616c7e
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 17 21:28:51 2009 -0300

    Commented unused static function 'dumpFunction'.

commit da6117eb38e4e9a505a2b5c445551bf7ea4b89e1
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 17 21:23:33 2009 -0300

    Fixed C string toPython converter to return Py_None when a NULL pointer
    is received.
    Fixed and improved the test for functions returning NULL pointer values.

commit d2b4c0304ef15deca43c4802c1255ece46f5af53
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 17 20:35:20 2009 -0300

    Added features to manage basic ownership transference between C++
    and Python. Updated the KinderGarten example with two methods that
    steal and retrieve Python ownership, and added the proper unit tests.

commit 8b9677b29a884b2b05e66ad6bb29aad4d82333ee
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 17 20:34:05 2009 -0300

    Fixed Converter<>::toPython(cppobj) method to return Py_None when cppobj is NULL.

commit 6d7747c7a6ed69a689c8e6672a77ca06c76f39b4
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 17 19:38:24 2009 -0300

    When calling a function whose next argument has a default value
    the overload decisor tries to find the exact function for the call
    instead of passing the reference function.

commit 515d3e34046415007027a1749a7a3be2a8b7a534
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 17 16:20:43 2009 -0300

    Added support for the type system "invalidate-after-use" argument modification.
    The Python wrapper object produced for an argument received from C++
    on a virtual method call is marked as invalid after the call to the Python
    override. If the Python script keeps the wrapper and try to use it afterwards
    a RuntimeError exception is raised.
    Test cases were added using the ObjectType::event method and the new Event class.

commit 5a579efa850071ef06345a982611eb19995f8187
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 17 16:18:41 2009 -0300

    Value-type Python wrappers now check if they hold invalid C++ object pointers.

commit fb129ef13b3df1a7db31a8d339c910f644ec50ab
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 17 16:09:54 2009 -0300

    Wrappers with invalid C++ object pointers should raise RuntimeError
    instead of NotImplementedError.

commit c022f8f4331d0ec741bb8ddaa43661d51cd085a9
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Nov 17 16:54:12 2009 -0200

    Adapt to changes in Generator interface.
    
    Reviewed by Renato Araújo <renato.filho@openbossa.org>

commit 6abb94dd7727e476e3df61b183cbf34597a99739
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 17 16:02:33 2009 -0300

    Fixed virtual method writer and Py_BuildValue format string generator
    to take pointers to value types into account.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit 1e91b684b7174c224ddd40363e5bea74c7a64f66
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 17 09:27:38 2009 -0300

    Added the %PYTHONTYPEOBJECT type system variable, which is replaced
    by the proper Python type object depending on the context: method
    or class modification. Also added an AbstractMetaClass argument
    to ShibokenGenerator::writeCodeSnips to pass the needed context
    information.
    
    Reviewd by Luciano Wolf <luciano.wolf@openbossa.org>

commit 8297598336b3248fd1d8be778f62b641121b98a0
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Nov 16 17:12:45 2009 -0300

    Shiboken documentation updated with type system variables information
    
    Reviewed by Hugo Lima <hugo.lima@openbossa.org>

commit 127367b3ede6e3a59604cc93a3f2133d35b958ef
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Nov 16 17:06:22 2009 -0200

    Add variables CONVERTTOPYTHO[###] and PYARG_# to code snips.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 38083ce45cdd4e67b7e59070605c957973ecc250
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Nov 16 11:31:21 2009 -0200

    OverloadData does not ignore arguments which modify types.

commit d2b0d52b53d31ca4b026a1982bb322fcb58a73cd
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Nov 13 15:20:54 2009 -0200

    Added tests for various inject-code use cases.

commit 6db0e13380d4818a3ab14975e5c30d50c2e4d0e2
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Sat Nov 14 19:53:18 2009 -0300

    removed unused CppGenerator::writeNonVirtualModifiedFunctionNative
    method; it was used only by the boostpythongenerator from where
    Shiboken code forked
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit f55aaaf1de07f0039d9ca051d935a80fb668f6eb
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Sat Nov 14 19:10:48 2009 -0300

    improved the generator detection of user's custom code calling the
    wrapped C++ methods (including constructors) to avoid making
    duplicate calls;
    also fixed the writing of native/end code injection on wrapper
    class level
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit 9475272fd02378b3f94d8eff6617d23f1bb8de89
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Sat Nov 14 13:14:39 2009 -0300

    added support for code injection in the module level

commit f659460ba56014b5e7d20a0f3d50b53619132add
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Nov 13 19:04:38 2009 -0300

    updated code injection semantics documentation with guidelines on
    how to call the wrapped C++ method/function

commit cfae5701b16e057c992f0fadc7faf20dd3e09388
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Nov 13 18:32:27 2009 -0300

    fixed how the generator deals with code injection for classes and methods;
    also fixed the tests type system accordingly

commit 95a97f17d87bcc20a3b4cfc6a5a98fbbc24fe432
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Nov 13 18:20:32 2009 -0300

    added two convenience methods to ShibokenGenerator that receive
    AbstractMetaFunction; one tells if the function uses the %CPPSELF
    type system variable on its code snippets (if any), and the other
    says if there is a call to the wrapped C++ function in the code snippets

commit 8f779f4dbdd3b62891ffd61e8a441f7108ea4cc7
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Nov 13 12:35:44 2009 -0300

    added complete documentation on how the Shiboken generator interprets
    and uses the type system's code-injection tag
    
    Reviewed by Lauro Neto <lauro.neto@openbossa.org>

commit 4dd08dd079e7e56c7dcc0f8d3d89d1c8d78073d5
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Nov 13 10:55:34 2009 -0300

    added initial work for more complete code injection tests

commit d21f66a68b8d9c9ec189541a160e6e955ab41af2
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Nov 12 15:48:32 2009 -0300

    removed unused method HeaderGenerator::writeVirtualDispatcher;
    it was here since the fork from the boostpythongenerator
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit b58553f67867dc3e09243a137de560f83758f4a4
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Nov 11 17:22:56 2009 -0200

    Add visibility policies to libshiboken and for bindings generated by shiboken generator.
    
    As shiboken generator needs minor changes to support inter-module dependencies, these changes
    about symbol visibility does not support inter-module dependencies, however support it is
    simple, because we just need to make some symbols visible to other DSO's.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 627d4cc994ba1c122995b367e2fc63a02d02d04a
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Nov 11 14:13:01 2009 -0200

    Removed useless file container.cpp/h

commit 0307edda4b3448cba88f221cbb60402cbb1adaeb
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Tue Nov 10 20:48:30 2009 -0300

    Do not write cppSelf inside constructors
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 94e356425a022e787d86007061977bc4aa01e413
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Tue Nov 10 11:07:44 2009 -0300

    Sorting overloads topologically
    
    Instead of using the current weight-based overload
    sorting, sort them topologically based on implicit
    conversions.
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit 81abd420131ed0897f8b21b6c21d6cffb6c68181
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Wed Nov 4 19:31:55 2009 -0300

    Adding signed int/long/char to primitiveType dict
    
    Reviewed by Hugo Lima (hugo.lima@openbossa.org)

commit 0f880ec413d0ecebd9beb1053ff04e7877183cca
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Sat Oct 31 13:31:01 2009 -0300

    Adding external operator to Collector (stream)

commit 14b0bdd84be9a23419fea6b6e70370d4a1cb6501
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Nov 9 19:08:52 2009 -0300

    moved HeaderGenerator::writeConverterImpl to CppGenerator, i.e.
    the converter implementations now are written in the proper wrapper
    class .cpp files instead of in the global module header
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit 3abff670957e68c6e6bc2da2aa51acc1b5d4508f
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Nov 6 16:38:39 2009 -0200

    Added support for reverse operators.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 3e61c5a9b7b54dc31c5c76b0fce8f46c655344ca
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Nov 5 19:01:39 2009 -0200

    Added a reverse operator to the test class Str.

commit 93834a55aa0261c3fe5894b1fc596aa8726a407a
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Mon Nov 9 13:25:01 2009 -0300

    Adding test case for add-function with const char*
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit a2722b07a3ff4cd2b4974118c937b57fde045902
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Nov 9 12:32:53 2009 -0300

    added a Python wrapper deallocator for classes with private destructor

commit eb88812ff2a7fa6470758b544d577550b2c2d165
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Nov 9 12:05:27 2009 -0300

    the Python wrapper deallocator wasn't removing the Python object
    entry from the wrapper to C++ object relation table

commit d333fae90f77299d00b6b41db84487727a0581b6
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Nov 6 14:08:00 2009 -0300

    Fixed overload decisor to write correct code for the case when a
    method signature is found at some point but arguments with default
    values lay ahead
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit c7375598ee44d242aacba3cab4e5448f2fcbb760
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Nov 6 13:05:03 2009 -0300

    moved the pair container check written by the overload decisor to
    the proper place in writeTypeCheck method

commit 3a300338545442396f95d930afa11a7635df0bd6
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Nov 6 10:37:03 2009 -0300

    added the method OverloadData::findNextArgWithDefault() which returns
    the nearest occurrence of an argument with a default value. this
    could be used when the overload has only one signature and some
    of the arguments ahead could have default values leading to more
    than one way of calling the method.

commit f69bf045ad195efe9725c2c6a483a1473cd9ce43
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Nov 6 13:34:56 2009 -0300

    added a new test called Time with a set of constructor and method
    signatures to test the overload decisor on more situations;
    also a clarifying comment was added to the Point class

commit 858e19f8ace26fd1b38d516dc5023530d8e53544
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Nov 6 12:26:45 2009 -0300

    refactored the core method of the overload decisor to cut down redundant
    code, also added extensive comments to increase understanding of the
    decisor workings

commit e3ccffb6b50c3508f0c92280dd314b8393c4ff03
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Nov 5 10:55:09 2009 -0300

    updated Python representation of C++ enums and flags (only QFlags at the
    moment): the enum/flags numeric operators are shorter and only flags allow
    new instances to be created and the libshiboken
    
    Reviewd by Luciano Wolf <luciano.wolf@openbossa.org>

commit 934fa3cb1a2672120bd82bb65764dc6a355ead35
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Nov 5 10:48:05 2009 -0300

    added boolean parameter checkExact to ShibokenGenerator::cpythonCheckFunction
    forcing it to use the _CheckExact macro instead of the more permissive _Check;
    one use of this is to check if a parameter is of exact type enum if a C++
    method that receives an enum

commit 4be9565ed1fa49dfacc1bbcd930a3d63b61a4486
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Nov 5 10:37:53 2009 -0300

    ShibokenGenerator::cpythonBaseName updated to deal with flag types

commit d04f6315269d857db1eaea45a37746e72d2c7d25
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Nov 5 10:34:09 2009 -0300

    removed extensible enum tests since they do not make sense

commit 7a65a185ba4aa9557a1077034b95acdec1e126c6
Merge: b9cbe65 8060141
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Nov 4 17:48:48 2009 -0200

    Merge remote branch 'setanta/master'
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit 80601411e86eb8a3f63407dadb2f20725f731ca0
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Nov 4 17:27:05 2009 -0300

    updated toPython conversions to deal with C++ methods that return
    references to object-type (which are supposed to be moved around as
    pointers)

commit b9cbe65f98fb784cfa681e8a5c8641e94353802b
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Nov 4 17:18:26 2009 -0200

    Do not generate code for operator[] (sequence protocol must be used) or operator->,
    the last one does not makes sense into python world.

commit 83c91cc8e7a90946466d0f4b94b7d9c7a93cb5ae
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Nov 4 16:39:32 2009 -0300

    improved the multiple inheritance test with two new methods that cast
    their instance of MDerived to MBase1 and MBase2; also did some refactors
    and commented the unit test
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit d396d1233effb0eb4c2fbe777237dbeef6b68d53
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Nov 4 16:04:36 2009 -0300

    CppGenerator::writeRichCompareFunction now adds an implicit conversion
    for the 'other' argument if it doesn't fall on the other comparisons cases
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit 35eec1b536db375ca271e8216f857bf9ba333f82
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Nov 4 16:02:47 2009 -0300

    added the CppGenerator::writeArgumentConversion method to be used
    on Python method wrappers that should convert from Python arguments
    to C++ arguments; if implicit conversions are needed code to
    deallocate any created object is also written.

commit fcf09b6b5f20c43899126db2cf97d26058298caf
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Nov 4 15:46:24 2009 -0300

    modified ShibokenGenerator::cpythonIsConvertibleFunction argument
    to TypeEntry* and added a convenience method that receives an
    AbstractMetaType* and calls the new version of the method

commit 030df87352ace61c7bad697ece1aa691215c20ea
Author: renato araujo oliveira <renato@renato-note.(none)>
Date:   Tue Nov 3 17:10:08 2009 -0300

    Skip generation of unecessary wrapper classes.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 90df25280525d86d110f40906153197258b7bd1a
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Nov 3 20:13:50 2009 -0200

    New theme for shiboken documentation.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit dea207ee699d9d4e9abbe034b7b035df1161613b
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Nov 3 20:10:09 2009 -0200

    Removed useless/outdated/wrong documentation from shiboken.

commit 2d8b5d3467e34757bf462211e7bbd8e4e1453ac3
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Nov 3 20:09:32 2009 -0200

    Added documentation for sequence protocol support in shiboken.

commit ec2e6f46ced20a82d886725f146e54e96fedd2ce
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Nov 3 17:29:04 2009 -0200

    Add initial support for python sequence protocol.

commit e01eba39663c2f7d0f1137ab30ed18891394afb5
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 3 17:20:31 2009 -0300

    updated Point tests with cases for returning Point pointer,
    const pointer and const reference

commit 2b54063938045567453daaa17c33b323e68b890f
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 3 17:17:48 2009 -0300

    fixed ShibokenGenerator::translateTypeForWrapperMethod to append the
    pointer character to value-type pointer strings, this fixes a problem
    on the generation of toPython conversions

commit 048498d28bf7a0451bfc490b9f1799d3d3751b40
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 3 05:21:04 2009 -0300

    * added the ObjectType example which adds some cases similar to
      those on Qt's QObject (object name, parent and children list),
      although no ownership test was added yet.
    * added method Abstract::getObjectId(Abstract*) as a case of
      an argument that should be converted to an abstract type.
    * added ListUser::multiplyPointList(std::list<Point*>&, double),
      which tests the conversion from a Python list of Point wrappers
      to a C++ list whose items will be altered.

commit 22ae136011c64b3da8f272e6f55574413064efae
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 3 05:07:48 2009 -0300

    improved and organized the workings of conversion templates: added
    ConverterBase from which the generic Converter<T> and the specific
    Converters inherit; two methods were added:
    * createWrapper: returns a new PyObject wrapper with the Python type
      information produced by the HeaderGenerator; this method is called
      by toPython when a not yet wrapped C++ object needs to be converted.
    * copyCppObject: copies a instance of a C++ class, usually created by
      a implicit conversion that needs to be passed to a C++ methods;
      could be more than one method with variants of the converted type
      (value, reference, pointer) that makes no difference to the Python
      wrapped class.
    
    The C++ arguments converted from Python arguments by the Python method
    wrapper are dealt with as pointers if they are object or value types.
    
    Abstract classes and object-types, whose copy constructor and operator=
    should be private, are declared as Converter<T*> instead of Converter<T>
    and inherit from ConverterBase<T*>, this avoids impossible tries to copy
    such objects.

commit 7fb3a8f70f37ad31e44849430a64ea9b60d68ffe
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 3 04:30:28 2009 -0300

    added the method ShibokenGenerator::shouldDereferenceArgumentPointer,
    which checks if an argument type should be dereferenced by the Python
    method wrapper before calling the C++ method

commit 40fda5093b8f50cb8071ce2ee23a60bb681c181f
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 3 04:26:00 2009 -0300

    minor changes to Point class from the test library: using more
    references as arguments, and added setX and setY methods

commit 0dc6d7208900278cf612567faf71dd4327266041
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 3 04:22:25 2009 -0300

    splited multiple derived cast test into two: one testing a converision
    to the first base class, and the other to the second base class

commit 3df3f556471cbaa1d3929e7929a4e5c201ffca45
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Nov 3 04:20:07 2009 -0300

    libsample's Point.__str__ now shows float point values;
    test case updated accordingly

commit bfa59654a4393f15a82599e4dc7452673ed2fae4
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Sun Nov 1 16:07:57 2009 -0300

    created a simpler version of ShibokenGenerator::writeBaseConversion
    that receives a TypeEntry* and uses only the basic type, ignoring
    const, pointer or reference information;
    ShibokenGenerator::cpythonIsConvertibleFunction now calls this
    new version of writeBaseConversion

commit 6038ce2cca67a7c61a5454d715fd1b1baacf0c15
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Sun Nov 1 15:41:41 2009 -0300

    changed ShibokenGenerator::writeBaseConversion return type from
    QString to void since no one is using it anymore

commit 6dc8636c9f86fb83d970e736525e8b8252866bf6
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Sun Nov 1 15:20:49 2009 -0300

    added "PyObject* createWrapper(const T* cppobj)" to the Converter structure
    from libshiboken, other changes followed this improvement:
    
    * added a Converter<T*> specialization that inherits from Converter<T>; its
      toPython(const T* cppobj) method returns a existing Python wrapper and
      increments its refcount, or else it creates a new wrapper using the
      createWrapper method. Now createWrapper is the only method generated for
      Object Type conversions.
    * added a Converter<T&> specialization that inherits from Converter<T*> and
      just calls its parent's methods adapting them to C++ references.
    * added a base template class for C++ enums and flags conversions called
      Converter_CppEnum, it inherits from the base Conversion class. Now the
      HeaderGenerator need only to generate the Converter<ENUM>::createWrapper method.
    * all generated conversions now uses only the type name and no qualifiers (i.e.
      Object Type converters are declared Converter<TYPE> instead of Converter<TYPE*>

commit 76a79055e1d6c44e85f78f94c400725f1fbfbc3b
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Sun Nov 1 12:02:13 2009 -0300

    changed PyBaseWrapper_New to receive a const pointer to the C++ wrapped object
    instead of a non-const; the const pointer is casted to a non-const inside the function

commit 7f36d495236751cb90b6676f6381dcb8acc5abe8
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Sun Nov 1 10:45:31 2009 -0300

    removed unused str.h included from reference.h on test library

commit b8c82fa143a1e3f4593896a337a15ad5fe9e8326
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Oct 30 19:31:06 2009 -0300

    moved method ShibokenGenerator::implicitConversions to base
    Generator class on (GeneratorRunner)
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit 1f592674b233a2c07d3ffa2cd035c3b9644b8789
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Oct 30 19:15:32 2009 -0300

    removed method ShibokenGenerator::sortContructor, already implemented
    on Generator (from GeneratorRunner); also corrected the type in the
    method name (also corrected on the base Generator class)

commit 5c1508aa2ee95691abfdbdbac518b3270b283ee4
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Oct 27 18:31:57 2009 -0200

    We cant assume that all operators have the commutative property.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 9c6170b5a6ec1e84bc777f6f0aa09250b594d87d
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Oct 30 17:36:33 2009 -0300

    modified overload method decisor to create an instance of a value-type
    when a method that expects a reference for the value-type receives
    another type convertible to said value-type; the instance created is
    given to a std::auto_ptr object to be deleted at the end of the scope
    
    Reviewed by Hugo Parente Lima <hugo.lima@openbossa.org>

commit f851bcd28974db9a3614145a4ced9f04e321d836
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Oct 30 17:29:07 2009 -0300

    changed the way value-type C++ references are converted: instead of
    creating a new wrapper for the new value-type passed by reference it
    reuses an existing wrapper as is expected for a referenced value

commit 684aa0235c757a614963deaa4337202b1bc6c997
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Oct 30 17:11:00 2009 -0300

    added new test cases to check if a value-type object passed as reference to
    regular, virtual and reimplemented virtual methods are being altered in place

commit 5c190b426be32749bb802c15ef2c980b057af658
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Oct 30 16:49:55 2009 -0300

    added convenience methods to call ShibokenGenerator::cpythonWrapperCPtr;
    the base method now uses TypeEntry* instead of AbstractMetaClass*
    and checks if the TypeEntry represents a Value Type or an Object Type,
    if not it returns an empty QString

commit c5bae38411471448cd226fc91a116034e2757ab3
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Oct 30 13:49:14 2009 -0300

    added the Str class to libsample and test cases that check the __str__
    implementation and a method that receives a C++ class reference
    through a Python type implictly convertible to said C++ class
    
    Reviewed by Hugo Lima <hugo.lima@openbossa.org>

commit 74b9a717eb0a4e375b91f8cb3a4cf6eebb08486a
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Oct 30 09:50:52 2009 -0300

    modified ShibokenGenerator::writeBaseConversion to write only the function
    name if the argumentName parameter is not supplied

commit 7c721ee9cd052d93ebe13855488d84838d1ad357
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Oct 30 09:44:01 2009 -0300

    fixed bug on BindingManager.getOverload that was returning a non-null
    value in the cases where the Python instance did not overridden the
    queried virtual method

commit cb4b14c179887735ffa925ea01de333c3ed41677
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Oct 29 11:51:53 2009 -0300

    improved OverloadData class to sort the alternative arguments putting
    the primitive types first and moving down the wrapper objects with more
    implicit converversions; this ordering scheme is needed to avoid
    unnecessary (and sometimes wrong) conversions

commit 10b5327e02c3ce3f7339226c6289ce0daf230d95
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Oct 28 18:14:13 2009 -0300

    fixed the collector_test.py

commit 2c70b9c40a49dd18bc390783464ef20ed088486d
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Oct 28 17:47:49 2009 -0300

    modified Converter<T>::isConvertible(PyObject*) to check only if the given
    Python object is convertible to the C++ type T, and not if it is of the same
    type as T (this is done by the standard PyTYPENAME_Check macros)

commit b01f0b159a5edf42de817fada68e9852a65e8bc9
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Oct 28 12:58:10 2009 -0300

    the Python check macros are generated once again since it is a
    convention for every type to have the said macros; also, there are
    some situations where one needs to now if a type is of this or
    that kind, and not if it is convertible to other types;
    the two ShibokenGenerator::cpythonCheckFunction reverted to the
    previous behavior and the new stuff was moved to the methods
    ShibokenGenerator::cpythonIsConvertibleFunction, and the places
    from where they are called were changed accordingly

commit f369860e8f9d080cf248d257aa3b2febe4093324
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Oct 30 14:23:33 2009 -0300

    Revert "changed the way value-type references are converted: instead of"
    
    This reverts commit 9835de882d806a809b96cdce98597156915fbb48.

commit 9835de882d806a809b96cdce98597156915fbb48
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Oct 28 01:02:40 2009 -0300

    changed the way value-type references are converted: instead of
    creating a new wrapper for the new value-type passed by value it
    reuses an existing wrapper as is expected for a referenced value;
    also fixed the collector_test.py

commit 68539d84d1e8c86a2ebd8681a6bea3f032381187
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Oct 27 17:56:06 2009 -0300

    added test cases for C++ operator<< method (Python's __lshift__);
    also fixed some grammar on overload_test.py

commit 215779a303932c36012f38dda6996f9782d6b2be
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Oct 27 14:14:25 2009 -0200

    Use the converter inside the rich comparison function, because if the
    type is convertible to X, does not mean that the type is X.

commit 8782c39052ead7300ed621a3c91905c674c37927
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Oct 27 15:28:54 2009 -0300

    added more test cases to check overload decisor behavior

commit 0cd881dbf54fb964ba5d46ab842a98b6145387ab
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Oct 27 13:39:04 2009 -0300

    arguments whose types pointers to value-types are now converted as they
    were common value-types, the pointer is extracted only at the time of the
    method call; this behavior is desired when an overloaded method has both
    cases to decide upon, and it is natural to convert for the common case

commit e09048c630c6c0f992178e36d5479f6da73e7970
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Oct 27 12:50:29 2009 -0300

    reverted changes on the associations of C++ primitive types to Python
    primitive types for they are used to decide equivalencies on the
    ShibokenGenerator::isPyInt method

commit 46619953316a8bc7b5cfc5ac5536187658069273
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Oct 26 19:43:43 2009 -0200

    Added Converter<T>::isConvertible to replace the T_Check functions.
    
    This allow the user to full custommize the type conversion.
    
    Note: This change added a known regression on test_derived

commit e7e527ad998fa9c2dbb7d8bf93d105e7b916e755
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Oct 26 11:04:44 2009 -0200

    Dont generate conversion rules for types with user definied conversion rules.

commit 49fdd12554181cccd9ff53e544e2cbfb1a666882
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Oct 26 20:21:03 2009 -0300

    fixed Generator::Option flag usage error

commit 731908837e2c853e95add93748a777366c4b58e4
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Oct 23 18:47:24 2009 -0200

    Fix shiboken, so it can use the new conversion rule API from APIExtractor.

commit 30d47b496fac7fc98a2b249746057a2fb9636e2b
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Oct 23 17:49:58 2009 -0300

    changed the way that added special methods ("__str__", "__repr__") are
    dealt with to allow future expansions ("__call__", "__getattr__", etc)

commit 76892dffe7e79d45f9300ac496baec5063aa72fe
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Oct 23 16:12:38 2009 -0300

    added test for definition of __str__ method on type system

commit dc6dbdc19c797628040a3ffe02c2189823620a84
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Oct 23 15:31:26 2009 -0300

    removed debug line from SimpleFile test class

commit 83dc49eb3f94421e9e17bb444db735693df3755b
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Oct 23 15:08:55 2009 -0300

    fixes error that causes return value to be used on method wrappers
    that had the return type removed on the type system
    
    Reviewed by Lauro Neto <lauro.neto@openbossa.org>

commit 1cd1d0c57ea6b608063fc91f1e3d7e9731324ace
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Oct 23 14:58:40 2009 -0300

    renamed template variable %SELF to %PYSELF and %CPPOBJ to %CPPSELF
    to improve code readability; also fixed usage of template variables
    on type system for the test bindings

commit d43b3d4c08ed35eaf5c4a32043c83382bd00fbd0
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Oct 22 16:18:52 2009 -0200

    Use template variables for inject code

commit 269a256eb29ef340e6a2f0c1e2b75a74743b040e
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Oct 22 14:28:28 2009 -0200

    Added better support for functions with inject code.

commit da2a2569c56fca4a41b2a81048cde1fd4705d5ec
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Oct 23 12:37:18 2009 -0300

    added the convenience method implicitConversions(const AbstractMetaType*)
    to ShibokenGenerator to retrieve a list of implicit constructors for the
    given type

commit 869d3372b55f542d32f6f6220566507e7d8a2cb8
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Oct 23 13:27:33 2009 -0300

    Revert "modified the generator do deal with all value type conversions in"
    
    This reverts commit 4213b0176ae9af91221dbe38e1dead10638ff054.

commit 70ba8b2ea9fcad7a6f88938c1675b45dec320a31
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Oct 23 13:27:23 2009 -0300

    Revert "The implicit conversions of value types generate a new instance"
    
    This reverts commit 0953187f7b13b8ca410c8db8fa856154cc6729a8.

commit 988e86e134ba72d037d9967384085f09c03de43d
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Oct 21 11:56:41 2009 -0300

    added two new variables for the type system template system:
    * %SELF, replaced by the variable name for the Python instance
      of a class method
    * %CPPOBJ, replaced by the pointer to the C++ object for the
      Python instance associated with the method where it appears
    
    the 'cpythonWrapperCPtr(const AbstractMetaClass*, QString)' method
    was moved from CppGenerator to ShibokenGenerator to be available
    for the type system variable replacement method;
    
    the test bindings for the libsample's SimpleFile class was updated
    to use the new type system variables

commit a1ea10151397cefd86aa0f6c4822932d2cc6a601
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Oct 20 15:34:18 2009 -0300

    added the SimpleFile class to the sample library to check how a
    method returning a boolean value that indicates success/failure
    on a IO operation could be modified to express the any occurring
    problems as Python exceptions (in this case IOError);
    the generator was changed to return a 'None' value for Python
    callers on methods that had it's return value removed

commit 0953187f7b13b8ca410c8db8fa856154cc6729a8
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Oct 2 17:27:10 2009 -0300

    The implicit conversions of value types generate a new instance
    of the type, and this instance must be freed after use.

commit 4213b0176ae9af91221dbe38e1dead10638ff054
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Sep 29 10:18:39 2009 -0300

    modified the generator do deal with all value type conversions in
    the same manner as it does with object types, in other words
    using pointers instead of copies when converting the Python
    wrappers to C++

commit 1129ff5d3b65dfa6b8221a1df5383781bd6862d2
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Sep 29 11:10:10 2009 -0300

    Removed useless const_casts.

commit a2f6894206343579473fbca6b2ba017df683cbd4
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Sep 29 09:21:29 2009 -0300

    Support for reverse operators without declaring __rOP__ methods.

commit fc3f5a94de1d8c2b378f41e6584899221c7c5037
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Sep 28 17:53:35 2009 -0300

    Rich comparison is back!

commit 38a565b7bb3d81cd2796e1c30b30b38a8b3ff476
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Sep 28 15:31:54 2009 -0300

    Register wrapper function __neg__ into number protocol structure.

commit 7c10bba553c5245ab5848bc3f9f0208c0f5c5440
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Sep 28 15:10:20 2009 -0300

    Do not fill the number protocol struct with __rmul__ where it should be __mul__.
    
    Note: This patch ignore reverse operators in all ways, they will be handled in later patches.

commit 7166b671a77433305af8c4a1a6164c87698620b3
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Sep 28 15:00:28 2009 -0300

    Removed redundant code.

commit b4cd981624c346416229ce523fff42fd63ee1dbd
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Sep 28 11:46:04 2009 -0300

    Do not create method wrappers for assigment operators and cast operators.
    
    Note: You need apiextractor with support for AbstractMefaFunction::isCastOperator.

commit 6b9a6c30cb4899d7536dfae7e74413f7d6cf897b
Author: Luciano Wolf <luciano.wolf@openbossa.org>
Date:   Tue Sep 22 17:36:00 2009 -0300

    Fix QTextCodec and QTextCodec::ConverterState generation:
    
    - Fix function names containing "::" (such as QTextCodec);
    - Fix wrong method naming while generating CPython code;
    - Fix inner classes code generation.

commit 0581436081ef69ae62c51d4bb53c03cb9e6adefb
Author: Lauro Neto <lauro.neto@openbossa.org>
Date:   Fri Sep 18 17:59:25 2009 -0300

    Removing unneeded hard-coded -lgenrunner

commit 8b1169b3d41890ef7da08b7f6f28ed9ba791fac8
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Sep 18 15:54:29 2009 -0300

    Shiboken now fixes the conversions and calls passing Object Types by value

commit 2a26c34da5984bcfc31ec853c79d0b3081edb8d5
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Sep 18 14:35:33 2009 -0300

    added support for multiple inheritance on Python wrapper

commit c38fdeea1a18e4e3f348a12019563a14f33cd39c
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Sep 18 13:24:18 2009 -0300

    expanded the unit tests for multiple inheritance

commit 636ca3946e1ec89900a5a509c31b4aafee84af70
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Sep 17 22:10:17 2009 -0300

    ShibokenGenerator::translateTypeForWrapperMethod stoped mixing
    references with references to containers

commit 846d5a5482720c37d55be910ec8d696de561a640
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Sep 17 14:15:21 2009 -0300

    - CppGenerator::writeOverloadedMethodDecisor takes care of pure virtual functions.
    - Return 0 when an error occur, not PyNone.

commit d54092a097fbd6b5dfb7d54b60eec4d1682d233d
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Sep 16 21:23:19 2009 -0300

    argument conversion now deals with pointers to Value Types

commit 3535a84296afc00eb6913fd1e55decea41b3f35f
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Sep 16 20:55:01 2009 -0300

    modified ShibokenGenerator::getFormatUnitString signature to receive
    a pointer to AbstractMetaFunction instead of a AbstractMetaArgumentList

commit c0ed7e6f62a2e983f85bf5ef68184f9eec5ca3eb
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Sep 16 19:37:58 2009 -0300

    generated converters uses 'const' for all Object-Type parameters

commit e004df0d457f008d9f23c6b9708c5a37cc446f32
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Sep 16 17:45:19 2009 -0300

    Do not register a tp_new function for classes without a public constructor.

commit 30272e14e2ea9f173bc31636998d1c7d9f5e18b3
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Sep 16 17:24:51 2009 -0300

    Changed signature of PySequence_to_argc_argv.

commit e4287151135ee3d5d9c05b9f7f421b253fece677
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Sep 16 13:15:04 2009 -0300

    added suport to flag-like enums (aka QFlags)

commit 7f55b8c2f579753ffaff6ef4d75e0dbc7fd9da34
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Sep 15 13:47:06 2009 -0300

    Removed useless ValueHolder template.

commit 1d811177537207ff0df63985ca4e071c8908a630
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Sep 15 11:50:12 2009 -0300

    Removed rich comparison support until it stops generating bad C++ code.

commit 835cc5773b8fea68c3121f2f86e69ef1c3d4aa2d
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Sep 11 17:12:11 2009 -0300

    Fix more compiler errors on generated code.

commit a79deb363718cda61416ac2796350b40a93fb8df
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Sep 11 15:46:18 2009 -0300

    - Fix CppGenerator::writeMinimalConstructorCallArguments to support containers.
    - Detect QObject and QFlags as non trivial types and use the Converter before
      call Py_BuildValue with them.

commit 6e4832a0c0fb772d1ccbb51b5b351d007df0c3fb
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Sep 11 15:44:52 2009 -0300

    Use const void* instead of void*. This solve the problem when we are inside
    a const virtual function and the "this" pointer is const.

commit cb869be5e63353c6cfe781b954e852f4f120f437
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Sep 11 15:20:41 2009 -0300

    Return a default value when cant find a python implementation for C++ pure virtual functions.

commit b137437505cf662a899a22ffda9c5b36e68181c3
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Thu Sep 10 11:01:03 2009 -0300

    Use Py_RETURN_NONE for functions with null return.
    
    fixes bug #45.

commit 4466eddf64fbfa5d62c20a6782f99b01369fb47d
Author: Renato Araujo Oliveira Filho <renato.filho@openbossa.org>
Date:   Wed Sep 9 15:33:08 2009 -0300

    Create multiple heritance tests.

commit f6192d44c56f76749f8140a81fd0f10bde74ee9a
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Sep 10 10:24:07 2009 -0300

    Fix file name of class wrappers for inner classes.

commit 705549f07ee4366ef20f4918e376edd510cb3495
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Sep 9 15:01:00 2009 -0300

    Do not create implicity conversions for ctors removed by typesystem.

commit 1e4c0e20901bab30da774569abb7f8b40101d4c8
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Wed Sep 9 10:51:38 2009 -0300

    Add includes of global functions

commit a5ac7504e9ac14028e20bb0e579c075c339fa3e1
Author: Luciano Wolf <luciano.wolf@openbossa.org>
Date:   Wed Sep 9 18:43:58 2009 -0300

    Implement oddBool unit test.

commit cc9963336feb7cc3bed8aa71b627395eea725397
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Sep 8 19:03:56 2009 -0300

    Fixed typo in generatorrunner.

commit 450882b3d37cb7c919e51aa64424b8431c049791
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Sep 8 16:36:12 2009 -0300

    Correctly handle operator[]

commit 04fe2c7da09670f65fe091cb17b403b5b0dee155
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Sep 8 16:10:57 2009 -0300

    - Implementation of some functions moved to .cpp
    - Added a warning when no python operators can be found to a C++ operator.
    - Added mapping from C++ operator[] to Python __getitem__

commit 44033dbc8c7790f8d62c7fc841b9f6e7e610d15a
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Sep 8 15:06:41 2009 -0300

    Install libshiboken_generator in the right location.

commit cd78e72332f2e21e4e04c20ad33b46260dd32742
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Sep 8 14:19:34 2009 -0300

    Fix LGPL license plates to libsample unit tests, so the tests can be executed again.

commit b5c80ba98c0100e4aafb5ec767e165949cb5898a
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Sep 8 14:18:45 2009 -0300

    Fix libsamplebinding generator, due to recent changes in  boostpythongenerator.

commit 8ddf82dda3e57fe6d72ed5dab9ebb650cef0765a
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Sep 3 11:30:40 2009 -0300

    added LGPL license plates to libsample unit tests

commit 3bb03f3858c7da7e6aa5a841339a5d81d10a2d1b
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Sep 2 03:36:53 2009 -0300

    added a hack to CppGenerator to go back to generating wrappers
    for global functions; this hack is only need until API Extractor
    supports global functions declarations on the type system

commit e7de1cc2813948a85b755b29fdc9e363a6f6e196
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Sep 2 03:40:13 2009 -0300

    changed converter for C strings to support both 'char*' and 'const char*'

commit c613818b5977f4385f680e9bb1a7e90ff5230164
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Sep 2 02:41:40 2009 -0300

    renamed 'lastArg' argument to 'maxArgs' (and 'numArgs' in other places),
    the new names must fit better the intended meanings

commit 0e137b5969f73a980827058e724bcdd00a2e0802
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Sep 2 02:21:23 2009 -0300

    renamed PolymorphicData class to OverloadData, this should represent correctly
    the class' function; other relative renamings were also performed

commit 146a43e6ab75e97c92ebef8cf7c218e8eb3a5c4a
Author: Bruno dos Santos de Araujo <bruno.araujo@openbossa.org>
Date:   Wed Sep 2 01:39:23 2009 -0300

    fixed some typos on license plates

commit 9e00e39dca65935df280b35ccffce84287e1f4c4
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Sep 2 01:19:58 2009 -0300

    - CppGenerator and HeaderGenerator modified to take classes with
      private destructors into account
    - Removed ShibokenGenerator::canCreateWrapperFor(...) method
    - Minor improvements to ShibokenGenerator documentation
    - Expanded PrivateDtor case and added related unit test

commit fd761144e6ae4c24b3f77fae7047eaa26dbb8764
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Sep 1 23:10:53 2009 -0300

    Added missing LGPL copyright header to libsample/oddbool.h

commit c5f22026676c907eb91442754a7d4cfe0486f045
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Sep 1 22:34:00 2009 -0300

    Changed generator to convert the method call results on wrapped methods
    at each possible call, instead of receiving the return value in the C++
    type and converting it later. Having the result value as a PyObject
    pointer avoids the problem of declaring the return value variable with
    a class that do not have a simple constructor.
    Example: "Foo resultValue;" is a problem when the only constructor for
    "Foo" is "Foo(int)".
    The above described problem is made worse with the addition of OddBool
    and OddBoolUser cases to the sample library. OddBool is registered as a
    primitive (and convertible) type, registered this way it is only
    available as a TypeEntry and a suitable constructor cannot possibly
    be found. This is different from Value and Object types for they
    become AbstractMetaClass objects and all constructor signatures
    can be queried.

commit 06ebb031b31d1c37eb7f2888d38356a2f083cd81
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Sep 1 22:27:45 2009 -0300

    method ShibokenGenerator::writeToPythonConversion now checks for
    validity of 'type' and 'argumentName' arguments

commit 67a473bc145feb44c07da5e8383adc1e06899352
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Sep 1 22:25:08 2009 -0300

    generated headers now include headers defined on type system file for primitive types

commit 5db89848578a416d2904317bc6cc361c3409af2c
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Sep 1 19:03:07 2009 -0300

    Added a python test to classes without default ctor

commit 4d15d6c9527e078921d32ddcdbdec782e1d787f8
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Sep 1 14:40:36 2009 -0300

    Added LGPL license file for libshiboken and libsample

commit 7efedd00ebdb71891c00f87c70103ac75e5ce705
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Tue Sep 1 14:39:48 2009 -0300

    Added LGPL copyright header to all libsample files.

commit 684cb83c834b04eed7b8a84842b7f75e7a45f9ee
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Aug 31 21:50:40 2009 -0300

    Added an example of a class with a private destructor.

commit 7b4bb821d11cb43eb7ad748cd4f4344841f516bb
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Sep 1 11:40:20 2009 -0300

    added virtual method cases to NonDefaultCtor example

commit cdff56993e173ca59bb7a10f9cf58a192fedfb28
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Sep 1 11:34:30 2009 -0300

    added the method CppGenerator::writeMinimalConstructorCallArguments
    to solve the problem of declaring uninitialized variables for
    classes that do not have a zero argument constructor.
    Example: the class with only this constructor
    
        NonDefaultCtor(int)
    
    couldn't be instantiated this way
    
        NonDefaultCtor cpp_result;
    
    The added method searches for the minimal signature that uses only
    primitive types and helps to write this line instead
    
        NonDefaultCtor cpp_result(0);
    
    Right now the method doesn't deal with the case of a class with
    no constructor receiving only parameters, but a recursion could
    solve the issue.

commit 1eef8c3c7c905675ddeb09e7ada3e98e8b6fa4b5
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Aug 31 19:39:09 2009 -0300

    Added a corner case to broke Shiboken tests >:-)
    
    Shiboken generates wrong C++ code when exists a function/method that returns
    a type without a default constructor.

commit e853413dc073d187ccc0a5d5c252332b4f5e37c1
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Mon Aug 31 15:28:38 2009 -0300

    Causes a link error when no converter is supplied to a given type.

commit ae6e4783e738f1a597f9700f9ba4bc0d5de02278
Author: Chris Hills <chaz@chaz6.com>
Date:   Mon Aug 31 19:27:58 2009 +0200

    Check for GeneratorRunner with cmake
    
    Reviewed by Hugo Parente <hugo.lima@openbossa.org>

commit 3c7f8a7013ef03df29045915eb6ea02a79812227
Merge: 182450c 44f4311
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Aug 31 15:08:21 2009 -0300

    Merge commit 'baraujo/master'

commit 44f4311f9bd6ce8ec108eb03e2a78a93c1ac2c2c
Author: Bruno dos Santos de Araujo <bruno.araujo@openbossa.org>
Date:   Mon Aug 31 11:35:50 2009 -0400

    Allow build on either python2.5 or python2.6 seamlessly

commit 182450c804c6396c853ddbbdb23c4b76ce067aae
Author: Hugo Parente Lima <hugo.lima@openbossa.org>
Date:   Sun Aug 30 16:14:06 2009 -0300

    PolymorphicData.dumpGraph() is now a public method (to help us with unit testing)

commit 2fd8bcf0654a2055905c559c24ad33bb49284f3a
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Fri Aug 28 19:24:46 2009 -0300

    fixed constructor calling code written by CppGenerator::writeMethodCall
    to check if exactly 1 argument was requested through the lastArg
    parameter;
    also fixed grammar on a comment

commit fff3d7cbcfcfc8fe84cddc6632dce5a6f3a114fe
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Aug 28 18:52:46 2009 -0300

    Fix bug when binding copy ctors

commit 7dbaf4952df75cd974a724f2a0123add19a3c652
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Aug 28 17:21:33 2009 -0300

    Correctly handle uints and ushorts, because APIExtractor does not knowns the
    that uint is equals to unsigned int.

commit 19f86eb8b0f0733401ebcbfd280f8aee34642ba5
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Aug 28 17:18:44 2009 -0300

    Added a common use case to break shiboken legs.

commit d371f80bf6447bb4f6c209dabb5e5def02665e20
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Aug 28 15:37:41 2009 -0300

    Removed inline implementations from inside Converters to avoid the
    creation of specialized templates just a few lines after
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit d5fc115c508fa1bdb295d2cb7f4a2cb3385c4e82
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Aug 28 14:55:52 2009 -0300

    Removed all warnings

commit 4d97a7317791a274e95e09e5a073f475362fbc37
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Aug 28 14:44:10 2009 -0300

    Turned on compiler warnings by default

commit 0daf40446416f26fa4de8ae7734b1677a0b7f6d0
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Aug 28 14:39:04 2009 -0300

    Binding of global functions DISABLED due to an APIExtractor bug

commit a438dafa40a072a343e1237a4f8cec9d7a3af309
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Fri Aug 28 14:24:31 2009 -0300

    Remove useless option

commit 0e1a43cb39c1e5865c506bc7c69777c0d5ac6303
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Aug 27 21:25:33 2009 -0300

    Fix install location for libshiboken pkgconfig file and remove redundant cmake code

commit 6aebdfc467fb3a6436f418875d974542519666b0
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Aug 27 19:29:27 2009 -0300

    added convenience binary applications to call the generatorrunner
    with --generatorSet parameter for shiboken

commit 074d760dd786afba58550834eb77cc14ba5bd00b
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Aug 27 21:25:33 2009 -0300

    Fix install location for libshiboken pkgconfig file and remove redundant cmake code

commit dd51a87080189abdcb4f692b3c474928e26a3f64
Merge: 7170eba b78a618
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Aug 27 21:22:18 2009 -0300

    Merge commit 'mainline/master'

commit b78a618e4f54dbdbf06c972b8035bcfd4b717d29
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Aug 27 19:07:22 2009 -0300

    Fix lib install dir

commit 54ddc33ffbc2a303154ead10045c681bfe815af7
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Aug 27 19:29:27 2009 -0300

    added convenience binary applications to call the generatorrunner
    with --generatorSet parameter for shiboken

commit 7170eba0ae3b8c1017b08161e827894f6afa6693
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Aug 27 19:07:22 2009 -0300

    Fix lib install dir

commit 21ec8e15575cb3f58db759d123b2e471f9bd2e22
Author: Hugo Lima <hugo.lima@openbossa.org>
Date:   Thu Aug 27 18:37:30 2009 -0300

    Shiboken ported to the new generator/apiextractor architeture.
    
    Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>

commit 39dd735c9486a5808e26a4f07e19522cc904ddd9
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Aug 27 02:48:03 2009 -0300

    updated sample library with VirtualMethods class which contains
    a case of a virtual method that is reimplemented in Python and
    checked in the unit test
    Reference class and unit tests with cases
            of virtual methods that receive C++ references

commit 560cd5ba22479d4b5067c171838a46a4e559e886
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Aug 27 02:45:21 2009 -0300

    fixed type conversions for C++ arguments passed to virtual method wrappers

commit 5ba896641df413f496e634ff5953c4d516157173
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Aug 27 01:01:06 2009 -0300

    updated sample library Reference class and unit tests with cases
    of virtual methods that receive C++ references

commit 93d0d9b5e3178efb8e78fb1ec2c7a2b4ede02972
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Thu Aug 27 00:58:25 2009 -0300

    fixed conversion of arguments on wrapper virtual methods;
    also extended conversion templates to automatically recognize
    references and constant references

commit 37760c1185bcc7887341bfab6e231def221356d1
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Aug 26 22:51:19 2009 -0300

    moved specific CPython wrapper code from ShibokenGenerator::translateType
    to ShibokenGenerator::translateTypeForWrapperMethod

commit 77de99c240585294980d87509247c3e612943414
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Aug 26 15:12:38 2009 -0300

    writes the virtual qualifier for a method on wrapper header file

commit a0f8bdd9be25ff10ecb1e5565188c4fef8941ddd
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Aug 25 22:26:14 2009 -0300

    added shiboken dependency on sample bindings

commit f3973ab15e3a71044d4cbcc2a982a09d739c6c72
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Aug 25 04:11:29 2009 -0300

    Generator uses PySequence functions instead of PyTuple or PyList ones

commit 838b56730d27a6fd5e229c103f1d9957c58c5b0d
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Aug 25 04:06:59 2009 -0300

    changed pair_conversion.h to use PySequence functions instead of
    PyTuple ones, also fixed pair_test.py

commit 9d58de1bfc7e93606fb5582dd05eea185e9fe851
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Aug 25 03:52:25 2009 -0300

    commented debug messages from test library

commit 2132a3eb82830d0719d19eaadb32e39222948bca
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Aug 25 02:56:00 2009 -0300

    added mapping example to test lib as well as unit tests

commit 64243890de689d10d04fdcdeedfe16c1ee612fb8
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Aug 25 02:42:44 2009 -0300

    removed debug messages from BindingManager::getOverride

commit e254974d01df2e02f2f2a755aecb7b0053246ef7
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Tue Aug 25 00:12:01 2009 -0300

    fixed list conversions on test bindings to use PySequence functions
    instead of erroneous PyTuple functions

commit c2fdf775230ea9b0d9a6b1af209cd0a99e2a848e
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Aug 24 22:47:04 2009 -0300

    added unit tests for stl::pair and stl::list conversions on libsample

commit 7d069eda6d0df0ca6976612af2077a85b3ab3fea
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Aug 19 12:35:34 2009 -0300

    removed debian directory -- it is on debian branch now

commit df49f543417ba7b3e26406e1152fde4be8a15379
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Wed Aug 19 12:34:53 2009 -0300

    Adding 'make dist' with git-archive

commit 9a4681eb73caa553aac349457374ff513bd111b5
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Aug 17 19:40:36 2009 -0300

    fixed typo on if statement

commit e0c29962e6f334452f0c9db2caaf6ed18065de85
Author: Marcelo Lira <marcelo.lira@openbossa.org>
Date:   Mon Aug 17 19:31:37 2009 -0300

    The End Is the Beginning Is the End
