commit d84c8d1ead2e4a363782214106efe388ab955244
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Nov 8 14:59:41 2012 +0000

    Release 0.2.3

 NEWS                        |   41 +++++++++++++++++++++++++++++++++++++++++
 configure.ac                |    4 ++--
 src/data/grl-data.c         |    2 ++
 src/data/grl-media.h        |    2 ++
 src/data/grl-related-keys.c |    6 ++++++
 src/grl-source.c            |    2 ++
 6 files changed, 55 insertions(+), 2 deletions(-)

commit 3a3642b26e59d7f56a6940faa684e4fa6ca70aa0
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Sun Nov 4 12:55:02 2012 +0000

    build: Handle grl-net-mock-private.h file
    
    Include it in Makefile.am

 libs/net/Makefile.am |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 5a64d1f579bd54944c3948bb3d97b5fcb4c59748
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Oct 29 18:02:17 2012 +0000

    core: Add "supported-media" property
    
    This property flag for GrlSource specifies the type of media the source can
    deal with.
    
    Thus, if our application is designed to show video content only, we could
    discard all sources not providing this kind of media.
    
    The default value for this property, if not specified, is GRL_MEDIA_TYPE_ALL.

 doc/grilo/grilo-sections.txt |    1 +
 src/Makefile.am              |    2 +-
 src/data/grl-media.h         |   17 +++++++++++++++++
 src/grl-source.c             |   43 +++++++++++++++++++++++++++++++++++++++++-
 src/grl-source.h             |    2 ++
 5 files changed, 63 insertions(+), 2 deletions(-)

commit 1cdab86dbc6fccfc783ca44213d645b67c00fb43
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Nov 1 09:22:46 2012 +0100

    test-ui: Use the right options in search/query operations
    
    It fixes a small bug that meant operations not really finishing.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=687104

 tools/grilo-test-ui/main.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit dacefd96bcfcbf1f1156bea0b17d2c2dbf9da35a
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Sat Nov 3 00:41:27 2012 +0000

    core: core: Serialize/unserialize multivalued metadata keys

 src/data/grl-media.c |  131 +++++++++++++++++++++++++++++++++++++++-----------
 1 file changed, 104 insertions(+), 27 deletions(-)

commit c444d7c829b96c83d1679233c953a3dfc328528e
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Nov 2 16:55:15 2012 +0000

    core: Handle boolean values in GrlRelatedKeys

 src/data/grl-related-keys.c |   44 +++++++++++++++++++++++++++++++++++++++++++
 src/data/grl-related-keys.h |    7 +++++++
 2 files changed, 51 insertions(+)

commit fe2409ee0e395af0bb2588d249f877f9e023812c
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Nov 2 16:53:35 2012 +0000

    core: Add API to remove a key from GrlRelatedKeys set

 src/data/grl-related-keys.c |   17 +++++++++++++++++
 src/data/grl-related-keys.h |    3 +++
 2 files changed, 20 insertions(+)

commit f223ef8ed8ba73bedf3e00e38839927bce1236c8
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Nov 1 22:41:15 2012 +0000

    core: Serialize/unserialize GDateTime metadata keys
    
    Dates are encoded as iso8601 format.

 src/data/grl-media.c |   14 ++++++++++++++
 1 file changed, 14 insertions(+)

commit b6dd0e651ce0e65ae867f424dca60e87b88fab77
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Nov 1 11:37:17 2012 +0000

    core: Serialize/unserialize binary metadata keys
    
    Values are encoded as (escaped) base64.

 src/data/grl-media.c |   32 ++++++++++++++++++++++----------
 1 file changed, 22 insertions(+), 10 deletions(-)

commit 64da840144713035efe0525bbc7bcbdafc08ed1e
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Nov 1 10:29:48 2012 +0000

    core: Serialize/unserialize gboolean metadata keys

 src/data/grl-media.c |    5 +++++
 1 file changed, 5 insertions(+)

commit ae6327ba4a73bf426b6ec230491e9e7f6bf63121
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Tue Oct 23 22:44:10 2012 +0200

    core: Add generic metadata keys from TMDB
    
    The TMDB plugin defines a few new metadata keys of generic
    interest. They should be moved to Grilo's core to make such
    data easier to use once other sources should provide
    similiar information.
    
    This introduces following new keys together with generated
    GrlMedia accessors:
    
      * GRL_METADATA_KEY_KEYWORD
      * GRL_METADATA_KEY_PERFORMER
      * GRL_METADATA_KEY_PRODUCER
      * GRL_METADATA_KEY_DIRECTOR
      * GRL_METADATA_KEY_ORIGINAL_TITLE
    
    All keys are defined as strings and there are no relations
    between them. Except for "original-title" all of those keys
    are multi-valued. All keys but "keyword" are video specific
    keys.
    
    This fixes https://bugzilla.gnome.org/show_bug.cgi?id=686206
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 bindings/vala/grilo-0.2-custom.vala |   10 ++
 doc/grilo/grilo-sections.txt        |   18 +++
 src/data/grl-media-video.c          |  264 +++++++++++++++++++++++++++++++++++
 src/data/grl-media-video.h          |   38 +++++
 src/data/grl-media.c                |   79 +++++++++++
 src/data/grl-media.h                |    8 ++
 src/grl-metadata-key.c              |   47 ++++++-
 src/grl-metadata-key.h              |    5 +
 8 files changed, 468 insertions(+), 1 deletion(-)

commit 9066efc21bd9431e26ce385c99267332194dba0c
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Oct 29 17:58:14 2012 +0000

    build: Install 64bit libraries in proper place
    
    In case 'libdir' is not specified, select lib or lib64 depending on the
    machine.

 configure.ac |   19 +++++++++++++++----
 1 file changed, 15 insertions(+), 4 deletions(-)

commit 419ba810524c534c52845d9305f44d607488a986
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Mon Oct 22 18:46:43 2012 +0200

    net: Enable proper log domain for mocking

 libs/net/grl-net-mock.c |    1 +
 1 file changed, 1 insertion(+)

commit 7034107d86094462c32284d804d35517c4ed1e90
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Mon Oct 22 18:42:05 2012 +0200

    net: Call init_mock_requester before init_requester
    
    Captured must check if mocking got enabled.

 libs/net/grl-net-wc.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1b86f5b56e400780c8b0e61982a8bef5a66de542
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Mon Oct 22 18:40:49 2012 +0200

    net: Add version field to captured mock config

 libs/net/grl-net-mock-private.h |    1 +
 libs/net/grl-net-mock.c         |    4 +---
 libs/net/grl-net-private.c      |    7 ++++++-
 3 files changed, 8 insertions(+), 4 deletions(-)

commit 2e748c970f4c8d58c7e0da51e0e31390b572197e
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Mon Oct 22 18:27:03 2012 +0200

    net: Don't capture while mocking is enabled

 libs/net/grl-net-private.c |    6 ++++++
 1 file changed, 6 insertions(+)

commit dc32625d1ae955eacb9c9f05813bd26751cce1ab
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Mon Oct 22 17:09:15 2012 +0200

    net: Use MD5 sum instead of URL in capture files
    
    Some services use extraordinary long URL that exceed file system limits

 libs/net/grl-net-private.c |   11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

commit 9737eb32eb18aa93c20b0f6daf6e2d36708ef48f
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Mon Oct 22 16:03:06 2012 +0200

    net: Remove bogus assignment
    
    Lesson learned: Alway commit from IDE, so that you don't forget saving.

 libs/net/grl-net-mock.c |    2 --
 1 file changed, 2 deletions(-)

commit 499b0d4175107f06e9816238a9c4b75794e22618
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Mon Oct 22 15:33:57 2012 +0200

    net: Update author tag

 libs/net/grl-net-mock.c    |    1 +
 libs/net/grl-net-private.c |    1 +
 libs/net/grl-net-wc.c      |    1 +
 3 files changed, 3 insertions(+)

commit ddb0065aa12b0df2b4a3db1770d816039438c38b
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Mon Oct 22 15:28:38 2012 +0200

    net: Don't fallback to "grl-net-mock-data.ini"
    
    Just print a warning and disable mocking if the specified mock response file
    cannot be found.

 libs/net/grl-net-mock.c |   23 +++++++++--------------
 1 file changed, 9 insertions(+), 14 deletions(-)

commit e3169e267a04258342f677b64b5ccb0072a96b12
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Mon Oct 22 15:21:44 2012 +0200

    net: Don't check GRL_NET_MOCKED for boolean values
    
    It's a pure filename now.

 libs/net/grl-net-mock.c |   19 ++++++-------------
 1 file changed, 6 insertions(+), 13 deletions(-)

commit 7fcd4e3cebe2cf58b95d4fef5b6ff3bb74d33306
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Sat Oct 20 22:01:42 2012 +0200

    net: Simplify GRL_NET_MOCKED variable
    
    Always set throttling to zero in mocking mode.

 doc/grilo/plugins-testing.xml   |   22 +++--------------
 libs/net/grl-net-mock-private.h |    3 ---
 libs/net/grl-net-mock.c         |   52 +++++++++------------------------------
 libs/net/grl-net-wc.c           |    8 ++----
 4 files changed, 16 insertions(+), 69 deletions(-)

commit eda45f27016c19c9b71094d6635c6893b4f31065
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Sat Oct 20 21:55:38 2012 +0200

    net: Always dipatch requests trough event loop
    
    This is to ensure consistent execution context for instant and for
    non-delayed web requests.

 libs/net/grl-net-wc.c |   52 +++++++++++++++++++++++++------------------------
 1 file changed, 27 insertions(+), 25 deletions(-)

commit e9d947579effd34c459463461f652c945b806b62
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Fri Oct 19 00:05:10 2012 +0200

    docs: Improve description of "ignored-parameters" mocks setting

 doc/grilo/plugins-testing.xml |   11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

commit ca7cda0626a1003c06be0b645dc46c30f931f738
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Thu Oct 18 23:56:00 2012 +0200

    net: -Rename grl-net-mock.h to grl-net-mock-private.h
    
    In general grilo uses the suffix "-private" for all the headers that
    contain private functions. So it is easier to know if the functions are
    public or not.

 libs/net/grl-net-mock-private.h |   58 +++++++++++++++++++++++++++++++++++++++
 libs/net/grl-net-mock.c         |    2 +-
 libs/net/grl-net-mock.h         |   58 ---------------------------------------
 libs/net/grl-net-wc.c           |    2 +-
 4 files changed, 60 insertions(+), 60 deletions(-)

commit c43ab603e701b82365c602ea45a8550eccbed963
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Thu Oct 18 23:53:37 2012 +0200

    net: Put the timestamp before the URL in the captured file
    
    So it is easier to sort the results in chronological order.
    Also use monotonic instead of real time for exactly the same purpose.

 libs/net/grl-net-private.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit ac2c27e5796d05c45de1c71fc29f6cbf52f811ff
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Thu Oct 18 23:52:14 2012 +0200

    net: Add PID to captured .ini file, as grl-net-mock-data-%PID.ini
    
    Thus, we can run several times the application and
    capture the data without loosing previous captures.

 libs/net/grl-net-private.c |   15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

commit c5e6f4457749e2719d3d96c02e7e3fd9b5ace1e3
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Thu Oct 18 23:47:22 2012 +0200

    net: Set config file and throttling via GRL_NET_MOCKED
    
    Also rename grl-mock-data.ini to grl-net-mock-data.ini, to make it clear
    this data is for grl-net mocking.

 doc/grilo/plugins-testing.xml |   24 +++++---
 libs/net/grl-net-mock.c       |  128 ++++++++++++++++++++++-------------------
 libs/net/grl-net-mock.h       |    2 +-
 libs/net/grl-net-wc.c         |   10 +++-
 4 files changed, 93 insertions(+), 71 deletions(-)

commit 69cd8b2aea79c0d3264cb5d338b25ef2cfb44c07
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Thu Oct 18 22:53:11 2012 +0200

    net: Parse GRL_NET_MOCKED only once upon initialization

 libs/net/grl-net-mock.c |   22 ++++++++++++++--------
 libs/net/grl-net-mock.h |    2 ++
 2 files changed, 16 insertions(+), 8 deletions(-)

commit fdef04fad5d04cca8c94af3f32b960391ea3e2d8
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Thu Oct 18 22:41:45 2012 +0200

    net: Use GRL_NET_CAPTURE_DIR instead of GRL_WEB_CAPTURE_DIR

 doc/grilo/plugins-testing.xml |    2 +-
 libs/net/grl-net-private.c    |    2 +-
 libs/net/grl-net-private.h    |    3 +++
 3 files changed, 5 insertions(+), 2 deletions(-)

commit 0c83dc1ada265c0899e232e323637f843bdb24f5
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Thu Oct 18 22:39:19 2012 +0200

    net: Print warning when the dump directory can't be initialized
    
    ...so the user is aware dump won't take place.

 libs/net/grl-net-private.c |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit cfd03645f0fe06101cc058ac037306a00c893e43
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Thu Oct 18 22:36:42 2012 +0200

    net: Move G_GNUC_INTERNAL declaration to follow documented advice.

 libs/net/grl-net-mock.h    |   18 +++++++++++++-----
 libs/net/grl-net-private.h |    6 ++++--
 2 files changed, 17 insertions(+), 7 deletions(-)

commit 30fd031b8f1dab6b56a9c4fe5e6d0157fdf1d0e7
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Fri Oct 12 01:53:56 2012 +0200

    log: Don't barf about missing grl-mock-data.ini all the time

 libs/net/grl-net-mock.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit c0bf2395e4c2886757755d8d5f4fe1e8218c431c
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Thu Oct 11 22:16:05 2012 +0200

    net: Permit unthrottled mock sessions.

 doc/grilo/plugins-testing.xml |    6 ++++++
 libs/net/grl-net-mock.c       |    9 +++++++++
 libs/net/grl-net-mock.h       |    1 +
 libs/net/grl-net-wc.c         |    5 +++--
 4 files changed, 19 insertions(+), 2 deletions(-)

commit 34ade4c38966a4c8d74525344e21dff1732a843d
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Thu Oct 11 21:32:48 2012 +0200

    net: Move mocking docs into API docs

 doc/grilo/plugins-testing.xml |   84 +++++++++++++++++++++++++++++++++++++++++
 libs/net/grl-net-mock.c       |   39 -------------------
 2 files changed, 84 insertions(+), 39 deletions(-)

commit 6886dd7ad9bf916edfc2e7506716a828739f725f
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Thu Oct 11 21:07:43 2012 +0200

    net: Build grl-mock-data.ini from captured web requests.

 libs/net/grl-net-private.c |   39 ++++++++++++++++++++++++++++-----------
 1 file changed, 28 insertions(+), 11 deletions(-)

commit 002764011f840821f18264d36f7e001aebdc8464
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Thu Oct 11 20:55:48 2012 +0200

    net: Use g_build_filename() for building capture file name.

 libs/net/grl-net-private.c |   36 ++++++++++++++++++++++--------------
 libs/net/grl-net-private.h |    2 +-
 2 files changed, 23 insertions(+), 15 deletions(-)

commit 93d7a8730c5f321ad5ef7b9471997368b4b12eec
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Thu Oct 11 20:48:53 2012 +0200

    net: Sanitize GRL_WEB_CAPTURE_DIR handling

 libs/net/grl-net-private.c |   14 +++++---------
 1 file changed, 5 insertions(+), 9 deletions(-)

commit 1ff3504eff00b9654386a5448a80ffaae5d333fd
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Thu Oct 11 20:43:33 2012 +0200

    net: Make GRL_NET_MOCKED more intuitive

 libs/net/grl-net-mock.c |   12 ++++++++++++
 libs/net/grl-net-mock.h |    4 +---
 libs/net/grl-net-wc.c   |    8 ++++----
 3 files changed, 17 insertions(+), 7 deletions(-)

commit 750df2abc87f84bb81bc4034eb7f762f9003e5f1
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Thu Oct 11 20:38:08 2012 +0200

    net: Change ignore-parameters into ignored-parameters

 libs/net/grl-net-mock.c |   60 +++++++++++++++++++++++++++++++++++++----------
 1 file changed, 48 insertions(+), 12 deletions(-)

commit edd29e1ae7d68f468570ca1b47f866ba40725096
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Thu Oct 11 20:25:21 2012 +0200

    net: Set proper logging domain

 libs/net/grl-net-private.h |    3 +++
 libs/net/grl-net-wc.c      |    1 -
 2 files changed, 3 insertions(+), 1 deletion(-)

commit 7b168fcff60cdaf99f5967d0754777793c64bbcc
Author: Jens Georg <jensg@openismus.com>
Date:   Thu Oct 11 15:09:09 2012 +0200

    net: Support mocking of network answers
    
    Mock network answers of webservices through predefined files. This is useful
    for offline testing of plug-ins that provide sources from webservices. See the
    header of libs/net/grl-net-mock.c for full documentation.

 libs/net/Makefile.am             |    3 +-
 libs/net/grl-net-mock.c          |  262 ++++++++++++++++++++++++++++++++++++++
 libs/net/grl-net-mock.h          |   49 +++++++
 libs/net/grl-net-private.c       |   43 +++++++
 libs/net/grl-net-private.h       |    4 +
 libs/net/grl-net-soup-stable.c   |    6 +-
 libs/net/grl-net-soup-unstable.c |    5 +
 libs/net/grl-net-wc.c            |   24 +++-
 8 files changed, 390 insertions(+), 6 deletions(-)

commit ee5513f6303412a0d3e7c4ccf2dcbd43132f8405
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Tue Oct 16 20:48:46 2012 +0200

    Add region tags for publication and certification
    
    Both TMDB and IMDB publish region specific information for this metadata.
    
    This fixes https://bugzilla.gnome.org/show_bug.cgi?id=679686

 bindings/vala/grilo-0.2-custom.vala |    2 +
 doc/grilo/grilo-sections.txt        |    7 ++
 src/data/grl-media.c                |  156 ++++++++++++++++++++++++++++++++++-
 src/data/grl-media.h                |   24 ++++++
 src/grl-metadata-key.c              |   16 +++-
 src/grl-metadata-key.h              |    1 +
 6 files changed, 202 insertions(+), 4 deletions(-)

commit 178f46ac39ae25940ec2d3c2204928639c6ff5e3
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Oct 19 17:18:04 2012 +0000

    core: Sources always accept store_metadata()
    
    When the operation is performed with a source that does not implement the
    operation, if GRL_WRITE_FULL was specified core will follow with other sources;
    otherwise it will notify the operation failed for all the specified keys (if
    developer has passed a callback).

 src/grl-source.c |   10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

commit 103d87b19490e475e9d64ccbe90cb26958708649
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Oct 19 15:52:26 2012 +0000

    core: Sources always accept resolve() operation
    
    If the source does not implement resolve(), but the user requested the
    FULL_RESOLVE flag, then Grilo will use other sources to satisfy the query.
    
    If the source does not implement resolve(), and user did not specified
    FULL_RESOLVE, then the same media without changes will be sent through the
    callback.
    
    This way, when a developer wants to solve a key not supported by the source, if
    it neither supports resolve() then they do not need to search for a source
    supporting resolve() and the key; developer can simply invoke resolve() with
    the same source, specifying FULL_RESOLVE flag so the core does the job.

 src/grl-source.c           |   51 ++++++++++++++++++++++++++++----------------
 tools/grilo-test-ui/main.c |   19 ++++++-----------
 2 files changed, 39 insertions(+), 31 deletions(-)

commit 751a7a2cde3ea007bd2871aef2e0005e551ab485
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Oct 19 10:01:02 2012 +0000

    core: g_type_init() is deprecated
    
    For glib >= 2.35.0.

 src/grilo.c |    2 ++
 1 file changed, 2 insertions(+)

commit 47dc2a401577edf80b3521dff478c2aa687c38ba
Author: Antía Puentes <apuentes@igalia.com>
Date:   Wed Oct 10 12:17:35 2012 +0200

    core: Add the 'favourite' metadata property
    
    The new property indicates if an item was marked as
    favourite or not.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=685861

 src/data/grl-media.c   |   29 +++++++++++++++++++++++++++++
 src/data/grl-media.h   |    4 ++++
 src/grl-metadata-key.c |    9 +++++++++
 src/grl-metadata-key.h |    1 +
 4 files changed, 43 insertions(+)

commit 6269a37296d3021bc4b8f602130e6e1c37d8ab3f
Author: Antía Puentes <apuentes@igalia.com>
Date:   Wed Oct 10 12:17:23 2012 +0200

    core: Add support for boolean data in GrlData
    
    https://bugzilla.gnome.org/show_bug.cgi?id=685861
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-data.c |   41 +++++++++++++++++++++++++++++++++++++++++
 src/data/grl-data.h |    4 ++++
 2 files changed, 45 insertions(+)

commit 924cdd3718d9af87b702a9ffe65fce7055ae17bf
Author: Dominique Leuenberger <dimstar@opensuse.org>
Date:   Wed Oct 17 10:22:09 2012 +0200

    object-introspection: reference libgrilo-0.2.la while building GrlNet.gir
    
    Fixes bug BGO#686271.

 libs/net/Makefile.am |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit c00110039430b6f359ba780b5b281b9f1b8eeae3
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Oct 18 16:57:09 2012 +0200

    core: Check valid options in operations
    
    This is the right fix bug #686033, instead of commit
    52da21f5443079f.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=686033

 src/grl-source.c |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 073216ae6b133a47444b029a96a339a98ab3fa64
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Wed Oct 17 13:15:43 2012 +0200

    core: Set proper GValue type in grl_related_keys_set_boxed()

 src/data/grl-related-keys.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 52da21f5443079fb0d5d049c38e127925281802f
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Oct 17 09:11:05 2012 +0000

    core: Check valid options in operations
    
    https://bugzilla.gnome.org/show_bug.cgi?id=686033

 src/grl-source.c |    1 +
 1 file changed, 1 insertion(+)

commit 7619eb238a375652ab89ec3012984751a3cf975d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Oct 12 15:31:07 2012 +0200

    doc: Fix typo in _grl_log_init_core_domains()
    
    https://bugzilla.gnome.org/show_bug.cgi?id=686032

 src/grl-log.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 28049b1d2990382a4de28b5b1affa9c312ee134c
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Oct 16 11:25:43 2012 +0000

    core: Do not access freed structure
    
    Save the value in a variable because the struct can be freed.

 src/grl-source.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit bf0e0197a8e5964d9e92737edbe36f5001a9cbee
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Oct 16 12:49:39 2012 +0200

    core: Fix annotation in GrlStoreCb
    
    failed_keys list is owned by the caller. Callback shouldn't free it.

 src/grl-source.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 44abc6be32a8689e890f50b77a6301dd83257cab
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Oct 9 11:57:59 2012 +0000

    test-ui: Fixed a crash when searching in all sources
    
    Unreffing a variable in wrong place.

 tools/grilo-test-ui/main.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 94c804d2d6a97398e8c80f66588b88ab4cd56757
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Oct 9 10:10:17 2012 +0000

    test-ui: Add API key for TMDb plugin
    
    Just for test purpose!

 tools/grilo-test-ui/main.c |   18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

commit 62b01582e01c0e462433950f1976cd28781c665e
Author: Murray Cumming <murrayc@murrayc.com>
Date:   Mon Oct 8 11:45:51 2012 +0200

    duration: Document this as seconds

 src/grl-metadata-key.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 526d5ee3f1f8018ab4323b87c81e0f8e1abd233a
Author: Murray Cumming <murrayc@murrayc.com>
Date:   Mon Oct 8 10:13:23 2012 +0200

    --author=Murray Cumming <murrayc@openismus.com>

 src/grl-metadata-key.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit a6baa038b4ab344f3c9768f251d6865197ddd9b9
Author: Murray Cumming <murrayc@openismus.com>
Date:   Tue Oct 2 12:35:16 2012 +0200

    Use GRL_METADATA_KEY_INVALID instead of NULL.
    
    This is what the grl_metadata_key_list_new() documentation
    says we should do. NULL is the same thing, but that is an internal
    detail.
    
    This fixes https://bugzilla.gnome.org/show_bug.cgi?id=685274
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 doc/grilo/plugins-sources.xml            |    2 +-
 examples/browsing.c                      |    2 +-
 examples/efficient-metadata-resolution.c |    4 ++--
 examples/multivalues.c                   |    2 +-
 examples/searching.c                     |    2 +-
 5 files changed, 6 insertions(+), 6 deletions(-)

commit 818a8e531732b7ff0763fbb932dfebfb4a75df1f
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Oct 5 11:26:44 2012 +0200

    Post-release version bump to 0.2.3

 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 9db1eafb7a2dfed6f26a01450bdb39e9595e3e33
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Oct 4 22:02:55 2012 +0000

    Release 0.2.2

 AUTHORS               |    1 +
 NEWS                  |   14 ++++++++++++++
 configure.ac          |   18 +++++++++---------
 libs/net/grl-net-wc.c |    4 ++++
 4 files changed, 28 insertions(+), 9 deletions(-)

commit 47adfb6cb7faf12e36ba66f18d9ceba3e3bd53c0
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Oct 3 23:54:29 2012 +0200

    Downgrade version to 0.2.1

 AUTHORS                                      |    1 +
 Makefile.am                                  |    4 +-
 NEWS                                         |   25 +++++++
 bindings/vala/grilo-0.2-custom.vala          |  104 ++++++++++++++++++++++++++
 bindings/vala/grilo-0.2.deps                 |    1 +
 bindings/vala/grilo-0.2.metadata             |   58 ++++++++++++++
 bindings/vala/grilo-0.3-custom.vala          |  104 --------------------------
 bindings/vala/grilo-0.3.deps                 |    1 -
 bindings/vala/grilo-0.3.metadata             |   58 --------------
 bindings/vala/grilo-net-0.2-custom.vala      |    1 +
 bindings/vala/grilo-net-0.2.deps             |    1 +
 bindings/vala/grilo-net-0.2.metadata         |    6 ++
 bindings/vala/grilo-net-0.3-custom.vala      |    1 -
 bindings/vala/grilo-net-0.3.deps             |    1 -
 bindings/vala/grilo-net-0.3.metadata         |    6 --
 bindings/vala/grilo-net-uninstalled.files.in |    2 +-
 bindings/vala/grilo-uninstalled.files.in     |    2 +-
 configure.ac                                 |   12 +--
 doc/grilo/environment-setup.xml              |    2 +-
 grilo-0.2.pc.in                              |   17 +++++
 grilo-0.3.pc.in                              |   17 -----
 grilo-net-0.2.pc.in                          |   15 ++++
 grilo-net-0.3.pc.in                          |   15 ----
 grilo-net-uninstalled.pc.in                  |    2 +-
 tools/vala/Makefile.am                       |    2 +-
 25 files changed, 242 insertions(+), 216 deletions(-)

commit 34865dc99a30e082c8f6d731e66ad373516239a4
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Oct 2 08:20:01 2012 +0000

    doc: Sort entries in documentation

 doc/grilo/grilo-sections.txt |  594 +++++++++++++++++++++---------------------
 1 file changed, 298 insertions(+), 296 deletions(-)

commit bb26ab640e335b817d1b268d9677f95ba81c80a2
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Oct 2 07:53:06 2012 +0000

    doc: Update documentation
    
    Add grl_net_wc_request_with_headers_async() and
    grl_net_wc_request_with_headers_hash_async() to documentation section.

 doc/grilo/grilo-sections.txt |    2 ++
 1 file changed, 2 insertions(+)

commit c2c5558ae9e1f087aee0a37ede47b84ca85506a7
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Mon Oct 1 00:25:01 2012 +0200

    core: Obey GRL_WRITE_NORMAL in grl_source_store()
    
    This fixes https://bugzilla.gnome.org/show_bug.cgi?id=685169

 src/grl-source.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 02d9befee7c3bf172714a3627afef2c9b5e3b650
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Sun Sep 30 21:47:29 2012 +0200

    core: Properly pass store spec to store_relay_cb()
    
    This fixes https://bugzilla.gnome.org/show_bug.cgi?id=685161

 src/grl-source.c |   10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

commit 1c288a718d930e8c5cbeff9d08f4511ca965a9ae
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Sep 26 17:00:59 2012 +0200

    build: Add option to disable Test UI

 configure.ac |   22 +++++++++++++++++++---
 1 file changed, 19 insertions(+), 3 deletions(-)

commit a9fad347ef103c5b0ca8c555e2d50bc099a76a74
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Sep 25 11:31:40 2012 +0200

    net: Check if headers are NULL

 libs/net/grl-net-wc.c |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit bf186d0626220b8515cbf2ce2809e404ce6f0d28
Author: Jens Georg <jensg@openismus.com>
Date:   Thu Jul 12 22:44:47 2012 +0200

    net: Add possibility to add arbitrary HTTP headers
    
    Some webservices need custom HTTP headers for requests; this patch adds
    a function to schedule requests with those special headers.
    
    Under contract for Canonical Ltd.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=680436
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 libs/net/grl-net-private.h       |    1 +
 libs/net/grl-net-soup-stable.c   |   13 +++++
 libs/net/grl-net-soup-unstable.c |   19 ++++++++
 libs/net/grl-net-wc.c            |   97 ++++++++++++++++++++++++++++++++++++--
 libs/net/grl-net-wc.h            |   16 +++++++
 5 files changed, 143 insertions(+), 3 deletions(-)

commit e0172c8cba65663cd8a06c10fd10757080362172
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Sep 14 15:15:37 2012 +0200

    core: Increase reference in list content, not list node
    
    Fixes a crash when doing g_object_ref (node) instead of g_object_ref
    (node->data).
    
    Node is a GList node containing a gobject.

 src/grl-source.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c8ccea50ebf178a4fbc2b7778a12fa7c3a1b0ef5
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Sep 14 15:14:47 2012 +0200

    core: Use GRL_WARNING instead of GRL_ERROR for elements not found in the
    queue
    
    Disturbs less the user.

 src/grl-source.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c00ad172d6f5d058c288efabf5b7ee9c0d75732a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Sep 7 15:49:53 2012 +0200

    core: Load modules with G_MODULE_BIND_LOCAL

 src/grl-registry.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1ca49cb94c616ecffb29a102e45b827685a51865
Author: Jens Georg <jensg@openismus.com>
Date:   Fri Jul 20 17:04:46 2012 +0200

    doc: Clarify what "site" is supposed to be
    
    This fixes https://bugzilla.gnome.org/show_bug.cgi?id=682793

 src/data/grl-media.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 2076f736e6415df01cbd2894aef6ea63d0040363
Author: Jens Georg <jensg@openismus.com>
Date:   Fri Jul 20 17:04:25 2012 +0200

    doc: Clarify normalization of the rating
    
    This fixes https://bugzilla.gnome.org/show_bug.cgi?id=682793

 src/data/grl-media.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit ca606fb1cd8e8fea10df782acc35122f0175062b
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Thu Aug 30 20:56:52 2012 +0200

    Properly name some GType macros
    
    Those for GrlCaps and GrlOperationOptions had "TYPE" add the end
    instead of the begin (right after the namespace).
    
    This fixes https://bugzilla.gnome.org/show_bug.cgi?id=683055

 src/grl-caps.h              |   15 +++++++++------
 src/grl-operation-options.h |   15 +++++++++------
 2 files changed, 18 insertions(+), 12 deletions(-)

commit 6016620b3d30d03cc4077cc876ad2afa4c565202
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Tue Aug 28 10:47:13 2012 +0200

    Avoid leak in grl_source_get_media_from_uri()
    
    This fixes https://bugzilla.gnome.org/show_bug.cgi?id=682855

 src/grl-source.c |    2 ++
 1 file changed, 2 insertions(+)

commit c80c75e682edc76e73e4fca5d772711226bc9d53
Author: Jens Georg <jensg@openismus.com>
Date:   Tue Jul 17 15:35:23 2012 +0200

    test-ui: Fix garbled UTF-8 output
    
    g_strdup_value_contents uses g_strescape on anything that's not ASCII
    which garbles anything fancy in the UI.
    
    This fixes https://bugzilla.gnome.org/show_bug.cgi?id=682791

 tools/grilo-test-ui/main.c |    2 ++
 1 file changed, 2 insertions(+)

commit 90b7c9842eee77f601de01f2b1ac8abb817c1585
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Thu Aug 16 18:51:30 2012 +0200

    Don't crash in grl_source_get_media_from_uri()
    
    https://bugzilla.gnome.org/show_bug.cgi?id=682024

 src/grl-source.c |   19 ++++++++++++-------
 1 file changed, 12 insertions(+), 7 deletions(-)

commit dc57a5d4c73bf4383ceb18dc97a470bf7d929509
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Thu Aug 16 13:52:58 2012 +0200

    Add missing C++ guards
    
    https://bugzilla.gnome.org/show_bug.cgi?id=681992

 src/grl-metadata-key.h |    4 ++++
 src/grl-multiple.h     |    4 ++++
 2 files changed, 8 insertions(+)

commit b911c0f6a9e48ff562ed46173d1582478728a59f
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Thu Aug 16 12:53:41 2012 +0200

    Avoid warning about bad pointer cast
    
    https://bugzilla.gnome.org/show_bug.cgi?id=681983

 src/grl-source.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 592f87ce233860d080a33987e589fbc3be475e89
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Thu Aug 16 12:55:11 2012 +0200

    Don't freeze sync functions on failed precondition
    
    https://bugzilla.gnome.org/show_bug.cgi?id=681984

 src/grl-multiple.c |   15 ++-
 src/grl-source.c   |  277 +++++++++++++++++++++++++++++-----------------------
 2 files changed, 163 insertions(+), 129 deletions(-)

commit 485c283beb56d11a1cdf52686eefe4fed97ae6df
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Aug 13 15:18:05 2012 +0200

    core: GrlKeyID are not GParamSpec
    
    This fixes https://bugzilla.gnome.org/show_bug.cgi?id=681757

 bindings/vala/grilo-0.3-custom.vala      |   92 ++++++++++++++++++++----------
 bindings/vala/grilo-uninstalled.files.in |    2 +-
 src/grl-metadata-key.c                   |    3 -
 src/grl-source.c                         |    2 +-
 tools/vala/grilo-test.vala               |    2 +-
 5 files changed, 64 insertions(+), 37 deletions(-)

commit 2bcba9c3f702346998ae8a02310160e6ff12270a
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Aug 13 08:32:21 2012 +0000

    Post-release version bump to 0.3.1

 Makefile.am                                  |    4 +-
 bindings/vala/grilo-0.2-custom.vala          |   74 --------------------------
 bindings/vala/grilo-0.2.deps                 |    1 -
 bindings/vala/grilo-0.2.metadata             |   58 --------------------
 bindings/vala/grilo-0.3-custom.vala          |   74 ++++++++++++++++++++++++++
 bindings/vala/grilo-0.3.deps                 |    1 +
 bindings/vala/grilo-0.3.metadata             |   58 ++++++++++++++++++++
 bindings/vala/grilo-net-0.2-custom.vala      |    1 -
 bindings/vala/grilo-net-0.2.deps             |    1 -
 bindings/vala/grilo-net-0.2.metadata         |    6 ---
 bindings/vala/grilo-net-0.3-custom.vala      |    1 +
 bindings/vala/grilo-net-0.3.deps             |    1 +
 bindings/vala/grilo-net-0.3.metadata         |    6 +++
 bindings/vala/grilo-net-uninstalled.files.in |    2 +-
 bindings/vala/grilo-uninstalled.files.in     |    2 +-
 configure.ac                                 |   10 ++--
 doc/grilo/environment-setup.xml              |    2 +-
 grilo-0.2.pc.in                              |   17 ------
 grilo-0.3.pc.in                              |   17 ++++++
 grilo-net-0.2.pc.in                          |   15 ------
 grilo-net-0.3.pc.in                          |   15 ++++++
 grilo-net-uninstalled.pc.in                  |    2 +-
 tools/vala/Makefile.am                       |    2 +-
 23 files changed, 185 insertions(+), 185 deletions(-)

commit c20432e27e93d96ae0edc3238f958afe61cb06ff
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Aug 13 08:17:10 2012 +0000

    Release 0.2.0

 AUTHORS |    1 +
 NEWS    |   48 ++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 49 insertions(+)

commit 4288bc5b4d1d2bcc43af708ff6abdc56f9f21d16
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Aug 13 08:16:52 2012 +0000

    net: Add API version

 configure.ac                |   11 ++++++++---
 grilo-net-0.2.pc.in         |    4 ++--
 grilo-net-uninstalled.pc.in |    4 ++--
 3 files changed, 12 insertions(+), 7 deletions(-)

commit c284ab8df6179705a36cfcc57575a8236301a24e
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Aug 13 08:15:26 2012 +0000

    doc: Add API information
    
    Annotate "Since:" tag.

 src/data/grl-data.c         |   10 ++++++
 src/data/grl-media.c        |   13 +++++--
 src/data/grl-related-keys.c |    4 +++
 src/grl-caps.c              |   19 ++++++++++
 src/grl-metadata-key.c      |    4 +++
 src/grl-multiple.c          |    6 ++--
 src/grl-operation-options.c |   38 +++++++++++++++++++-
 src/grl-plugin.c            |   26 ++++++++++++++
 src/grl-registry.c          |   54 ++++++++++++++++++----------
 src/grl-source.c            |   83 +++++++++++++++++++++++++++++++++++++++++--
 src/grl-util.c              |    1 +
 11 files changed, 230 insertions(+), 28 deletions(-)

commit 0de56ce6677d8572c53e7cedc6bbaeb0d4175d82
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Aug 13 08:14:25 2012 +0000

    build: Add libtool version information

 configure.ac         |   13 +++++++++++++
 libs/net/Makefile.am |    1 +
 src/Makefile.am      |    3 ++-
 3 files changed, 16 insertions(+), 1 deletion(-)

commit 38da1963a3c772b367c037bb449cde58b9b1efae
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Aug 10 12:28:35 2012 +0200

    doc: Improve documentation

 doc/grilo/grilo-sections.txt |   36 ++++++++-
 src/data/grl-config.c        |  110 ++++++++++++++++++++++++++++
 src/grl-caps.c               |   31 ++++++++
 src/grl-log.c                |   20 +++++
 src/grl-operation-options.c  |   75 +++++++++++++++++++
 src/grl-operation.c          |    4 +-
 src/grl-plugin.c             |  165 ++++++++++++++++++++++--------------------
 src/grl-range-value.c        |   15 ++--
 src/grl-registry.c           |    4 +-
 src/grl-value-helper.c       |   21 +-----
 10 files changed, 367 insertions(+), 114 deletions(-)

commit d12292b917b1f4ac6380f20abc10f3edfc59ac36
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Aug 10 12:27:24 2012 +0200

    core: Remove unused function
    
    grl_source_cancel() is not used.
    
    Cancelling is done invoking grl_operation_cancel().

 src/grl-source.c |   49 +------------------------------------------------
 src/grl-source.h |    2 --
 2 files changed, 1 insertion(+), 50 deletions(-)

commit bd874eb631d1b97729b9809930678adaffc1b0ca
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Aug 10 09:44:37 2012 +0200

    core: Fix typos in documentation

 src/data/grl-media-image.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit fb080a15a09d77acedbeaf75471650c20ee9c49f
Author: César García Tapia <tapia@openshine.com>
Date:   Thu Aug 9 13:03:42 2012 +0200

    vala: make caps in operation_options.new() nullable

 bindings/vala/grilo-0.2.metadata |    3 +++
 1 file changed, 3 insertions(+)

commit 08277434360fe204b7516be19bc3d163feb813c1
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Thu Aug 9 12:40:18 2012 +0200

    vala: make container in source.browse() nullable

 bindings/vala/grilo-0.2.metadata |    1 +
 1 file changed, 1 insertion(+)

commit 4bf44ae369f218e9b8faf54ac32db84fb50dceda
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Aug 8 16:22:44 2012 +0000

    vala: Do not install VAPI files in specific vapi directory of the compiler
    
    Rather, install it in $(datadir)/vala/vapi place.

 bindings/vala/Makefile.am |    2 +-
 configure.ac              |    5 -----
 2 files changed, 1 insertion(+), 6 deletions(-)

commit 40db943144ea4017e28988281490e48b043b1d96
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Aug 8 15:52:03 2012 +0000

    core: Fix typo in key description

 src/grl-metadata-key.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4f046878faeccdd6548bb17471e7a22dd9d91758
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Tue Aug 7 12:51:14 2012 +0200

    grl-net: avoid a possible double free
    
    In the soup-unstable there was the possiblity to face a double
    free if get_content() was called twice with the content parameter
    set as NULL first.
    
    Thanks to Jens Georg for aiming at this issue.

 libs/net/grl-net-soup-unstable.c |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit b3be0e0f4c1543c8e2372fbc43cd238868afcd2e
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jul 23 13:59:35 2012 +0000

    core: Rename some registry functions
    
    Rename those registry functions affecting plugins, by adding the word "plugin".
    
    It makes clear what the functions are about.

 doc/grilo/grilo-sections.txt             |   10 +++---
 doc/grilo/writing-apps.xml               |    2 +-
 examples/browsing.c                      |    2 +-
 examples/configuring-plugins.c           |    2 +-
 examples/efficient-metadata-resolution.c |    2 +-
 examples/loading-plugins.c               |    2 +-
 examples/multivalues.c                   |    2 +-
 examples/searching.c                     |    2 +-
 src/grl-registry.c                       |   56 +++++++++++++++---------------
 src/grl-registry.h                       |   28 +++++++--------
 tests/metadata_source.c                  |    2 +-
 tests/registry.c                         |    2 +-
 tools/grilo-inspect/grl-inspect.c        |    2 +-
 tools/grilo-test-ui/main.c               |   10 +++---
 tools/vala/grilo-test.vala               |    2 +-
 15 files changed, 63 insertions(+), 63 deletions(-)

commit 41f2fe09990e8f800f829e52867e87864d971b5f
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jul 23 10:36:53 2012 +0000

    core: Rename PluginRegistry to Registry

 bindings/vala/grilo-0.2.metadata         |   10 +-
 bindings/vala/grilo-uninstalled.files.in |    2 +-
 doc/grilo/environment-setup.xml          |    4 +-
 doc/grilo/grilo-docs.sgml                |    2 +-
 doc/grilo/grilo-sections.txt             |   76 +-
 doc/grilo/grilo.types                    |    2 +-
 doc/grilo/plugins-sources.xml            |   16 +-
 doc/grilo/plugins-testing.xml            |    8 +-
 doc/grilo/writing-apps.xml               |   20 +-
 examples/browsing.c                      |    8 +-
 examples/configuring-plugins.c           |   14 +-
 examples/efficient-metadata-resolution.c |   14 +-
 examples/loading-plugins.c               |   10 +-
 examples/multivalues.c                   |   14 +-
 examples/searching.c                     |    8 +-
 src/Makefile.am                          |    6 +-
 src/data/grl-data.c                      |   14 +-
 src/data/grl-media.c                     |   14 +-
 src/data/grl-related-keys.c              |   10 +-
 src/grilo.c                              |   10 +-
 src/grilo.h                              |    2 +-
 src/grl-log-priv.h                       |    2 +-
 src/grl-log.c                            |    4 +-
 src/grl-metadata-key-priv.h              |    4 +-
 src/grl-metadata-key.c                   |  871 ++++++++--------
 src/grl-multiple.c                       |   22 +-
 src/grl-operation-options.c              |    8 +-
 src/grl-plugin-priv.h                    |    2 +-
 src/grl-plugin-registry-priv.h           |   32 -
 src/grl-plugin-registry.c                | 1650 ------------------------------
 src/grl-plugin-registry.h                |  278 -----
 src/grl-plugin.c                         |   14 +-
 src/grl-registry-priv.h                  |   37 +
 src/grl-registry.c                       | 1650 ++++++++++++++++++++++++++++++
 src/grl-registry.h                       |  272 +++++
 src/grl-source.c                         |   28 +-
 tests/metadata_source.c                  |   10 +-
 tests/python/test_fs.py                  |    4 +-
 tests/python/test_media.py               |    2 +-
 tests/python/test_metadata_source.py     |    2 +-
 tests/python/test_options.py             |    4 +-
 tests/python/test_plugin.py              |    2 +-
 tests/python/test_registry.py            |   12 +-
 tests/registry.c                         |   16 +-
 tools/grilo-inspect/grl-inspect.c        |   12 +-
 tools/grilo-test-ui/main.c               |  102 +-
 tools/js/testGrilo.js                    |    2 +-
 tools/python/grilo-test-ui.py            |   22 +-
 tools/vala/grilo-test.vala               |    2 +-
 49 files changed, 2665 insertions(+), 2665 deletions(-)

commit a00b075fd6f76d2c9e7498e93bf40bfcd11b8c93
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jul 16 14:37:35 2012 +0000

    vala: Fix Vala bindings

 bindings/vala/grilo-0.2-custom.vala |    4 ----
 tools/vala/grilo-test.vala          |    9 +++++++--
 2 files changed, 7 insertions(+), 6 deletions(-)

commit 157546f8612e0b061edcec32fd2e64c7c6ee647f
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Sat Jul 14 19:44:24 2012 +0000

    doc: Improve documentation

 doc/grilo/Makefile.am                  |    5 +-
 doc/grilo/grilo-docs.sgml              |   13 +-
 doc/grilo/grilo-sections.txt           |  149 ++--
 doc/grilo/grilo.types                  |    2 -
 doc/grilo/plugins-media-sources.xml    | 1171 --------------------------
 doc/grilo/plugins-metadata-sources.xml |  398 ---------
 doc/grilo/plugins-sources.xml          | 1433 ++++++++++++++++++++++++++++++++
 libs/net/grl-net-wc.h                  |    5 +-
 src/grl-caps.c                         |    7 +-
 src/grl-multiple.c                     |    2 +-
 src/grl-operation-options.c            |    8 +-
 src/grl-plugin-registry.c              |    7 +-
 src/grl-source.c                       |    3 +-
 src/grl-source.h                       |    5 +-
 14 files changed, 1514 insertions(+), 1694 deletions(-)

commit 8d162930251d03e0be8e1992fc086ff5a310ad0d
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Sat Jul 14 11:48:54 2012 +0000

    core: Fix introspection annotations

 libs/net/grl-net-wc.c       |   10 +++++-----
 src/data/grl-related-keys.c |    1 -
 src/grl-caps.c              |    2 +-
 src/grl-error.h             |    7 -------
 src/grl-operation.c         |    4 ++++
 src/grl-plugin.c            |    4 ++--
 src/grl-range-value.c       |    5 +++++
 src/grl-source.c            |   22 +++++++++++-----------
 src/grl-value-helper.c      |   12 ++++++++----
 9 files changed, 36 insertions(+), 31 deletions(-)

commit b9b02d0cff289c8e88f3555cceda8154fd295bf3
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Jun 3 08:32:35 2011 +0200

    core: Merge GrlMediaSource and GrlMetadataSource into GrlSource
    
    It merges both types of sources in just one, improving also the full
    resolution algorithm.

 bindings/vala/grilo-0.2-custom.vala      |   64 +-
 bindings/vala/grilo-0.2.metadata         |   50 +-
 bindings/vala/grilo-uninstalled.files.in |    3 -
 doc/grilo/Makefile.am                    |    1 -
 examples/browsing.c                      |   14 +-
 examples/efficient-metadata-resolution.c |   22 +-
 examples/multivalues.c                   |    4 +-
 examples/searching.c                     |    4 +-
 src/Makefile.am                          |   15 +-
 src/grilo.h                              |    3 +-
 src/grl-error.h                          |    6 +-
 src/grl-log-priv.h                       |    2 -
 src/grl-log.c                            |    4 -
 src/grl-media-source.c                   | 2931 ----------------------
 src/grl-media-source.h                   |  521 ----
 src/grl-metadata-source.c                |  694 ------
 src/grl-metadata-source.h                |  252 --
 src/grl-multiple.c                       |   82 +-
 src/grl-multiple.h                       |    8 +-
 src/grl-operation-options.c              |    4 +-
 src/grl-operation-options.h              |   22 +-
 src/grl-plugin-registry.h                |    4 +-
 src/grl-plugin.c                         |    2 +-
 src/grl-source-priv.h                    |   75 -
 src/grl-source.c                         | 3964 ++++++++++++++++++++++++++++--
 src/grl-source.h                         |  480 +++-
 tools/grilo-inspect/grl-inspect.c        |   13 +-
 tools/grilo-test-ui/main.c               |  200 +-
 tools/vala/grilo-test.vala               |   14 +-
 29 files changed, 4458 insertions(+), 5000 deletions(-)

commit 6985175a7c980dbcd19000619879b1386936b806
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed May 4 10:29:19 2011 +0000

    core: Add API to get plugins from registry
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 doc/grilo/grilo-sections.txt |    3 ++
 src/grl-plugin-registry.c    |   65 ++++++++++++++++++++++++++++++++++++++++--
 src/grl-plugin-registry.h    |    7 +++++
 src/grl-plugin.c             |   36 +++++++++++++++++++++++
 src/grl-plugin.h             |    2 ++
 tools/grilo-test-ui/main.c   |   27 +++++++-----------
 6 files changed, 121 insertions(+), 19 deletions(-)

commit ae22e96590eed29b2a8d1c4b4bfce6fb11a1d822
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue May 3 16:19:09 2011 +0000

    core: Redesign source/plugin hierarchy
    
    Previously, hierarchy was:
    
          +----------------+
          | GrlMediaPlugin |
          +-------.--------+
                 /_\
                  |
        +-------------------+
        | GrlMetadataSource |
        +---------.---------+
                 /_\
                  |
          +----------------+
          | GrlMediaSource |
          +----------------+
    
    With the redesign, we have the new hierarchy:
    
        +-----------+        +-----------+
        | GrlPlugin |<>-----*| GrlSource |
        +-----------+        +-----.-----+
                                  /_\
                                   |
                      +------------+----------+
                      |                       |
            +-------------------+    +----------------+
            | GrlMetadataSource |    | GrlMediaSource |
            +-------------------+    +----------------+
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 bindings/vala/grilo-0.2.metadata         |   22 +-
 bindings/vala/grilo-uninstalled.files.in |    3 +-
 doc/grilo/grilo-sections.txt             |  106 ++--
 doc/grilo/grilo.types                    |    3 +-
 examples/browsing.c                      |   11 +-
 examples/configuring-plugins.c           |    4 +-
 examples/efficient-metadata-resolution.c |   12 +-
 examples/loading-plugins.c               |    8 +-
 examples/multivalues.c                   |   11 +-
 examples/searching.c                     |   11 +-
 src/Makefile.am                          |   12 +-
 src/grilo.h                              |    2 +-
 src/grl-log-priv.h                       |    3 +-
 src/grl-log.c                            |    6 +-
 src/grl-media-plugin-priv.h              |   47 --
 src/grl-media-plugin.c                   |  284 ---------
 src/grl-media-plugin.h                   |  134 ----
 src/grl-media-source.c                   |  488 ++++++++++-----
 src/grl-media-source.h                   |   12 +-
 src/grl-metadata-source-priv.h           |   51 +-
 src/grl-metadata-source.c                |  997 +-----------------------------
 src/grl-metadata-source.h                |   96 +--
 src/grl-multiple.c                       |   11 +-
 src/grl-plugin-priv.h                    |   70 +++
 src/grl-plugin-registry.c                |  578 ++++++++---------
 src/grl-plugin-registry.h                |   75 +--
 src/grl-plugin.c                         |  494 +++++++++++++++
 src/grl-plugin.h                         |  135 ++++
 src/grl-source-priv.h                    |   75 +++
 src/grl-source.c                         |  817 ++++++++++++++++++++++++
 src/grl-source.h                         |  178 ++++++
 tools/grilo-inspect/grl-inspect.c        |   59 +-
 tools/grilo-test-ui/main.c               |   81 ++-
 tools/vala/grilo-test.vala               |    8 +-
 34 files changed, 2667 insertions(+), 2237 deletions(-)

commit 1a354a48c655e23477e9949b7ea3a21c20d9c672
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Jul 13 07:34:21 2012 +0000

    core: Prefix GObject macros with GRL_
    
    Rename IS_GRL_foo to GRL_IS_foo.

 src/grl-caps.h              |    4 ++--
 src/grl-operation-options.h |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

commit b5382e28d6765301cc64271e974cc1af35c8ceac
Author: Murray Cumming <murrayc@murrayc.com>
Date:   Tue Jul 10 12:38:03 2012 +0200

    core: Avoid pedantic compiler warnings with C++.
    
    g++ complains about trailing commas in enums when using
    -Wpedantic.
    
    This fixes https://bugzilla.gnome.org/show_bug.cgi?id=679674
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 autogen.sh                  |    2 +-
 libs/net/grl-net-wc.c       |    2 +-
 libs/net/grl-net-wc.h       |    2 +-
 src/grl-caps.h              |    2 +-
 src/grl-media-source.c      |    4 ++--
 src/grl-media-source.h      |    2 +-
 src/grl-metadata-source.c   |    2 +-
 src/grl-metadata-source.h   |    4 ++--
 src/grl-operation-options.h |    2 +-
 src/grl-plugin-registry.c   |    2 +-
 src/grl-plugin-registry.h   |    2 +-
 tools/grilo-test-ui/main.c  |   10 +++++-----
 12 files changed, 18 insertions(+), 18 deletions(-)

commit 2a5b8991314744d5c85282fc7a9ef304829bf054
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Tue Jul 10 10:29:40 2012 +0200

    doc: Fix typos in GrlConfig description

 src/data/grl-config.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit b7f72ed49bed240a5452d9a60e15bbd038a4ccd2
Author: Mathias Hasselmann <mathias@openismus.com>
Date:   Tue Jul 10 10:11:56 2012 +0200

    doc: Clearify that GrlConfig are not persistant

 src/data/grl-config.c |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit c9121c2445462ddbe63516f69154fcb96f79c7a1
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Jun 20 07:00:56 2012 +0000

    test-ui: Add filtering by type
    
    When performing a search, for those sources supporting it, users can restrict
    the results by type.

 tools/grilo-test-ui/main.c |  125 ++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 120 insertions(+), 5 deletions(-)

commit d6b12abcd28c88d21a29b6a44386cc993506e64a
Author: Guillaume Emont <guijemont@igalia.com>
Date:   Wed Dec 14 18:16:24 2011 +0100

    tests: added a test of key range filter for fs

 tests/python/test_fs.py |   30 +++++++++++++++++++++++++++++-
 1 file changed, 29 insertions(+), 1 deletion(-)

commit 40e02a11ff6d03d5d4cc54026e1c23ab3284d745
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Dec 14 18:16:23 2011 +0100

    core: Add range-filtering
    
    Contains modifications by Guillaume Emont <guijemont@igalia.com>

 src/Makefile.am                  |    4 +-
 src/grl-caps.c                   |   52 ++++++++++++
 src/grl-caps.h                   |    6 ++
 src/grl-operation-options-priv.h |    1 +
 src/grl-operation-options.c      |  171 ++++++++++++++++++++++++++++++++++++++
 src/grl-operation-options.h      |   16 ++++
 src/grl-range-value.c            |   92 ++++++++++++++++++++
 src/grl-range-value.h            |   57 +++++++++++++
 8 files changed, 398 insertions(+), 1 deletion(-)

commit 730b22f76e90814dece2c38df0c33db58311c5c5
Author: Guillaume Emont <guijemont@igalia.com>
Date:   Wed Dec 14 18:16:22 2011 +0100

    tests: added some search() and browse() tests using the fs plugin

 tests/python/test_fs.py |  239 +++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 239 insertions(+)

commit dee5f5ee19782a2ac5123b17b488362bc2895a3a
Author: Guillaume Emont <guijemont@igalia.com>
Date:   Wed Dec 14 18:16:21 2011 +0100

    tests: added caps tests for key filters

 tests/python/test_options.py |   54 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 54 insertions(+)

commit 13c3d3ee65dd687b990ba8bdcc46fd62c9cba779
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Dec 14 18:16:20 2011 +0100

    core: Add filtering by equal key
    
    It supports filtering by equal operator, as "artist = Madonna".
    
    Contains modifications by Guillaume Emont <gemont@igalia.com>

 src/grl-caps.c                   |   50 ++++++++++++
 src/grl-caps.h                   |    7 ++
 src/grl-operation-options-priv.h |    1 +
 src/grl-operation-options.c      |  164 ++++++++++++++++++++++++++++++++++++++
 src/grl-operation-options.h      |   16 ++++
 src/grl-value-helper.c           |    6 ++
 src/grl-value-helper.h           |    2 +
 7 files changed, 246 insertions(+)

commit fc3aaef7b1b5d44b78aef18d06fad5abc022b7a4
Author: Guillaume Emont <guijemont@igalia.com>
Date:   Wed Dec 14 18:16:19 2011 +0100

    core: add a setter and getter of GrlKeyID for GValues

 src/grl-metadata-key.h |    4 ++++
 1 file changed, 4 insertions(+)

commit a617a92863b724c887820decd8ac3324b5291519
Author: Guillaume Emont <guijemont@igalia.com>
Date:   Wed Dec 14 18:16:18 2011 +0100

    tests: added tests of type filtering for caps

 tests/python/test_options.py |   61 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 61 insertions(+)

commit 8fd23c30b38198a26be6857c1286015d66e55fff
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Dec 14 18:16:17 2011 +0100

    core: Add filtering by media type
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/Makefile.am                  |   10 +++--
 src/grl-caps.c                   |   31 +++++++++++++
 src/grl-caps.h                   |   22 +++++++++
 src/grl-operation-options-priv.h |    1 +
 src/grl-operation-options.c      |   92 +++++++++++++++++++++++++++++++++++++-
 src/grl-operation-options.h      |    5 +++
 6 files changed, 156 insertions(+), 5 deletions(-)

commit 00ebfb42154079dd6864f8f0e08b572df4a79ecf
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Sun May 27 19:43:33 2012 +0000

    core: Fix leaks

 src/data/grl-config.c |    4 ++++
 1 file changed, 4 insertions(+)

commit 3e6193bc5e0562844e9d1b95db65cd4f5fa02636
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Sat May 26 17:17:10 2012 +0000

    test-ui: Fix leaks

 tools/grilo-test-ui/main.c |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit a04126262faaadd98ce871f533f38c6b954c9d42
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri May 25 15:39:08 2012 +0100

    test-ui: Make the test window a decent size
    
    https://bugzilla.gnome.org/show_bug.cgi?id=676822

 tools/grilo-test-ui/main.c |    1 +
 1 file changed, 1 insertion(+)

commit 9a1a2f0856b353fbf94ead22b4a31f2ee3a4d0b0
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri May 25 15:40:18 2012 +0100

    test-ui: We only really support GTK+ 3.x builds
    
    So stop fooling ourselves, that code just doesn't work with GTK+ 2.x
    
    https://bugzilla.gnome.org/show_bug.cgi?id=676823

 configure.ac |    5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

commit 24688ec65c57edb97ce914758cba27ab746dffe0
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed May 23 17:15:39 2012 +0000

    net: Get rid of grl_net_wc_set_user_agent () declaration
    
    "user-agent" is a implemented as property, not as a function.
    
    The declaration was left there by mistake.
    
    This is a fix over commit bcf8a576d4.

 libs/net/grl-net-wc.h |    3 ---
 1 file changed, 3 deletions(-)

commit 3b9d0fe783a8b554f54e3c28f694c559f61a307f
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon May 21 19:05:41 2012 +0000

    test-ui: Ask for all fast keys when browsing
    
    Asking for all the fast keys in a browse/search operation is the most efficient
    way if you want to show all they keys. It will take just one query to the
    service to solve all those keys in a row.
    
    For slow keys, let's use metadata() to resolve them when user clicks the item.

 tools/grilo-test-ui/main.c |   33 +++++++++------------------------
 1 file changed, 9 insertions(+), 24 deletions(-)

commit 89778ccaf1865f7f23cd8c9ee00d4daf7002f6cd
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri May 18 08:42:18 2012 +0000

    vala: Add support for Vala 0.18
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit bcf8a576d4b5caa64adca36470917defb311abec
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed May 16 13:31:10 2012 +0000

    net: Add "user-agent" property
    
    This fixes https://bugzilla.gnome.org/show_bug.cgi?id=672923
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 libs/net/grl-net-wc.c |   23 +++++++++++++++++++++++
 libs/net/grl-net-wc.h |    3 +++
 2 files changed, 26 insertions(+)

commit 2762320d47d5d65dfc211c041d2c5294dc96b24f
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Mon Apr 30 13:21:22 2012 +0200

    net: tune up gir build

 libs/net/Makefile.am |    8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

commit 6a80f062ac4814a26e2815ed99119369197ee836
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Thu Apr 26 16:54:56 2012 +0200

    net: move cache and request to a private file
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 libs/net/Makefile.am             |    9 +
 libs/net/grl-net-private.c       |   91 ++++++++
 libs/net/grl-net-private.h       |   80 +++++++
 libs/net/grl-net-soup-stable.c   |  186 ++++++++++++++++
 libs/net/grl-net-soup-unstable.c |  292 +++++++++++++++++++++++++
 libs/net/grl-net-wc.c            |  440 ++------------------------------------
 libs/net/grl-net-wc.h            |    2 +
 7 files changed, 677 insertions(+), 423 deletions(-)

commit c35c0b35138473e36084b40022765fd0c32479c1
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Thu Apr 26 13:43:52 2012 +0200

    net: simplify the throttling code
    
    Creating a typedef for a local scope closure, is overkill, make more complex
    the structure of the code.
    
    Simple structs for simple people.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 libs/net/grl-net-wc.c |   84 ++++++++++++++++++++++++-------------------------
 1 file changed, 42 insertions(+), 42 deletions(-)

commit baee8a65a296f96967d798471911db42558c546b
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Thu Apr 26 20:13:45 2012 +0200

    vala: specify explicitly grl-net.h
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 bindings/vala/grilo-net-uninstalled.files.in |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a7f2d378afebd88877030d6bc8f1e7124dff919c
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Thu Apr 26 21:57:51 2012 +0200

    net: detect in runtime use-thread-context property
    
    Instead of messing with autotools, it is better to know in run-time if
    the required property is available.
    
    Revert "grl-net: Use libsoup context threads for libsoup 2.39 or above"
    This reverts commit 98fb065f9d52092d2cbf29dcdc1784f9ff087e74.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 configure.ac          |    6 ------
 libs/net/Makefile.am  |    5 -----
 libs/net/grl-net-wc.c |   21 ++++++++++++++++-----
 3 files changed, 16 insertions(+), 16 deletions(-)

commit 8d94c03a445f77db717637ab5c6f2502114860d5
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Apr 26 17:34:14 2012 +0000

    log: Fix up GRL_DEBUG environment variable
    
    Grilo relies on the default GLib log handler.
    
    Due to the G_MESSAGES_DEBUG change in GLib, the default handler filters out all
    the messages unless G_MESSAGES_DEBUG environment variable includes the log
    domain to show ('all' for all domains).
    
    To fix it, if GRL_DEBUG is set, Grilo log domain is added to the
    G_MESSAGES_DEBUG so the messages are not filtered.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-log.c |   13 +++++++++++++
 1 file changed, 13 insertions(+)

commit 98fb065f9d52092d2cbf29dcdc1784f9ff087e74
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Apr 26 15:36:36 2012 +0000

    grl-net: Use libsoup context threads for libsoup 2.39 or above
    
    Add SOUP_SESSION_USE_THREAD_CONTEXT to soup sessions for libsoup >= 2.39.
    
    Otherwise, it will not work
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 configure.ac          |    6 ++++++
 libs/net/Makefile.am  |    5 +++++
 libs/net/grl-net-wc.c |    7 +++++++
 3 files changed, 18 insertions(+)

commit 1de8dde1aab04d69efceb70cff31bbf43b8264eb
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Apr 25 09:42:24 2012 +0000

    config: Add grl_config_get_source() function
    
    Returns the source id in the config object.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 doc/grilo/grilo-sections.txt |    1 +
 src/data/grl-config.c        |   13 +++++++++++++
 src/data/grl-config.h        |    2 ++
 3 files changed, 16 insertions(+)

commit 0698639d02478707eccff947e0654dfbf1b2f830
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Apr 25 09:41:38 2012 +0000

    doc: Fix typo in grl_config_set_source()
    
    It returns source id, not plugin id.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-config.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ddde75b64427d95e585cf5e98d1b1006114f6f78
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Apr 20 13:10:49 2012 +0000

    core: Use g_list_free_full() when possible
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-data.c    |    3 +--
 src/grl-media-source.c |    3 +--
 src/grl-multiple.c     |    3 +--
 3 files changed, 3 insertions(+), 6 deletions(-)

commit 8e570a9d94c76907239de5ed392ff901944fe51b
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Apr 16 18:04:52 2012 +0000

    test-ui: Add major.minor version suffix to executable
    
    It creates grl-test-ui-0.1 or grl-test-ui-0.2, so we can have both versions
    installed in the same host.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 tools/grilo-test-ui/Makefile.am |   28 ++++++++++++++--------------
 1 file changed, 14 insertions(+), 14 deletions(-)

commit 479c39d28e5228bcfc9ece517f4c4effce235e29
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Apr 16 18:04:52 2012 +0000

    grl-inspect: Add major.minor version suffix to executable
    
    It creates grl-inspect-0.1 or grl-inspect-0.2, so we can have both versions
    installed in the same host.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 tools/grilo-inspect/Makefile.am |   18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

commit ba3a8c0cf1f60da33919a5267524cfb8505a494f
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Apr 16 17:53:44 2012 +0000

    grl-inspect: Add print version option
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 tools/grilo-inspect/grl-inspect.c |   20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

commit 386c8a1e96eb4c035ed9b7edf1715ab6ecbe5d11
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Apr 13 16:03:35 2012 +0000

    test-ui: Show version in title
    
    It helps to know which version we are using.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 tools/grilo-test-ui/main.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ea29564eb555accba1932792310e24723d3fedbb
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Apr 13 10:29:23 2012 +0000

    test-ui: Allow children expand and fill when packaging in boxes/panes
    
    So resizing the main window resizes each widget.

 tools/grilo-test-ui/main.c |   42 +++++++++++++++++++++---------------------
 1 file changed, 21 insertions(+), 21 deletions(-)

commit a6878d68938f20c5368ed3b505e8eb7206b84173
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Apr 13 11:45:24 2012 +0200

    test-ui: Fix compilation warning
    
    Not enough variable arguments to fit a sentinel.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 tools/grilo-test-ui/main.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e65703ebb9b7dc3476917aa63944df1b8cdc0fe9
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Apr 13 09:12:01 2012 +0000

    test-ui: Do not use Gtk+ deprecated functions
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 tools/grilo-test-ui/main.c |   28 ++++++++++++++--------------
 1 file changed, 14 insertions(+), 14 deletions(-)

commit b0a56c0015d5c032848262b1efcc380b7303ab2e
Author: Sam Thursfield <sam.thursfield@codethink.co.uk>
Date:   Tue Oct 25 17:36:57 2011 +0100

    core: Add GRL_METADATA_KEY_START_TIME
    
    This is used to specify the start offset of a logical resource inside
    a larger container, such as a track in a single-file rip of an entire CD.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=662748
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 doc/grilo/grilo-sections.txt |    2 ++
 src/data/grl-media.c         |   13 +++++++++++++
 src/data/grl-media.h         |    2 ++
 src/grl-metadata-key.c       |   14 ++++++++++++++
 src/grl-metadata-key.h       |    1 +
 5 files changed, 32 insertions(+)

commit 7ab229ff98adfab77252b1826952da5769842481
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Apr 3 12:32:16 2012 +0000

    test-ui: Do nothing if no element has been selected

 tools/grilo-test-ui/main.c |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit f1f5517567244b6f58a7c1bddf00e980c8713a60
Author: Alberto Garcia <agarcia@igalia.com>
Date:   Mon Mar 26 14:37:00 2012 +0300

    Expand twice the value of ${libdir} in GRL_PLUGINS_DIR
    
    This is necessary because ${libdir} may contain more variables inside,
    e.g. --libdir=\${prefix}/lib/x86_64-linux-gnu

 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit fc794abcceb1d30b407e5802d459c3d67f01db5c
Author: Alberto Garcia <agarcia@igalia.com>
Date:   Mon Apr 2 17:24:29 2012 +0000

    build: Install .gir and .typelib files in the dirs reported by pkg-config

 grilo-0.2.pc.in      |    4 ++--
 grilo-net-0.2.pc.in  |    4 ++--
 libs/net/Makefile.am |    4 ++--
 src/Makefile.am      |    4 ++--
 4 files changed, 8 insertions(+), 8 deletions(-)

commit ea3624ef5216f3ed0cdcbae42f5c8451eeb70341
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Apr 2 10:32:37 2012 +0000

    vala: Add support for Vala 0.16
    
    And get rid of support for Vala less than 0.12.
    
    This makes easier the management, as before 0.12 pkg-config files used a
    different format.

 configure.ac |   19 +++++--------------
 1 file changed, 5 insertions(+), 14 deletions(-)

commit 6c4148a51efc379351697a6eca2c4086792d270c
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Apr 2 10:31:01 2012 +0000

    core: Fix distcheck
    
    grl-inspect.1 was not distributed correctly.

 Makefile.am |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5c6f798111d6b26dc6af2985867fed19383a7119
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Dec 16 13:01:07 2011 +0100

    doc: Update Copyright notice
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 Makefile.am                       |    2 +-
 doc/Makefile.am                   |    2 +-
 libs/net/Makefile.am              |    2 +-
 libs/net/grl-net-wc.c             |    2 +-
 libs/net/grl-net-wc.h             |    2 +-
 src/grl-error.h                   |    2 +-
 src/grl-metadata-source-priv.h    |    2 +-
 src/grl-multiple.h                |    2 +-
 src/grl-plugin-registry.h         |    2 +-
 src/grl-sync.c                    |    1 +
 src/grl-util.h                    |    2 +-
 tools/grilo-inspect/grl-inspect.c |    2 +-
 12 files changed, 12 insertions(+), 11 deletions(-)

commit 2977ac46eda551276497882ba01f115864dfd844
Author: Guillaume Emont <guijemont@igalia.com>
Date:   Thu Sep 8 17:46:54 2011 +0200

    vala: update binding and example for the caps and options changes

 bindings/vala/grilo-uninstalled.files.in |    2 ++
 tools/vala/grilo-test.vala               |    6 +++++-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 956d3c8b9656e4ee76d0434e80ddff970e7078f8
Author: Guillaume Emont <guijemont@igalia.com>
Date:   Tue Aug 2 13:19:23 2011 +0200

    examples: ported to new APIs using caps and options

 examples/browsing.c                      |   15 ++++++++++++---
 examples/efficient-metadata-resolution.c |   25 ++++++++++++++++++++++---
 examples/multivalues.c                   |   14 ++++++++++++--
 examples/searching.c                     |   10 ++++++++--
 4 files changed, 54 insertions(+), 10 deletions(-)

commit 3de162e6946279fbd5a0d24ff2658a5b65783a18
Author: Guillaume Emont <gemont@igalia.com>
Date:   Thu Apr 21 11:41:36 2011 +0200

    tests: added first tests for options and caps

 tests/python/test_options.py |   78 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 78 insertions(+)

commit ff9c5d9100d73d026bdec032c266db71d18dbe64
Author: Guillaume Emont <gemont@igalia.com>
Date:   Mon Apr 11 12:55:26 2011 +0200

    test-ui: ported to the new APIs with GrlOperationOptions
    
    Ignoring caps for now, since the test ui only use options that are not related
    to caps (skip, count and flags).

 tools/grilo-test-ui/main.c |   48 ++++++++++++++++++++++++++++++--------------
 1 file changed, 33 insertions(+), 15 deletions(-)

commit 7eba7bfdd4e48ad24de9ab1880099ab92d5c9a25
Author: Guillaume Emont <guijemont@igalia.com>
Date:   Fri Dec 2 17:15:43 2011 +0100

    doc: included caps and options in the documentation

 doc/grilo/grilo-docs.sgml    |    6 ++++++
 doc/grilo/grilo-sections.txt |   47 ++++++++++++++++++++++++++++++++++++++++++
 doc/grilo/grilo.types        |    2 ++
 3 files changed, 55 insertions(+)

commit b05762d7c88a30171a9a44ea1a22fe4ab8c8effc
Author: Guillaume Emont <gemont@igalia.com>
Date:   Fri Apr 8 23:37:25 2011 +0200

    core: make grl_multiple_*() operations use GrlOperationOptions

 src/grl-multiple.c |   74 +++++++++++++++++++++++++++++++---------------------
 src/grl-multiple.h |    9 +++----
 2 files changed, 48 insertions(+), 35 deletions(-)

commit 1adb289f5dd16341f903c453f92fdd632daa6fb9
Author: Guillaume Emont <gemont@igalia.com>
Date:   Fri Apr 8 23:36:28 2011 +0200

    core: make media source operations use GrlOperationOptions

 src/grl-media-source.c |  251 +++++++++++++++++++++++++++---------------------
 src/grl-media-source.h |   59 ++++--------
 2 files changed, 165 insertions(+), 145 deletions(-)

commit 188271d492d6c37d48bf36a1568d7aac3b33eb4e
Author: Guillaume Emont <gemont@igalia.com>
Date:   Wed Apr 6 20:53:13 2011 +0200

    core: added grl_metadata_source_get_caps()

 src/grl-metadata-source.c |   27 +++++++++++++++++++++++++++
 src/grl-metadata-source.h |    8 +++++++-
 2 files changed, 34 insertions(+), 1 deletion(-)

commit 75b14e03b343bc34e49294fded38e9bdea6fe002
Author: Guillaume Emont <gemont@igalia.com>
Date:   Wed Apr 6 17:00:38 2011 +0200

    core: use GrlOperationOptions in grl_metadata_source_resolve()

 src/grl-metadata-source.c |   18 ++++++++++--------
 src/grl-metadata-source.h |    6 +++---
 2 files changed, 13 insertions(+), 11 deletions(-)

commit cbc0a640de241b13e720dcf6dc3b628170b4ddff
Author: Guillaume Emont <gemont@igalia.com>
Date:   Wed Apr 6 16:45:48 2011 +0200

    core: Moved GrlMetadataResolutionFlags into grl-operation-options.h

 src/grl-metadata-source.h   |   18 ++----------------
 src/grl-operation-options.h |   16 ++++++++++++++++
 2 files changed, 18 insertions(+), 16 deletions(-)

commit 95e0d1ed229495f8c752820b8f50be482d704721
Author: Guillaume Emont <gemont@igalia.com>
Date:   Thu Mar 31 20:30:48 2011 +0200

    core: added caps and operation options to build system

 src/Makefile.am |    7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

commit c19afb6f57782896d9880385955eaec92c6033e8
Author: Guillaume Emont <guijemont@igalia.com>
Date:   Mon Nov 28 10:05:49 2011 +0100

    core: introducing GrlOperationOptions
    
    This extensible object will contain all the options that one may want to
    specify to a given operation.

 src/grl-operation-options-priv.h |    2 +
 src/grl-operation-options.c      |  343 ++++++++++++++++++++++++++++++++++++++
 src/grl-operation-options.h      |   85 ++++++++++
 3 files changed, 430 insertions(+)

commit 7da8c1ef20313a4541cef8eec07c3464ef9a2385
Author: Guillaume Emont <gemont@igalia.com>
Date:   Thu Mar 24 20:56:13 2011 +0100

    core: introduced GrlCaps
    
    The GrlCaps type will represent the capabilities of a given source for a given
    operation.

 src/grl-caps.c |  134 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/grl-caps.h |   70 +++++++++++++++++++++++++++++
 2 files changed, 204 insertions(+)

commit 054c7c8d353783a1769d72c3e7adee3d8bd2d146
Author: Guillaume Emont <guijemont@igalia.com>
Date:   Mon Nov 28 10:04:55 2011 +0100

    core: add operation option keys
    
    These keys represent options that will be given to operations.

 src/grl-operation-options-priv.h |   39 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

commit 8b600784827e547cf312c987c06d6e91c68dc332
Author: Guillaume Emont <gemont@igalia.com>
Date:   Fri Apr 1 16:56:25 2011 +0200

    core: Added some helper functions to handle GValues

 src/Makefile.am        |    4 ++-
 src/grl-value-helper.c |   80 ++++++++++++++++++++++++++++++++++++++++++++++++
 src/grl-value-helper.h |   44 ++++++++++++++++++++++++++
 3 files changed, 127 insertions(+), 1 deletion(-)

commit 76bb6fc28debdd063bb1f271bec40d2ff6e81cb9
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Dec 13 11:11:17 2011 +0000

    test-ui: Load settings from file
    
    Besides the hard-coded settings in Grilo Test UI application, we load settings
    stored in $HOME/.config/grilo-test-ui/grilo.conf file.
    
    Thus, user can store it his own settings to be used.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 tools/grilo-test-ui/main.c |   18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

commit ddc6b4fd62ffe3f5fe1d45a2441c30a2ec85b222
Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
Date:   Sat Dec 10 22:54:42 2011 -0600

    Do not dist gir_DATA
    
    GIR files contain a shared-library attribute which varies per platform,
    and therefore must not be disted; see bug 621611 for rationale.
    
    Fixes https://bugzilla.gnome.org/show_bug.cgi?id=665938
    
    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 libs/net/Makefile.am |    4 +++-
 src/Makefile.am      |    4 +++-
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 09d50a2c36f4e54e007cdfe5c0b270de6dc2aadb
Author: Guillaume Emont <guijemont@igalia.com>
Date:   Fri Nov 25 13:22:15 2011 +0100

    Ensure grl_metadata_list_key_new() is called with a sentinel
    
    This change triggers a compilation warning (with gcc) if the sentinel is
    forgotten.

 src/grl-util.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 350d3a7c75472442313ddce160a059febb216f41
Author: Sam Thursfield <sam.thursfield@codethink.co.uk>
Date:   Wed Nov 23 19:03:40 2011 +0100

    configure: Honour VAPIDIR environment variable

 configure.ac |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit d83a3e933ad81094c3e6cfc4ff4c851c5d04935e
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Nov 23 17:00:07 2011 +0000

    wc-test: Remove it
    
    Actually, this application was used as a tool to develop GrlNet, but actually
    it isn't real test. So let's remove it.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 libs/net/Makefile.am |   12 -------
 libs/net/wc-test.c   |   88 --------------------------------------------------
 2 files changed, 100 deletions(-)

commit 99303e4204d5a38edee4054f0c52c42cd568eb18
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Tue Nov 22 16:57:16 2011 +0100

    build: conditional creation of grl-net.pc files
    
    If libsoup is not available, then the grl-net library will not be built. Hence
    we shall not create the grl-net.pc files. Otherwise we will compile plugins
    that will not be able to be loaded.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 configure.ac |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 68b5bfc4b1f7ab0a06e3f5614af1bdc6d7e788d7
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Tue Nov 22 16:57:15 2011 +0100

    build: avoid the export of NETCACHE variable
    
    NETCACHE variables is not used for compiler tasks, so the PKG_CHECK_MODULES
    can be replaced by a PKG_CHECK_EXISTS, which does not export an automake
    variable, as we only need to know if cache operations are supported in libsoup
    given the version number.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 configure.ac |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 745ce2f77fabf1adb64dfba839ede04b43f9b383
Author: Jens Georg <mail@jensge.org>
Date:   Sat Oct 8 09:09:24 2011 +0200

    core: Use full path to load plugin information

 src/grl-plugin-registry.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7bd24c1001aee2750ad7311eba454858f3594145
Author: Sam Thursfield <sam.thursfield@codethink.co.uk>
Date:   Thu Nov 10 19:21:26 2011 +0000

    bindings/vala: Fix various bugs in Vala bindings

 bindings/vala/grilo-0.2-custom.vala |   60 +++++++++++++++++------------------
 bindings/vala/grilo-0.2.metadata    |    5 +++
 2 files changed, 35 insertions(+), 30 deletions(-)

commit 6794b09b694469cc0f2f18b3552d253f2836fa1c
Author: Sam Thursfield <sam.thursfield@codethink.co.uk>
Date:   Thu Nov 10 19:26:29 2011 +0000

    core: Introspection fixes

 src/grl-media-source.c    |    4 ++--
 src/grl-metadata-source.c |    2 +-
 src/grl-multiple.c        |    2 +-
 src/grl-plugin-registry.c |    2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

commit 5f401e69f613554fb3e3100ae46a14031742d1ca
Author: Sam Thursfield <sam.thursfield@codethink.co.uk>
Date:   Wed Oct 26 13:57:11 2011 +0100

    grl-net: Correctly unref operation async result
    
    Correct behaviour is to unref the GSimpleAsyncResult object after the call to
    g_simple_async_result_complete(). It cannot be done in the async result's callback.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=662763

 libs/net/grl-net-wc.c |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 7abc1ac9b84a84fa5f1c2c0f4e9342b21f48afe0
Author: Sam Thursfield <sam.thursfield@codethink.co.uk>
Date:   Wed Oct 26 12:36:41 2011 +0100

    grl-net: Fix crashes in SoupRequest error case
    
    https://bugzilla.gnome.org/show_bug.cgi?id=662762

 libs/net/grl-net-wc.c |   24 ++++++++++++++++++++----
 1 file changed, 20 insertions(+), 4 deletions(-)

commit 5bcb8fefda8ed8a073df2572142a1ad39e4f8fb7
Author: Guillaume Emont <guijemont@igalia.com>
Date:   Thu Jul 21 22:26:02 2011 +0200

    build: bumped needed version of GLib
    
    This is to ensure GDateTime is usable in introspection stuff. Note that we have
    no requirement for gobject-introspection, buf if it is used, it should be in
    sync with GLib anyway.

 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 73372efcaca274929c38ce7e4051c9f18225a4e6
Author: Guillaume Emont <guijemont@igalia.com>
Date:   Thu Jun 9 20:30:05 2011 +0200

    test-ui: improved display of GDateTime values

 tools/grilo-test-ui/main.c |   18 +++++++++++++++++-
 1 file changed, 17 insertions(+), 1 deletion(-)

commit 63c499adaf7ba1a4fd173997971820c3aabef2da
Author: Guillaume Emont <guijemont@igalia.com>
Date:   Fri Jun 3 18:05:20 2011 +0200

    tests: added simple tests for media dates

 tests/python/test_media.py |   59 ++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 59 insertions(+)

commit bb7e8fb55f071957f6fca255f2f27e7c34136f8d
Author: Guillaume Emont <guijemont@igalia.com>
Date:   Fri Jul 22 14:23:16 2011 +0200

    core: Added grl_date_time_from_iso8601()
    
    This is a helper to create a GDateTime instance from an iso 8601 formatted
    string. It can be useful to plugins that receive strings in that format and for
    testing.

 src/grl-util.c |   33 +++++++++++++++++++++++++++++++++
 src/grl-util.h |    2 ++
 2 files changed, 35 insertions(+)

commit a76bc5cfa92f52775c8f2855b1bce4ec56ff4782
Author: Guillaume Emont <guijemont@igalia.com>
Date:   Fri Jul 22 14:22:30 2011 +0200

    core: reorganised date-related keys.
    
    GRL_METADATA_KEY_DATE was removed because its definition is not precise enough.
    GRL_METADATA_KEY_PUBLICATION_DATE and GRL_METADATA_KEY_MODIFCATION_DATE were added.
    
    GDateTime *instances are not returned const any more in getters, for easier use
    (GDateTime is immutable anyway).

 src/data/grl-media.c   |   56 +++++++++++++++++++++++++++++++++++++-----------
 src/data/grl-media.h   |   14 ++++++++----
 src/grl-metadata-key.c |   17 +++++++++++----
 src/grl-metadata-key.h |    3 ++-
 4 files changed, 69 insertions(+), 21 deletions(-)

commit 30c1668d32d1557a4783ea8b3ab5c5808e44d047
Author: Guillaume Emont <guijemont@igalia.com>
Date:   Mon May 30 20:17:43 2011 +0200

    core: changed type of date keys to GDateTime
    
    Strings could be dangerous because errors in their formatting is likely to be
    detected too late.
    
    See also https://mail.gnome.org/archives/grilo-list/2011-June/msg00002.html.

 src/data/grl-media.c   |   26 +++++++++++++-------------
 src/data/grl-media.h   |    8 ++++----
 src/grl-metadata-key.c |   14 +++++++-------
 3 files changed, 24 insertions(+), 24 deletions(-)

commit 1a15e6d06ba74bef5f062be5a0a803eba9d2fff9
Author: Guillaume Emont <guijemont@igalia.com>
Date:   Mon May 30 15:29:06 2011 +0200

    core: added support for boxed types in GrlData and GrlRelatedKeys

 src/data/grl-data.c         |   69 +++++++++++++++++++++++++++++++++++++++++++
 src/data/grl-data.h         |    6 ++++
 src/data/grl-related-keys.c |   51 ++++++++++++++++++++++++++++++++
 src/data/grl-related-keys.h |    7 +++++
 4 files changed, 133 insertions(+)

commit 9a9672668b373f81405b81506d80fbf0537d7222
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Sep 23 14:27:16 2011 +0000

    core: Use G_SEARCHPATH_SEPARATOR_S to separate paths
    
    Currently, it means in Unix ":" will be used as the separator for the list of
    paths to search for plugins, while in Windows it will be ";".
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grilo.c |   23 +++++++----------------
 1 file changed, 7 insertions(+), 16 deletions(-)

commit 4e4f8ba274bc44d0c967bf367e76b96a073d5f1f
Author: Damien Lespiau <damien.lespiau@intel.com>
Date:   Mon Sep 19 11:32:45 2011 +0100

    windows: Fix the default directory to look for plugins
    
    On windows, you need to detect at runtime where you are and build the path to
    the plugins directory based on where you are being run. GLib provides a
    function to do just that.
    
    Then, you can't really use ':' to separate paths eg. C:\foo:D:\bar

 src/grilo.c |   36 ++++++++++++++++++++++++++++++++++--
 1 file changed, 34 insertions(+), 2 deletions(-)

commit 29c3e5d44f302001a4b58501920ebb7f5f53056b
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Sep 7 11:15:47 2011 +0000

    core: Mention explicitly Grilo in the command-line options
    
    Current command-line options affects the way Grilo uses the plugins.
    
    But when asking for help, it only mentions 'plugins', not 'Grilo plugins'.
    
    As these options can be added to other applications, possible with his own
    pluggable system, this commit clearly specify that we meant Grilo plugins when
    asking for help for these options.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grilo.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 52d91e11186985a785c0682dcc166cbb7b9d127e
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Sep 7 09:57:38 2011 +0000

    build: Include bugzilla and homepage information into autotools init
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 configure.ac |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 651197c685cd0a40c2b98fb5c6d038563cb783de
Author: Damien Lespiau <damien.lespiau@intel.com>
Date:   Mon Sep 5 12:44:28 2011 +0100

    tools: Don't link against -ldl and -lpthread
    
    The tools don't use any of the symbols defined by those library and depending
    on them should come from glib.

 tools/grilo-inspect/Makefile.am |    1 -
 tools/grilo-test-ui/Makefile.am |    1 -
 2 files changed, 2 deletions(-)

commit c40275a48fe316b47642fd4388b12e77b13f81d5
Author: Damien Lespiau <damien.lespiau@intel.com>
Date:   Mon Sep 5 12:44:27 2011 +0100

    gitignore: Ignore .exe files

 .gitignore |    1 +
 1 file changed, 1 insertion(+)

commit 05db4a5b07d56586e47da256083dae8440d62975
Author: Damien Lespiau <damien.lespiau@intel.com>
Date:   Mon Sep 5 12:44:26 2011 +0100

    build: Generate DLLs when compiling for Windows
    
    When compiling for windows, libtool needs the -no-undefined flag. As it's a
    good practice to have it anyway, add it unconditionally.

 libs/net/Makefile.am |    3 +++
 src/Makefile.am      |    3 +++
 2 files changed, 6 insertions(+)

commit d5dc35d8156f26380a2e7b22000c705b50b73985
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Sep 5 16:57:10 2011 +0200

    doc: Update NEWS file
    
    Include 0.1.16 and 0.1.17 releases.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 NEWS |   39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

commit 69650525b335a18d0457abdbe39cdcc9b418f1cd
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Sep 5 09:43:41 2011 +0000

    doc: Merge libraries documention into Grilo documentation
    
    So there is only one access point to the whole documentation.
    
    Partially fixes https://bugzilla.gnome.org/show_bug.cgi?id=657920
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 configure.ac                     |    1 -
 doc/Makefile.am                  |    2 +-
 doc/grilo/Makefile.am            |    2 +-
 doc/grilo/grilo-docs.sgml        |   17 ++++++
 doc/grilo/grilo-sections.txt     |   27 ++++++++++
 doc/libs/Makefile.am             |  105 --------------------------------------
 doc/libs/grilo-libs-docs.sgml    |   51 ------------------
 doc/libs/grilo-libs-sections.txt |   28 ----------
 8 files changed, 46 insertions(+), 187 deletions(-)

commit 0c439562a5576e32c3ac461a00d08edc9ccf9ac0
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Sep 5 08:07:35 2011 +0000

    build: Add support for Vala 0.14
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 configure.ac |   21 ++++++++++++---------
 1 file changed, 12 insertions(+), 9 deletions(-)

commit 8d3e7ff6ed81171a5c37c51324efeffbb160f0ff
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Sep 2 22:14:14 2011 +0000

    core: Allow restricting the list of plugins to use
    
    Sometimes it is useful to restrict the list of plugins to a subset of those
    installed.
    
    This patch provides an environment variable (GRL_PLUGIN_LIST) and a parameter
    to Grilo-based applications to restrict the plugins to use.
    
    Applications will only see those plugins that are in the specified list, no
    matter if there are other plugins also in the same location.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/Makefile.am                |    3 ++-
 src/grilo.c                    |   27 +++++++++++++++++------
 src/grl-plugin-registry-priv.h |   32 ++++++++++++++++++++++++++++
 src/grl-plugin-registry.c      |   46 +++++++++++++++++++++++++++++++++++++++-
 src/grl-plugin-registry.h      |    1 +
 5 files changed, 101 insertions(+), 8 deletions(-)

commit 961c9e20a0ffed6a8616a0bba393855e7829d241
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Jul 27 15:21:34 2011 +0000

    core: Refactor the way of loading plugins
    
    Plugins' XML information files are loaded before the plugins themselves, so the
    list of plugins and their identifiers are available to the user, who can just
    load a specific subset of them.
    
    As those XML files are just loaded once, if user unloads and reload again some
    or all plugins, there is no need to re-scan all the directories, as the plugins
    locations are already loaded and known.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-plugin-registry.c |  382 +++++++++++++++++++++++++--------------------
 src/grl-plugin-registry.h |    2 +-
 2 files changed, 215 insertions(+), 169 deletions(-)

commit 303bc566051cdd2efb86a56721f7143f4d6eea0f
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Jul 22 08:33:29 2011 +0000

    core: install plugins XML file in the same place as the plugin itself
    
    Sticking together both library and xml file makes things easier to handle,
    specially when loading plugins from a different place than standard.
    
    So far, user and/or developer can load plugins from a different place. But this
    only was affecting the library files: the xml information files were still
    getting from the standard place. Adding new functions and variables to specify
    where to look for the xml files adds a unneeded level of complexity.
    
    So the simple approach is to put both files together, so the xml files can be
    obtained from the same place where the library resides.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 configure.ac              |    8 --------
 src/Makefile.am           |    2 --
 src/grl-plugin-registry.c |    6 +++---
 3 files changed, 3 insertions(+), 13 deletions(-)

commit 832547ea7cf83fdf7bd4629d43640a36b094b800
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Aug 30 15:16:41 2011 +0000

    core: Add GRL_METADATA_KEY_TRACK_NUMBER
    
    Add a key for Track Number.
    
    Add also required API in GrlMediaAudio to handle this key.
    
    Fixes https://bugzilla.gnome.org/show_bug.cgi?id=657549
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-media-audio.c |   26 ++++++++++++++++++++++++++
 src/data/grl-media-audio.h |    4 ++++
 src/grl-metadata-key.c     |   10 ++++++++++
 src/grl-metadata-key.h     |    1 +
 4 files changed, 41 insertions(+)

commit 8b2fd3e94c41e1e1234f2eea4a06efadf6832e68
Author: Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>
Date:   Wed Jun 29 14:13:39 2011 +0100

    core: silent warnings of unused variables
    
    Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-media-plugin.c     |    3 ---
 tools/grilo-test-ui/main.c |    2 --
 2 files changed, 5 deletions(-)

commit e713b75a81c82186bf9fd269693398c0ac1fec7d
Author: Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>
Date:   Wed Jun 29 14:13:38 2011 +0100

    media-source: manage end of search/browse with splitted sources
    
    When running in splitted modes (usually when dealing with websites),
    if you get less results than what the user would like to get, we
    currently end up in an infinite loop with the core of grilo keeping
    asking for new items from a source which can't deliver anymore.
    
    To manage this specific case, we just check whether the plugin has
    returned a remaining results number equals to 0 as well as a null
    item.
    
    Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>

 src/grl-media-source.c |   12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

commit d55b35c4fdcd9be982b605de007c76be5bf9041b
Author: Guillaume Emont <guijemont@igalia.com>
Date:   Wed Jul 20 20:05:30 2011 +0200

    core: skip some private functions in gobject introspection

 src/grl-metadata-source.c |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit c2e6746d1c95c6852da7b34561720d72b63a3aa2
Author: Guillaume Emont <guijemont@igalia.com>
Date:   Tue Jul 19 20:48:20 2011 +0200

    core: pass the media to _expand_operation_keys() in grl_media_source_metadata().
    
    As suggested by fabien.

 src/grl-media-source.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f987118805146a778f054332ed65418c6b8ecce5
Author: Alberto Garcia <agarcia@igalia.com>
Date:   Fri Jul 1 17:14:10 2011 +0300

    doc: Generate a ChangeLog file from git when running make dist

 Makefile.am |   13 +++++++++++++
 1 file changed, 13 insertions(+)

commit 219daf4829dbd909edaafd822937f417b7fe0813
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Wed Jun 29 10:45:04 2011 +0200

    doc: Fix wrong xml header

 doc/grilo/plugins-media-sources.xml |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 2cc9b619344275c56ada2819cbc88667b073beaf
Author: Alberto Garcia <agarcia@igalia.com>
Date:   Tue Jun 28 23:11:24 2011 +0200

    doc: Add manpage for grl-inspect
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 Makefile.am   |    2 ++
 grl-inspect.1 |   51 +++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+)

commit 55bbc031b56f501504339533984be25fb98ce99d
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Jun 28 11:09:53 2011 +0000

    doc: Provide more links in documentation
    
    Add cross-references.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 doc/grilo/plugins-media-sources.xml    |  206 +++++++++++++++++---------------
 doc/grilo/plugins-metadata-sources.xml |   39 +++---
 2 files changed, 131 insertions(+), 114 deletions(-)

commit dd6f7d80b79a6e3cc1f7c84eba528b89f2e40763
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jun 27 13:17:58 2011 +0000

    doc: Update documentation
    
    Document the new way of cancelling operations.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 doc/grilo/Makefile.am                  |    1 +
 doc/grilo/grilo-docs.sgml              |    1 +
 doc/grilo/grilo-sections.txt           |   11 +++++++----
 doc/grilo/plugins-metadata-sources.xml |   19 +++++++++++--------
 4 files changed, 20 insertions(+), 12 deletions(-)

commit dd4f5255d24390f2c2cac115be8a9c9d4ee8a6da
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jun 27 13:16:37 2011 +0000

    doc: Fix parameter typo
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-operation.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 0921d7ed237638549e34c121f92b1fecb5924e55
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Tue Jun 28 18:31:21 2011 +0200

    doc: Fixed typos

 doc/grilo/environment-setup.xml |    2 +-
 doc/grilo/writing-apps.xml      |   40 +++++++++++++++++++--------------------
 2 files changed, 21 insertions(+), 21 deletions(-)

commit d2851625c673e7099d91a8693842bcb078c3913d
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Tue Jun 28 18:16:54 2011 +0200

    doc: Renamed files with the documentation for plugin developers.

 doc/grilo/Makefile.am                              |    6 +-
 doc/grilo/grilo-docs.sgml                          |    6 +-
 doc/grilo/plugins-media-sources.xml                | 1157 ++++++++++++++++++++
 doc/grilo/plugins-metadata-sources.xml             |  392 +++++++
 doc/grilo/plugins-testing.xml                      |   99 ++
 doc/grilo/quick-start-plugins-media-sources.xml    | 1157 --------------------
 doc/grilo/quick-start-plugins-metadata-sources.xml |  392 -------
 doc/grilo/quick-start-plugins-testing.xml          |   99 --
 8 files changed, 1654 insertions(+), 1654 deletions(-)

commit a1648e6a80bb8e60e2faf6ed3c75c29abba90aa2
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Tue Jun 28 18:10:53 2011 +0200

    doc: Added more information to the Quick Start chapter and
    renamed it to Tutorials.

 doc/grilo/Makefile.am                 |    4 +-
 doc/grilo/environment-setup.xml       |  199 ++++++++++
 doc/grilo/grilo-docs.sgml             |   18 +-
 doc/grilo/quick-start-using-grilo.xml |  296 ---------------
 doc/grilo/quick-start.xml             |   73 ++++
 doc/grilo/writing-apps.xml            |  648 +++++++++++++++++++++++++++++++++
 6 files changed, 937 insertions(+), 301 deletions(-)

commit dd0d4605c278fed07770dd6f01f8692f256fd107
Author: Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>
Date:   Thu Jun 16 19:15:37 2011 +0100

    core: introduce grilo operations
    
    There are several ways to make requests on grilo at the moment. You
    can either use the MediaSource API (to find medias) or the
    MetadataSource API (to find metadatas) or the Multiple API (to find
    medias on a set of media sources). Currently MediaSource and
    MetadataSource share the same API to cancel an operation, but the
    Multiple API remains different.
    
    This patch proposes to unify all the operations and allocate their ids
    at only one place. This benefits the user by making the whole API
    simpler (you no longer have to remember to how to cancel your
    operation, there is only one way to do it).
    
    This other advantage of this patch is to have a centralized place
    where to find all the ongoing operations (that led to fix a memory
    leak earlier), in the future that could help to debug stalled
    operations.
    
    Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/Makefile.am            |    5 +-
 src/grilo.c                |    4 +
 src/grilo.h                |    1 +
 src/grl-media-source.c     |   20 ++---
 src/grl-metadata-source.c  |  210 +++++++++++++-------------------------------
 src/grl-metadata-source.h  |    9 --
 src/grl-multiple.c         |   68 ++++----------
 src/grl-multiple.h         |    2 -
 src/grl-operation-priv.h   |   43 +++++++++
 src/grl-operation.c        |  163 ++++++++++++++++++++++++++++++++++
 src/grl-operation.h        |   42 +++++++++
 tools/grilo-test-ui/main.c |    7 +-
 12 files changed, 346 insertions(+), 228 deletions(-)

commit 920ada716b59e8a871155d3bc376f0fb297b24d7
Author: Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>
Date:   Thu Jun 16 18:53:49 2011 +0100

    core: use current thread to synchronously wait instead of main thread
    
    Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>

 src/grl-sync.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 8ee7d8bb88a9503b2678be821f64a18d0b2a9cbf
Author: Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>
Date:   Thu Jun 16 16:09:24 2011 +0100

    grl-media-source: signal finished metadata() operations
    
    We were previously leaking metadata() operations by never signalling
    them as "finished".
    
    Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>

 src/grl-media-source.c |    7 +++++++
 1 file changed, 7 insertions(+)

commit 87ad3e87072168ba03acf478bc22c6d495b9b496
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Thu Jun 16 13:35:58 2011 +0200

    doc: Added a chapter on plugin development.

 doc/grilo/Makefile.am                              |    5 +-
 doc/grilo/grilo-docs.sgml                          |   19 +
 doc/grilo/quick-start-plugins-media-sources.xml    | 1157 ++++++++++++++++++++
 doc/grilo/quick-start-plugins-metadata-sources.xml |  392 +++++++
 doc/grilo/quick-start-plugins-testing.xml          |   99 ++
 5 files changed, 1671 insertions(+), 1 deletion(-)

commit 62b05b33408669f9f3bd748db5351cb9f8c7201c
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jun 9 15:11:12 2011 +0000

    doc: Split code examples from documentation
    
    Put examples in a separated directory, so user can easily compile them, and
    embed those files in the documentation.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 Makefile.am                              |    2 +-
 configure.ac                             |    1 +
 doc/grilo/quick-start-using-grilo.xml    |  664 ++----------------------------
 examples/Makefile.am                     |   20 +
 examples/browsing.c                      |  128 ++++++
 examples/configuring-plugins.c           |   69 ++++
 examples/efficient-metadata-resolution.c |  149 +++++++
 examples/loading-plugins.c               |   71 ++++
 examples/multivalues.c                   |  123 ++++++
 examples/searching.c                     |  105 +++++
 10 files changed, 698 insertions(+), 634 deletions(-)

commit f3bbda716318865ccc9cabebdb9613158f7b48bd
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Tue Jun 7 16:57:07 2011 +0200

    doc: fix grilo-net documentation
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 doc/libs/grilo-libs-sections.txt |    6 +++---
 libs/net/grl-net-wc.c            |    1 +
 libs/net/grl-net-wc.h            |   17 +++++++++--------
 3 files changed, 13 insertions(+), 11 deletions(-)

commit b53f0bdd4c6108a87882a091f53cc9211cb13968
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Tue Jun 7 14:45:48 2011 +0200

    doc: update links in quick start tutorial
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 doc/grilo/quick-start-using-grilo.xml |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 170c569181648e7f261ba63223f1d1ba96050a2c
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Tue Jun 7 14:45:19 2011 +0200

    doc: change #GrlBox to #GrlMediaBox, because box is deprecated
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 src/grl-media-source.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 90c0db144f99266752ca3091e0b24c701c3f9c97
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Tue Jun 7 14:37:25 2011 +0200

    doc: fix gtk-doc type parsing
    
    gtk-doc demands that the object structure is declared first and afterwards the
    class structure
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 src/data/grl-config.h       |   19 +++++++++----------
 src/data/grl-data.h         |   21 ++++++++++-----------
 src/data/grl-media-audio.h  |   16 ++++++++--------
 src/data/grl-media-box.h    |   16 ++++++++--------
 src/data/grl-media-image.h  |   16 ++++++++--------
 src/data/grl-media-video.h  |   16 ++++++++--------
 src/data/grl-media.h        |   16 ++++++++--------
 src/data/grl-related-keys.h |   20 ++++++++++----------
 8 files changed, 69 insertions(+), 71 deletions(-)

commit c75138ea44ccf96e77cd9c7ea7560c0f1063bd26
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Tue Jun 7 13:53:33 2011 +0200

    doc: document missing sources files

 src/grilo.c            |    2 +-
 src/grl-metadata-key.c |   10 ++++++++++
 src/grl-util.c         |    5 +++++
 3 files changed, 16 insertions(+), 1 deletion(-)

commit 8ae08552e0774a76950a50f15d35b347fe162037
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Tue Jun 7 13:52:40 2011 +0200

    doc: update grilo-docs.sgml

 doc/grilo/grilo-docs.sgml |    8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

commit 5ea6930e1e8692cc4598d1213455c0c02c63b026
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Tue Jun 7 12:57:49 2011 +0200

    build: ignore generated code for gtk-doc scanner
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 doc/grilo/Makefile.am |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 10fe578007341148496ebcfda0c5539e01587c24
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Tue Jun 7 12:48:00 2011 +0200

    doc: update grilo-sections.txt
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 doc/grilo/grilo-sections.txt |  146 +++++++++++++++++++++---------------------
 1 file changed, 74 insertions(+), 72 deletions(-)

commit 6fd79bcd12a31e238f33ba749f5dc7e0083010c3
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Tue Jun 7 12:25:12 2011 +0200

    doc: silence the gtk-doc scanner
    
    Hiding private functions documentation and fixing bad formatted strings.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 src/grl-metadata-source.c |  204 ++++++++++++++++++++++++++-------------------
 src/grl-plugin-registry.c |   13 +--
 src/grl-plugin-registry.h |    2 +-
 3 files changed, 124 insertions(+), 95 deletions(-)

commit d9f9b87eec701447ffecc487016c27cc56f50cf8
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Fri Jun 3 16:31:43 2011 +0200

    data: Fixed documentation.

 src/data/grl-data.c |   11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

commit 29baf740faed352e5f545f3019ba66d6dce668fd
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Fri Jun 3 16:00:29 2011 +0200

    doc: Added API references where appropriate.

 doc/grilo/quick-start-using-grilo.xml |   37 ++++++++++++++++++++++++++++++++-
 1 file changed, 36 insertions(+), 1 deletion(-)

commit 7eae82b3c7bfcd68d1fcf73a7d7949745ab63c90
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Fri Jun 3 16:00:16 2011 +0200

    doc: cleanup

 doc/grilo/grilo.types |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 178405da32e872bbd2724d66ea44b0f8c957ab34
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Fri Jun 3 13:14:35 2011 +0200

    doc: Reviewed quick start guide.

 doc/grilo/quick-start-using-grilo.xml |  227 ++++++++++++++++-----------------
 1 file changed, 111 insertions(+), 116 deletions(-)

commit ed3321e1235b18bb09bd58df88d4328ea15189d2
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Fri Jun 3 10:26:42 2011 +0200

    doc: Rewrote some parts of the Overview section.

 doc/grilo/overview.xml |   91 ++++++++++++++++++++++++++----------------------
 1 file changed, 49 insertions(+), 42 deletions(-)

commit 208dfd72fa02565acddfb075ea5ac4ce32f5a8ba
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri May 27 10:20:06 2011 +0000

    core: Get rid of deprecated functions
    
    Start from scratch in 0.2.x release cycle.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-data.c         |  183 -------------------------------------------
 src/data/grl-data.h         |   12 ---
 src/data/grl-related-keys.c |   41 ----------
 src/data/grl-related-keys.h |    6 --
 src/grl-media-source.c      |   87 --------------------
 src/grl-media-source.h      |    8 --
 src/grl-metadata-source.c   |   62 +--------------
 src/grl-metadata-source.h   |    6 --
 8 files changed, 1 insertion(+), 404 deletions(-)

commit a6b29392d99ac79f8fb8d78f4b6267c8e9fd8621
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon May 23 08:23:05 2011 +0000

    core: Do not print warning if initializing plugin fails
    
    If plugin is perfectly valid, but initializing it fails because no required
    configuration has been provided, then log it as information instead of warning,
    as it is a typical use case.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-plugin-registry.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 218ba35332040f644387ee21b53e189784d4dfe6
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu May 19 12:44:36 2011 +0200

    build: Really require gtk+-3.0
    
    Check that available gtk+-3.0 package is really >= 3.0
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b46879c10943b9e23596dca2d8d0fe7c9c41bfaf
Author: Guillaume Emont <guijemont@igalia.com>
Date:   Tue May 10 17:45:08 2011 +0200

    core: updated GI annotations to the new GrlKeyID type

 src/data/grl-data.c         |   38 +++++++++++++++++++-------------------
 src/data/grl-related-keys.c |   28 ++++++++++++++--------------
 src/grl-media-source.c      |   16 ++++++++--------
 src/grl-metadata-source.c   |   32 ++++++++++++++++----------------
 src/grl-metadata-source.h   |    2 +-
 src/grl-multiple.c          |    4 ++--
 src/grl-plugin-registry.c   |    2 +-
 7 files changed, 61 insertions(+), 61 deletions(-)

commit 82249d2217ac2e730a08620a8b2b2a665329ce1e
Author: Guillaume Emont <guijemont@igalia.com>
Date:   Wed May 4 18:39:26 2011 +0200

    tests: updated test_registry.py for consistency with current behaviour

 tests/python/test_registry.py |   15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

commit 2b237de289b24124d5786b663b44eb1ddd44f291
Author: Guillaume Emont <guijemont@igalia.com>
Date:   Tue May 3 19:52:46 2011 +0200

    core: #define directly core metadata keys
    
    This required the use of the new
    grl_plugin_registry_register_metadata_key_full().

 src/grl-metadata-key.c |  756 ++++++++++++++++++++++++------------------------
 src/grl-metadata-key.h |   78 ++---
 2 files changed, 412 insertions(+), 422 deletions(-)

commit 398d97c1e5cb633b4453f7799055c05c1be91291
Author: Guillaume Emont <guijemont@igalia.com>
Date:   Tue May 3 19:50:12 2011 +0200

    core: made plugin registry handle itself key id assignments
    
    Instead of relying on GQuarks, a similar mechanism is implemented in the plugin
    registry. This gives more flexibility and allows  to #define the values of core
    keys, which automatically give their symbols in GObject-introspection bindings.

 src/grl-plugin-registry.c |  229 +++++++++++++++++++++++++++++++--------------
 src/grl-plugin-registry.h |    8 +-
 2 files changed, 166 insertions(+), 71 deletions(-)

commit 272f1e632598741eee7b6e27bf9178997916b84f
Author: Guillaume Emont <gemont@igalia.com>
Date:   Fri Apr 29 13:40:57 2011 +0200

    core: updated recent code to the new GrlKeyID format

 src/data/grl-data.c         |   32 ++++++++++++++++++++------------
 src/data/grl-related-keys.c |   16 +++++++++++-----
 src/grl-metadata-key.c      |   18 +++++++++---------
 src/grl-plugin-registry.c   |    6 +++---
 4 files changed, 43 insertions(+), 29 deletions(-)

commit f99a0c5ca14ee3ccb583f7b7aafe8bffa9460f17
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Feb 16 09:34:16 2011 +0000

    core: Use numbers to identify Grilo keys
    
    Use guint32 instead of GParamSpec for Grilo keys.
    
    Mostly the API remains the same.
    
    New functions to get the name or type of a Grilo key has been introduced.
    
    Main changes are:
    - Introduced GRL_METADATA_KEY_INVALID definition
    - grl_metadata_key_list_new() needs to end with GRL_METADATA_KEY_INVALID
      instead of NULL.
    - Introduced GRLKEYID_TO_POINTER and GRLPOINTER_TO_KEYID macros to
      convert between GrlKeyID and gpointers.

 src/data/grl-data.c               |   11 ++-
 src/data/grl-media.c              |    2 +-
 src/grl-metadata-key.c            |  131 ++++++++++++++++++--------
 src/grl-metadata-key.h            |   20 ++--
 src/grl-metadata-source.c         |   15 +--
 src/grl-plugin-registry.c         |  182 +++++++++++++++++++++++++++++++++----
 src/grl-plugin-registry.h         |   13 +++
 tools/grilo-inspect/grl-inspect.c |    3 +-
 tools/grilo-test-ui/main.c        |   14 ++-
 9 files changed, 310 insertions(+), 81 deletions(-)

commit 8eae870a119e2c936b5fa2ea4269a8e1b155bd7f
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri May 13 16:01:24 2011 +0000

    Start new 0.2.x development cycle
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 Makefile.am                                  |    4 +-
 bindings/vala/grilo-0.1-custom.vala          |   78 --------------------------
 bindings/vala/grilo-0.1.deps                 |    1 -
 bindings/vala/grilo-0.1.metadata             |   61 --------------------
 bindings/vala/grilo-0.2-custom.vala          |   78 ++++++++++++++++++++++++++
 bindings/vala/grilo-0.2.deps                 |    1 +
 bindings/vala/grilo-0.2.metadata             |   61 ++++++++++++++++++++
 bindings/vala/grilo-net-0.1-custom.vala      |    1 -
 bindings/vala/grilo-net-0.1.deps             |    1 -
 bindings/vala/grilo-net-0.1.metadata         |    6 --
 bindings/vala/grilo-net-0.2-custom.vala      |    1 +
 bindings/vala/grilo-net-0.2.deps             |    1 +
 bindings/vala/grilo-net-0.2.metadata         |    6 ++
 bindings/vala/grilo-net-uninstalled.files.in |    2 +-
 bindings/vala/grilo-uninstalled.files.in     |    2 +-
 configure.ac                                 |    8 +--
 grilo-0.1.pc.in                              |   17 ------
 grilo-0.2.pc.in                              |   17 ++++++
 grilo-net-0.1.pc.in                          |   15 -----
 grilo-net-0.2.pc.in                          |   15 +++++
 tools/vala/Makefile.am                       |    2 +-
 21 files changed, 189 insertions(+), 189 deletions(-)

commit a5f19ef95a7a5e41de5ad3b5b61ab409100d6052
Author: Guillaume Emont <guijemont@igalia.com>
Date:   Wed May 11 19:45:39 2011 +0200

    core: ensure the default log domain is always set
    
    This also avoid the risky #define-ing of GRL_LOG_DOMAIN_DEFAULT in grl-log.c:
    in this file, GRL_LOG_DOMAIN_DEFAULT now always refers to the actual variable,
    to avoid confusions.

 src/grl-log.c |   19 ++++++++++++++-----
 1 file changed, 14 insertions(+), 5 deletions(-)

commit 343b2d72553cf7196942cc7a575182fba48fde60
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Mon May 2 13:08:34 2011 +0200

    test-ui: replace GConf with GKeyFile
    
    GConf is a bloated and deprecated dependency to grilo-test-ui. This patch
    replace its usage with a simple GKeyFile.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 configure.ac               |    2 +-
 tools/grilo-test-ui/main.c |   89 ++++++++++++++++++++++++++++++++++++++------
 2 files changed, 79 insertions(+), 12 deletions(-)

commit 874bb1582525be2b5e69bf401d61f0b537f608a2
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Fri Apr 29 19:55:44 2011 +0200

    build: check for gtk+-3.0
    
    The configure script will check for gtk+-3.0 pkg-config. It it is not
    available, the script will check for gtk+2.0. If both libraries are available,
    gtk+-3.0 will be used.

 configure.ac |   14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

commit cee2c456d7972ea86be7a1a533775869c1593bb5
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Fri Apr 29 19:38:22 2011 +0200

    test-ui: disable resize-grip by gtk+ versions
    
    On gtk+-3.0 the resize-grip is handled by the window, but in gtk+-2.0 is
    handled by the statusbar
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 tools/grilo-test-ui/main.c |    6 ++++++
 1 file changed, 6 insertions(+)

commit 4b924177baa524f9189b1608eff0b6976385c94d
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Fri Apr 29 18:37:20 2011 +0200

    test-ui: both gtk+-2.0 and gtk+-3.0 compliant
    
    Use accessors and _unref() instead of deprecated _destroy() and unsealed
    attributes.
    
    This patch doesn't make the test-ui gtk+-3.0 compliant, but is a step in
    between.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 tools/grilo-test-ui/main.c |   13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

commit 5afd4c310714222786a620a160fe05ba97f166a7
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Apr 20 13:55:17 2011 +0000

    Bump to 0.1.15
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 NEWS         |   11 +++++++++++
 configure.ac |    2 +-
 2 files changed, 12 insertions(+), 1 deletion(-)

commit e2c18e580073da4f6d78c855f661aa79ab60c864
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Apr 19 15:10:00 2011 +0000

    core: Fix typo in GrlMedia documentation
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-media.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit acd16a370f4a5737d047a138dc4392d4fab24f29
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Apr 19 14:54:36 2011 +0000

    grl-inspect: Update Grilo Inspector
    
    Print new operations, and support for "content-changed" notification.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 tools/grilo-inspect/grl-inspect.c |   14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

commit 53539b06cea84c4128fcadc1e213e3899a252eb6
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Apr 19 14:53:12 2011 +0000

    grl-inspect: Add configuration file
    
    Add option "-c" to pass a file containing configuration options for sources.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 tools/grilo-inspect/grl-inspect.c |   13 +++++++++++++
 1 file changed, 13 insertions(+)

commit 42f4809069c9e6c4bc0396d679d5d66c7c6ad881
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Apr 19 14:52:49 2011 +0000

    grl-inspect: Define log domain
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 tools/grilo-inspect/grl-inspect.c |    5 +++++
 1 file changed, 5 insertions(+)

commit fb3484baf873588df5ea46f2b21066569b11a250
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Apr 19 09:56:24 2011 +0000

    doc: Document how to handle multi-valued keys
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 doc/grilo/quick-start-using-grilo.xml |  170 +++++++++++++++++++++++++++++++++
 1 file changed, 170 insertions(+)

commit 823e033d247d32ada546080deb783a5583521aa4
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Apr 19 09:55:24 2011 +0000

    doc: Document how to configure plugins
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 doc/grilo/quick-start-using-grilo.xml |  115 +++++++++++++++++++++++++++++++++
 1 file changed, 115 insertions(+)

commit 485c5fb691525195559c809298350176138c013b
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Apr 18 18:44:26 2011 +0000

    doc: Update documentation
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 doc/grilo/grilo-docs.sgml             |    7 +-
 doc/grilo/grilo-sections.txt          |  143 ++++++++++++++++++++++++++++++++-
 doc/grilo/grilo.types                 |    1 +
 doc/grilo/quick-start-using-grilo.xml |   22 +++--
 4 files changed, 161 insertions(+), 12 deletions(-)

commit 52724f1e3550cb0c1bb20e61432f74e189d676f3
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Apr 18 16:32:15 2011 +0000

    doc: Update GrlNet documentation
    
    Include the new API added to handle the cache.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 doc/libs/grilo-libs-sections.txt |    2 ++
 1 file changed, 2 insertions(+)

commit 71fed8a247c6df4971c05a646e0fb662be28c9ea
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Apr 15 09:18:32 2011 +0200

    core: Ignore elements coming after operation has finished
    
    In a browse/search with full-resolution support operation, each media is
    invoked with resolve() to solve the keys not known by media source.
    
    As each metadata plugin can resolve that data sooner or later than
    others, the resolved medias ready to sent to the user can be in a
    different order than they went sent by the media source.
    
    In this situation, if the operation is cancelled, we wait until the last
    element is ready (the one with remaining == 0), and we send this element
    notifying operation has cancelled, and finishing it.
    
    But it can happen that an out-of-order element comes after this last one
    was sent.
    
    In this case, as operation has been finished, we need to kindly discard
    it.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-media-source.c |   25 +++++++++++++++++--------
 1 file changed, 17 insertions(+), 8 deletions(-)

commit 7bac5d92aa6e2bd8c679ffa79a9f76fe14864bc9
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Apr 14 13:48:22 2011 +0000

    test-ui: Print current media on cancelled metadata()
    
    On metadata callback, if operation has been cancelled show anyway the current
    media.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 tools/grilo-test-ui/main.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 0a49a1d0ce38a6a56047f756d26d81ef723fea4e
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Apr 14 13:47:16 2011 +0000

    core: Do not print cancelled operations as error
    
    When debugging an error, notify if the error is actually a proper error or a
    cancelled operation.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-media-source.c |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit a1185da30abec833d6b213e639d24b64f74f490d
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Apr 13 18:41:19 2011 +0000

    core: Create table to store optional information
    
    If plugin does not have a valid XML, we need to create anyway this table to
    store some information.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-plugin-registry.c |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit dd4942b9573461ccc2907961d6e4f95d46b6fd20
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Apr 13 15:20:33 2011 +0000

    Bump to 0.1.14
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 NEWS                      |   15 +++++++++++++++
 configure.ac              |    2 +-
 src/grl-media-source.c    |    9 +++++++--
 src/grl-metadata-source.c |    8 +++++++-
 src/grl-plugin-registry.c |    2 ++
 5 files changed, 32 insertions(+), 4 deletions(-)

commit a23eda81fd79f997e6247a6a0b250f9eaedd1f02
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Apr 13 11:52:48 2011 +0000

    core: Plug some leaks
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-plugin-registry.c |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit c4cb7e22ef157ce4ad98dbc195d4d851071aad70
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Apr 13 11:31:09 2011 +0000

    test-ui: Plug some leaks
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 tools/grilo-test-ui/main.c |   15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

commit efa926404ccf01fc6bd1003a418f9988900d698c
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Apr 6 11:20:30 2011 +0000

    core: Cancel pending resolve() in full-resolution mode
    
    With GRL_RESOLVE_FULL flag, metadata/search/browse invoke resolve() to resolve
    keys that they couldn't resolve.
    
    If the operation is cancelled, cancel all the resolve() pending to end.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-media-source.c |  109 +++++++++++++++++++++++++++++++++---------------
 1 file changed, 75 insertions(+), 34 deletions(-)

commit 97c9bd000ffc4d75c6707f793ee4bfaf201058a0
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Apr 6 06:42:57 2011 +0000

    core: Make resolve() a cancellable operation
    
    Fixes https://bugzilla.gnome.org/show_bug.cgi?id=644383
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-media-source.c    |    6 ++++--
 src/grl-metadata-source.c |   48 +++++++++++++++++++++++++++++++++++++--------
 src/grl-metadata-source.h |   18 ++++++++++-------
 3 files changed, 55 insertions(+), 17 deletions(-)

commit 15d1e0d09e3c84383271a4cf9f23554fb0adaa9a
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Apr 5 17:40:18 2011 +0000

    core: Send operation id if operation is cancellable
    
    metadata() and media_from_uri() are both cancellable operations, but none of
    them are sending the operation id in the callback.
    
    This commit fix this.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-media-source.c     |   15 +++++++++++----
 src/grl-media-source.h     |    2 ++
 src/grl-multiple.c         |    9 +++++----
 tools/grilo-test-ui/main.c |    3 ++-
 4 files changed, 20 insertions(+), 9 deletions(-)

commit 7652ee713e1ce7dafe32798370747ebeb6dada07
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Apr 5 16:11:49 2011 +0000

    core: Make get_media_from_uri() a cancellable operation
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-media-source.c |   65 ++++++++++++++++++++++++++++++++++++++++--------
 src/grl-media-source.h |   16 ++++++------
 2 files changed, 64 insertions(+), 17 deletions(-)

commit c64f733b2ce14d237bddc40180f7abed60a4d04c
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Apr 5 09:42:09 2011 +0000

    core: Move cancel() to GrlMetadataSource
    
    So GrlMetadataSource's methods can be cancelled too.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-media-source.c     |   23 +++-------------------
 src/grl-media-source.h     |    2 +-
 src/grl-metadata-source.c  |   46 ++++++++++++++++++++++++++++++++++++++++++++
 src/grl-metadata-source.h  |    7 ++++++-
 src/grl-multiple.c         |    4 ++--
 tools/grilo-test-ui/main.c |    3 ++-
 6 files changed, 60 insertions(+), 25 deletions(-)

commit 7e991e7a7d3311922f71385664dbfa9a03f89698
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Apr 5 06:59:00 2011 +0000

    core: Move operation handling to GrlMetadataSource
    
    So we can also handle metadata's operation states.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-media-source.c         |  244 +++++++++++-----------------------------
 src/grl-media-source.h         |   15 +--
 src/grl-metadata-source-priv.h |   26 +++++
 src/grl-metadata-source.c      |  229 ++++++++++++++++++++++++++++++++++++-
 src/grl-metadata-source.h      |   12 +-
 5 files changed, 336 insertions(+), 190 deletions(-)

commit a7182f9e7ddf262172a098a7192af6b51d90b103
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Apr 12 16:46:36 2011 +0000

    test-ui: allow reloading of plugins
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 tools/grilo-test-ui/main.c |   22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

commit b653bc9d15f83d5eba0171128dc72553a1ea6d74
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Apr 12 16:37:37 2011 +0000

    core: Make modules resident
    
    Do not really unload the modules from memory when unloading the plugins.
    
    This will prevent problems with glib's types if plugins are reloaded again.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-plugin-registry.c |    3 +++
 1 file changed, 3 insertions(+)

commit f861c709c77c731efd1f8576ed07fa301b9063b3
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Apr 12 16:35:20 2011 +0000

    core: Fix crash when unloading the plugins
    
    Remove the plugin from the list of plugins before closing the module.
    Otherwise, the key will be freed so removing from hash table will crash.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-plugin-registry.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 60c3262fc4c3d81ab4e21386cb05ee49fb61e619
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Apr 8 16:55:35 2011 +0000

    core: Add function to load plugin by ID
    
    Add grl_plugin_registry_load_by_id(), which allows to load a specific plugin by
    its identifier.
    
    Fixes https://bugzilla.gnome.org/show_bug.cgi?id=628898
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-plugin-registry.c |  107 +++++++++++++++++++++++++++++++++++++++++++++
 src/grl-plugin-registry.h |    4 ++
 2 files changed, 111 insertions(+)

commit 19ecd892b71394368d39188063c33177c9e21c35
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Apr 8 15:54:48 2011 +0000

    core: Check if plugin is already loaded
    
    When loading a plugin, check if the plugin is already loaded. If so then skip
    it and return an error.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-plugin-registry.c |   11 +++++++++++
 1 file changed, 11 insertions(+)

commit 46948e96e4e8c7f411ab42f565020644a52e2762
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Apr 8 15:07:21 2011 +0000

    core: Preload available plugins' information
    
    When initializing Grilo, load all plugins information stored in XML files.
    
    This will allow to know in advance what are the plugins available in the
    system.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-plugin-registry.c |  112 +++++++++++++++++++++++++++++++++------------
 src/grl-plugin-registry.h |    6 +--
 2 files changed, 87 insertions(+), 31 deletions(-)

commit f5f867445b7eeec10728598c5ff81b07cfa45ef3
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Apr 1 10:57:10 2011 +0000

    core: Allow grouping all changed medias in "content-changed" signal
    
    When several multimedia files change at the same time, it can be useful to send
    just one signal containing all the changed medias, instead of sending one
    signal per change.
    
    This commit changes the "content-changed" signal and related functions to send
    a list of changed medias instead of one media.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-marshal.list       |    2 +-
 src/grl-media-source.c     |  106 +++++++++++++++++++++++++++++++++-----------
 src/grl-media-source.h     |    5 +++
 tools/grilo-test-ui/main.c |   55 ++++++++++++-----------
 4 files changed, 115 insertions(+), 53 deletions(-)

commit 3b12c57bd139865a957d266e58692f93910b3b9b
Author: Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>
Date:   Thu Apr 7 10:25:03 2011 +0100

    grl-log: add missing domain initialization
    
    Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>

 src/grl-log-priv.h |    1 +
 src/grl-log.c      |    1 +
 2 files changed, 2 insertions(+)

commit cfea51728b3d5a36161b94571ef230506f511882
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Apr 7 14:45:04 2011 +0000

    core: Fix warning
    
    Include header with the complained definition.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/Makefile.am |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 7aec11bf2e9ce0b6b21cd08ad98ef9de3fd77c2b
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Apr 6 15:35:11 2011 +0000

    Bump to version 0.1.13
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 NEWS                        |   14 ++++++++++++++
 configure.ac                |    2 +-
 src/data/grl-data.c         |   10 ++++++++++
 src/data/grl-related-keys.c |    4 +++-
 4 files changed, 28 insertions(+), 2 deletions(-)

commit 1b5c6c253d708ce73371c6c5267d26e2f13782f3
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Mar 31 11:42:46 2011 +0000

    core: Use higher priorities when dealing with no IDLE_RELAY flag
    
    When user do not use the GRL_RESOLVE_IDLE_RELAY, usually means he needs the
    results as soon as possible.
    
    As we relay on g_idle_add() to do our internal work, we should handle this idle
    functions with higher priority in this case.
    
    This patch makes to use G_PRIORITY_DEFAULT_IDLE when user requests the
    GRL_RESOLVE_IDLE_RELAY, while G_PRIORITY_HIGH_IDLE is used when the flag is not
    set up.
    
    This fixes https://bugzilla.gnome.org/show_bug.cgi?id=645525
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-media-source.c    |   27 ++++++++++++++++++++++-----
 src/grl-metadata-source.c |   12 ++++++++++--
 2 files changed, 32 insertions(+), 7 deletions(-)

commit 4032c8ebd10ca83e464ca7ed7ebe3a30f431ec5e
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Apr 4 11:43:34 2011 +0000

    core: Deprecate "overwrite" property
    
    This property is not useful anymore, specially since GrlData is able to handle
    multi-valued keys.
    
    Make it deprecated so it can be removed later.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-data.c |   50 ++++++++++++++------------------------------------
 src/data/grl-data.h |    4 ++--
 2 files changed, 16 insertions(+), 38 deletions(-)

commit e21a4dedc948733d5b95979cfc9a26a308f1ae8e
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Mar 30 08:24:55 2011 +0000

    core: Do not add unknown childcount
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-media-box.c |    4 ----
 1 file changed, 4 deletions(-)

commit 0ead0a4fe37f64f8f0701ba837178df50a4b7f0f
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Mar 30 09:51:20 2011 +0200

    core: Replace grl_data_get_all_single_related_keys() functions
    
    This name is quiet meaningless, so replace them by
    grl_data_get_single_values_for_key().
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-data.c |   57 +++++++++++++++++++++++++++++++++++++++++++++++++--
 src/data/grl-data.h |    8 ++++++--
 2 files changed, 61 insertions(+), 4 deletions(-)

commit bbd37c142eaeb528902fd0770184330f0ab70147
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Mar 30 09:50:08 2011 +0200

    doc: Clarify grl_data_length() function
    
    Rewrite function documentation so it is clearer how this function works.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-data.c |   11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

commit 98281b32f637d76d0fb0bb6b0a8691b69c0f634a
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Mar 30 09:48:17 2011 +0200

    core: Fix grl_data_get_keys() function
    
    Return only those keys that are in GrlData (keys that have at least one
    value).
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-data.c |   15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

commit 0c390a0a188c9f172d1bcbbf0df5bd4ee04d89d7
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Mar 30 09:44:30 2011 +0200

    core: Deprecate key_is_known() function
    
    Deprecate GrlData and GrlRelatedKeys key_is_known() function.
    
    has_key() replaces it.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-data.c         |   20 ++++----------------
 src/data/grl-data.h         |    2 +-
 src/data/grl-related-keys.c |   17 +++--------------
 src/data/grl-related-keys.h |    4 ++--
 src/grl-metadata-source.c   |    2 +-
 tools/grilo-test-ui/main.c  |    2 +-
 6 files changed, 12 insertions(+), 35 deletions(-)

commit 893bacf1e6b5a5eccf37af034cb8dc649e38b0c1
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Mar 30 09:40:28 2011 +0200

    core: Fix grl_data_has_key() function
    
    Check if key has at least one value in data.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-data.c |   10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

commit 42d20ed4d7d2944c35514d03a7b33eb6ccd9ddc7
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Mar 30 09:32:53 2011 +0200

    core: Do not allow empty keys
    
    When adding a new key into GrlData or GrlRelatedKeys, the key must have
    at least one value.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-data.c         |   46 +++++++++++++--------------
 src/data/grl-data.h         |    2 +-
 src/data/grl-related-keys.c |   73 ++++++++++++++++++-------------------------
 src/data/grl-related-keys.h |    7 ++---
 4 files changed, 58 insertions(+), 70 deletions(-)

commit 0cba561d6c6891bb3f1a3ff02e8bad1a6f255ac7
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Mar 30 18:07:39 2011 +0000

    Bump to version 0.1.12
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 NEWS                       |   16 ++++++++++++++++
 configure.ac               |    2 +-
 libs/net/grl-net-wc.c      |    4 ++++
 src/data/grl-media-image.c |   20 ++++++++++++++++++++
 src/data/grl-media.c       |    4 ++++
 5 files changed, 45 insertions(+), 1 deletion(-)

commit 6c87a766536df0ac30597084c25cf4201fbecf7d
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Mar 30 11:50:58 2011 +0000

    core: Fix filter_key_list() function
    
    This function was working bad.
    
    This fixes https://bugzilla.gnome.org/show_bug.cgi?id=645542
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-metadata-source.c |   52 +++++++++++++++++----------------------------
 1 file changed, 20 insertions(+), 32 deletions(-)

commit 3b57b73d971ad7e2047afa9aa919d836c408b3fd
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Mar 30 11:50:30 2011 +0000

    core: Fix filter_foo() functions
    
    Currently, grl_metadata_source_filter_{supported,writable,slow}() functions do
    not honor what the documentation states.
    
    In order to bring more coherence here, this patch makes
    grl_metadata_source_filter_{supported,writable}() to keep only the keys that
    are {supported,writable}, and returning the removed keys in a new list.
    
    In the case of grl_metadata_source_filter_slow(), it does the opposite: the
    list is filtered so only the fastest keys are kept; the slower ones are
    returned in a list. This is done in this way because it is the most common case
    of use for this function.
    
    This fixes https://bugzilla.gnome.org/show_bug.cgi?id=645542
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-metadata-source.c |  107 ++++++++++++++++++---------------------------
 1 file changed, 43 insertions(+), 64 deletions(-)

commit 2414a05718730e7ad913a1fa2e0ffed81c50b4dd
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Mar 25 14:07:43 2011 +0000

    core: Get rid of original width/height
    
    Not used at all.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-media-image.c |   61 --------------------------------------------
 src/data/grl-media-image.h |   10 --------
 src/grl-metadata-key.c     |   22 ----------------
 src/grl-metadata-key.h     |    2 --
 4 files changed, 95 deletions(-)

commit d79ef1758366717079b741b2db986bae05f99c3d
Author: Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>
Date:   Wed Mar 23 18:00:58 2011 +0000

    grl-metadata-source: allow set_metadata calls without callbacks
    
    Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>

 src/grl-metadata-source.c |   15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

commit 74cf69cd2faabefbae6c991f18f9b7f1e1bc9b29
Author: Simon Pena <spena@igalia.com>
Date:   Fri Mar 18 17:46:22 2011 +0200

    annotations: replace Grl.KeyID with GObject.ParamSpec

 src/data/grl-data.c         |   38 +++++++++++++++++++-------------------
 src/data/grl-related-keys.c |   28 ++++++++++++++--------------
 src/grl-plugin-registry.c   |    4 ++--
 3 files changed, 35 insertions(+), 35 deletions(-)

commit c47abc09a49d0567a6f94b425c0480c22cbf0e51
Author: Simon Pena <spena@igalia.com>
Date:   Fri Mar 18 17:46:21 2011 +0200

    annotations: skip GrlMetadataSource private functions

 src/grl-metadata-source.c |    2 ++
 1 file changed, 2 insertions(+)

commit ff186c34338f3473c7489b7b9a7d0e4f4ce48024
Author: Simon Pena <spena@igalia.com>
Date:   Fri Mar 18 17:46:20 2011 +0200

    annotations: added missing transfer modes

 src/data/grl-data.c         |    4 ++--
 src/data/grl-related-keys.c |    3 ++-
 src/grl-media-source.c      |    2 ++
 src/grl-plugin-registry.c   |    2 +-
 4 files changed, 7 insertions(+), 4 deletions(-)

commit 572734ce46c5c4167adc74b2a93cf535f07ad849
Author: Simon Pena <spena@igalia.com>
Date:   Fri Mar 18 17:46:19 2011 +0200

    doc: fix argument names
    
    Fixed some wrong/missing argument names

 src/data/grl-config.c |    5 +++--
 src/data/grl-config.h |    4 ++--
 2 files changed, 5 insertions(+), 4 deletions(-)

commit 5d04fb6d3c12c770d92220e7246e034390edac98
Author: Simon Pena <spena@igalia.com>
Date:   Fri Mar 18 17:46:18 2011 +0200

    annotations: removed 'not-error' annotation

 src/grl-media-source.h    |    8 ++++----
 src/grl-metadata-source.h |    4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

commit a8ac1557431fcf819bdc404115c24d430633d8e4
Author: Simon Pena <spena@igalia.com>
Date:   Fri Mar 18 17:46:17 2011 +0200

    build: added --warn-all to GI scanner

 libs/net/Makefile.am |    1 +
 src/Makefile.am      |    2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 2dc94569c9c756b399923d95240b59f91b8b3ae1
Author: Simon Pena <spena@igalia.com>
Date:   Fri Mar 18 17:46:16 2011 +0200

    build: raised GI required version to 0.9
    
    This allows passing the --warn-all (and --warn-error) options
    to GI scanner, making easier to detect annotations missing.
    
    Fedora 14 and Ubuntu 10.10 already ship 0.9.3, so it should be
    usable there as well as within JHBuild

 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1a729d9a7e7cca554a664d1d79ed833208cc67f7
Author: Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>
Date:   Sun Mar 20 02:09:32 2011 +0000

    grilo-test-ui: add local-metadata config
    
    Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>

 tools/grilo-test-ui/main.c |   14 ++++++++++++++
 1 file changed, 14 insertions(+)

commit 9b721ccdf89979e03a7ab439b227e0b872ca409c
Author: Michael Wood <michael.g.wood@linux.intel.com>
Date:   Fri Mar 18 14:00:27 2011 +0000

    grl-media-image: Add api to access new picture related metadata
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-media-image.c |  212 ++++++++++++++++++++++++++++++++++++++++++++
 src/data/grl-media-image.h |   43 ++++++++-
 src/data/grl-media.c       |   29 ++++++
 src/data/grl-media.h       |    4 +
 4 files changed, 286 insertions(+), 2 deletions(-)

commit e133070cfdfdc058739fffeb680ab87df5eccaaf
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Mar 23 10:20:46 2011 +0100

    fixup

 src/grl-metadata-key.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit af52d33985cbfa3eb90f46c68180edf5d32b56c1
Author: Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>
Date:   Fri Mar 18 14:00:26 2011 +0000

    metadata-keys: add metadata keys from camera pictures
    
        * Creation date
        * Camera model
        * Flash used
        * Exposure time
        * Original width
        * Original height
    
    Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-metadata-key.c |   87 ++++++++++++++++++++++++++++++++++++++++++++++++
 src/grl-metadata-key.h |    8 +++++
 2 files changed, 95 insertions(+)

commit 5bb49c472283dd29f74633d2418b493ceb479f21
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Mar 9 13:39:41 2011 +0000

    grl-net: Use libsoup cache
    
    If libsoup version is newer enough, use the cache feature it provides.
    
    Thus, it will cache the content to speed up network access.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 configure.ac          |    4 +
 libs/net/Makefile.am  |    6 +
 libs/net/grl-net-wc.c |  326 ++++++++++++++++++++++++++++++++++++++++++++++++-
 libs/net/grl-net-wc.h |    6 +
 4 files changed, 337 insertions(+), 5 deletions(-)

commit 9c95a81ef4aa1fa07da0fcdbeb298587f2153c61
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Mar 17 22:22:35 2011 +0100

    Bump to version 0.1.11
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 AUTHORS                    |    1 +
 NEWS                       |   11 +++++++++++
 configure.ac               |    2 +-
 src/data/grl-media-video.c |   12 ++++++++++++
 4 files changed, 25 insertions(+), 1 deletion(-)

commit 749a70f3b4c100cba2a6e96a76473aef5d3be719
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Mar 17 21:21:40 2011 +0000

    core: Add functions to handle new keys
    
    Add functions in GrlMediaVideo to handle season, episode and show keys.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-media-video.c |   75 ++++++++++++++++++++++++++++++++++++++++++++
 src/data/grl-media-video.h |   12 +++++++
 2 files changed, 87 insertions(+)

commit ee639609dab28503689a613fb843f60d1d7f9ce1
Author: Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>
Date:   Wed Mar 16 22:34:40 2011 +0000

    core: Fix segfault
    
    Fix segfault in grl-data.
    
    Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-data.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 919f14b83318e88d91940551491625eccbdbdda7
Author: Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>
Date:   Mon Mar 14 11:31:35 2011 +0000

    metadata-keys: add season/episode/show keys
    
    Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>

 src/grl-metadata-key.c |   33 +++++++++++++++++++++++++++++++++
 src/grl-metadata-key.h |    3 +++
 2 files changed, 36 insertions(+)

commit ea1183d30fb738e1a2a6696e025f3ee05687348c
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Mar 8 09:20:31 2011 +0100

    core: Initialize variable
    
    Initialize a boolean variable that avoids to free wrongly a GError.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-media-source.c |   26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

commit 02a1245a3d01159655b4b14303176dda6221dc38
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Mar 4 13:18:23 2011 +0100

    Bump to version 0.1.10
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 NEWS                        |   14 ++++++++++++++
 configure.ac                |    2 +-
 src/data/grl-data.c         |   24 ++++++++++++++++++++++++
 src/data/grl-media-audio.c  |   20 ++++++++++++++++++++
 src/data/grl-media-image.c  |    8 ++++++++
 src/data/grl-media-video.c  |    8 ++++++++
 src/data/grl-media.c        |   28 ++++++++++++++++++++++++++++
 src/data/grl-related-keys.c |   36 ++++++++++++++++++++++++++++++++++++
 src/grl-metadata-source.c   |    2 ++
 src/grl-plugin-registry.c   |    4 ++++
 10 files changed, 145 insertions(+), 1 deletion(-)

commit b906053fdbabada407c9b89bced0edf35255eb82
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Mar 4 16:55:32 2011 +0000

    test-ui: Do not show empty values
    
    Do not print keys that do not have a value.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 tools/grilo-test-ui/main.c |   21 ++++++++++++---------
 1 file changed, 12 insertions(+), 9 deletions(-)

commit 31f86d054066d5ad117e42ee8158eb231d0f31c4
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Mar 4 15:39:35 2011 +0000

    core: Fix grl_data_get_keys()
    
    Include also related keys in the returned list.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-data.c |   18 ++++++++++++++++--
 1 file changed, 16 insertions(+), 2 deletions(-)

commit c4a83945824507f81402b038ebb1993dbae4de15
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Mar 4 15:38:20 2011 +0000

    core: Fix grl_data_has_key()
    
    When searching for a key, take in account that there are related keys.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-data.c |    9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

commit 9f9c4af92151d06540215491016ccb2c78cbfef9
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Mar 4 13:09:01 2011 +0100

    core: Add missing implementations
    
    Add implementations for grl_media_get_player_nth() and
    grl_media_get_external_url_nth().
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-media.c |   45 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)

commit 642c58f2b77ff312debbfdd613ec06fdfa00ce0c
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Mar 4 13:07:15 2011 +0100

    core: Fix some typos in documentation
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-related-keys.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit bb663f84fb57efea80ce5093c3d7c1181bf394e6
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Mar 4 13:04:16 2011 +0100

    core: Rename grl_media_get_license() parameters
    
    Rename from "data" to "media", as it fits better.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-media.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d8c6129cd3f1576f8aec4bf943e1d4984c101970
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Mar 4 12:14:42 2011 +0100

    build: Add --enable-grl-net
    
    Add option to enable/disable Grilo Net library building.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 configure.ac |   20 +++++++++++++++++++-
 1 file changed, 19 insertions(+), 1 deletion(-)

commit 1c68005c910dccb957945ac9ec43215e72f95032
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Mar 3 11:28:19 2011 +0000

    core: Add convenience API in GrlMediaFoo
    
    Add some utilities in GrlMedia clases to handle multi-valued elements in those
    keys that could make sense, as well as to handle correlated keys without
    needing to create or handle GrlRelatedKeys.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-media-audio.c |  263 +++++++++++++++++++++---
 src/data/grl-media-audio.h |   40 +++-
 src/data/grl-media-image.c |  142 +++++++++++--
 src/data/grl-media-image.h |   31 ++-
 src/data/grl-media-video.c |  178 +++++++++++++++--
 src/data/grl-media-video.h |   39 +++-
 src/data/grl-media.c       |  473 ++++++++++++++++++++++++++++++++------------
 src/data/grl-media.h       |  108 ++++++----
 8 files changed, 1028 insertions(+), 246 deletions(-)

commit 58a09ac78883b05996ad547cedb6158d54d1d8c6
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Mar 3 11:27:49 2011 +0000

    core: Add multi-valued API to GrlData
    
    The old singled-valued API is still there, but will work with the first value
    of each key.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-data.c |  662 +++++++++++++++++++++++++++++++++++++++++++--------
 src/data/grl-data.h |   25 ++
 2 files changed, 586 insertions(+), 101 deletions(-)

commit 7ac842bc4468a36a39b45ccd6433ef1d3eda1c9a
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Mar 3 11:27:26 2011 +0000

    core: Create predefined relations with key "url"
    
    System-defined keys "url", "mime-type", "bitrate", "framerate", "height" and
    "width" are correlated.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-metadata-key.c |   17 +++++++++++++++++
 1 file changed, 17 insertions(+)

commit 8dfe45a501a99a366b238997dd28e22dbb04ce3d
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Mar 3 11:26:53 2011 +0000

    core: Add new class to handle related keys and its values
    
    Add GrlRelatedKeys class, which helps to keep together and handling related
    keys with their values.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/Makefile.am             |    2 +
 src/data/grl-related-keys.c |  580 +++++++++++++++++++++++++++++++++++++++++++
 src/data/grl-related-keys.h |  153 ++++++++++++
 src/grilo.h                 |    1 +
 4 files changed, 736 insertions(+)

commit 1926a5038ec873441f7a6b0877a72c3e9c5b4736
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Mar 3 11:26:00 2011 +0000

    core: Add API to create relations between keys
    
    A couple of keys are related when getting a value for one of the keys, it is
    expected that the other key has also a value.
    
    It is specially intended to be used with keys providing multivalued data: for
    each single value in one key, there must be a value matching that single value.
    This matched value can be NULL, meaning that it doesn't have actually a value,
    but at least it is possible to create a relation between values in both keys.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-plugin-registry.c |   79 +++++++++++++++++++++++++++++++++++++++++++++
 src/grl-plugin-registry.h |    7 ++++
 2 files changed, 86 insertions(+)

commit 81e0a294ee649262a1ccc8c43887ee22966102c9
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Mar 3 17:02:41 2011 +0000

    core: Ignore errors from metadata sources in grl_media_source_metadata()
    
    When invoking grl_source_metadata(), core can invoke several metadata sources
    to get information from different keys.
    
    It can happen that some of this sources can fail with an error. As we cannot
    send several errors in a shot, the best approach is to just print a warning and
    ignore the error.
    
    From an user point of view, it means that some keys could not be solved, no
    matter if due an error or because metadata cannot resolve it.
    
    Hence, an error in grl_media_source_metadata() means that the media source is
    the one who failed.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-media-source.c |    7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

commit 4482871dbfcc418592ae1114a7405a9e3ca0acd5
Author: Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>
Date:   Thu Mar 3 02:54:52 2011 +0000

    media_metadata: ensure we always call the user's callback
    
    Even when there is no source to resolve keys.
    
    Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>

 src/grl-media-source.c |   72 +++++++++++++++++++++++++++++-------------------
 1 file changed, 44 insertions(+), 28 deletions(-)

commit 8cbc6438e8398813c4acb5ee7c4231eabb2e43c2
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Feb 18 13:51:15 2011 +0100

    test-ui: Show content changes in statusbar
    
    Add toggle option to activate content changes notification in plugins, showing
    the changes happening in status bar.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 tools/grilo-test-ui/main.c |  109 +++++++++++++++++++++++++++++++++++++++-----
 1 file changed, 98 insertions(+), 11 deletions(-)

commit 58fc25dc111471c060dcd7ea05fae8caf68cf9b6
Author: Guillaume Emont <gemont@igalia.com>
Date:   Mon Feb 14 17:18:24 2011 +0100

    core: removed grl_metadata_source_setup_full_resolution_mode().
    
    It has been replaced by grl_metadata_source_expand_operation_keys() and
    grl_metadata_source_get_additional_sources().

 src/grl-metadata-source-priv.h |    5 --
 src/grl-metadata-source.c      |  169 ----------------------------------------
 2 files changed, 174 deletions(-)

commit e22b015b526cdcfed8cf4cc5e5a046b214fffe8e
Author: Guillaume Emont <gemont@igalia.com>
Date:   Thu Feb 17 22:29:22 2011 +0100

    core: split full resolution mode setup in media source
    
    Make the media source code use grl_metadata_source_expand_operation_keys() and
    grl_metadata_source_get_additional_sources() instead of the deprecated
    grl_metadata_source_setup_full_resolution_mode().
    
    This new scheme provides a "second chance" for keys the media source claims to
    support but could not retrieve for a particular media, when the
    GRL_RESOLVE_FULL is used.

 src/grl-media-source.c         |  211 ++++++++++++++++++----------------------
 src/grl-metadata-source-priv.h |    2 +-
 2 files changed, 93 insertions(+), 120 deletions(-)

commit 88f157a2fa5926f3a54be689192782e3d0076eee
Author: Guillaume Emont <gemont@igalia.com>
Date:   Thu Feb 17 22:24:52 2011 +0100

    core: rewrote full resolution mode handling
    
    Introducing grl_metadata_source_expand_operation_keys() and
    grl_metadata_source_get_additional_sources(). The first one can be used to find
    out which keys to ask from the media source running the operation, and the
    second one to know which metadata sources to ask for the keys the media source
    could not fill.
    
    These two new (internal) methods deprecate
    grl_metadata_source_setup_full_resolution_mode().

 src/grl-metadata-source-priv.h |   10 ++
 src/grl-metadata-source.c      |  227 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 237 insertions(+)

commit dc4ddd77f55b0bc304fd436db896fd77e816c505
Author: Guillaume Emont <gemont@igalia.com>
Date:   Tue Feb 8 18:34:36 2011 +0100

    core: introduced grl_metadata_source_may_resolve() and corresponding vmethod.
    
    This deprecates grl_metadata_source_key_depends() and the key_depends()
    vmethod.
    To implement this, missing_in_data(), a new helper static method, has been
    added.

 src/grl-metadata-source.c |  115 +++++++++++++++++++++++++++++++++++++++++++++
 src/grl-metadata-source.h |   16 ++++++-
 2 files changed, 129 insertions(+), 2 deletions(-)

commit 7223c46c2d20ca285a146d55651d572c6615446f
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Feb 18 12:53:57 2011 +0100

    core: Fix typo in GrlData class definition
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-data.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 253a03c2950c36ff44e99c08e648c38d008290d3
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Feb 10 16:38:38 2011 +0100

    Bump to version 0.1.9
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 AUTHORS                |    1 +
 NEWS                   |   19 +++++++++++++++++++
 configure.ac           |    2 +-
 src/data/grl-config.c  |    4 ++++
 src/data/grl-media.c   |    4 ++++
 src/grl-media-source.c |    8 ++++++++
 6 files changed, 37 insertions(+), 1 deletion(-)

commit af4d843e59add89244777c4d8d1844bb0c1575bc
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Feb 10 17:03:36 2011 +0000

    build: Include new files in EXTRA_DIST.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/Makefile.am |    5 +++++
 1 file changed, 5 insertions(+)

commit 5f2c1d3a5b112663ff8a0fba42b1c347357ec2aa
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Feb 8 09:36:24 2011 +0000

    test-ui: notify changes
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 tools/grilo-test-ui/main.c |   50 ++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 50 insertions(+)

commit 9b10a74236f3b0343686efd4934e37b8720eb039
Author: Guillaume Emont <gemont@igalia.com>
Date:   Thu Feb 10 12:29:00 2011 +0100

    core: fix potential segfault in metadata_full_resolution_done_cb()
    
    When introducing the cancel notification patch, it was assumed that the source
    passed to metadata_full_resolution_done_cb() is the original media source that
    triggered the full resolution. This is generally wrong, and can cause a
    segfault. The original source is available in cb_info->source.
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/grl-media-source.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e8f9752dd903e1ac61025e5cd26d33e0953b79f7
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Feb 9 09:34:52 2011 +0100

    core: Use g_set_error() when appropriate
    
    Increases code readability.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-plugin-registry.c |  105 +++++++++++++++++++++------------------------
 1 file changed, 48 insertions(+), 57 deletions(-)

commit fab98beb8e3417b911d1d24a67d1ddaa913970cb
Author: Guillaume Emont <gemont@igalia.com>
Date:   Mon Feb 7 20:58:36 2011 +0100

    core: fix comments cancelation->cancellation
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-media-source.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 7ea87b044f5ff047e9ea81a174765f086627aa82
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Feb 8 16:46:44 2011 +0100

    core: Bump up required glib version
    
    So we can use G_TYPE_BYTE_ARRAY.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 482a779ac5b7bd81953bf48136d078dd5500a36c
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Feb 8 12:49:19 2011 +0000

    test-ui: Inform about cancelled operations
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 tools/grilo-test-ui/main.c |   16 ++++++++++++++--
 1 file changed, 14 insertions(+), 2 deletions(-)

commit 66d81b3591f597541be331572fbec9117794d068
Author: Guillaume Emont <gemont@igalia.com>
Date:   Mon Feb 7 20:58:35 2011 +0100

    core: ensure correct cancel notification
    
    This commit ensures that the callback (or the last callback in the case of
    browse, search and query) is always called with
    GRL_CORE_ERROR_OPERATION_CANCELLED set if the operation has been cancelled
    (both in the cases where the source implements ->cancel() and where it
    doesn't).
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-media-source.c |  103 ++++++++++++++++++++++++++++++++++++++++++++----
 1 file changed, 95 insertions(+), 8 deletions(-)

commit b61cad7f2f4cafb548065617b5a0502c9416c29c
Author: Guillaume Emont <gemont@igalia.com>
Date:   Mon Feb 7 20:58:34 2011 +0100

    core: added operation id in MetadataFullResolutionCtlCb
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-media-source.c |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 2ee06ab11b1db30bf41197603238436cf662f113
Author: Guillaume Emont <gemont@igalia.com>
Date:   Mon Feb 7 20:58:33 2011 +0100

    core: updated grl_media_source_cancel() documentation
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-media-source.c |   13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

commit 4b2da639f807a0b6a8c517d99cfc472b2e47ae1f
Author: Guillaume Emont <gemont@igalia.com>
Date:   Mon Feb 7 20:58:32 2011 +0100

    core: added GRL_CORE_ERROR_OPERATION_CANCELLED
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-error.h |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 158953bed375168fd6c253d0388b3ed364df1580
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Feb 8 14:37:34 2011 +0100

    core: Get rid of content_changed method
    
    This default handler is not used in any place.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-media-source.c |    2 +-
 src/grl-media-source.h |    8 +-------
 2 files changed, 2 insertions(+), 8 deletions(-)

commit 02688fe8f32a512a1872e71e32865b2e21f04f1c
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Feb 2 21:17:57 2011 +0100

    test-ui: Support search all
    
    If search text entry is empty, perform a search all.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 tools/grilo-test-ui/main.c |    7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

commit d16ca2c10b67d770aee346c41a67ebba7e6e0384
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Feb 2 08:47:39 2011 +0100

    core: Allow NULL text search()
    
    Searching for a NULL text returns all non-boxes elements in the source.
    
    Basically, it is equal as "search all elements" with no restriction.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-error.h        |    2 ++
 src/grl-media-source.c |   11 ++++++++++-
 src/grl-multiple.c     |    4 +++-
 3 files changed, 15 insertions(+), 2 deletions(-)

commit cf1ab2425d9f4da3b5dfeb3050e2dda7cac3a2f0
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Thu Feb 3 16:41:06 2011 +0100

    wc: raise an error when the operation is cancelled
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 libs/net/grl-net-wc.c |    3 +++
 libs/net/grl-net-wc.h |    2 ++
 2 files changed, 5 insertions(+)

commit 81972d8db63df0608abf39df099019807524593f
Author: Fabien Lebaillif - Delamare <fabien@developers.arq-media.com>
Date:   Thu Jan 20 12:39:08 2011 +0100

    core: Add support for binary thumbnails
    
    Add a new property, "thumbnail-binary", to directly store thumbnails.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-media.c   |   32 ++++++++++++++++++++++++++++++++
 src/data/grl-media.h   |    4 ++++
 src/grl-metadata-key.c |   11 +++++++++++
 src/grl-metadata-key.h |    1 +
 4 files changed, 48 insertions(+)

commit 3277b84188f9725adcbe456a82ff046d4560ec39
Author: Fabien Lebaillif - Delamare <fabien@developers.arq-media.com>
Date:   Thu Jan 20 12:37:52 2011 +0100

    core: Add support for binary data in GrlData
    
    Sometimes it is interested to handle binary data in the grilo medias.
    
    This add support for making it easy to take care of it.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-data.c |   57 ++++++++++++++++++++++++++++++++++++++++++++++++++-
 src/data/grl-data.h |    4 ++++
 2 files changed, 60 insertions(+), 1 deletion(-)

commit 2af67ac6606487c044eb51e9df51359e1775da5a
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jan 20 11:23:05 2011 +0000

    core: Add binary API key to GrlConfig
    
    Add "api-key-blob" to store binary API keys.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-config.c |   26 ++++++++++++++++++++++++++
 src/data/grl-config.h |    5 +++++
 2 files changed, 31 insertions(+)

commit b0a0c883a436f4367472b6c143053110e40d5e6f
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jan 20 11:11:53 2011 +0000

    core: Add binary support in GrlConfig
    
    Add grl_config_get/set_binary so configurations allow binary data.
    
    Based on work by Fabien Lebaillif.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-config.c |   42 ++++++++++++++++++++++++++++++++++++++++++
 src/data/grl-config.h |    3 +++
 2 files changed, 45 insertions(+)

commit d41e8dfc5060e4611dda5598085e75072e072b91
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Feb 1 17:55:14 2011 +0100

    core: Add a default root media in notify_change()
    
    If plugin use a NULL-media in notify_change(), replace it by the GrlBox that
    represents the root.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-media-source.c |   14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

commit 130263c57dd0b2ae1748617c1f479711abefb673
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Feb 1 17:49:51 2011 +0100

    core: rename notify_changed by notify_change
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-media-source.c    |   40 ++++++++++++++++++++--------------------
 src/grl-media-source.h    |   26 +++++++++++++-------------
 src/grl-metadata-source.h |    4 ++--
 3 files changed, 35 insertions(+), 35 deletions(-)

commit 26b5996c5487c026d5e72bfb460d4b134702b2e4
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Feb 1 17:19:14 2011 +0100

    core: Add API to handle "content-changed" signal
    
    Add notify_changed_start() and notify_changed_stop() functions so sources know
    when they can emit the signal and when not.
    
    Sources that are able to emit "content-changed" signal must re-implement
    notify_changed_start() and notify_changed_stop() functions.
    
    Added a notify_changed() function too that sources can use to send the signal.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-error.h           |    4 ++-
 src/grl-media-source.c    |   83 +++++++++++++++++++++++++++++++++++++++++++++
 src/grl-media-source.h    |   21 +++++++++++-
 src/grl-metadata-source.h |    2 ++
 4 files changed, 108 insertions(+), 2 deletions(-)

commit 90ea9dbda671a2127353036b0fffcfb5e2097225
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Feb 1 16:45:31 2011 +0100

    core: Add "content-changed" signal
    
    This signal is emitted by media sources (if they handle it) to notify a change
    has happened in the source content.
    
    Depending on the source, it can provide more specific information like where
    the change happened, or the kind of change (content added or content removed).
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 configure.ac                     |    5 +++++
 src/Makefile.am                  |   23 +++++++++++++++++++++-
 src/grl-marshal.list             |    1 +
 src/grl-media-source.c           |   40 ++++++++++++++++++++++++++++++++++++++
 src/grl-media-source.h           |   24 ++++++++++++++++++++++-
 src/grl-type-builtins.c.template |   35 +++++++++++++++++++++++++++++++++
 src/grl-type-builtins.h.template |   24 +++++++++++++++++++++++
 7 files changed, 150 insertions(+), 2 deletions(-)

commit ee0e6a573eca3d429c24880c48ed805f70a8aebb
Author: Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>
Date:   Tue Feb 1 15:17:42 2011 +0000

    test-ui: make metadata cells editable
    
    So users can copy their content (useful for debug).
    
    Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>

 tools/grilo-test-ui/main.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit ef3286e57efeb36801da2097fe6d75526a794561
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Feb 1 08:49:33 2011 +0000

    test-ui: Do not unref NULL icon
    
    Check icon before unreffing it.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 tools/grilo-test-ui/main.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 990a486432cdf16f7b74846eb7715d081388e72a
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jan 27 21:24:11 2011 +0100

    vala: Fix typo

 tools/vala/Makefile.am |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 145a3deb036016ba4adb6f2e3dffdb11526d31f5
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jan 27 18:00:53 2011 +0000

    Bump to version 0.1.8
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 NEWS                   |   20 ++++++++++++++++++++
 configure.ac           |    2 +-
 src/data/grl-config.c  |    8 ++++++++
 src/grl-media-source.c |    2 ++
 4 files changed, 31 insertions(+), 1 deletion(-)

commit ae0389d29c50a0edd56f362537c80313c0034cca
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jan 27 18:20:50 2011 +0000

    build: add option to build tests
    
    Add "--enable-tests" to build tests.

 Makefile.am  |    6 +++++-
 configure.ac |   10 ++++++++++
 2 files changed, 15 insertions(+), 1 deletion(-)

commit bbe342f5e5e80108f076dcdc5672353bebcf6921
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Jan 21 17:57:00 2011 +0100

    core: Update copyright note
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 configure.ac               |    2 +-
 src/Makefile.am            |    2 +-
 src/data/grl-config.c      |    4 +++-
 src/data/grl-config.h      |    3 ++-
 src/data/grl-data.c        |    2 +-
 src/data/grl-data.h        |    2 +-
 src/data/grl-media-audio.c |    2 +-
 src/data/grl-media-audio.h |    2 +-
 src/data/grl-media-box.c   |    2 +-
 src/data/grl-media-box.h   |    2 +-
 src/data/grl-media-image.c |    2 +-
 src/data/grl-media-image.h |    2 +-
 src/data/grl-media-video.c |    2 +-
 src/data/grl-media-video.h |    2 +-
 src/data/grl-media.c       |    2 +-
 src/data/grl-media.h       |    2 +-
 src/grilo.c                |    2 +-
 src/grilo.h                |    2 +-
 src/grl-log.c              |    2 +-
 src/grl-media-plugin.c     |    2 +-
 src/grl-media-plugin.h     |    2 +-
 src/grl-media-source.c     |    2 +-
 src/grl-media-source.h     |    2 +-
 src/grl-metadata-key.c     |    2 +-
 src/grl-metadata-key.h     |    2 +-
 src/grl-metadata-source.c  |    2 +-
 src/grl-metadata-source.h  |    2 +-
 src/grl-multiple.c         |    2 +-
 src/grl-plugin-registry.c  |    3 ++-
 src/grl-util.c             |    2 +-
 tools/grilo-test-ui/main.c |    3 ++-
 31 files changed, 36 insertions(+), 31 deletions(-)

commit 7446d33b18e3f8c8aceb84ce2dad8d377d576826
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Jan 21 12:27:40 2011 +0100

    test-ui: Show busy cursor when operation is executing
    
    Change the mouse cursor to "busy" to note when an operation is being
    performed, like browse or search.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 tools/grilo-test-ui/main.c |   10 ++++++++++
 1 file changed, 10 insertions(+)

commit 1d6f636d938704552369ddccc1698f00e7dc1f51
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Jan 19 11:26:20 2011 +0000

    core: Add definition for unknown remaining
    
    Define GRL_SOURCE_REMAINING_UNKNOWN to check if remaining is known or not.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-definitions.h  |    4 ++++
 src/grl-media-source.h |    3 ++-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit c9d58932a81e7bab366610ddc636b830d9c24d6f
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Jan 19 11:18:37 2011 +0000

    core: Move GRL_METADATA_KEY_CHILDCOUNT_UNKNOWN to definitions
    
    Fits better there.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-definitions.h  |    3 +++
 src/grl-metadata-key.c |    1 +
 src/grl-metadata-key.h |    2 --
 3 files changed, 4 insertions(+), 2 deletions(-)

commit e7416782fbe9955148b4e51c791266b62b2b5fe7
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Wed Jan 19 08:34:10 2011 +0100

    config: Provided imlementation for grl_config_has_param.

 src/data/grl-config.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit cc1b0533fc482ddcc6c4e3edd226be326104a9e1
Author: Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>
Date:   Tue Jan 18 15:46:53 2011 +0000

    config: rework code to use GKeyFile instead of GHashTable+GValue
    
    Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/data/grl-config.c     |  138 +++++++++++++++++++++------------------------
 src/data/grl-config.h     |   16 +++---
 src/grl-plugin-registry.c |    6 +-
 3 files changed, 75 insertions(+), 85 deletions(-)

commit 7750d60a23d6234aa5491a7d6e109de1a5d4e412
Author: Jussi Kukkonen <jku@linux.intel.com>
Date:   Tue Jan 18 12:57:16 2011 +0200

    tools: fix test-ui query, refactor callbacks
    
    query did not work as the the callback actually called search()
    if several calls were needed. Fixing was easiest by combining all
    callbacks into one and keeping track of the operation type.
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 tools/grilo-test-ui/main.c |  170 +++++++++++++++++---------------------------
 1 file changed, 66 insertions(+), 104 deletions(-)

commit 94914fa5b99bd692d36c9599a1cd64596c22ba0e
Author: Jussi Kukkonen <jku@linux.intel.com>
Date:   Tue Jan 18 12:56:40 2011 +0200

    tools: don't tie chunk size to max item count in test-ui
    
    Make sure we get at least a few search/browse/query  iterations when
    there are lot of results: makes it easier to notice plugin problems.
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 tools/grilo-test-ui/main.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 8b5663713c14f4f4f5a28f092bb94a72a742ffe7
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Jan 17 13:49:20 2011 +0100

    doc: Added missing documentation for 'flags' parameter in
    grl_media_source_get_media_from_uri.

 src/grl-media-source.c |    1 +
 1 file changed, 1 insertion(+)

commit 95e5872722ae4ece4a9b20a5220438345adee32c
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Jan 17 13:41:35 2011 +0100

    core: Added grl_media_source_get_media_from_uri_sync
    
    Fixes https://bugzilla.gnome.org/show_bug.cgi?id=639741

 src/grl-media-source.c |   52 ++++++++++++++++++++++++++++++++++++++++++++++++
 src/grl-media-source.h |    5 +++++
 2 files changed, 57 insertions(+)

commit 763292631062717b3a938699e1316101f6684fdd
Author: Fabien Lebaillif - Delamare <fabien@developers.arq-media.com>
Date:   Wed Jan 12 13:40:03 2011 +0000

    core: add username and password keys to GrlConfig
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/data/grl-config.c |   56 +++++++++++++++++++++++++++++++++++++++++++++++++
 src/data/grl-config.h |   10 +++++++++
 2 files changed, 66 insertions(+)

commit df2971ad10be9a68c27385ada9f1ec1c61d562b7
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Fri Jan 14 11:13:15 2011 +0100

    core: Added padding for public structures in grl-media-video

 src/data/grl-media-video.h |    8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

commit d2ece2ed2bd0b4724e2eb98fe982eed95ccf8b25
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Fri Jan 14 11:11:40 2011 +0100

    core: Added padding for public structures in grl-media-image

 src/data/grl-media-image.h |    8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

commit b382516da70edfb042100759f09e6342db0f7a29
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Fri Jan 14 11:09:56 2011 +0100

    core: Added padding for public structures in grl-media-audio

 src/data/grl-media-audio.h |    8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

commit 93a915d311254760e8ce3ecfd942d418a1ed83b8
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Fri Jan 14 11:07:56 2011 +0100

    core: Added padding for public structures in grl-media-box

 src/data/grl-media-box.h |    8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

commit 5eab181e62786146a1b63b95482e539829c6b8d8
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Fri Jan 14 11:05:58 2011 +0100

    core: Added padding for public structures in grl-media

 src/data/grl-media.h |    7 +++++++
 1 file changed, 7 insertions(+)

commit 812a234b220de411fd5e8cc4b6983e32e1eff97a
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Fri Jan 14 10:33:36 2011 +0100

    core: Added padding for public structures in grl-data

 src/data/grl-data.h |    6 ++++++
 1 file changed, 6 insertions(+)

commit 7083c2e8d0cd724fd77e63fba7e16353a8006854
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Fri Jan 14 10:30:31 2011 +0100

    core: Added padding for public structures in grl-config

 src/data/grl-config.h |    7 +++++++
 1 file changed, 7 insertions(+)

commit 9312f3d20319d7144d78e294affb15b60d792dee
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Fri Jan 14 10:17:38 2011 +0100

    core: Added GRL_PADDING_SMALL definiton

 src/grl-definitions.h |    4 ++++
 1 file changed, 4 insertions(+)

commit d7aa9bcd21a85021793788d882005890bfbf5266
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Thu Jan 13 18:22:58 2011 +0100

    core: Added padding for public structures in grl-plugin-registry

 src/grl-plugin-registry.h |   12 ++++++++++++
 1 file changed, 12 insertions(+)

commit cd798751b5706152a2299eff5a27b39633c12e45
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Thu Jan 13 18:11:07 2011 +0100

    core: Added padding for public structures in grl-metadata-source

 src/grl-metadata-source.h |   12 ++++++++++++
 1 file changed, 12 insertions(+)

commit c22af1fe4c336b39f978a4986ebc417197c9232a
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Thu Jan 13 18:05:06 2011 +0100

    core: Added padding for public structures in grl-media-source

 src/grl-media-source.h |   27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

commit e0dc88a5d5a1401ff31a2ddb0ba92b594e5b6b30
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Thu Jan 13 17:53:49 2011 +0100

    core: Added padding for public structures in grl-media-plugin

 src/grl-media-plugin.h |    6 ++++++
 1 file changed, 6 insertions(+)

commit 6714a2eddea334c4ec6537ed6c9fee301613a26a
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Thu Jan 13 17:51:56 2011 +0100

    core: Added grl-definitions.h
    
    This header file will contain some system-wise definitions. At the moment
    only GRL_PADDING used to pad public structures in Grilo.

 src/Makefile.am       |    3 ++-
 src/grilo.h           |    1 +
 src/grl-definitions.h |   34 ++++++++++++++++++++++++++++++++++
 3 files changed, 37 insertions(+), 1 deletion(-)

commit 31ac43b0d830c2bfe62c8209592ef59371993619
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jan 13 18:55:37 2011 +0000

    core: Add API to use booleans in GrlConfig
    
    Add grl_config_get/set_boolean() functions.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-config.c |   20 ++++++++++++++++++++
 src/data/grl-config.h |    4 ++++
 2 files changed, 24 insertions(+)

commit 7fd77c3f9b6b840cfa03343ba1386a30213228ae
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jan 13 18:24:02 2011 +0100

    doc: Add release where functions were introduced
    
    Add 'since' tag documentation, telling in which release a function was
    introduced with the current signature.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-config.c      |   20 +++++++++++
 src/data/grl-data.c        |   32 +++++++++++++++++
 src/data/grl-media-audio.c |   22 ++++++++++++
 src/data/grl-media-box.c   |    6 ++++
 src/data/grl-media-image.c |   12 +++++++
 src/data/grl-media-video.c |   16 +++++++++
 src/data/grl-media.c       |   86 ++++++++++++++++++++++++++++++++++++++++++++
 src/grilo.c                |    4 +++
 src/grl-log.c              |    4 +++
 src/grl-media-plugin.c     |   22 ++++++++++++
 src/grl-media-source.c     |   38 ++++++++++++++++++++
 src/grl-metadata-key.c     |    4 +++
 src/grl-metadata-source.c  |   30 ++++++++++++++++
 src/grl-multiple.c         |    7 ++++
 src/grl-plugin-registry.c  |   32 +++++++++++++++++
 src/grl-util.c             |    4 +++
 16 files changed, 339 insertions(+)

commit cf9fdde7a98ad6968fdc63eb02809571d791d2cb
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Jan 12 16:38:24 2011 +0100

    core: Fix typo
    
    Use gint instead of int.

 src/data/grl-media-image.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 64e0604371731d822b42ac69d03d6b8693ab9c59
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Jan 12 11:48:34 2011 +0000

    doc: Fix documentation for grl_media_get_player()
    
    Documentation was referring to grl_media_get_external_player() instead of
    grl_media_get_player().

 src/data/grl-media.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b8939c59f48b337d69c6e5db97897135d50c6175
Author: Guillaume Emont <gemont@igalia.com>
Date:   Tue Jan 11 16:29:06 2011 +0100

    core: Updated documentation of GrlMediaSourceResultCb
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grl-media-source.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 24ab6085bd0c00b02101b2b280385372c58a82a9
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jan 10 10:34:29 2011 +0100

    Bumped to version 0.1.7
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 AUTHORS      |    1 +
 NEWS         |   37 +++++++++++++++++++++++++++++++++++++
 configure.ac |    2 +-
 3 files changed, 39 insertions(+), 1 deletion(-)

commit 096ed59d0bfbbc392a8938a13340a4670b7b761e
Author: Fabien Lebaillif - Delamare <fabien@developers.arq-media.com>
Date:   Wed Jan 5 15:15:32 2011 +0100

    doc: fix typos
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 src/grl-metadata-source.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit dfb336a6e5809c33ca28b0fe29483ae024e5bff4
Author: Simon Pena <spena@igalia.com>
Date:   Mon Dec 20 17:30:16 2010 +0100

    python: in test-ui, convert to strings when storing media info
    
    Since the TreeModel stores strings, we need to get sure that
    the data types being inserted are the right ones.

 tools/python/grilo-test-ui.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 07519ba327ff0406786fdc11cdb40d8f223dad38
Author: Simon Pena <spena@igalia.com>
Date:   Mon Dec 20 17:30:11 2010 +0100

    python: add trivial error handling to grilo-test-ui
    
    Some trivial error handling is added to Python's grilo-test-ui
    since currently these functions can throw an exception.

 tools/python/grilo-test-ui.py |   20 ++++++++++++++++----
 1 file changed, 16 insertions(+), 4 deletions(-)

commit 0aa2111dc0e9fd18bebf14004cac8a41d99f9198
Author: Guillaume Emont <gemont@igalia.com>
Date:   Fri Dec 17 17:10:28 2010 +0100

    configure: remove unused --enable-uninstalled option

 configure.ac |   11 -----------
 1 file changed, 11 deletions(-)

commit f1cc8367b82bf626ba4818e163e00e63c89df8cd
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Dec 20 10:31:46 2010 +0100

    test-ui: Adapted to changes in grl_plugin_registry_add_config

 tools/grilo-test-ui/main.c |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 2dd14064adb363d5f6870353af02e428dfe4689f
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Dec 20 10:31:01 2010 +0100

    core: Added GError parameter to grl_plugin_registry_add_config

 src/grl-plugin-registry.c |   22 ++++++++++++++++------
 src/grl-plugin-registry.h |    5 +++--
 2 files changed, 19 insertions(+), 8 deletions(-)

commit 57b6ba8b987c4132f26b8a2209ce397100087374
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Dec 20 10:29:49 2010 +0100

    core: Added GRL_CORE_ERROR_CONFIG_FAILED

 src/grl-error.h |    2 ++
 1 file changed, 2 insertions(+)

commit 876c5317d8f62dc3c635159b0777054e59cba8f9
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Dec 20 10:14:59 2010 +0100

    core: Added GError parameter to grl_plugin_registry_register_metadata_key

 src/grl-metadata-key.c    |   87 ++++++++++++++++++++++++++++++---------------
 src/grl-plugin-registry.c |   11 +++++-
 src/grl-plugin-registry.h |    3 +-
 3 files changed, 70 insertions(+), 31 deletions(-)

commit 47ddb768595982c56e6fed291cb3267433b14691
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Dec 20 10:14:31 2010 +0100

    core: Added GRL_CORE_ERROR_REGISTER_METADATA_KEY_FAILED

 src/grl-error.h |    2 ++
 1 file changed, 2 insertions(+)

commit c453d6cea9d8c0dd148e07eff54982154c2dda03
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Dec 20 09:52:10 2010 +0100

    test-ui: Adapted to changes in grl_plugin_registry_unload

 tools/grilo-test-ui/main.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5ba5ee55e8b6301786833e5e9b836d79e7a952ed
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Dec 20 09:51:47 2010 +0100

    core: Added GError parameter to grl_plugin_registry_unload

 src/grl-plugin-registry.c |   21 ++++++++++++++++-----
 src/grl-plugin-registry.h |    5 +++--
 2 files changed, 19 insertions(+), 7 deletions(-)

commit 7368303dedbf50d61b5fb040dbdb0fe732fe0003
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Dec 20 09:51:27 2010 +0100

    core: Added GRL_CORE_ERROR_UNLOAD_PLUGIN_FAILED

 src/grl-error.h |    2 ++
 1 file changed, 2 insertions(+)

commit 8ac14da0b014dbcc43c5dd49eb238dfb84b71014
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Dec 20 09:42:20 2010 +0100

    test-ui: Adapted to changes in grl_plugin_registry_load_all

 tools/grilo-test-ui/main.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ff048ad258c47ff879319fee1c9ab3a6c08478ac
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Dec 20 09:41:45 2010 +0100

    grl-inspect: Adapted to changes in grl_plugin_registry_load_all.

 tools/grilo-inspect/grl-inspect.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 88a7f5fcebe68fd1b371856f1121d29f5a38b547
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Dec 20 09:41:24 2010 +0100

    tests: Adapted to changes in grl_plugin_registry_load_all

 tests/metadata_source.c |    2 +-
 tests/registry.c        |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 4d222a457ed04df1a718dcbcd166cc885fa0e2e0
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Dec 20 09:40:52 2010 +0100

    core: Added GError parameter grl_plugin_registry_load_all

 src/grl-plugin-registry.c |   11 ++++++++---
 src/grl-plugin-registry.h |    3 ++-
 2 files changed, 10 insertions(+), 4 deletions(-)

commit d2b77b297c57f0d86304a8c31004ad51b4ad4b56
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Dec 20 09:26:10 2010 +0100

    core: Added GError parameter to grl_plugin_registry_load_directory

 src/grl-plugin-registry.c |   17 +++++++++++++----
 src/grl-plugin-registry.h |    3 ++-
 2 files changed, 15 insertions(+), 5 deletions(-)

commit 9d4a9bc0750e57dcee52cb369496940fd2197df6
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Dec 20 09:10:33 2010 +0100

    core: Added GError parameter to grl_plugin_registry_load

 src/grl-plugin-registry.c |   41 ++++++++++++++++++++++++++++++++++++++---
 src/grl-plugin-registry.h |    3 ++-
 2 files changed, 40 insertions(+), 4 deletions(-)

commit 2f948befc80c995dad9c1f84f4e5d4f978a2c05a
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Dec 20 09:09:39 2010 +0100

    core: Added GRL_CORE_ERROR_LOAD_PLUGIN_FAILED

 src/grl-error.h |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit d0a0739c74aa825b5f7be8a4c219ce85ef153ed2
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Dec 20 08:43:56 2010 +0100

    tests: Adapted to changes in grl_plugin_registry_unregister_source.

 tests/registry.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 689e6837e2d40ef672b1d840128714030febaaf7
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Dec 20 08:43:17 2010 +0100

    core: Added GError parameter to grl_plugin_registry_unregister_source

 src/grl-plugin-registry.c |   23 ++++++++++++++++++-----
 src/grl-plugin-registry.h |    7 ++++---
 2 files changed, 22 insertions(+), 8 deletions(-)

commit e591f072d6f336492e03fae05f749da29083e9e6
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Dec 20 08:42:01 2010 +0100

    core: Added GRL_CORE_ERROR_UNREGISTER_SOURCE_FAILED

 src/grl-error.h |    2 ++
 1 file changed, 2 insertions(+)

commit 147942a7334c83cabeb6bc843cfda291d341cfc7
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Dec 20 08:26:19 2010 +0100

    core: Added GError parameter to grl_plugin_registry_register_source.

 src/grl-plugin-registry.c |    6 ++++--
 src/grl-plugin-registry.h |    3 ++-
 2 files changed, 6 insertions(+), 3 deletions(-)

commit cd7e119849b5af48374c76036f2ebd72fe97709e
Author: Guillaume Emont <gemont@igalia.com>
Date:   Fri Dec 17 16:09:15 2010 +0100

    README: use --enable-uninstalled for grilo-plugins' autogen, not grilo's.

 README |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 39634193c1dabb0e1a7e7de4ab2c69c16ef574ae
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Fri Dec 17 15:15:02 2010 +0100

    doc: update grilo core sections
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 doc/grilo/grilo-sections.txt |   44 ++++++++++++++++++++++++++----------------
 1 file changed, 27 insertions(+), 17 deletions(-)

commit 0f0cd9f36226e8f9f5f2ca3db8c4b0a6c81c64b1
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Wed Dec 15 12:18:20 2010 +0100

    doc: grilo-libs documentation
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
    
    https://bugzilla.gnome.org/show_bug.cgi?id=636414

 configure.ac                     |    1 +
 doc/Makefile.am                  |    2 +-
 doc/libs/Makefile.am             |  105 ++++++++++++++++++++++++++++++++++++++
 doc/libs/grilo-libs-docs.sgml    |   51 ++++++++++++++++++
 doc/libs/grilo-libs-sections.txt |   26 ++++++++++
 5 files changed, 184 insertions(+), 1 deletion(-)

commit 86c19ae135ad3072ec234e88209b5c76f92c2bc9
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Wed Dec 15 11:16:49 2010 +0100

    doc: rename reference directory to grilo
    
    Because gtk-doc 1.14 does not support multiple source directories, the
    reference subdirectory must be splitted in two: grilo core documentation and
    grilo libraries documentation.
    
    This commit rename the reference directory to grilo, where the core documentation
    will be processed.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
    
    https://bugzilla.gnome.org/show_bug.cgi?id=636414

 configure.ac                              |    2 +-
 doc/Makefile.am                           |    2 +-
 doc/grilo/.gitignore                      |   14 +
 doc/grilo/Makefile.am                     |  107 ++++++
 doc/grilo/grilo-docs.sgml                 |   83 +++++
 doc/grilo/grilo-sections.txt              |  485 ++++++++++++++++++++++++
 doc/grilo/grilo.types                     |   21 ++
 doc/grilo/overview.xml                    |   98 +++++
 doc/grilo/quick-start-using-grilo.xml     |  577 +++++++++++++++++++++++++++++
 doc/reference/.gitignore                  |   14 -
 doc/reference/Makefile.am                 |  107 ------
 doc/reference/grilo-docs.sgml             |   83 -----
 doc/reference/grilo-sections.txt          |  485 ------------------------
 doc/reference/grilo.types                 |   21 --
 doc/reference/overview.xml                |   98 -----
 doc/reference/quick-start-using-grilo.xml |  577 -----------------------------
 16 files changed, 1387 insertions(+), 1387 deletions(-)

commit 1af17ab2f080e8349280fb9b73b83972014c15fc
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Wed Dec 15 11:32:21 2010 +0100

    Revert "doc: fix the gtkdoc generation"
    
    This reverts commit 09b5bc47eb59d7ce871a443b1c544405e727f5c6.
    
    Because gtk-doc 1.14 does not support multiple source directories, the
    reference subdirectory must be splitted in two: grilo core documentation and
    grilo libraries documentation.
    
    This commit reverts the automake setup removing the grl_net_wc_type from the
    object scanning.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
    
    https://bugzilla.gnome.org/show_bug.cgi?id=636414

 doc/reference/Makefile.am |   21 +++++++--------------
 1 file changed, 7 insertions(+), 14 deletions(-)

commit 389c04158c144fdffaec05dddc8d428aeef3d8a6
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Wed Dec 15 11:26:54 2010 +0100

    Revert "doc: add the GrlNetWc definition"
    
    This reverts commit 0c8ac155c51bf9c509922a448c1f290daea48740.
    
    Because gtk-doc 1.14 does not support multiple source directories, the
    reference subdirectory must be splitted in two: grilo core documentation and
    grilo libraries documentation.
    
    This commit revert the addition of GrlNetWc in grilo core documentation, as
    previous step for the documentation split.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
    
    https://bugzilla.gnome.org/show_bug.cgi?id=636414

 doc/reference/grilo-docs.sgml    |    5 -----
 doc/reference/grilo-sections.txt |   26 --------------------------
 doc/reference/grilo.types        |    1 -
 3 files changed, 32 deletions(-)

commit 396a0153c8b53738a88ab778bca35655195b13d5
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Dec 1 13:11:44 2010 +0100

    core: Add function to load plugin configuration from file
    
    grl_plugin_registry_add_config_from_file() loads a .ini-like file containing
    configurations for one or more plugins.
    
    See GKeyFile to know more about this syntax.
    
    An example is:
    
    [plugin1]
    key1 = value1
    key2 = value2
    
    [plugin2]
    key1 = value1
    key3 = value3
    
    It fixes GB#636064.

 src/grl-error.h           |    2 ++
 src/grl-plugin-registry.c |   68 +++++++++++++++++++++++++++++++++++++++++++++
 src/grl-plugin-registry.h |    4 +++
 3 files changed, 74 insertions(+)

commit 3962e466cab4bbd9f137e043e2d52cf2e2f0ecd0
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Dec 13 12:23:49 2010 +0100

    core: renamed media_from_site API to media_from_uri.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=635394

 src/grl-error.h           |    2 +-
 src/grl-media-source.c    |  108 ++++++++++++++++++++++-----------------------
 src/grl-media-source.h    |   42 +++++++++---------
 src/grl-metadata-source.h |    5 ++-
 src/grl-multiple.c        |   90 ++++++++++++++++++-------------------
 src/grl-multiple.h        |   10 ++---
 6 files changed, 129 insertions(+), 128 deletions(-)

commit 2c47a7cc3ae7c3058b80673609419fafe0de91e4
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Fri Dec 3 09:55:41 2010 +0100

    core: Added flags input parameter to media_from_site() APIs.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=635394

 src/grl-media-source.c |   18 +++++++++++++++++-
 src/grl-media-source.h |    3 +++
 src/grl-multiple.c     |    3 +++
 src/grl-multiple.h     |    1 +
 4 files changed, 24 insertions(+), 1 deletion(-)

commit c6c8b38688091b4ea9f5809a125405291a6516d8
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Thu Dec 2 19:03:00 2010 +0100

    core: Add a list of metadata keys as input parameter for
    
    the media_from_site API.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=635394

 src/grl-media-source.c |    5 +++++
 src/grl-media-source.h |    3 +++
 src/grl-multiple.c     |    4 ++++
 src/grl-multiple.h     |    1 +
 4 files changed, 13 insertions(+)

commit 564a55db1abe2bd110c0510ee8c2e8520ea17a20
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Thu Dec 2 09:11:08 2010 +0100

    core: Do not use and idle destroy function for media_from_site, since
    
    the implementation on the plugin side is likely to be asynchronous,
    use a relay callback instead.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=635394

 src/grl-media-source.c |   52 +++++++++++++++++++++++++++++++++++++-----------
 1 file changed, 40 insertions(+), 12 deletions(-)

commit b566d3ca4475b87d1f8ce8add55b08b47a6865b0
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Wed Dec 1 18:52:40 2010 +0100

    core: Implemented grl_multiple_get_media_from_site().
    
    This function goes through all sources that implement GRL_OP_MEDIA_FROM_SITE
    looking for the first one capable of instantiating a GrlMedia object that
    represents the media resource exposed by certain site URI. Basically, it is
    a convenience function to exploit grl_media_source_get_media_from_site().
    
    https://bugzilla.gnome.org/show_bug.cgi?id=635394

 src/grl-error.h    |    2 ++
 src/grl-multiple.c |  100 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/grl-multiple.h |    4 +++
 3 files changed, 106 insertions(+)

commit 93d48590067290d4792f2285e0647df20debb247
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Wed Dec 1 18:24:05 2010 +0100

    core: Add support for two new operations in GrlMediaSource
          - test_media_from_site
          - get_media_from_site
    
    https://bugzilla.gnome.org/show_bug.cgi?id=635394

 src/grl-media-source.c    |   97 +++++++++++++++++++++++++++++++++++++++++++++
 src/grl-media-source.h    |   36 +++++++++++++++++
 src/grl-metadata-source.h |   22 +++++-----
 3 files changed, 145 insertions(+), 10 deletions(-)

commit bdf9e65e3725f8861cc3bf967337f4396d934928
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Wed Dec 1 18:18:27 2010 +0100

    core: Fix compilation warning because of an unused label.

 src/grl-metadata-source.c |    1 -
 1 file changed, 1 deletion(-)

commit bcdd81f60eda1e0a9231abef5a2e8891f8afb569
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Tue Nov 30 13:09:39 2010 +0100

    core: Fixed incorrect filtering of writable and supported keys.
    Bug was introduced in commit c592a85afc7c8538d91bb47b16a54c9dce8d5f46.

 src/grl-metadata-source.c |   48 ++++++++++++++++++++++++++++++++++++---------
 1 file changed, 39 insertions(+), 9 deletions(-)

commit 41724a3e60f18ccbd32d2f40bd7062b377ccb637
Author: Simón Pena <spenap@gmail.com>
Date:   Tue Nov 16 00:11:33 2010 +0100

    python: updated grilo-test-ui
    
    Updated calls to get_iter in TreeStores, as they don't return
    (success, iter) pairs anymore and now return either an iterator
    or None.

 tools/python/grilo-test-ui.py |   30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

commit d86c8fbc9bae4f4962dc475209675539231499c4
Author: Damien Lespiau <damien.lespiau@intel.com>
Date:   Fri Nov 12 15:24:00 2010 +0000

    tests: fix compilation warnings in metadata_source
    
    Remove the const before the GList *, shutting down the warnings,
    make the global variables static.
    
    Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>

 tests/metadata_source.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 4780062a780bb4a9d7092295717583ae980531fd
Author: Damien Lespiau <damien.lespiau@intel.com>
Date:   Fri Nov 12 15:23:59 2010 +0000

    wc-test: include unistd.h
    
    write (2) needs the inclusion of unistd.h.
    
    Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>

 libs/net/wc-test.c |    2 ++
 1 file changed, 2 insertions(+)

commit 8b1d7db1db2567fa7bbae49d9398487deb9cca6d
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Tue Nov 9 13:04:18 2010 +0100

    vala: remove deprecated --metadata parameter in vapigen
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 bindings/vala/Makefile.am |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ca15c987bb73f0051ff9808f881bd48faa728ab1
Author: Damien Lespiau <damien.lespiau@intel.com>
Date:   Tue Nov 2 17:10:07 2010 +0000

    build: fix parallel build of libs/net
    
    Using $(top_builddir)/libs/net breaks automake's dependency between
    wc-test and libgrlnet. When using recursive builds, Automake
    automatically tracks the dependencies in the same directory but when
    using $(top_builddir)/libs/net/libgrlnet.la it assumes the library is in
    another directoy and is already build (by assuming the other directory is
    before the current one in the parent's SUBDIRS).
    
    By removing the $(top_builddir)/libs/net in wc_test_LDADD Automake now
    understands that the library is in the same directory and it should be
    built before wc-test and adds the dependency which fixes parallel
    builds.
    
    Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>

 libs/net/Makefile.am |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 10612f76bb211b3744f9259850a3c8e05b116c9d
Author: Simón Pena <spenap@gmail.com>
Date:   Mon Oct 4 19:09:01 2010 +0200

    python: added plugin configuration to grilo-test-ui
    
    Added a configuration setup for Flickr, Youtube and Vimeo
    
    Signed-off-by: Simón Pena <spenap@gmail.com>

 tools/python/grilo-test-ui.py |   34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

commit 74feca1851862e62c8dd45393843bb92393b8e75
Author: Simón Pena <spenap@gmail.com>
Date:   Mon Oct 4 19:09:00 2010 +0200

    annotations: fixed GrlConfig annotations
    
    * grl_config_new now allows NULL sources for a plugin-wide
      configuration
    * grl_config_new is annotated as 'transfer none', to avoid freeing
      the configuration while the plugin is valid.
    
    Signed-off-by: Simón Pena <spenap@gmail.com>

 src/data/grl-config.c |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit c6b6d45d0e86f39c1b0e4db76802b279a9e37c91
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Fri Oct 22 18:15:16 2010 +0200

    core: rename generic_filter() into filter_key_list()
    
    It makes more sense. I would like to name it something like
    intersect_key_list() but the function parameters doesn't follow a logical
    structure for that, so I adhered to the filter semantic.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 src/grl-metadata-source.c |   14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

commit 923a0a68cf138f2425b8e8f7546b7df31deda61f
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Thu Oct 21 15:34:29 2010 +0200

    core: fix when no slow/writable keys available
    
    When the source doesn't have slow/writable keys (empty set) the key list is
    not filtered. Also, that code is repeated in each filter type.
    
    This patch set to NULL the filtered key list, and the returned complement is
    the passed key list. The code is isolated in the generic_filter() too.
    
    Finally, added a description of the function.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 src/grl-metadata-source.c |   31 +++++++++++++++++--------------
 1 file changed, 17 insertions(+), 14 deletions(-)

commit 3f42a5f8a523909b74cceea88db1ecf0a19aab3c
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Thu Oct 21 14:16:27 2010 +0200

    tests: key filter gtests for GrlMetadataSource
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 tests/.gitignore        |    1 +
 tests/Makefile.am       |    4 ++
 tests/metadata_source.c |  180 +++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 185 insertions(+)

commit 4c9ead94b45328c570bf13d9a4692240674009c7
Author: Simón Pena <spenap@gmail.com>
Date:   Mon Oct 4 19:19:01 2010 +0200

    tests: updated GrlMetadataSource filter tests
    
    Updated GrlMetadataSource filter tests so that they assert that
    the aggregated length of the two lists returned (the one which
    passes the check and the one which doesn't) equals to the original
    key list.
    
    Signed-off-by: Simón Pena <spenap@gmail.com>

 tests/python/test_metadata_source.py |   18 +++++++++++++++---
 1 file changed, 15 insertions(+), 3 deletions(-)

commit c592a85afc7c8538d91bb47b16a54c9dce8d5f46
Author: Simón Pena <spenap@gmail.com>
Date:   Mon Oct 4 19:19:00 2010 +0200

    core: reworked GrlMetadataSource's filter methods
    
    grl_metadata_source_filter_{supported, slow, writable} methods
    have a common filtering part and some specific bits each one.
    
    This patch extracts the common code into a generic function so
    the other ones can do their checks and specific behavior, and then
    do the filtering.
    
    Signed-off-by: Simón Pena <spenap@gmail.com>

 src/grl-metadata-source.c |  142 ++++++++++++++-------------------------------
 1 file changed, 44 insertions(+), 98 deletions(-)

commit 6bbf66e58fabfedadd75203e864c438594a9a7be
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Oct 18 18:03:17 2010 +0200

    build: fix grilo-net building
    
    If grilo-net dependencies are not found, it were still trying to build
    grilo-net.
    
    This patch fixes this problem.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 Makefile.am               |    8 +++++---
 bindings/vala/Makefile.am |    7 ++++++-
 libs/Makefile.am          |   14 +++++++++++++-
 libs/net/Makefile.am      |    2 --
 4 files changed, 24 insertions(+), 7 deletions(-)

commit f2dc8784a0560b8977354bfe85e7747a270d1b33
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Wed Oct 13 13:19:18 2010 +0200

    vala: add grilo-net library bindings
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 bindings/vala/Makefile.am                        |    2 +-
 bindings/vala/grilo-net-0.1-custom.vala          |    1 +
 bindings/vala/grilo-net-0.1.deps                 |    1 +
 bindings/vala/grilo-net-0.1.metadata             |    6 ++++++
 bindings/vala/grilo-net-uninstalled.files.in     |    2 ++
 bindings/vala/grilo-net-uninstalled.namespace.in |    1 +
 configure.ac                                     |    2 ++
 7 files changed, 14 insertions(+), 1 deletion(-)

commit 09b5bc47eb59d7ce871a443b1c544405e727f5c6
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Mon Oct 4 20:39:35 2010 +0200

    doc: fix the gtkdoc generation
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 doc/reference/Makefile.am |   22 +++++++++++++++-------
 1 file changed, 15 insertions(+), 7 deletions(-)

commit 0c8ac155c51bf9c509922a448c1f290daea48740
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Mon Oct 4 20:38:40 2010 +0200

    doc: add the GrlNetWc definition
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 doc/reference/grilo-docs.sgml    |    5 +++++
 doc/reference/grilo-sections.txt |   26 ++++++++++++++++++++++++++
 doc/reference/grilo.types        |    1 +
 3 files changed, 32 insertions(+)

commit 3f9983ab8a0717559cab5a30e9c4d1bbd0961f2e
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Mon Oct 4 20:37:57 2010 +0200

    wc: gtkdoc documentation
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 libs/net/grl-net-wc.c |   77 +++++++++++++++++++++++++++++++++++++++++++++++++
 libs/net/grl-net-wc.h |   23 +++++++++++++++
 2 files changed, 100 insertions(+)

commit 2ae6c9099382b733e10a4a788a966b469b132217
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Tue Sep 28 19:49:39 2010 +0200

    build: libgrlnet introspection
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 libs/net/Makefile.am |   29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

commit abbe7993d388d8df94b93222fa258557074f277e
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Thu Sep 16 19:46:17 2010 +0200

    grl-net: new header file
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 libs/net/Makefile.am |    3 ++-
 libs/net/grl-net.h   |   28 ++++++++++++++++++++++++++++
 2 files changed, 30 insertions(+), 1 deletion(-)

commit 488cf1195a4d5df4cbfa78d2f8fe09ed7efdb342
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Thu Sep 16 17:42:39 2010 +0200

    build: compile libs
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 Makefile.am  |    2 +-
 configure.ac |   12 ++++++++++++
 2 files changed, 13 insertions(+), 1 deletion(-)

commit fec83d05b86f2466db48ebafea1b351d8c7b99be
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Thu Sep 16 17:41:55 2010 +0200

    build: grilo-net pkg-config files
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 Makefile.am                 |    4 +++-
 grilo-net-0.1.pc.in         |   15 +++++++++++++++
 grilo-net-uninstalled.pc.in |   15 +++++++++++++++
 3 files changed, 33 insertions(+), 1 deletion(-)

commit 8e3dc779ad6d11531a9128ac2f6fc6de75c78f1c
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Mon Sep 20 12:21:53 2010 +0200

    build: libgrlnet
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 libs/Makefile.am     |    8 ++++++++
 libs/net/Makefile.am |   51 ++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 59 insertions(+)

commit 020c1846c35ef7cc6c81e776c47e2617b534e0a3
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Mon Sep 20 12:21:28 2010 +0200

    wc: test app
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 libs/net/wc-test.c |   86 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 86 insertions(+)

commit febda43ac9477bf4a35ead6c5092074199e84d4a
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Mon Aug 23 10:30:11 2010 +0200

    wc: grilo net web client
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 libs/net/grl-net-wc.c |  493 +++++++++++++++++++++++++++++++++++++++++++++++++
 libs/net/grl-net-wc.h |  111 +++++++++++
 2 files changed, 604 insertions(+)

commit ec2dbaa9e113026decb43b52a140f89a0e51a8c4
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Wed Oct 13 13:16:51 2010 +0200

    vala: fixed regression
    
    Added a wrong const identifier in callback parameter
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 bindings/vala/grilo-0.1-custom.vala |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5856d6e39bff6d1ece752e707c79c2617c729b1e
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Wed Oct 13 13:04:09 2010 +0200

    vala: set domain name and fix instance positions
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 bindings/vala/grilo-0.1-custom.vala |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit bfb9b545c8b3fe1b329d0a8ee65af05649d442a3
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Wed Oct 13 13:01:31 2010 +0200

    vala: add MetadataSourceSetMetadataCb
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 bindings/vala/grilo-0.1-custom.vala |    2 ++
 bindings/vala/grilo-0.1.metadata    |    1 +
 2 files changed, 3 insertions(+)

commit eeefbc017294d6bb234e9cf30690cb5c35414d0a
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Mon Oct 4 20:40:13 2010 +0200

    vala: check for libvala-0.12 instead of vala-0.12
    
    This is one of the risks to be living on the edge.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 configure.ac |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit f20e99558ff2f758b2aadfe8ae9dbf6174ce549d
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Thu Sep 16 16:56:36 2010 +0200

    build: improve path definition in grilo-uninstalled.pc.in
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 grilo-uninstalled.pc.in |   15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

commit 88a16be2ae60f927209eec093c8f5282bae594b1
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Thu Sep 16 16:51:23 2010 +0200

    build: improve gir support in grilo-0.1.pc
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 grilo-0.1.pc.in |    7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

commit e90b5bdaada793cf38f0eb58a4a8af3b531c27d2
Author: Simón Pena <spenap@gmail.com>
Date:   Tue Sep 28 00:11:33 2010 +0200

    annotations: Fixed transfer modes in grl-metadata-source
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/grl-metadata-source.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 7beebbcb8385660a7850cc5a33fb1e980ec6f83d
Author: Simón Pena <spenap@gmail.com>
Date:   Thu Sep 30 19:53:27 2010 +0200

    annotations: removed transfer mode for 'in' args
    
    Input arguments don't need 'transfer none' annotations.
    
    Signed-off-by: Simón Pena <spenap@gmail.com>
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/grl-media-source.c    |   16 ++++++++--------
 src/grl-metadata-source.c |    8 ++++----
 src/grl-multiple.c        |    8 ++++----
 3 files changed, 16 insertions(+), 16 deletions(-)

commit 1bc4f2d22940ac88980a51fa3731c79dcc802dc5
Author: Simón Pena <spenap@gmail.com>
Date:   Wed Sep 29 16:31:02 2010 +0200

    tests: Removed setUp/tearDown code in python tests
    
    setUp/tearDown methods in the tests load and unload the plugins
    so that each test is run in a clean environment.
    
    However, the current plugin mechanism doesn't allow that, and reloading
    a previously loaded/unloaded plugin produces a crash. This patch
    removes setUp/tearDown code, adding the plugin load in the tests constructor
    but leaving the plugins loaded during all the test suite execution. While
    this is a fix which allows the tests to be run, some of them will fail.
    
    Once that the plugin system is reworked to allow unloading/reloading, this
    commit should be reverted to come back to the original behavior.

 tests/python/test_metadata_source.py |    9 ++-------
 tests/python/test_plugin.py          |    9 ++-------
 tests/python/test_registry.py        |   22 ++++++++++++++--------
 3 files changed, 18 insertions(+), 22 deletions(-)

commit 99ec47cd24a715c366f73d7a449e08c9df653b9e
Author: Simón Pena <spenap@gmail.com>
Date:   Wed Sep 29 16:31:01 2010 +0200

    tests: Tested the MetadataSource class using GI

 tests/python/Makefile.am             |    3 +-
 tests/python/test_metadata_source.py |   99 ++++++++++++++++++++++++++++++++++
 2 files changed, 101 insertions(+), 1 deletion(-)

commit 7ded0a1190cbee30a04769e2d48c9d8cd3733c52
Author: Simón Pena <spenap@gmail.com>
Date:   Wed Sep 29 16:31:00 2010 +0200

    tests: Tested the PluginMedia class using GI

 tests/python/Makefile.am    |    3 +-
 tests/python/test_plugin.py |   77 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 79 insertions(+), 1 deletion(-)

commit 648523c697474051ab88091dbff23041427ceaa2
Author: Simón Pena <spenap@gmail.com>
Date:   Wed Sep 29 16:30:59 2010 +0200

    tests: Tested the PluginRegistry class using GI
    
    This patch tests the class' methods from Python using
    GObject Introspection, checking functionality and bindings
    at the same time.

 tests/python/Makefile.am      |    3 +-
 tests/python/constants.py     |   50 +++++++++++++
 tests/python/test_registry.py |  158 +++++++++++++++++++++++++++++++++++++++++
 3 files changed, 210 insertions(+), 1 deletion(-)

commit 585dfd314058877afe265eb103894c4bff95047e
Author: Simón Pena <spenap@gmail.com>
Date:   Wed Sep 29 16:30:58 2010 +0200

    tests: Command line arguments can be passed to testrunner
    
    Test runner script now accepts command line arguments. That way,
    it can be used to check individual test suites, instead of running
    the full test set. While this feature isn't really necessary, it
    can be helpful when designing the tests.

 tests/python/testrunner.py |   11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

commit a0fb48d0348eaf2eab1cbcf1bca22e75953ebed6
Author: Simón Pena <spenap@gmail.com>
Date:   Wed Sep 29 16:30:57 2010 +0200

    core: Updated infrastructure to support python tests
    
        * Update configure.ac to generate a 'util' Python class
        * Added a test runner to launch Python unit tests
        * Added python/ to tests' SUBDIRS
        * Updated test's Makefile.am to avoid launching Python tests twice
          when 'make check' is invoked

 configure.ac               |    2 ++
 tests/Makefile.am          |   10 ++++++----
 tests/python/Makefile.am   |   22 ++++++++++++++++++++++
 tests/python/testrunner.py |   21 +++++++++++++++++++++
 tests/python/util.py.in    |    9 +++++++++
 5 files changed, 60 insertions(+), 4 deletions(-)

commit 50fc74eab57720b34451273c3f00c597cfe5c551
Author: Simón Pena <spenap@gmail.com>
Date:   Wed Sep 29 16:30:56 2010 +0200

    core: Moved tests infrastructure to /tests
    
    As discussed in the mailing list [1, 2, 3], this patch moves
    the test infrastructure from src/tests/ to tests/
    
    In these discussions there was an agreement about having a python/, js/
    etc directory for each language, under tests/. The test/ directory location
    wasn't agreed, but Edu Lima's reply on [4] seemed quite convincing, and
    nobody opposed to it.
    
    [1] http://mail.gnome.org/archives/grilo-list/2010-May/msg00041.html
    [2] http://mail.gnome.org/archives/grilo-list/2010-August/msg00074.html
    [3] http://mail.gnome.org/archives/grilo-list/2010-August/msg00107.html
    [4] http://mail.gnome.org/archives/grilo-list/2010-August/msg00106.html

 Makefile.am           |    2 +-
 configure.ac          |    2 +-
 src/Makefile.am       |    2 -
 src/tests/.gitignore  |    1 -
 src/tests/Makefile.am |   63 ---------------------
 src/tests/registry.c  |  150 -------------------------------------------------
 tests/.gitignore      |    1 +
 tests/Makefile.am     |   65 +++++++++++++++++++++
 tests/registry.c      |  149 ++++++++++++++++++++++++++++++++++++++++++++++++
 9 files changed, 217 insertions(+), 218 deletions(-)

commit c9e3c87e5600c0f244217b4ffd7c767664fde205
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Wed Sep 29 21:54:48 2010 +0200

    doc: enhance the documentation makefile
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 doc/reference/Makefile.am |   10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

commit 04ac4ae4c9d906985c398a50bb3fe7f4579588ac
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Wed Sep 29 21:54:47 2010 +0200

    doc: change the main page layout
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 doc/reference/grilo-docs.sgml |    8 ++++++++
 1 file changed, 8 insertions(+)

commit 2c95e36cece2852085e94b22eb07a33f3fc7dfeb
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Wed Sep 29 21:54:46 2010 +0200

    doc: new gtk-doc files
    
    grilo.types defines the GObject types defined in Grilo.
    
    grilo-sections.txt defines the sections and their grouping elements.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 doc/reference/grilo-sections.txt |  485 ++++++++++++++++++++++++++++++++++++++
 doc/reference/grilo.types        |   21 ++
 2 files changed, 506 insertions(+)

commit 29a06294f3fe1fdc959680e7920b6baa84999e9a
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Wed Sep 29 21:54:45 2010 +0200

    doc: trivial fixes
    
    Honor 80 char per line and other small fixes.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 src/grl-media-source.c    |   46 ++++++++++++++++++++++++++++++---------------
 src/grl-media-source.h    |   10 +++++-----
 src/grl-plugin-registry.c |   16 ++++++++++------
 3 files changed, 46 insertions(+), 26 deletions(-)

commit 6db42fbe76eb118ca863b4f8ed4f4ba6fdf86d54
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Wed Sep 29 21:54:44 2010 +0200

    doc: add more documentation to multiple search helpers
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 src/grl-multiple.c |   27 +++++++++++++++++++++++----
 1 file changed, 23 insertions(+), 4 deletions(-)

commit 45cdfe2617998d5dc73e27c6f2aa9346f786a4e0
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Wed Sep 29 21:54:43 2010 +0200

    doc: add more documentation to grilo.c
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 src/grilo.c |   18 ++++++++++++++++--
 1 file changed, 16 insertions(+), 2 deletions(-)

commit 868c291b0dec31d4ea3a4657844cbf98c10941b0
Author: Simón Pena <spenap@gmail.com>
Date:   Wed Sep 29 21:40:48 2010 +0200

    vala: Improved metadata
    
    * Added metadata information for PluginRegistry, MediaPlugin,
      MediaSource MetadataSource and GrlData.
    * Organized metadata file in sections to improve readability.

 bindings/vala/grilo-0.1.metadata |   51 +++++++++++++++++++++++++++++++++++++-
 1 file changed, 50 insertions(+), 1 deletion(-)

commit a7caf5cb5d25824bbf603fd7fdda40a6076d2486
Author: Simón Pena <spenap@gmail.com>
Date:   Wed Sep 22 16:46:01 2010 +0200

    build: Fixed gir build rules
    
    Updated gir build rules so that they depend on the current version,
    instead of "0_1". For that, a GRL_MAJORMINOR_NORM has been created.

 configure.ac    |    2 ++
 src/Makefile.am |    8 ++++----
 2 files changed, 6 insertions(+), 4 deletions(-)

commit 2659469115e76a8884e8d4d0bce7d673119e388e
Author: Simón Pena <spenap@gmail.com>
Date:   Wed Sep 22 16:46:00 2010 +0200

    build: Define major, minor and micro version vars
    
    Variables storing the major, minor and micro version have been created.
    grl_version and GRL_MAJORMINOR are generated now using those vars.

 configure.ac |    7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

commit ff67f8492d77656de4b1ffeb2c8d97e2279630e2
Author: Chris Lord <chris@linux.intel.com>
Date:   Fri Sep 24 09:19:59 2010 +0100

    metadata-source: Don't try to free an uninitialised pointer
    
    In grl_metadata_source_setup_full_resolution_mode, if the key-list is NULL
    then it skips to the end of the function - which frees the list and
    returns. This check happens before the list is assigned (or even, in fact,
    declare), so just return and avoid running g_list_free on uninitialised
    memory.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=630493

 src/grl-metadata-source.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 1eaaa68f4e7132293ddcf6c6706bff3ca8262649
Author: Simón Pena <spenap@gmail.com>
Date:   Tue Sep 21 23:49:26 2010 +0200

    doc: Fix GrlUtil documentation

 src/grl-util.c |    1 +
 1 file changed, 1 insertion(+)

commit 3221e5b721b2008c473ffd21e658bf659c4e37e5
Author: Simón Pena <spenap@gmail.com>
Date:   Tue Sep 21 23:49:25 2010 +0200

    doc: Added GrlError documentation

 src/grl-error.h |   21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

commit 7172f75039b79594822587cf8c94bd5d215e5479
Author: Simón Pena <spenap@gmail.com>
Date:   Tue Sep 21 23:49:24 2010 +0200

    doc: Skip GrlDataSync

 doc/reference/Makefile.am |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 2da2bc1b729876ce5fc11f577ebe41330e05bb8c
Author: Simón Pena <spenap@gmail.com>
Date:   Tue Sep 21 23:49:23 2010 +0200

    doc: Fix GrlMediaVideo typo

 src/data/grl-media-video.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5a8611480cb435f531fbfd2473937facb224a096
Author: Simón Pena <spenap@gmail.com>
Date:   Tue Sep 21 23:49:22 2010 +0200

    doc: Add GrlLog documentation

 src/grl-log.c |    7 +++++++
 src/grl-log.h |   12 ++++++++++++
 2 files changed, 19 insertions(+)

commit d03468d2489b22dd67fc0fcbae4a62626fe830e6
Author: Simón Pena <spenap@gmail.com>
Date:   Tue Sep 21 23:49:21 2010 +0200

    doc: Improve GrlMedia documentation

 src/data/grl-media.c |    1 +
 src/data/grl-media.h |   10 +++++++++-
 2 files changed, 10 insertions(+), 1 deletion(-)

commit fe42e96b2a51d1c628013a60ebd911d2ca0232c4
Author: Simón Pena <spenap@gmail.com>
Date:   Tue Sep 21 23:49:20 2010 +0200

    doc: Improve GrlMediaImage documentation

 src/data/grl-media-image.c |    9 +++++----
 src/data/grl-media-image.h |    6 ++++++
 2 files changed, 11 insertions(+), 4 deletions(-)

commit 1c3b0166d238eb2091fbf42abb0891ac5867165f
Author: Simón Pena <spenap@gmail.com>
Date:   Tue Sep 21 23:49:19 2010 +0200

    doc: Improve GrlMediaAudio documentation

 src/data/grl-media-audio.c |    9 +++++----
 src/data/grl-media-audio.h |    6 ++++++
 2 files changed, 11 insertions(+), 4 deletions(-)

commit 90ac28faeb76fdc10488a6e360cad9a53a9e2dbe
Author: Simón Pena <spenap@gmail.com>
Date:   Tue Sep 21 20:28:21 2010 +0200

    annotations: Fixed grl_init annotations

 src/grilo.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit e80fe473ef640c6577ce32d5fea4964f3f310598
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Fri Sep 17 12:22:57 2010 +0200

    build: detect new versions of vala
    
    Recently vala has multiversion support, so it would be possible have installed
    different versions of it. But downstream still using the old setup. So we
    shall handle both situations.
    
    First we check for upstream version and then we go downstream.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 configure.ac |   24 ++++++++++++++++++++----
 1 file changed, 20 insertions(+), 4 deletions(-)

commit 9b619eabd23601f68f1593a3f0d3927de4b1a540
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Tue Sep 7 11:05:15 2010 +0200

    core: fix GrlLog gtkdoc documentation
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 src/grl-log.h |   11 ++---------
 1 file changed, 2 insertions(+), 9 deletions(-)

commit a8f314fdbd9b3196b8a1e89e13da1a686ac3548c
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Thu Sep 16 08:45:52 2010 +0200

    core: Fix incorrect sorting of ranked plugins.

 src/grl-plugin-registry.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 723f3a0e8738a3d4a78232eb6c26b459ee3a2497
Author: Simón Pena <spenap@gmail.com>
Date:   Tue Sep 14 21:18:29 2010 +0200

    core: Make get_sources_by_operations return a GList
    
    https://bugzilla.gnome.org/show_bug.cgi?id=629369
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/grl-metadata-source.c  |   28 +++++++++++++----------
 src/grl-multiple.c         |   24 +++++---------------
 src/grl-plugin-registry.c  |   45 ++++++-------------------------------
 src/grl-plugin-registry.h  |    2 +-
 tools/grilo-test-ui/main.c |   53 +++++++++++++++++++++++---------------------
 5 files changed, 57 insertions(+), 95 deletions(-)

commit 21c8f46cb4b64c852f7d659ad5201fd178e83666
Author: Simón Pena <spenap@gmail.com>
Date:   Tue Sep 14 21:18:28 2010 +0200

    core: Make get_sources return a GList
    
    * GrlPluginRegistry's get_sources now returns a GList
    * Added a compare_by_rank method to use with g_list_sort
    * Updated grilo-test-ui, grl-inspect and tests to expect a GList
    
    https://bugzilla.gnome.org/show_bug.cgi?id=629369
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/grl-plugin-registry.c         |   50 ++++++++++++++++++++++++-------------
 src/grl-plugin-registry.h         |    2 +-
 src/tests/registry.c              |   19 ++++++++------
 tools/grilo-inspect/grl-inspect.c |   17 ++++++++-----
 tools/grilo-test-ui/main.c        |   14 +++++++----
 5 files changed, 65 insertions(+), 37 deletions(-)

commit 7c0118224e46682a6cca669d69f568975f2f73e6
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Tue Sep 14 11:03:29 2010 +0200

    doc: various documentation fixes.

 src/data/grl-media-image.c |    4 ++--
 src/data/grl-media.c       |    4 +++-
 src/grl-metadata-source.c  |    4 ++--
 src/grl-metadata-source.h  |   21 +++++++++++----------
 src/grl-multiple.c         |    2 +-
 src/grl-plugin-registry.h  |    1 +
 6 files changed, 20 insertions(+), 16 deletions(-)

commit 1f474ff1584b7ce9dbd5420452848c6be97562f9
Author: Simón Pena <spenap@gmail.com>
Date:   Mon Sep 13 18:44:59 2010 +0200

    doc: Updated examples to use new log system
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 doc/reference/quick-start-using-grilo.xml |   24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

commit 73aaec958520ca70097751f2c776cb79bce8026c
Author: Simón Pena <spenap@gmail.com>
Date:   Thu Sep 9 22:08:57 2010 +0200

    annotations: Fixed grl_data_get_keys transfer mode
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/data/grl-data.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit d1efdeb270e3084147ff44c0c1d6a2cc1949b990
Author: Simón Pena <spenap@gmail.com>
Date:   Thu Sep 9 22:08:56 2010 +0200

    annotations: Media in cb is transfer full
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/grl-media-source.h    |    8 ++++----
 src/grl-metadata-source.h |    4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

commit 5f91bb9f022e266303a32c4b75e85d348d314293
Author: Simón Pena <spenap@gmail.com>
Date:   Thu Sep 9 22:08:55 2010 +0200

    annotations: Removed unnecessary annotations
    
    Returning "const gchar*" get annotated as (type utf8) (transfer none),
    so there's no need to annotate them manually.
    Besides, (allow-none) isn't needed for return values.
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/data/grl-config.c      |    8 ++++----
 src/data/grl-data.c        |    2 +-
 src/data/grl-media-audio.c |    8 ++++----
 src/data/grl-media.c       |   32 ++++++++++++++++----------------
 src/grl-metadata-source.c  |    6 +++---
 src/grl-plugin-registry.c  |    2 +-
 6 files changed, 29 insertions(+), 29 deletions(-)

commit 310720223a9cd46da133980677504c6f0da13957
Author: Simón Pena <spenap@gmail.com>
Date:   Thu Sep 9 22:08:54 2010 +0200

    annotations: Annotated 'register_metadata_key'
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/grl-plugin-registry.c |    9 +++++++++
 1 file changed, 9 insertions(+)

commit 50c58eefebd82f0843b8d3cd2a556aa70fb2682f
Author: Simón Pena <spenap@gmail.com>
Date:   Thu Sep 9 22:08:53 2010 +0200

    core: Replaced grl-media-plugin defines with functions
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/grl-media-plugin.c |   94 ++++++++++++++++++++++++++++++++++++++++++++++--
 src/grl-media-plugin.h |   78 +++++-----------------------------------
 2 files changed, 101 insertions(+), 71 deletions(-)

commit 5805517df445374ac73e1208930d95e2f647a97d
Author: Simón Pena <spenap@gmail.com>
Date:   Thu Sep 9 22:08:52 2010 +0200

    annotations: Fixed 'get_info_keys' annotation
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/grl-media-plugin.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 4b028ef85a098b9589cf38ef57446fb120425a8a
Author: Simón Pena <spenap@gmail.com>
Date:   Thu Sep 9 22:08:51 2010 +0200

    annotations: Annotated metadata_source cb GErrors as uints
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/grl-metadata-source.h |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit b14b077888c845475d90a017ac2e49457b006d87
Author: Simón Pena <spenap@gmail.com>
Date:   Thu Sep 9 22:08:50 2010 +0200

    annotations: Annotated grl-metadata-source
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/grl-metadata-source.c |   66 ++++++++++++++++++++++++++-------------------
 src/grl-metadata-source.h |    3 ++-
 2 files changed, 41 insertions(+), 28 deletions(-)

commit eb7d8c707f3c43cc474b5d6c9a1beb6240f3752e
Author: Simón Pena <spenap@gmail.com>
Date:   Thu Sep 9 22:08:49 2010 +0200

    annotations: Added missing transfer modes
    
    Non-basic types must be annotated with a 'transfer mode', even if it
    is full, for safety reasons.
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/data/grl-media.c   |    2 +-
 src/grl-media-source.c |   10 +++++-----
 src/grl-multiple.c     |    2 +-
 3 files changed, 7 insertions(+), 7 deletions(-)

commit 5404705a8d2b9c3b2fde53501f723a574901c308
Author: Simón Pena <spenap@gmail.com>
Date:   Thu Sep 9 22:08:48 2010 +0200

    core: Made GrlPluginInfo introspectable
    
    With the new g-ir-scanner, aliasing a structure must be
    done before declaring it.
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/grl-plugin-registry.h |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 246eccca96970bd154506d5c02588c4accfb7fda
Author: Simón Pena <spenap@gmail.com>
Date:   Thu Sep 9 22:08:47 2010 +0200

    annotations: Skipped non introspectable functions
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/grilo.c    |    2 +-
 src/grl-log.c  |    6 ++++++
 src/grl-util.c |    2 +-
 3 files changed, 8 insertions(+), 2 deletions(-)

commit fa8daa2ea879673833f33ae08aa11fe5fd166425
Author: Simón Pena <spenap@gmail.com>
Date:   Thu Sep 9 22:08:46 2010 +0200

    annotations: Replaced Grl.MediaSource* with Grl.MediaSource
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/grl-multiple.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit d7346d982b18f2f56709b98f42c62819a50467f7
Author: Simón Pena <spenap@gmail.com>
Date:   Thu Sep 9 22:08:45 2010 +0200

    annotations: Replaced Grl.Media* with Grl.Media
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/grl-media-source.c |    6 +++---
 src/grl-multiple.c     |    2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

commit 3bd379757dea209295608ff1a43ae4e9cfb28c8d
Author: Simón Pena <spenap@gmail.com>
Date:   Thu Sep 9 22:08:44 2010 +0200

    annotations: Replaced GObject.ParamSpec* with GObject.ParamSpec
    
    ParamSpecs annotations must be either 'GObject.ParamSpec' or
    'GParamSpec*', the former being preferred.
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/data/grl-data.c       |   26 +++++++++++++-------------
 src/grl-media-source.c    |   16 ++++++++--------
 src/grl-metadata-key.c    |    4 ++--
 src/grl-multiple.c        |    4 ++--
 src/grl-plugin-registry.c |    4 ++--
 5 files changed, 27 insertions(+), 27 deletions(-)

commit 4fd6f158bff2bb178b0536c8a95470c80b7b9eb9
Author: Simón Pena <spenap@gmail.com>
Date:   Thu Sep 9 22:08:43 2010 +0200

    annotations: Added missing colon
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/data/grl-data.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3cf151234a93747ebe6806e705cc88b930c311e1
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Fri Sep 10 13:15:25 2010 +0200

    core: document the log level mapping
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 src/grl-log.c |    8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

commit a5873135582836625259faec2e9350a027badfb2
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Fri Sep 10 13:14:36 2010 +0200

    core: a missing info doesn't deserve a warning
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 src/grl-plugin-registry.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 04eb6a6a7b6b46343909f260ccbe853a57434c3d
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Fri Sep 10 13:13:48 2010 +0200

    core: check for supported_keys implementation
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 src/grl-metadata-source.c |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 5ae56cab0c71f9b1964260e424214fab219d230f
Author: Simón Pena <spenap@gmail.com>
Date:   Thu Sep 9 22:08:58 2010 +0200

    core: check for 'key-depends' implementation

 src/grl-metadata-source.c |    7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

commit a3b9d3cbd8f74b3e3869e855d9b67483428ecfff
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Mon Sep 6 12:14:33 2010 +0200

    core: GrlMediaPlugin doesn't need finalize()
    
    According to this commit:
    
    commit 92de127e655d6c31dbc64c3e5a389b8bc6de12c8
    Author: Iago Toral Quiroga <itoral@igalia.com>
    Date:   Fri Sep 3 10:34:17 2010 +0200
    
    core: Do not free plugin descriptors in GrlMediaPlugin's finalize function,
    they are const members to be freed by the registry only when plugins are
    unloaded, they should not be freed when a source spawned by the plugin is
     unloaded.
    
    So there's nothing to do in the GrlMediaPlugin finalize(), then is better
    remove it and have less lines of code to maintain.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 src/grl-media-plugin.c |   15 ---------------
 1 file changed, 15 deletions(-)

commit 377860ad5c1800b9ae85cdd28c58a49922cf6574
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Sat Sep 4 12:19:58 2010 +0200

    build: check hard pkg-config dependencies first
    
    As reported by Damien Lespiau <damien.lespiau@intel.com>:
    
    """
    PKG_CHECK_MODULES requires PKG_PROG_PKG_CONFIG, see pkg.m4:
    
        AC_DEFUN([PKG_CHECK_MODULES],
        [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
    
    The expansion of the AC_REQUIRE is done only once, the first time m4
    encounters PKG_CHECK_MODULES.
    
    Now the real issue is that the first occurrence of PKG_CHECK_MODULES is
    in the test:
        if test "x$enable_vala" != no;
    
    which means PKG_PROG_PKG_CONFIG is not being executed when --disable-vala
    is given on the command line and thus I have the following error at
    configure time.
    """
    
    Then, this patch makes check first the hard dependencies, and aftwards the
    optional stuff.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 configure.ac |   38 +++++++++++++++++++-------------------
 1 file changed, 19 insertions(+), 19 deletions(-)

commit 44391196d7fc9506bce9aecdb9394203a98359e7
Author: Simón Pena <spenap@gmail.com>
Date:   Fri Sep 3 19:10:17 2010 +0200

    core: Remove value destroy_func from the plugins' hash table
    
    Removing a GrlPluginDescriptor from the plugins' hash table fails
    when plugins are shutdown.
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/grl-plugin-registry.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 59502f8a864229f084fdc5270c0349f332e9eb05
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Thu Sep 2 18:53:58 2010 +0200

    bindings: add gmodule as link dependency
    
    As the commit b23869 modifies the ABI exposing a GModule instance, so we need
    to communicate the new linkage dependency to the bindings.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 bindings/vala/Makefile.am    |    3 ++-
 bindings/vala/grilo-0.1.deps |    1 +
 src/Makefile.am              |    2 +-
 3 files changed, 4 insertions(+), 2 deletions(-)

commit 4ae19da7d5ea231b1cc1641c1eb03b01ee658c79
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Fri Sep 3 11:07:26 2010 +0200

    core: Free plugin data in the registry's plugin unload function.

 src/grl-plugin-registry.c |    9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

commit 523174d1201310643d88d2b098403676a2437888
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Fri Sep 3 10:55:32 2010 +0200

    test-ui: Reset combo boxes also when shutting down the plugins.
    test-ui: Make sure we only free each plugin once.

 tools/grilo-test-ui/main.c |   71 ++++++++++++++++++++++++++++++++------------
 1 file changed, 52 insertions(+), 19 deletions(-)

commit 92de127e655d6c31dbc64c3e5a389b8bc6de12c8
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Fri Sep 3 10:34:17 2010 +0200

    core: Do not free plugin descriptors in GrlMediaPlugin's finalize function,
    they are const members to be freed by the registry only when plugins are
    unloaded, they should not be freed when a source spawned by the plugin is
    unloaded.

 src/grl-media-plugin.c |    7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

commit 8d29625f88252f809b6ed46d39456616404a592b
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Thu Sep 2 15:27:32 2010 +0200

    test-ui: reloading functionality does not work as intended. This commit
    replaces plugin-reloading functionality by plugin-shutdown.

 tools/grilo-test-ui/main.c |   31 ++++++++++++++++---------------
 1 file changed, 16 insertions(+), 15 deletions(-)

commit 2e3b8fa9dd05bbbf2d1eb3c1a532f712836171d4
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Thu Sep 2 14:49:00 2010 +0200

    core: when unloading a plugin, shutdown any sources it may have spawned.

 src/grl-plugin-registry.c |   18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

commit 48dd489abb7b183bbd41ed64807b025a9aeff62e
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Wed Sep 1 14:43:48 2010 +0200

    core: unload plugins properly by calling g_module_close when appropriate.

 src/grl-plugin-registry.c |    5 +++++
 src/grl-plugin-registry.h |    3 +++
 2 files changed, 8 insertions(+)

commit 3b504c0c55e0a3dfd2b3bd6b086fd9be3b0dcf75
Author: Damien Lespiau <damien.lespiau@intel.com>
Date:   Tue Aug 24 16:48:59 2010 +0100

    log: remove grl_log_init() calls from tools
    
    grl-inspect: Now that we default to only print warnings, it's actually
    pretty sane to still show those warning that shows errors one should
    fix.
    
    grl-test-ui: The default verbosity of the test UI make seeing real
    warnings really hard. It's still possible to recover the verbose mode
    with GRL_LOG.
    
    testGrilo.js: Remove the Grl.log_init() call and add Grl.init()
    
    grilo-test.vala: Remove Grl.log_init()
    
    https://bugzilla.gnome.org/show_bug.cgi?id=627864
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 tools/grilo-inspect/grl-inspect.c |    1 -
 tools/grilo-test-ui/main.c        |    1 -
 tools/js/testGrilo.js             |    2 +-
 tools/vala/grilo-test.vala        |    1 -
 4 files changed, 1 insertion(+), 4 deletions(-)

commit 15a83305ea12c66173db1335f3fcf74b61df25d7
Author: Damien Lespiau <damien.lespiau@intel.com>
Date:   Thu Sep 2 14:03:25 2010 +0100

    log: rename grl_log_init() to grl_log_configure()
    
    You can configure one or several log domains at run time with this API,
    so it's not an initialization per se, it's closer to a configuration
    string one gives to the log system.
    
    Along with the renaming, properly document the format of the string used
    to configure log domains.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=627864

 doc/reference/quick-start-using-grilo.xml |    8 +++---
 src/grl-log.c                             |   42 +++++++++++++++++++++++++----
 src/grl-log.h                             |    2 +-
 3 files changed, 42 insertions(+), 10 deletions(-)

commit 08805ebfa6e297e7ee369639b6af012d6ebab95d
Author: Damien Lespiau <damien.lespiau@intel.com>
Date:   Thu Sep 2 10:49:14 2010 +0100

    log: rename the environment variable to GRL_DEBUG
    
    The log system uses an environment variable to override the verbosity of
    log domains. Let's use GRL_DEBUG to be closer to what other gnome
    libraries use (GST_DEBUG, GTK_DEBUG, CLUTTER_DEBUG).
    
    https://bugzilla.gnome.org/show_bug.cgi?id=627864

 src/grl-log.c |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 6c71c336c4299e0dd79ad4258ddd2e3d7cca86c3
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Wed Sep 1 20:12:49 2010 +0200

    log: handle numeric level assignations
    
    Besides the symbolic level recognition, this patch also enable the numeric
    level setting.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
    
    https://bugzilla.gnome.org/show_bug.cgi?id=627864

 src/grl-log.c |   12 ++++++++++++
 1 file changed, 12 insertions(+)

commit 9e958d6c32a6d61bc2947066d6ed4a0c9546a4f1
Author: Damien Lespiau <damien.lespiau@intel.com>
Date:   Fri Aug 20 17:54:52 2010 +0100

    log: revamp the log system
    
    Current log system suffers from a few drawbacks:
    
      * It uses Glib's default handler for all the domains, this handler should
        not be overriden by a library (imagine what can happen if every
        library depends on being able to override the default log handler),
    
      * You can't use the common practice to break on g_log() to trace where
        warnings come from because the decision of printing the message is
        taken in the handler itself,
    
      * Other gnome libraries tend to define a single glib log domain for
        the whole library.
    
    So, instead, use a GStreamer-like logging system, with "log domains" you
    have to declare and initialize.
    
    This patch tries to keep the original author's intent by keeping:
    
      * the glib's debug levels and using them in the final g_logv(),
    
      * the same decoding of the string given to grl_log_init().
    
    It also modifies a bit when the GRL_LOG env variable is sampled. Instead
    of requiring the use to explictely call grl_log_init() to check the
    GRL_LOG behing the scene, grilo now gets this variable at startup and
    overrides the default verbosity level of log domains when they are
    created.
    
    grl_log_init() can still be used to set the verbosity, it has to be
    called after the log domain has been initialized which, for plugins,
    means after having loaded the plugin.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=627864

 src/Makefile.am            |    5 +-
 src/data/grl-config.c      |    7 +-
 src/data/grl-data.c        |   11 +-
 src/data/grl-media.c       |   14 +-
 src/grilo.c                |    9 +-
 src/grl-log-priv.h         |   46 ++++++
 src/grl-log.c              |  341 ++++++++++++++++++++++++++++++++++----------
 src/grl-log.h              |  246 +++++++++++++++++++++++++++++++-
 src/grl-media-plugin.c     |    5 +-
 src/grl-media-source.c     |  159 +++++++++++----------
 src/grl-metadata-source.c  |   57 ++++----
 src/grl-multiple.c         |   55 +++----
 src/grl-plugin-registry.c  |   53 +++----
 src/tests/registry.c       |   14 +-
 tools/grilo-test-ui/main.c |   59 ++++----
 15 files changed, 785 insertions(+), 296 deletions(-)

commit d11d54006e1a119c0d1d3cd3c1d817cc44f161ec
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Wed Sep 1 11:58:33 2010 +0200

    core: rename the GRL_ERROR quark to GRL_CORE_ERROR
    
    In other to avoid name-space collisions with the next logging subsystem,
    we are renaming grilo's error domain.
    
    This change also will allows us to have different kinds of error domains.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
    
    https://bugzilla.gnome.org/show_bug.cgi?id=628506

 bindings/vala/grilo-0.1.metadata |    2 +-
 src/grl-error.h                  |   22 +++++++++++-----------
 src/grl-media-source.c           |   12 ++++++------
 src/grl-metadata-source.c        |    8 ++++----
 src/grl-multiple.c               |    2 +-
 5 files changed, 23 insertions(+), 23 deletions(-)

commit 16834a072b9bde6a3678049dc9dcde237aa2eb46
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Wed Sep 1 12:48:22 2010 +0200

    Added --enable-uninstalled flag for autogen.sh in the "Examples" section.

 README |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit df92cb1412e1c44e27c57afeab13c152062a1e10
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jul 29 17:24:05 2010 +0200

    Bumped to version 0.1.6

 AUTHORS      |    9 +++------
 NEWS         |   64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.ac |    2 +-
 3 files changed, 68 insertions(+), 7 deletions(-)

commit 1bbb33f76075cdfda3b480d80b2cbb2559dc1f06
Author: Damien Lespiau <damien.lespiau@intel.com>
Date:   Mon Aug 23 11:49:04 2010 +0100

    gitignore: Put common ignores in the root .gitignore
    
    Putting common ignores in the root file makes some gitignore files
    unecessary, reducing the maintainance of the .gitignore files.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=627863

 .gitignore                     |   10 ++++++++++
 doc/reference/.gitignore       |    2 +-
 src/.gitignore                 |   10 ----------
 src/tests/.gitignore           |    5 -----
 tools/grilo-inspect/.gitignore |    1 +
 tools/grilo-test-ui/.gitignore |    5 -----
 tools/vala/.gitignore          |    2 --
 7 files changed, 12 insertions(+), 23 deletions(-)

commit e27101ab7098362450af7cedc7ad41a684006f51
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Wed Aug 25 17:57:36 2010 +0200

    test-ui: log everything
    
    In a previous patch I committed a wrong log selector. This revert
    that.

 tools/grilo-test-ui/main.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c7a99223dc547b7697b6e4bb5b859691daf9174a
Author: Simón Pena <spenap@gmail.com>
Date:   Wed Aug 25 17:08:48 2010 +0200

    annotations: Fixed 'lookup_source' annotation
    
    lookup_source method must be 'transfer-none'

 src/grl-plugin-registry.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit def549318aa94a881e1d3f8b7a6790c3060673ba
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Fri Aug 20 11:34:59 2010 +0200

    test-ui: reload plugins functionality
    
    Add a menu option for reloading all the available plugins. Now, in theory,
    should be possible to reload a plugin in development process without
    restarting the test-ui app.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 tools/grilo-test-ui/main.c |   46 +++++++++++++++++++++++++++++++++++++++++---
 1 file changed, 43 insertions(+), 3 deletions(-)

commit 28287c7211d06f1ae2014b4c924933607d139152
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Fri Aug 20 11:32:11 2010 +0200

    core: typo
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 src/grl-plugin-registry.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1eba27545f9b40dc7025ef143034575ed6b49cc6
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Thu Aug 19 20:54:41 2010 +0200

    check: test for registry and unregistry of plugins
    
    Based on the patch submitted by Simón Pena <spenap@gmail.com>
    
    https://bugzilla.gnome.org/show_bug.cgi?id=627207
    
    x# Please enter the commit message for your changes. Lines starting

 src/tests/registry.c |   84 ++++++++++++++++++++++++++++++++++++++++++--------
 1 file changed, 71 insertions(+), 13 deletions(-)

commit 721a2a499812e4abab60ee00edd9da00b44e76cd
Author: Simón Pena <spenap@gmail.com>
Date:   Wed Aug 18 20:12:47 2010 +0200

    core: removed wrong free at GrlMediaPlugin finalize()
    
    GrlPluginInfo id can't be freed as it's assigned from a string in the heap.
    
    b.g.o. #627207

 src/grl-media-plugin.c |    1 -
 1 file changed, 1 deletion(-)

commit ded8237bc643cf8060df6bd3ef948ed65883e66d
Author: Simón Pena <spenap@gmail.com>
Date:   Mon Aug 16 20:03:23 2010 +0200

    core: remove uneed frees
    
    Source's properties 'id' and 'name' were freed after being retrieved, and
    as the getter wasn't dup'ing them, they were being double freed.
    
    This patch removes those uneeded frees.
    
    b.g.o. #627207

 src/grl-media-source.c    |    2 --
 src/grl-plugin-registry.c |    2 --
 2 files changed, 4 deletions(-)

commit f99ac4723247a63e920676b18e63665718be1d8f
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Thu Aug 19 18:32:31 2010 +0200

    core: initialise the structure completely
    
    In order to silence the compiler when -Wextra is activated, the info structure
    is initialise in all of its fields.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 src/grl-plugin-registry.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d805260e39d1c4ae28e41f9040a83a49c79a30a2
Author: Simón Pena <spenap@gmail.com>
Date:   Tue Aug 17 22:04:38 2010 +0200

    python: Cloned grilo-test-ui
    
    Created grilo-test-ui clone using Gtk and Grilo introspection
    bindings with PyGObject
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 tools/python/grilo-test-ui.py |  807 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 807 insertions(+)

commit 508196b809811673fd931a02a5693f27482b2eb7
Author: Simón Pena <spenap@gmail.com>
Date:   Tue Aug 17 22:04:37 2010 +0200

    annotations: Annotated grl-data

 src/data/grl-data.c |   28 ++++++++++++++--------------
 1 file changed, 14 insertions(+), 14 deletions(-)

commit 0c81289834787441692546bd4331a654e4a4f59f
Author: Simón Pena <spenap@gmail.com>
Date:   Tue Aug 17 22:04:36 2010 +0200

    annotations: Annotated grl-multiple

 src/grl-multiple.c |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit b758dfb40d8f24ba84174cba44ea9f1792feebb1
Author: Simón Pena <spenap@gmail.com>
Date:   Tue Aug 17 22:04:35 2010 +0200

    core: Make grl-metadata-key more introspection friendly
    
    Provided actual functions to access name and description for a
    given metadata key, as macros aren't introspection friendly.

 src/grl-metadata-key.c |   28 ++++++++++++++++++++++++++++
 src/grl-metadata-key.h |    4 ++++
 2 files changed, 32 insertions(+)

commit daebdc455328bfbd2e42f8d0fa363fbfec82c64c
Author: Simón Pena <spenap@gmail.com>
Date:   Tue Aug 17 22:04:34 2010 +0200

    annotations: Annotated grl-media-source callbacks
    
    Callbacks' GErrors have been annotated with type uint

 src/grl-media-source.h |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit becc8e0da5b881a0e32c2a5d3bee738fbb0be989
Author: Simón Pena <spenap@gmail.com>
Date:   Tue Aug 17 22:04:33 2010 +0200

    annotations: Annotated grl-media-source
    
    Again, GrlKeyIDs have been annotated as GObject.ParamSpec* (see
    previous commit)

 src/grl-media-source.c |   46 +++++++++++++++++++++++-----------------------
 1 file changed, 23 insertions(+), 23 deletions(-)

commit 036e59c602dabb121512ccd824d8b43ccbc7a508
Author: Simón Pena <spenap@gmail.com>
Date:   Tue Aug 17 22:04:32 2010 +0200

    annotations: Annotated grl-plugin-registry
    
    GrlKeyIDs have been annotated as GObject.ParamSpec*. This isn't yet
    supported in GJS (but it is in PyGObject). See bug #626047

 src/grl-plugin-registry.c |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit f06f9c2c198d53ab93c667a2de23666408b17873
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Tue Aug 10 13:40:35 2010 +0200

    vala: remove custom code for media getters/setters
    
    With the new functions the introspection mechanism can detect
    the those symbols. No need to add them manually anymore.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 bindings/vala/grilo-0.1-custom.vala |   27 ---------------------------
 1 file changed, 27 deletions(-)

commit 2f55ccd71669501b1757bdc1d8d9e1a2d78f1a9d
Author: Simón Pena <spenap@gmail.com>
Date:   Mon Aug 9 18:13:30 2010 +0200

    annotations: Annotated grilo.c
    
    Added annotations to grl_init and grl_init_get_option_group
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/grilo.c |   18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

commit 2568d88bd0cb4d9066e55f2f78227e9bcabc86f9
Author: Simón Pena <spenap@gmail.com>
Date:   Mon Aug 9 18:13:29 2010 +0200

    core: Replaced grl-media-audio defines with functions
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/data/grl-media-audio.c |  130 ++++++++++++++++++++++++++++++++++++++++++++
 src/data/grl-media-audio.h |   54 +++++++-----------
 2 files changed, 149 insertions(+), 35 deletions(-)

commit 09bc861dfb487abd7c213a7ca68827a466ae767e
Author: Simón Pena <spenap@gmail.com>
Date:   Mon Aug 9 18:13:28 2010 +0200

    core: Replaced grl-media-image defines with functions
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/data/grl-media-image.c |   62 ++++++++++++++++++++++++++++++++++++++++++++
 src/data/grl-media-image.h |   21 +++++----------
 2 files changed, 69 insertions(+), 14 deletions(-)

commit 23c3295fd9d9ca69ae200690d91f3515cc2d0de8
Author: Simón Pena <spenap@gmail.com>
Date:   Mon Aug 9 18:13:27 2010 +0200

    core: Replaced grl-media-video defines with functions
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/data/grl-media-video.c |   81 ++++++++++++++++++++++++++++++++++++++++++++
 src/data/grl-media-video.h |   63 ++++------------------------------
 2 files changed, 87 insertions(+), 57 deletions(-)

commit b85da2511f327a078b14f02d4585cd9c2320bed2
Author: Simón Pena <spenap@gmail.com>
Date:   Mon Aug 9 18:13:26 2010 +0200

    core: Replaced grl-media defines with functions
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/data/grl-media.c |  526 ++++++++++++++++++++++++++++++++++++++++++++++++++
 src/data/grl-media.h |  409 ++++-----------------------------------
 2 files changed, 566 insertions(+), 369 deletions(-)

commit 198ffe3950e41d5425d9cef0352e951ec088209a
Author: Simón Pena <spenap@gmail.com>
Date:   Mon Aug 9 18:13:25 2010 +0200

    core: Replaced grl-config defines with functions
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/data/grl-config.c |  127 +++++++++++++++++++++++++++++++++++++++++++++++++
 src/data/grl-config.h |   96 ++++---------------------------------
 2 files changed, 136 insertions(+), 87 deletions(-)

commit f6b08a278203875809f44a5ea3e506ad8d2ac386
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Fri Aug 6 00:58:57 2010 +0200

    autogen.sh: remove the ACLOCAL_FLAGS variable
    
    The user can set the ACLOCAL environment variable to override
    the location of the <prefix>/share/aclocal. But the assignation of
    the variable ACLOCAL_FLAGS prevents the override.
    
    This patch also pass the autogen.sh parameters to gnome-autogen.sh.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 autogen.sh |    7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

commit 55613ba239d6571cba100bd1d3af56a63674357b
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Fri Aug 6 00:57:37 2010 +0200

    build: remove unused variable
    
    No functional changes.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 bindings/vala/Makefile.am |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ff6de3017ca8ca17915a933105e8adbf494f5b42
Author: Damien Lespiau <damien.lespiau@intel.com>
Date:   Thu Aug 5 16:50:33 2010 +0100

    core: Default to print warning, critical and error messages only
    
    Grilo is *very* verbose by default. While that's very good to have debug
    messages, printing debug messages by default, especially when it's a
    library, is not a good idea.
    
    This commit makes grilo less verbose by default while keeping the option
    to print debug messages through the GRL_LOG environment variable.
    
    Signed-off-by: Iago Toral Quiroga <itoral@igalia.com>

 src/grilo.c |    3 +++
 1 file changed, 3 insertions(+)

commit e3cb89aca099d7009c014d49443ffbfb6d7db1e9
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Sun Jul 18 11:37:38 2010 +0200

    grilo.h: the config.h shall never be exposed to the API.
    
    The config.h is a helper for the library compilation. It is _NOT_
    part of the API offered by the library.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 src/grilo.h |    6 ------
 1 file changed, 6 deletions(-)

commit 7c245ee8baf882c21a4bbc818342371622a07a55
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Mon Jul 19 19:46:17 2010 +0200

    vala: grl_init in vapi
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 bindings/vala/grilo-0.1.metadata |    2 ++
 tools/vala/grilo-test.vala       |    1 +
 2 files changed, 3 insertions(+)

commit 609fb9c50e56716b1e9f0d3ad2d760bfba3c79da
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Sun Jul 18 00:12:49 2010 +0200

    vala: new vapi generation machinery
    
    Following this scheme[1], the vapi generation now is fully
    automatic.
    
    Besides, for sake of a correct compilation, further changes
    were done:
    
    + As the vapi file is autogenerated with the uninstalled files, the
      vapi must be generated before the vala test is compiled.
    
    + Set the ellipsis property to grl_list_from_va()
    
    + Add more custom code into the vapi. This is a _bad_ symptom, because it
      means more diverging from the normal gobject code style.
    
    + Fix the vala test according to the new custom code.
    
    1. http://git.collabora.co.uk/?p=user/edward/gst-convenience.git;a=blob;f=vala/Makefile.am
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 Makefile.am                                   |    2 +-
 bindings/vala/Makefile.am                     |   72 +-
 bindings/vala/grilo-0.1-custom.vala           |  103 +++
 bindings/vala/grilo-0.1.metadata              |    9 +
 bindings/vala/grilo-0.1.vapi                  |  510 --------------
 bindings/vala/grilo-0.1/grilo-0.1-custom.vala |   39 --
 bindings/vala/grilo-0.1/grilo-0.1.defines     |    1 -
 bindings/vala/grilo-0.1/grilo-0.1.files       |    3 -
 bindings/vala/grilo-0.1/grilo-0.1.gi          |  932 -------------------------
 bindings/vala/grilo-0.1/grilo-0.1.metadata    |    8 -
 bindings/vala/grilo-0.1/grilo-0.1.namespace   |    1 -
 bindings/vala/grilo-uninstalled.defines       |    1 +
 tools/vala/grilo-test.vala                    |    2 +-
 13 files changed, 183 insertions(+), 1500 deletions(-)

commit f53cd5cba869a3932fd8d46ea8c7cfa47f4afadb
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Sun Jul 18 00:00:51 2010 +0200

    vala: add files template
    
    This new file is going to be used in the new vala vapi generation.
    
    No functional changes yet.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 bindings/vala/grilo-uninstalled.files.in |   13 +++++++++++++
 configure.ac                             |    1 +
 2 files changed, 14 insertions(+)

commit 279277c46960127e9c6d4ccc4333664cfb3604b5
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Sat Jul 17 23:57:13 2010 +0200

    vala: add namespace template
    
    This new file is going to be used in the new vala vapi generation.
    
    No functional changes yet.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 bindings/vala/grilo-uninstalled.namespace.in |    1 +
 configure.ac                                 |    1 +
 2 files changed, 2 insertions(+)

commit ad09925ce38607cb17be28beb38692911c5873f0
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Sat Jul 17 23:50:06 2010 +0200

    Remove ABI to uninstalled pc file
    
    Specify the ABI on uninstalled files makes no sense, because the
    it only has value for the external consumers.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 configure.ac                |    2 +-
 grilo-0.1-uninstalled.pc.in |   14 --------------
 grilo-uninstalled.pc.in     |   14 ++++++++++++++
 3 files changed, 15 insertions(+), 15 deletions(-)

commit 1130f2c802856b4eb60babd98aec88dba1075ac3
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Sat Jul 17 22:54:38 2010 +0200

    configure.ac: check for vala tools
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 configure.ac |   20 ++++++++++++++++++--
 1 file changed, 18 insertions(+), 2 deletions(-)

commit 5739cb2ea4b434f6a86d9f784583994c82b871dc
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jul 19 15:01:51 2010 +0200

    Rename grl_plugin_registry_get_instance()
    
    grl_plugin_registry_get_default() is a more common name.

 bindings/vala/grilo-0.1.vapi              |    2 +-
 bindings/vala/grilo-0.1/grilo-0.1.gi      |    2 +-
 doc/reference/quick-start-using-grilo.xml |    8 ++++----
 src/data/grl-media.c                      |    6 +++---
 src/grilo.c                               |    2 +-
 src/grl-metadata-source.c                 |    4 ++--
 src/grl-multiple.c                        |    2 +-
 src/grl-plugin-registry.c                 |    4 ++--
 src/grl-plugin-registry.h                 |    2 +-
 src/tests/registry.c                      |    4 ++--
 tools/grilo-inspect/grl-inspect.c         |    2 +-
 tools/grilo-test-ui/main.c                |   18 +++++++++---------
 tools/js/testGrilo.js                     |    2 +-
 tools/vala/grilo-test.vala                |    2 +-
 14 files changed, 30 insertions(+), 30 deletions(-)

commit 85a2b88db709bd5073dd2f343bd09cb300b8c2c3
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jul 19 13:58:45 2010 +0200

    core: Get rid of 'const' in return value
    
    const modifier in return values is usually used with strings, not other types.
    
    Get rid of it.

 src/grl-plugin-registry.c |    4 ++--
 src/grl-plugin-registry.h |    8 ++++----
 2 files changed, 6 insertions(+), 6 deletions(-)

commit af2bfe599af3e3e0886c69c40974df8ca9ce3433
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Jul 16 17:56:27 2010 +0200

    core: Close module if it won't be used
    
    Close the module if something fails after opening it, so it is not leaking
    memory.

 src/grl-plugin-registry.c |    3 +++
 1 file changed, 3 insertions(+)

commit cae83df4a62e44207ef8442257c2f55f8c1e8574
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Jul 19 12:21:49 2010 +0200

    core: documentation fixes.

 src/grl-multiple.c |   38 ++++++++++++++++----------------------
 1 file changed, 16 insertions(+), 22 deletions(-)

commit dbcc6cb858dba3e7baf4177080c6804494a96eea
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Jul 16 13:24:13 2010 +0200

    grl-inspect: Print both Plugin and Source information detail
    
    Print custom-defined information fields and all available source information.

 tools/grilo-inspect/grl-inspect.c |   55 ++++++++++++++++++-------------------
 1 file changed, 27 insertions(+), 28 deletions(-)

commit 13782a5ff084c59e9bba7dec0fd38100f7e85126
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Jul 16 13:23:52 2010 +0200

    grl-inspect: Fix leak
    
    Free list of sources.

 tools/grilo-inspect/grl-inspect.c |    1 +
 1 file changed, 1 insertion(+)

commit b3346e81da62872edbb05fd8cb727f3b3926f112
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Jul 16 13:23:14 2010 +0200

    grl-inspect: Introspect sources, not plugins
    
    Actually, grl-inspect is intended to introspect sources, not plugins.

 tools/grilo-inspect/grl-inspect.c |   68 +++++++++++++++++++------------------
 1 file changed, 35 insertions(+), 33 deletions(-)

commit 14f4adf658e13346cb22a9cd8f89e827c040f52a
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Jul 16 13:15:01 2010 +0200

    core: Add function to get a list of defined information keys for a plugin
    
    As plugins can define their own custom information fields, add a new
    grl_media_plugin_get_info_keys() which returns a list with those custom fields
    the user can then query.

 src/grl-media-plugin.c |   23 +++++++++++++++++++++++
 src/grl-media-plugin.h |    2 ++
 2 files changed, 25 insertions(+)

commit a6e1fc80fbd7b4e1caf203452efe0154423cc11a
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Jul 14 10:18:26 2010 +0200

    grl-inspect: Show supported keys

 tools/grilo-inspect/grl-inspect.c |   22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

commit 5a9e6405083844bf74e484c2b5cd76528ee5fa90
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Jul 14 10:00:25 2010 +0200

    grl-inspect: Show supported operations

 tools/grilo-inspect/grl-inspect.c |   31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

commit 9a7c6f340175d6f8be75774eb0c89531cb91c341
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Jul 13 18:56:24 2010 +0200

    grl-inspect: Show the type of plugin
    
    Shows if plugin provides Media or Metadata.

 tools/grilo-inspect/grl-inspect.c |    2 ++
 1 file changed, 2 insertions(+)

commit d045c692413b21273b0e00d00cf509e2447fe0be
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Jul 13 18:38:33 2010 +0200

    grl-inspect: Show information about a set of plugins
    
    Shows information from the plugins specified at command line.

 tools/grilo-inspect/grl-inspect.c |   80 ++++++++++++++++++++++++++++++++-----
 1 file changed, 70 insertions(+), 10 deletions(-)

commit 12e2c91a3c9c310aafb5da5cce257eed74d56056
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Jul 13 09:49:16 2010 +0200

    grl-inspect: Add delay when listing sources
    
    As sources are dynamic, some of them can show up after a period of time.
    
    Add a new parameter to gst-inspect to wait for some seconds before
    introspecting the available sources.

 tools/grilo-inspect/grl-inspect.c |   57 ++++++++++++++++++++++++++++++++-----
 1 file changed, 50 insertions(+), 7 deletions(-)

commit 8ac83a1dd041ca3c9b25d8ea374d5cb32745a66e
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jul 12 19:02:16 2010 +0200

    core: Add library filename to plugin's information

 src/grl-media-plugin.c    |   19 +++++++++++++++++++
 src/grl-media-plugin.h    |    8 ++++++--
 src/grl-plugin-registry.c |    2 ++
 src/grl-plugin-registry.h |    4 +++-
 4 files changed, 30 insertions(+), 3 deletions(-)

commit 37156ef125b9f675e5e228c9ae09ad5c6cc65a92
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jul 12 18:43:02 2010 +0200

    grl-inspect: Add grl-inspect utility
    
    This utility is very similar to gst-inspect: it allows to inspect available
    sources and their features.

 configure.ac                      |    1 +
 tools/Makefile.am                 |    4 ++--
 tools/grilo-inspect/Makefile.am   |   30 +++++++++++++++++++++++
 tools/grilo-inspect/grl-inspect.c |   48 +++++++++++++++++++++++++++++++++++++
 4 files changed, 81 insertions(+), 2 deletions(-)

commit 927c30f42ecbe9e6871eadd6c57543599e13a4c9
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jul 15 14:49:59 2010 +0200

    core: Add synchronous version of grl_metadata_source_set_metadata_sync() function

 src/grl-metadata-source.c |   73 +++++++++++++++++++++++++++++++++++++++++++++
 src/grl-metadata-source.h |    6 ++++
 2 files changed, 79 insertions(+)

commit bf6f126770d9b15d721d1dbe9e98769df59634c2
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jul 15 14:39:56 2010 +0200

    core: Add synchronous version of grl_metadata_source_resolve_sync() function

 src/grl-metadata-source.c |   68 +++++++++++++++++++++++++++++++++++++++++++++
 src/grl-metadata-source.h |    6 ++++
 2 files changed, 74 insertions(+)

commit a0cb88ae84053e345f43da464ef5d25c402d2aba
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jul 15 14:29:37 2010 +0200

    core: Add synchronous version of grl_multiple_search() function

 src/grl-multiple.c |   88 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/grl-multiple.h |    6 ++++
 2 files changed, 94 insertions(+)

commit 141c7e1a9db7ef558e12be97dc951fc0ec20367e
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jul 15 14:22:06 2010 +0200

    core: Externalize helper functions to create synchronous versions
    
    Move out of grl-media-source.c functions and structures used to create
    synchronous functions based on asynchronous ones.
    
    So they can be used by other functions besides GrlMediaSource.

 src/Makefile.am        |    4 +-
 src/grl-media-source.c |  163 +++++++++++++++++++++---------------------------
 src/grl-sync-priv.h    |   37 +++++++++++
 src/grl-sync.c         |   40 ++++++++++++
 4 files changed, 151 insertions(+), 93 deletions(-)

commit 8f485574b04901c7c4ddcad2544e4efed5eee476
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jul 15 13:42:43 2010 +0200

    core: Add synchronous version of grl_media_source_remove() function

 src/grl-media-source.c |   53 ++++++++++++++++++++++++++++++++++++++++++++++++
 src/grl-media-source.h |    5 +++++
 2 files changed, 58 insertions(+)

commit f3c65a98885509643405cb8aa7b28c6e7984b7d5
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jul 15 13:42:17 2010 +0200

    core: Add synchronous version of grl_media_source_store() function

 src/grl-media-source.c |   58 ++++++++++++++++++++++++++++++++++++++++++++++++
 src/grl-media-source.h |    6 ++++-
 2 files changed, 63 insertions(+), 1 deletion(-)

commit cd6eeb03e43b5dcce1877a6a280c6a03f8e13ba3
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jul 15 13:40:52 2010 +0200

    core: Add synchronous version of grl_media_source_query() function

 src/grl-media-source.c |   56 ++++++++++++++++++++++++++++++++++++++++++++++++
 src/grl-media-source.h |    8 +++++++
 2 files changed, 64 insertions(+)

commit 379e3863ff166be8bcf174d0521d0ecadb9aa564
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jul 15 13:40:09 2010 +0200

    core: Add synchronous version of grl_media_source_search() function

 src/grl-media-source.c |   56 ++++++++++++++++++++++++++++++++++++++++++++++++
 src/grl-media-source.h |    8 +++++++
 2 files changed, 64 insertions(+)

commit c5540827245123a0f13db093a0f34502eceaa899
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jul 12 14:07:42 2010 +0200

    core: Add synchronous version of grl_media_source_browse() function

 src/grl-media-source.c |   89 ++++++++++++++++++++++++++++++++++++++++++++++++
 src/grl-media-source.h |    8 +++++
 2 files changed, 97 insertions(+)

commit c5ae7759b267081aca8865e5d1a4e70919e1eebe
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jul 12 14:03:10 2010 +0200

    core: Add synchronous version of grl_media_source_metadata() function
    
    Most of Grilo functions are asynchronous.
    
    But there are some cases, when user do not want to deal with asynchronous
    stuff, that having the appropriate synchronous verison would be useful.
    
    So this patch adds this sychronous version in grl_media_source_metadata() for
    free. This means that plugin author should not worry about dealing with
    synchronous versions of the calls; she just implemement the asynchronous one,
    as usual. Grilo will use this asynchronous version to implement a synchronous
    one over it.
    
    While running grl_media_source_metadata_sync() function, all remaining events
    and idle functions are still functions, so they will be received and executed
    even when waiting for the operation to be completed.

 src/grl-media-source.c |   88 ++++++++++++++++++++++++++++++++++++++++++++++++
 src/grl-media-source.h |    7 ++++
 2 files changed, 95 insertions(+)

commit 25f081efcabeeb6026e6eb2a7822c68d044bcd01
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jul 15 10:16:45 2010 +0200

    grilo-test-ui: Add functions to authorize Flickr access
    
    Instead of being based on an external library, add required code in test-ui
    itself to get frob, token and login link.
    
    Users can take a look at this code to know how to get a valid token.

 configure.ac                      |    5 +-
 tools/grilo-test-ui/Makefile.am   |    4 +-
 tools/grilo-test-ui/flickr-auth.c |  257 +++++++++++++++++++++++++++++++++++++
 tools/grilo-test-ui/flickr-auth.h |   43 +++++++
 tools/grilo-test-ui/main.c        |   26 +---
 5 files changed, 310 insertions(+), 25 deletions(-)

commit 94bdc216e16faca154d5ebdf107822e5cfec0a1e
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Jul 7 17:34:40 2010 +0200

    grilo-test-ui: Ask once for Flickr's authorization

 tools/grilo-test-ui/main.c |    8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

commit ac2c4dc1d535d4cd4f8dd66bd3b5c0d69b92f2e0
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Jul 7 17:27:04 2010 +0200

    grilo-test-ui: Add a menu item to authorize Flickr access

 tools/grilo-test-ui/main.c |   29 +++++++++++++++++++++++------
 1 file changed, 23 insertions(+), 6 deletions(-)

commit d000964df21a64df37aa065b6e2099b2bdc04788
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Jul 7 17:15:19 2010 +0200

    grilo-test-ui: Request Flickr authorization
    
    Shows a window so user can authorize (if it was not done) access to his Flickr
    account.

 configure.ac                    |    5 ++
 tools/grilo-test-ui/Makefile.am |   10 +--
 tools/grilo-test-ui/main.c      |  133 ++++++++++++++++++++++++++++++++++++++-
 3 files changed, 141 insertions(+), 7 deletions(-)

commit 58e6c92be8547b1bd7e1afc89441811d05805d8d
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Jul 6 17:07:27 2010 +0200

    grilo-test-ui: Load Flickr's token from gconf
    
    If user has set up a token in gconf (/apps/grilo-test-ui/auth-token) then it
    will be used.

 configure.ac                    |    7 +++++--
 tools/Makefile.am               |    2 +-
 tools/grilo-test-ui/Makefile.am |    4 ++--
 tools/grilo-test-ui/main.c      |   31 +++++++++++++++++++++++++++++--
 4 files changed, 37 insertions(+), 7 deletions(-)

commit 2317ad79021fca088dd46486c088ea247d65f2c4
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jul 12 10:58:15 2010 +0200

    core: Make grl_media_source_metadata() cancelable
    
    Asynchronous functions should be cancelable.

 src/grl-media-source.c |   28 +++++++++++++++++++++-------
 src/grl-media-source.h |   14 ++++++++------
 2 files changed, 29 insertions(+), 13 deletions(-)

commit 0c725a07a5eac6aea6e5060c3d10f9441611ce5a
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Jul 13 14:08:09 2010 +0200

    core: Fix leak
    
    Free error.

 src/grl-metadata-source.c |    1 +
 1 file changed, 1 insertion(+)

commit 2abcef227c1f03dbb05aa6648b5ee799bc949392
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Jul 13 12:30:00 2010 +0200

    core: Annotate GrlMetadataSetMetadataCb
    
    Fix a problem with gobject-introspection 0.9.3.

 src/grl-metadata-source.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ff2a0209df3fcbf5ecfa128dcca337cd5383aeb5
Author: Joaquim Rocha <jrocha@igalia.com>
Date:   Tue Jun 15 19:04:16 2010 +0200

    grl-plugin-registry.c: Use the plugin conf dir and the plugin's ID to get its XML

 src/grl-plugin-registry.c |   29 +++++------------------------
 1 file changed, 5 insertions(+), 24 deletions(-)

commit ab1a42f028ab2b9029cce6d0d9b5572efaca5beb
Author: Joaquim Rocha <jrocha@igalia.com>
Date:   Tue Jun 15 19:03:21 2010 +0200

    Add plugins' configuration directory from autotools

 configure.ac    |    9 +++++++++
 src/Makefile.am |    2 ++
 2 files changed, 11 insertions(+)

commit ed7b6ad215bfcc7d87449517f4f59e75349b6630
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jul 12 11:10:31 2010 +0200

    core: Rename function to get operation id
    
    Previously it was making reference to browse, while actually it would make
    reference to more abstract "operation".

 src/grl-media-source.c |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit 880ad3d1ab6f70ef26916b8fefe0f9aabc9c0159
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jul 12 10:24:06 2010 +0200

    core: Rename browse_id to operation_id
    
    Actually, browse_id can be an identifier for browse, search or query.
    
    So operation_id makes more sense.

 src/grl-media-source.c |    4 ++--
 src/grl-media-source.h |    8 ++++----
 2 files changed, 6 insertions(+), 6 deletions(-)

commit 503afdfa9beb8c572c612a92277872df261770d3
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Jul 12 10:16:53 2010 +0200

    Required version of automake is 1.10.
    Fixes #620143

 autogen.sh |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b8899ba55ae1f4c5c4edb8d060dd8aefbb007dfd
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jul 8 11:20:26 2010 +0200

    Fix documentation typos

 src/grl-media-source.c |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit ac5f23484a1cf9c56a5ef8d9fdbc67110d6589b7
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jul 8 11:18:30 2010 +0200

    Comment grl_multiple_cancel() function

 src/grl-multiple.c |   14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

commit da41c19bf714f37df4d40db068f81fa870e0c253
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jul 8 11:18:12 2010 +0200

    Comment grl_multiple_search() function

 src/grl-multiple.c |   17 +++++++++++++++++
 1 file changed, 17 insertions(+)

commit 2d8d2c847bdb2267a5242183f50e53259bdde84f
Author: Simón Pena <spenap@gmail.com>
Date:   Wed Jul 7 18:12:43 2010 +0200

    doc: Corrected obsolete tags
    
    * Removed tags no longer used
    * Renamed tags "left behind", not up to date to the code

 src/data/grl-media.h      |    2 +-
 src/grl-plugin-registry.c |    2 +-
 src/grl-plugin-registry.h |   12 ------------
 3 files changed, 2 insertions(+), 14 deletions(-)

commit c3999a473482db2ed5ef0f48eac76068d4393c1e
Author: Simón Pena <spenap@gmail.com>
Date:   Wed Jul 7 18:12:42 2010 +0200

    doc: Minor corrections
    
    Corrected some typos and repeated words

 doc/reference/quick-start-using-grilo.xml |    8 ++++----
 src/data/grl-media.h                      |    2 +-
 src/grl-plugin-registry.c                 |    6 +++---
 src/grl-plugin-registry.h                 |    4 ++--
 4 files changed, 10 insertions(+), 10 deletions(-)

commit 012f572e83213de59bb5fe718b72dc3c18d0cb8a
Author: Simón Pena <spenap@gmail.com>
Date:   Wed Jul 7 18:12:41 2010 +0200

    doc: Added grl_init call
    
    Replaced g_type_init with grl_init in the examples provided

 doc/reference/quick-start-using-grilo.xml |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 8b01b7aae15f2123b16eb65ad6bdbff26013d557
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jul 5 17:16:26 2010 +0200

    Remove Flickr's token
    
    Actually, we do not require to authenticate Flickr to use it.

 tools/grilo-test-ui/main.c |    2 --
 1 file changed, 2 deletions(-)

commit 9fa85828fa5cc4f6041fabbc0b231d173ad1c4c6
Author: iain <iain@linux.intel.com>
Date:   Mon Jul 5 14:16:49 2010 +0200

    keys: Add extra system metadata keys
    
    Add certificate, studio and license metadata keys.

 src/data/grl-media.h   |   63 ++++++++++++++++++++++++++++++++++++++++++++++++
 src/grl-metadata-key.c |   28 +++++++++++++++++++++
 src/grl-metadata-key.h |   41 ++++++++++++++++---------------
 3 files changed, 113 insertions(+), 19 deletions(-)

commit 4a74f0a7380a696e4c0766848dde1779e56ac985
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Jul 5 13:53:01 2010 +0200

    grilo-test-ui: Added debug traces for metadata values (useful when testing
    URLs).

 tools/grilo-test-ui/main.c |    1 +
 1 file changed, 1 insertion(+)

commit b580c9220d8b5094543bdee09cfacfd091464c56
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Jul 5 13:50:47 2010 +0200

    core: added GRL_METADATA_KEY_EXTERNAL_URL and GRL_METADATA_KEY_EXTERNAL_PLAYER

 src/data/grl-media.h   |   42 ++++++++++++++++++++++++++++++++++++++++++
 src/grl-metadata-key.c |   19 +++++++++++++++++++
 src/grl-metadata-key.h |    2 ++
 3 files changed, 63 insertions(+)

commit 32adada6ab09c8622a94c08bc6fc80ebcfe2a607
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Jul 2 13:23:18 2010 +0200

    Remove flickr FROB key
    
    It is unused.

 tools/grilo-test-ui/main.c |    1 -
 1 file changed, 1 deletion(-)

commit a6d3c05ed90c84bffee0c5d36655db98f3d03abf
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Jul 2 13:17:08 2010 +0200

    Add function to get a GList from a varadic list of pointers
    
    grl_metadata_key_list_new() is defined as a macro for this function.
    
    It can be useful to create quickly a list of sources, metadata keys, etc.

 src/grl-metadata-key.c |   18 ------------------
 src/grl-metadata-key.h |   14 ++++++--------
 src/grl-util.c         |   26 ++++++++++++++++++++++++++
 src/grl-util.h         |    2 ++
 4 files changed, 34 insertions(+), 26 deletions(-)

commit 323b139d8bef1c05b68ce9667750ad82519e22c5
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jun 17 16:55:26 2010 +0200

    Add utility for services needing page_size + page_number
    
    Grilo relies in offset + count to make pagination.
    
    But there are services like Jamendo that needs the page_number and size of
    page.
    
    For these cases, a new utility function helps user to compute page_number and
    offset inside the page where she needs to start looking for data. Also it
    returns an "optimal" value for page size. This optimal value is the minimum
    page size needed to retrieve the data in just one query to backend.

 src/Makefile.am |    5 ++--
 src/grilo.h     |    1 +
 src/grl-util.c  |   85 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/grl-util.h  |   43 ++++++++++++++++++++++++++++
 4 files changed, 132 insertions(+), 2 deletions(-)

commit 9d0ad39ebe41ac4e1bff84cee1354b4b8474e262
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jun 17 08:57:49 2010 +0200

    Allow for empty values when unserializing data
    
    It is possible that user serializes, partially or fully, a key with an empty
    string.
    
    In this case, unserialization should recover that value.

 src/data/grl-media.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 6c5ecbda5a3bcdb3432874edb9321b955a72ad94
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Jun 15 18:57:52 2010 +0200

    Check media when resolving key dependencies
    
    When requesting metadata() for a media, it could be possible that one of the
    requested keys depends on another key which value is already set in media
    (because a previous operation already set it, or because client set it
    manually).
    
    In this case, we can consider that the requested key can be satisfied, so it is
    not needed to check if the dependent key can be provided by any source.

 src/grl-media-source.c         |   11 ++++-------
 src/grl-metadata-source-priv.h |    1 +
 src/grl-metadata-source.c      |   39 ++++++++++++++++++++++++++++++++-------
 3 files changed, 37 insertions(+), 14 deletions(-)

commit 7088acd9e63105c66a3b560f07907b4de67be3a0
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Jun 15 16:59:13 2010 +0200

    Update gtk-doc
    
    grl_metadata_source_key_depends() returns NULL if source is not able to resolve
    the key.

 src/grl-metadata-source.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit fad9f6572b34927426b84959d96863ee5eff2fa4
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Jun 15 14:22:04 2010 +0200

    Fix doc typo

 src/grl-metadata-source.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 435c29dfe8326ea2492f3c9b1f578b2515a2b7a0
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Jun 15 13:34:12 2010 +0200

    Print key name when debugging
    
    It is more clear than printing the key id.

 src/grl-metadata-source.c |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 1e0cf1d30016ca9acb731b8d1cd3862c2c1b6abf
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Tue Jun 15 12:47:06 2010 +0200

    core: fixed memory leak.

 src/grl-multiple.c |    2 ++
 1 file changed, 2 insertions(+)

commit 7afcd8adf6310cbed3b87e274eb9ddab19a44b6c
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Tue Jun 15 11:38:51 2010 +0200

    test-ui: Adapted to changes in grl_multiple_search API.

 tools/grilo-test-ui/main.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit e8198c09e89fc3683887f8e7e785eea690ccf48e
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Tue Jun 15 11:38:06 2010 +0200

    core: Let grl_multiple_search() admit a list of target sources
    core: Added explanatory comments to the code implementing grl_multiple_search()

 src/grl-multiple.c |   79 +++++++++++++++++++++++++++++++++++-----------------
 src/grl-multiple.h |    3 +-
 2 files changed, 56 insertions(+), 26 deletions(-)

commit 2d9287eb8f12429e02f9826ddb839b62b5e6b7da
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Jun 15 10:21:24 2010 +0200

    Initialize GLib type system

 src/grilo.c |    3 +++
 1 file changed, 3 insertions(+)

commit e31da4b15ffa6a9a4c2581442754e30766a3fed4
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Jun 15 10:18:40 2010 +0200

    Return Grilo Option group
    
    Add a function to get the GOptionGroup with generic options for Grilo.
    
    This group can be added to default application options.

 src/grilo.c |   34 +++++++++++++++++++++-------------
 src/grilo.h |    4 ++++
 2 files changed, 25 insertions(+), 13 deletions(-)

commit c668fdb55522aeada6f692d7b8ea428774a8294c
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Jun 14 16:14:51 2010 +0200

    [core] Changed multiple search implementation so that we guarantee
    we emit as many results as requested (when possible).

 src/grl-multiple.c |  360 +++++++++++++++++++++++++++++++++++++++-------------
 1 file changed, 275 insertions(+), 85 deletions(-)

commit 320d41467a7c46b171a7e8c872f1c353c1ce3ed6
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Jun 14 16:14:20 2010 +0200

    [test-ui] Fixed compilation warning

 tools/grilo-test-ui/main.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit dcbf9c765a7adbbb59990cad8f7a7d7325e2216b
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Wed Jun 2 10:39:22 2010 +0200

    [core] Revert changes to make grl_media_source_gen_browse_id protected.
    This is not needed any more.

 src/Makefile.am             |    3 +--
 src/grl-media-source-priv.h |   41 -----------------------------------------
 src/grl-media-source.c      |   18 ++++++++++--------
 src/grl-multiple.c          |    1 -
 4 files changed, 11 insertions(+), 52 deletions(-)

commit 01c0ffc875a6482b85c47d03d4718b1c2a4705a5
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Wed Jun 2 10:19:37 2010 +0200

    [test-ui] Call grl_multiple_cancel to cancel multiple search operations.

 tools/grilo-test-ui/main.c |   33 ++++++++++++++++++++-------------
 1 file changed, 20 insertions(+), 13 deletions(-)

commit b4f8f0708fe0a1e86129fdef4ebd2ba8d0830ab9
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Wed Jun 2 10:18:55 2010 +0200

    [core] Added grl_multiple_cancel

 src/grl-multiple.c |   99 ++++++++++++++++++++++++++++++++++++++++++++++++----
 src/grl-multiple.h |    2 ++
 2 files changed, 94 insertions(+), 7 deletions(-)

commit 1bb329c995c1407aafc5a6c7b7e2ae55a2572c8c
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Wed Jun 2 08:51:19 2010 +0200

    [core] Handle "no searchable sources available" situation in grl_multiple_search

 src/grl-multiple.c |   46 ++++++++++++++++++++++++++++++++++++++++++----
 1 file changed, 42 insertions(+), 4 deletions(-)

commit 07103d869948ecfd063bbd3d631cf02790541cc4
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Wed Jun 2 08:27:51 2010 +0200

    [core] Removed trailing whitespaces

 src/grl-multiple.c         |    8 ++++----
 tools/grilo-test-ui/main.c |    1 -
 2 files changed, 4 insertions(+), 5 deletions(-)

commit 46e8997b17f502462856af9a52aa68c09e9d4756
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Tue Jun 1 17:01:03 2010 +0200

    [test-ui] Fixed leaks because of unnecesary string duppings.

 tools/grilo-test-ui/main.c |    7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

commit 130786857b858fb7dade241cd1b80613ecc38f85
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Tue Jun 1 16:59:09 2010 +0200

    [test-ui] Added support for multiple search()

 tools/grilo-test-ui/main.c |   39 +++++++++++++++++++++++++++++++--------
 1 file changed, 31 insertions(+), 8 deletions(-)

commit 91de9cbd997dd7f0c7aa3e7bc0daccccfaaade25
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Tue Jun 1 16:49:55 2010 +0200

    [core] Added preconditions to grl_multiple_search

 src/grl-multiple.c |    4 ++++
 1 file changed, 4 insertions(+)

commit a40860c02ce4b1dd963346bca1a5a9d9df46f311
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Tue Jun 1 16:46:34 2010 +0200

    [core] Added grl_multiple_search API.

 src/Makefile.am    |    4 +-
 src/grilo.h        |    1 +
 src/grl-multiple.c |  157 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/grl-multiple.h |   42 ++++++++++++++
 4 files changed, 203 insertions(+), 1 deletion(-)

commit f41e11180b3867c017f20bb2330ec52404949157
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Tue Jun 1 16:44:52 2010 +0200

    [core] Make grl_media_source_gen_browse_id protected

 src/Makefile.am             |    6 ++++--
 src/grl-media-source-priv.h |   41 +++++++++++++++++++++++++++++++++++++++++
 src/grl-media-source.c      |    5 +----
 3 files changed, 46 insertions(+), 6 deletions(-)

commit 90514bc716d4b1f225ceeb80f7d3fc9b66d1b016
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Tue Jun 1 16:40:44 2010 +0200

    [core] Do not setup auto-split when count is lower than threshold
    in search and query opeations.

 src/grl-media-source.c |   14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

commit 9ef33e93cf62eb89fe555e065f6698c063a61b86
Author: Joaquim Rocha <jrocha@igalia.com>
Date:   Fri Jun 11 21:38:24 2010 +0200

    Print debug info from plugins

 tools/grilo-test-ui/main.c |    7 +++++++
 1 file changed, 7 insertions(+)

commit 5286d2f8e7c60106b63050a0acdaf3d6bb41b412
Author: Joaquim Rocha <jrocha@igalia.com>
Date:   Fri Jun 11 21:38:23 2010 +0200

    Add finalize function to GrlMediaPlugin

 src/grl-media-plugin.c |   19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

commit 0e8616a2466b4026ca285c12402e8d989e1162ad
Author: Joaquim Rocha <jrocha@igalia.com>
Date:   Fri Jun 11 21:38:22 2010 +0200

    Use grl_media_plugin_get_info to retrieve default info
    
    Uses the mentioned function when retrieving the author, description,
    license and site and moves them to the header file as defines.

 src/grl-media-plugin.c |   97 ------------------------------------------------
 src/grl-media-plugin.h |   79 +++++++++++++++++++++++++++++++++++----
 2 files changed, 72 insertions(+), 104 deletions(-)

commit 13d9986564209ffaa79115d19106109307f9ec7c
Author: Joaquim Rocha <jrocha@igalia.com>
Date:   Fri Jun 11 21:38:21 2010 +0200

    Add grl_media_plugin_get_info and plugin's keys defines
    
    The grl_media_plugin_get_info retrieves the optional info from the plugin,
    which correspond's to the plugin's XML.

 src/grl-media-plugin.c |   21 +++++++++++++++++++++
 src/grl-media-plugin.h |   12 ++++++++++++
 2 files changed, 33 insertions(+)

commit b4998b0f6b7016a9a446d85916c068a480bc2919
Author: Joaquim Rocha <jrocha@igalia.com>
Date:   Fri Jun 11 21:38:20 2010 +0200

    Get plugins' info from XML file
    
    Builds the XML from the library name and parses it to retrieve the
    plugin's info.

 src/grl-plugin-registry.c |   80 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 80 insertions(+)

commit f05711dcee0c27ce934a4b2236d8cc3f62f31ae2
Author: Joaquim Rocha <jrocha@igalia.com>
Date:   Fri Jun 11 21:38:19 2010 +0200

    Use a hashtable for plugins' info
    
    Removes the usage of strings in the GrlPluginInfo struct (apart from the id)
    and adds a hashtable for that purpose.
    
    Also removes the check for the plugin's name when loading it since the name
    is now optional.

 src/grl-plugin-registry.c |    3 +--
 src/grl-plugin-registry.h |   28 +++++-----------------------
 2 files changed, 6 insertions(+), 25 deletions(-)

commit 097e84fa4ad676c9bd45364ae2f01a7157b20784
Author: Joaquim Rocha <jrocha@igalia.com>
Date:   Fri Jun 11 21:38:18 2010 +0200

    Add libxml-2.0 dependency

 configure.ac |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 1211b258fe8129e24bbae65793184269be40f0b5
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jun 10 18:44:53 2010 +0200

    Move g_module_supported() to grl_init()
    
    All requirements should be checked in grl_init().

 src/grilo.c               |    5 +++++
 src/grl-plugin-registry.c |    4 ----
 2 files changed, 5 insertions(+), 4 deletions(-)

commit dbc3bac313a8b6e0c435c2edac452153b94e78aa
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jun 10 18:40:48 2010 +0200

    Add Grilo command-line options
    
    Allow all Grilo-based applications to receive command-line options affecting
    Grilo.
    
    Right now, there is just one option: --grl-plugin-path. It allows to set the
    default plugins dir, and overrides the GRL_PLUGIN_PATH envvar.

 src/grilo.c |   34 +++++++++++++++++++++++++++++-----
 1 file changed, 29 insertions(+), 5 deletions(-)

commit 18e08afebc60a225c881e304955b19c37bf56991
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jun 10 17:04:58 2010 +0200

    Set default plugin directories in grl_init()
    
    Added a function to registry, grl_plugin_registry_add_directory(), to add a
    directory to default list of directoies where grl_plugin_registry_load_all()
    will look when loading plugins.
    
    In this patch, grl_plugin_load_all() does not have any "default" plugins
    directory. Instead, grl_init() will use grl_plugin_registry_add_directory() to
    specify the list of directories.
    
    These are obtained first from GRL_PLUGIN_PATH envvar if defined, and if not
    then using the default plugin directory.
    
    Developers can add more directories just invoking
    grl_plugin_registry_load_all() after initialized Grilo.

 src/grilo.c               |   18 +++++++++++++++++
 src/grl-plugin-registry.c |   47 ++++++++++++++++++++++++++-------------------
 src/grl-plugin-registry.h |    3 +++
 3 files changed, 48 insertions(+), 20 deletions(-)

commit 9696f6dfd8a95548ebc98d7144d87fe00d1cf5ac
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jun 10 14:22:07 2010 +0200

    Add grl_init() function
    
    It initializes all stuff required in Grilo.
    
    More specifically:
    
      - It registers default metadata keys in the registry.
      - It registers grilo media types in glib type-system.

 src/Makefile.am            |    2 +-
 src/grilo.c                |   50 ++++++++++++++++++++++++++++++++++++++++++++
 src/grilo.h                |    6 ++++++
 src/grl-plugin-registry.c  |    2 --
 tools/grilo-test-ui/main.c |    1 +
 5 files changed, 58 insertions(+), 3 deletions(-)

commit ecf9bf4a6405915c5211636ec7d1801b043df714
Author: Joaquim Rocha <jrocha@igalia.com>
Date:   Fri Jun 11 10:36:30 2010 +0200

    Add verifications to the beginning of functions

 src/grl-plugin-registry.c |   21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

commit 10398b269480ab67e0712e305d3d06ad3f2774a4
Author: Joaquim Rocha <jrocha@igalia.com>
Date:   Fri Jun 11 10:36:29 2010 +0200

    Add verifications to the beginning of functions

 src/grl-metadata-source.c |    7 +++++++
 1 file changed, 7 insertions(+)

commit e8745b4c0c2fad8ae6d747f2253a08f29296b89c
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jun 10 12:13:16 2010 +0200

    Fix serialize() for root categories
    
    So far, serialization required that GrlMedia had an ID. But root categories do
    have ID==NULL, so they could not be serialized.
    
    Fix it by allowing serialization (and unserialization too) for medias with
    ID==NULL.

 src/data/grl-media.c |   62 +++++++++++++++++++++++---------------------------
 1 file changed, 28 insertions(+), 34 deletions(-)

commit 39012c578c89b967bdd0c23ed60afd8fd4605a3e
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jun 7 17:04:45 2010 +0200

    Check if key is NULL
    
    Add some checkpoints in GrlData functions to be sure key is not NULL.

 src/data/grl-data.c |    3 +++
 1 file changed, 3 insertions(+)

commit e6a4ed06158a3948a600889a9ce999e09a21d34a
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jun 7 17:01:19 2010 +0200

    Check that value has expected type defined in key specification

 src/data/grl-data.c |   14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

commit c270e0a59371336be1389837be201305d5b3c5f0
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jun 7 15:32:20 2010 +0200

    Adjust key value accordingly to the key specification

 src/data/grl-data.c |    8 ++++++++
 1 file changed, 8 insertions(+)

commit fc2f71ce9d239ab0f77bd8b32ac37db12ddb6a08
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jun 7 14:15:17 2010 +0200

    Refactor grl_media_unserialize()
    
    Use the new metadata key system to find out which type should be used for each
    key.

 src/data/grl-media.c   |   60 +++++++++++++++++++-----------------------------
 src/grl-metadata-key.h |    1 +
 2 files changed, 24 insertions(+), 37 deletions(-)

commit 7cae09b7683555d9718fbed13edc241758581643
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jun 7 10:22:44 2010 +0200

    [core] Rework metadata key system
    
    One of the initial goals of Grilo was that metadata keys should be dynamic:
    besides having a pre-defined set of keys, both users and plugin's developers
    should be able to add their own keys. So far, this goal was not addressed
    properly.
    
    The aim of this patch is that users/developers can add their own keys while
    keeping one of the key features of current system: comparing keys must be quick
    (this is how string-based keys were discarded).
    
    In previously system, GrlKeyID were just numbers; in the new one, GrlKeyID are
    pointers to GParamSpec. Being pointers, means that comparison can be done
    quickly.
    
    What are the main changes?
    
    - No need for GRLKEYID_TO_POINTER / POINTER_TO_GRLKEYID: keys can be added
      directly to GLists.
    - grl_plugin_registry_lookup_metadata_key() changed: returns the GrlKeyID with
      name specified.
    - GRL_METADATA_KEY_FOO are still kept, but now they are variables instead of
      definitions.
    - No need for GrlMetadataKey: GrlKeyID has the required data. Thus
      GRL_METADATA-KEY_GET_{NAME/ID/DESC} require a GrlKeyID.
    - Added grl_plugin_registry_register_metadata_key (): registers a new key in
      the system. Key is built as a GParamSpec.

 src/Makefile.am             |    9 +-
 src/data/grl-data.c         |   15 ++-
 src/data/grl-media.c        |   37 +++-----
 src/grl-metadata-key-priv.h |   32 +++++++
 src/grl-metadata-key.c      |  214 ++++++++++++++++++++++++++++++++++++++++++-
 src/grl-metadata-key.h      |  142 +++++++---------------------
 src/grl-metadata-source.c   |   33 +++----
 src/grl-plugin-registry.c   |  111 +++++++++++-----------
 src/grl-plugin-registry.h   |    7 +-
 tools/grilo-test-ui/main.c  |    8 +-
 10 files changed, 379 insertions(+), 229 deletions(-)

commit 596aac2525699603b09b9aa09147704f0aab4be8
Author: Xabier Rodriguez Calvar <xrcalvar@igalia.com>
Date:   Tue Jun 8 11:50:32 2010 +0200

    [test-ui] Fixed horizontal scroll of metadata view

 tools/grilo-test-ui/main.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 70ccf52bdb9e3671c4b538e567d22f11f9b10452
Author: Xabier Rodriguez Calvar <xrcalvar@igalia.com>
Date:   Tue Jun 8 11:50:09 2010 +0200

    [test-ui] Fixed horizontal scroll of media list

 tools/grilo-test-ui/main.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 1d7ed85c8fc00d2841fac4c6b687080165cd7d08
Author: Xabier Rodriguez Calvar <xrcalvar@igalia.com>
Date:   Tue Jun 8 10:45:32 2010 +0200

    [test-ui] Replaced hbox with hpaned
    
    Now we can move bar between both panels.

 tools/grilo-test-ui/main.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f7c347492782d61a54ddd798db882fdc067fad9b
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jun 7 19:53:10 2010 +0200

    [test-ui] Show all available metadata keys

 tools/grilo-test-ui/main.c |   26 +++++++++-----------------
 1 file changed, 9 insertions(+), 17 deletions(-)

commit d6dc9e78c10b452c3c762a4bcb845670f84cf5d5
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jun 3 21:23:56 2010 +0200

    Use GRL_KEYID_FORMAT when printing a key
    
    Do not force to a specific format (in this case, to %u), but use
    GRL_KEYID_FORMAT instead.

 src/grl-metadata-source.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 0e20cd0309fb42b217bafd31e2df1d7a881f9089
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Jun 1 12:37:18 2010 +0200

    Use different serializations approaches
    
    When using grl_media_serialize_extended() function, three different approaches
    to perform serialization can be specified:
    
    - GRL_MEDIA_SERIALIZE_BASIC: it just uses "id" and "source" to serializes the
      media. Remaining properties are ignored (equivalent to old invocation
      grl_media_serialize (media, FALSE)).
    
    - GRL_MEDIA_SERIALIZE_FULL: it uses all properties in media to serialize
      (equivalent to old invocation grl_media_serialize (media, TRUE)).
    
    - GRL_MEDIA_SERIALIZE_PARTIAL: it uses "id", "source", and a subset of
      properties to serialize media. Remaining properties are ignored. It requires
      a third parameter to specify a list of properties to be used.
    
         GList *keylist = grl_metadata_key_list_new (GRL_METADATA_KEY_TITLE,
                                                     GRL_METADATA_KEY_URL,
                                                     NULL);
         gchar *serial = grl_media_serialize (media,
                                              GRL_MEDIA_SERIALIZE_PARTIAL,
                                              keylist);
         g_list_free (keylist)

 src/data/grl-media.c |  135 +++++++++++++++++++++++++++++++-------------------
 src/data/grl-media.h |    9 +++-
 2 files changed, 91 insertions(+), 53 deletions(-)

commit f4a89f9d61b865724d018fb9f218ead8c7f29545
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Jun 1 12:06:59 2010 +0200

    Add grl_media_serialize_extended() function.
    
    This is the function that actually will perform serialization.
    
    grl_media_serialize() is just a wrapper that makes a basic serialization (just
    taking in account both source and id properties, getting rid of remaining
    properties).

 src/data/grl-media.c |   20 ++++++++++++++++++--
 src/data/grl-media.h |    5 ++++-
 2 files changed, 22 insertions(+), 3 deletions(-)

commit 23bb8039f928b73d06744d5f24a56c54c6008589
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Jun 1 11:42:25 2010 +0200

    Use get_metadata_keys() in serialize/unserialize
    
    Use the new function to get all available keys.

 src/data/grl-media.c |   53 +++++++-------------------------------------------
 1 file changed, 7 insertions(+), 46 deletions(-)

commit 65914148e1a5d7a6ce2493b47ffe6920b82bf90b
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Jun 1 11:41:33 2010 +0200

    Add get all registered keys function
    
    This new function allows to get all available registered keys from registry.

 src/grl-plugin-registry.c |   21 +++++++++++++++++++++
 src/grl-plugin-registry.h |    2 ++
 2 files changed, 23 insertions(+)

commit 6df70b83f518aa5d66d8a65b258df6d8744e1b53
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu May 27 19:55:14 2010 +0200

    Document serialize() / unserialize() functions

 src/data/grl-media.c |   19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

commit 7922a67f2f13b129610cfa192401f35932644dd2
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu May 27 17:46:58 2010 +0200

    Unserialize all properties
    
    This commit improves the previous version of unserialize() function.
    
    Now, if the uri provided contains also properties, then they are added to the
    media.

 src/data/grl-media.c |  101 +++++++++++++++++++++++++++++++++++++++++++++++---
 1 file changed, 96 insertions(+), 5 deletions(-)

commit 5063c4e2cee62a037c6a8e50c0e88dc80784ebba
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue May 25 20:05:53 2010 +0200

    Serialize all properties
    
    This is an improvement in serialize() function.
    
    It allows to specify if serializing should include also all media properties.
    
    Thus, when unserializing it all properties can be recovered in the media, and
    not only "id" and "source".

 src/data/grl-media.c |   83 ++++++++++++++++++++++++++++++++++++++++++++------
 src/data/grl-media.h |    3 +-
 2 files changed, 74 insertions(+), 12 deletions(-)

commit da61ca03905fd367c3b236bd8424cf24c2e5a2e8
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue May 25 16:41:55 2010 +0200

    Do not use whitespaces in key names

 src/grl-metadata-key.h |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 6cfb99470a4ef658b55907108f90dc55f129ac41
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue May 25 16:21:24 2010 +0200

    Add unserialize() function
    
    This function rebuilds a Grilo Media from a URI.
    
    See grl_media_serialize() for more information.

 src/data/grl-media.c |   69 ++++++++++++++++++++++++++++++++++++++++++++++++++
 src/data/grl-media.h |    2 ++
 2 files changed, 71 insertions(+)

commit 896c38c83ba27fba79ad73a52fb21f705e5ad481
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue May 25 13:20:21 2010 +0200

    Add a serializing function for medias
    
    It returns a string that represent a media.
    
    Lot of times, having a "serialized" version of a media is very useful. For
    instance, one can save this serial in a list, or send it to a non-grilo
    compliant application.
    
    Then, the media can be recovered from the serial.
    
    Serial follows the same scheme as an URI:
    
      <type>://<escaped_source_name>/<escaped_id>
    
    As it can be seen, both "id" and "source" are required in media in order to
    build the serial.
    
    <type> denotes the type of media we are dealing with. Thus, we will have:
    
       GrlMedia      => "grl"
       GrlMediaAudio => "grlaudio"
       GrlMediaVideo => "grlvideo"
       GrlMediaBox   => "grlbox"
       GrlMediaImage => "grlimage"
    
    It is worth to tell that the implementation takes in account future new medias.
    Thus, if in future a GrlMediaFoo type is added, then <type> will be "grlfoo"
    for this new media, without needing changes in code.

 src/data/grl-media.c |   35 +++++++++++++++++++++++++++++++++++
 src/data/grl-media.h |    3 +++
 2 files changed, 38 insertions(+)

commit ebec3aac22a7edb65cff4ae90a7d94fe3e83ef08
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon May 31 11:01:25 2010 +0200

    [test-ui] Request media description

 tools/grilo-test-ui/main.c |    1 +
 1 file changed, 1 insertion(+)

commit 7e1a75c1bd91495755c620c55dad8ef8ad681cfb
Author: Eduardo Lima Mitev <elima@igalia.com>
Date:   Thu Apr 29 15:09:29 2010 +0200

    Changes gir/typelib prefix from Grilo to Grl
    
    Partially fixes GB#616961.

 src/Makefile.am       |   12 ++++++------
 tools/js/testGrilo.js |   14 +++++++-------
 2 files changed, 13 insertions(+), 13 deletions(-)

commit 6887f041e9807581903b48651d75b884a1e6ea9d
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed May 12 11:49:06 2010 +0200

    Use autosplit only if user is requesting more elements than autosplit threshold

 src/grl-media-source.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 3ac33270ff3303d770a4bf692994ce225cd28381
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri May 7 20:03:30 2010 +0200

    Include silent macro in extra dist

 Makefile.am |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ba3cdb6dd767bdd30145ad93aec17639bc77e19a
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri May 7 09:38:36 2010 +0200

    Bumped to version 0.1.5

 NEWS         |   13 +++++++++++++
 configure.ac |    2 +-
 2 files changed, 14 insertions(+), 1 deletion(-)

commit 06d5078beb261815ee8058c350a2e47d8f078667
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri May 7 18:20:22 2010 +0200

    Add silent.m4 macro
    
    Some old distributions, as Ubuntu Jaunty, do not have this macro file.

 m4/silent.m4 |   27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

commit 2eb841ddda2ec27645e15aed986bdaa92530e35b
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri May 7 13:35:04 2010 +0200

    [tests] Check allowed errors when invoking registry_load_all() method
    
    Some warnings when loading all plugins should be allowed in the test. Mainly,
    when a directory does not contain any plugin or when a plugin is not provided
    with a required configuration.
    
    In these cases, test should not fail.

 src/tests/registry.c |   22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

commit 40c6943c8635c7266b7e0ff971424db8efb51c01
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Fri Apr 30 16:49:32 2010 +0200

    [test-ui] Add Vimeo config

 tools/grilo-test-ui/main.c |   34 +++++++++++++++++++++++++++++++---
 1 file changed, 31 insertions(+), 3 deletions(-)

commit 2ad7ba7971ababf8fd9d2da6286fe6b3e2d7bb0a
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Mon Apr 26 01:45:41 2010 +0200

    [build] add m4 directory
    
    Follow the m4 directory configuration recommendation
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 Makefile.am |    2 ++
 1 file changed, 2 insertions(+)

commit 8bd2ff6afae472cae97a969f2bafa7d267bf0c5b
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Mon Apr 26 11:47:12 2010 +0200

    configure.ac: remove unused macros
    
    And follow the recommendations from
    http://live.gnome.org/GnomeGoals/ModernAutotools
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 configure.ac |   26 +++++++++++---------------
 1 file changed, 11 insertions(+), 15 deletions(-)

commit f8ca2fdf13c0ecfb2967f8b9e5301b600168056f
Author: Xabier Rodriguez Calvar <xrcalvar@igalia.com>
Date:   Fri Apr 23 17:16:40 2010 +0200

    [core] Create null GValue when setting null to grl_data_set_string

 src/data/grl-data.c |   14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

commit f1969a7e8254c555db3fe4c1defd89d902718306
Author: Xabier Rodriguez Calvar <xrcalvar@igalia.com>
Date:   Thu Apr 22 12:55:06 2010 +0200

    [test-ui] Printing for debug the url going to be played

 tools/grilo-test-ui/main.c |    1 +
 1 file changed, 1 insertion(+)

commit 430c126f5a8498ef478fba8a0a902521b451a6ab
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Tue Apr 20 17:54:17 2010 +0200

    [core] Use string keys to identify configuration parameters

 src/data/grl-config.c |  115 +++++++++++++++++++++++++++++++++++++++--
 src/data/grl-config.h |  136 ++++++++++++++++++++++++++-----------------------
 2 files changed, 182 insertions(+), 69 deletions(-)

commit 9ad3225b8020765e2d34dc1c6cf6c3278582b013
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Tue Apr 20 17:45:44 2010 +0200

    [core] Drop a warning if configuration objects do not have plugin information.

 src/grl-plugin-registry.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit d448eacb7deaa4f7c962f48261ba2f8d16915702
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Tue Apr 20 15:45:04 2010 +0200

    Updated TODO

 TODO |    7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

commit 920e9cd44890c01c071343e90e952a2e61cee2f1
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Wed Apr 14 13:46:35 2010 +0200

    [test-ui] Added configuration for youtube plugin.

 tools/grilo-test-ui/main.c |   18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

commit 947a79153d10a2527f00ce61a3cecbc15dc82b59
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Tue Apr 13 15:46:44 2010 +0200

    [test-ui] Increased default chunk size to 100

 tools/grilo-test-ui/main.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c53e6606a658504f2d3fffaec0c5227e20a8e38f
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Tue Apr 13 15:46:09 2010 +0200

    [core] Added FIXME comment

 src/grl-media-source.c |    2 ++
 1 file changed, 2 insertions(+)

commit e12ab8c7d9f3abe76adb0e84f333062650b4b502
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Tue Apr 13 15:45:35 2010 +0200

    [core] Use float type for rating key

 src/data/grl-media.c |   37 ++++++++-----------------------------
 src/data/grl-media.h |    8 +++-----
 2 files changed, 11 insertions(+), 34 deletions(-)

commit 005aaf5ea1cbc432bc4ddf97805325dececf9e64
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Tue Apr 13 15:45:10 2010 +0200

    [core] Fixed set_float signature

 src/data/grl-data.c |    2 +-
 src/data/grl-data.h |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit f26adce138110eccf0465aa7ddb37d089c9b28eb
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Apr 13 18:04:27 2010 +0200

    Revert "[core] resolve_async implementation"
    
    This reverts commit baa2a69b2001e5599c279e2889077bb868a0cc8a.
    
    Comitted by mistake.

 configure.ac              |    3 +-
 src/Makefile.am           |    2 +-
 src/grl-metadata-source.c |  105 ---------------------------------------------
 src/grl-metadata-source.h |   17 --------
 4 files changed, 2 insertions(+), 125 deletions(-)

commit 37c2fa3253055a71bdd969b7d9ed0d84ee263e9f
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Apr 13 18:03:56 2010 +0200

    Revert "[vala] update GI and vapi files for async methods support"
    
    This reverts commit 713d1badf5a6cd0168ddb4c6bf1800690d3b5d73.
    
    Committed by mistake.

 bindings/vala/grilo-0.1.vapi           |    2 --
 bindings/vala/grilo-0.1/grilo-0.1.deps |    1 -
 bindings/vala/grilo-0.1/grilo-0.1.gi   |   28 ----------------------------
 3 files changed, 31 deletions(-)

commit 713d1badf5a6cd0168ddb4c6bf1800690d3b5d73
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Sat Apr 10 17:44:06 2010 +0200

    [vala] update GI and vapi files for async methods support

 bindings/vala/grilo-0.1.vapi           |    2 ++
 bindings/vala/grilo-0.1/grilo-0.1.deps |    1 +
 bindings/vala/grilo-0.1/grilo-0.1.gi   |   28 ++++++++++++++++++++++++++++
 3 files changed, 31 insertions(+)

commit baa2a69b2001e5599c279e2889077bb868a0cc8a
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Mon Apr 5 16:06:17 2010 +0200

    [core] resolve_async implementation
    
    resolve_async is a reimplementation of the resolve method in
    GrlMetadataSource using the GAsyncResult mechanism.

 configure.ac              |    3 +-
 src/Makefile.am           |    2 +-
 src/grl-metadata-source.c |  105 +++++++++++++++++++++++++++++++++++++++++++++
 src/grl-metadata-source.h |   17 ++++++++
 4 files changed, 125 insertions(+), 2 deletions(-)

commit 6e45e38c9a13446a95eab1a5cfed786629b11476
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Sat Apr 10 16:16:01 2010 +0200

    [vala] regenerate vapi file

 bindings/vala/grilo-0.1.vapi |   59 +++++++++++++++++++++++++++++++++++++-----
 1 file changed, 52 insertions(+), 7 deletions(-)

commit 8d29cfebdbcfb129725988d6a03b8fd9384a9af9
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Sat Apr 10 16:06:58 2010 +0200

    [vala] update GI file using GRILO_COMPILATION define

 bindings/vala/grilo-0.1/grilo-0.1.defines |    1 +
 bindings/vala/grilo-0.1/grilo-0.1.gi      |  109 ++++++++++++++++++++++++-----
 2 files changed, 92 insertions(+), 18 deletions(-)

commit 4b2633177c38d72afdd5dddc2f9cc9154bc097c3
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Apr 12 16:04:12 2010 +0200

    [test-ui] Fixed wrong callback signature for registry signals.

 tools/grilo-test-ui/main.c |   12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

commit 52e1f1879292ff12eaedac6cb4f5e2ef51dafe3b
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Apr 9 11:08:05 2010 +0200

    Make sure only grilo.h can be included
    
    Add some definitions so if client includes other files than grilo.h an error
    will be raised at building time.

 src/Makefile.am            |    3 ++-
 src/data/grl-config.h      |    4 ++++
 src/data/grl-data.h        |    4 ++++
 src/data/grl-media-audio.h |    4 ++++
 src/data/grl-media-box.h   |    4 ++++
 src/data/grl-media-image.h |    4 ++++
 src/data/grl-media-video.h |    4 ++++
 src/data/grl-media.h       |    4 ++++
 src/grilo.h                |    4 ++++
 src/grl-error.h            |    4 ++++
 src/grl-log.h              |    4 ++++
 src/grl-media-plugin.h     |    4 ++++
 src/grl-media-source.h     |    4 ++++
 src/grl-metadata-key.h     |    4 ++++
 src/grl-metadata-source.h  |    4 ++++
 src/grl-plugin-registry.h  |    4 ++++
 16 files changed, 62 insertions(+), 1 deletion(-)

commit 1dfe5eac8b040457e72973bb51aec7b14a659c0e
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Apr 9 10:58:21 2010 +0200

    Fix grilo.h header
    
    Wrong definition.

 src/grilo.h |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 394a81552f9fc3b336edee6596e556cb195a58b0
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Tue Apr 6 18:19:32 2010 +0200

    [build] silent compilation
    
    According to http://live.gnome.org/GnomeGoals/NicerBuilds
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 configure.ac           |    4 +++-
 tools/vala/Makefile.am |    6 +++++-
 2 files changed, 8 insertions(+), 2 deletions(-)

commit 19fdfea2c53b799d4366374c6100e6e722231985
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Tue Apr 6 17:53:05 2010 +0200

    [doc] Added information on how to perform efficient metadata retrieval.

 doc/reference/quick-start-using-grilo.xml |  220 +++++++++++++++++++++++++++++
 1 file changed, 220 insertions(+)

commit 2f530d881f7b304a79a975b0cc5f8d5cb14c9df8
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Tue Apr 6 09:08:35 2010 +0200

    [doc] Added a searching example.
          Added instructions for compiling programs that use Grilo.

 doc/reference/quick-start-using-grilo.xml |  114 ++++++++++++++++++++++++++++-
 1 file changed, 113 insertions(+), 1 deletion(-)

commit a8e08ff944caca5a332e2d5a9c71e0d9d71780c6
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Tue Apr 6 08:48:01 2010 +0200

    [doc] Minor fixes

 doc/reference/quick-start-using-grilo.xml |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit b1f8fc0b525ec97f1e31b835ef90f629f1c2988f
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Tue Apr 6 08:35:02 2010 +0200

    [doc] Minor fixes

 doc/reference/quick-start-using-grilo.xml |   11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

commit c17ca420376c7eac8855f3bc1a21cdb8a3ac7dd0
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Apr 5 17:53:07 2010 +0200

    [doc] Started a quick start section

 doc/reference/grilo-docs.sgml             |    8 +
 doc/reference/quick-start-using-grilo.xml |  241 +++++++++++++++++++++++++++++
 2 files changed, 249 insertions(+)

commit daf099ad22db45c666fd270b1735093207b55429
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Apr 5 16:26:25 2010 +0200

    Added an overview section to documentation.

 doc/reference/grilo-docs.sgml |   12 +++--
 doc/reference/overview.xml    |   98 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 103 insertions(+), 7 deletions(-)

commit fccbfc69504a0a33102b3acea28402a5c420b417
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Apr 5 11:46:23 2010 +0200

    Added README contents

 README |  104 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 104 insertions(+)

commit 2a68d291854350bf9c2dda01899c51dd1d1e1d3b
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Tue Mar 30 13:42:00 2010 +0200

    Fixed syntax in doap file

 grilo.doap |    2 ++
 1 file changed, 2 insertions(+)

commit 244b962ce58fae59cf2da2e751a0b3ce5f30329a
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Tue Mar 30 10:07:29 2010 +0200

    Changed project description in doap file

 grilo.doap |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 0448dc779e98bca8c0519446c13fa7adee2970b8
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Tue Mar 30 10:05:19 2010 +0200

    Added doap file

 grilo.doap |   27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

commit f92440f5b024f15a3af68b34b2f2e13407418cbd
Author: Stefan Kost <ensonic@users.sf.net>
Date:   Wed Mar 24 09:58:41 2010 +0200

    configure.ac: use tmpl free gtk-doc build if possible
    
    The tmpl file mechanism is deprecated and only needed in legacy projects.

 configure.ac    |    2 +-
 src/Makefile.am |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 271d562f811002a6fe25c49e846aede16e27e02f
Author: Stefan Kost <ensonic@users.sf.net>
Date:   Wed Mar 24 09:55:04 2010 +0200

    gitignore: add and fill .gitignore files

 .gitignore                     |   16 ++++++++++++++++
 doc/reference/.gitignore       |   14 ++++++++++++++
 src/.gitignore                 |   10 ++++++++++
 src/tests/.gitignore           |    6 ++++++
 tools/grilo-test-ui/.gitignore |    6 ++++++
 tools/vala/.gitignore          |    2 ++
 6 files changed, 54 insertions(+)

commit 33ccf549df2f41ee3fbe5f7f147ec0549968dc13
Author: Stefan Kost <ensonic@users.sf.net>
Date:   Wed Mar 24 09:42:19 2010 +0200

    [tests] Initial addition of test suite boilerplate

 configure.ac          |    1 +
 src/Makefile.am       |    2 ++
 src/tests/Makefile.am |   63 +++++++++++++++++++++++++++++++++++++++++++++++
 src/tests/registry.c  |   65 +++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 131 insertions(+)

commit 111d22e1241bd8e91fcbd659f32ceedd130933f0
Author: José Dapena Paz <jdapena@igalia.com>
Date:   Wed Mar 24 15:46:15 2010 +0100

    [core] Don't add NULL sources to plugin registry.
    
    On adding sources to plugin registry, check if we're passing a
    GrlMediaPlugin (i.e. when the plugin failed to be properly created)
    to avoid corrupting the sources hashmap.

 src/grl-plugin-registry.c |    1 +
 1 file changed, 1 insertion(+)

commit c72a251e7fc00a21e6a7be074ccc3eda7d1b4752
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Mar 23 13:08:11 2010 +0100

    [core] Do not initialize private gobject structure.
    
    g_type_class_add_private() already does it.
    
    Thanks to Stefan Kost to notice this.

 src/grl-media-plugin.c    |    1 -
 src/grl-media-source.c    |    1 -
 src/grl-metadata-source.c |    1 -
 src/grl-plugin-registry.c |    1 -
 4 files changed, 4 deletions(-)

commit c1fd98b54e1ddbce0c924922a43e2d083b2ccbc5
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Mar 15 12:32:40 2010 +0100

    [core] Increase media refcount in metadata()
    
    Even in the case of creating a new media, increase its refcount.
    
    User is in charge of unref it if the media is of non interest for him.

 src/grl-media-source.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit ac7af0ab66e0a28ec2431a2b6abc0f1934cf2642
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Mar 12 16:58:28 2010 +0100

    Bumped version to 0.1.4

 NEWS         |   15 +++++++++++++++
 configure.ac |    2 +-
 2 files changed, 16 insertions(+), 1 deletion(-)

commit e0dde72ff69ce49ce172e63621eaf28d762c71a3
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Mar 12 16:56:36 2010 +0100

    [core] Rename grl_plugin_registry_get_sources_by_capabilities() to grl_plugin_registry_get_sources_by_operations()
    
    Adds more coherence to code.

 bindings/vala/grilo-0.1.vapi         |    2 +-
 bindings/vala/grilo-0.1/grilo-0.1.gi |    2 +-
 src/grl-metadata-source.c            |   12 ++++++------
 src/grl-plugin-registry.c            |   19 ++++++++++---------
 src/grl-plugin-registry.h            |    6 +++---
 tools/grilo-test-ui/main.c           |   18 +++++++++---------
 6 files changed, 30 insertions(+), 29 deletions(-)

commit 908f4467c88db0637cb49730564178cd628d3919
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Fri Mar 12 11:25:18 2010 +0100

    [core] Moved configuration keys from grl-metadata-key.h to grl-config.h
    and changed configuration API to allow setting source-specific
    configurations.

 src/data/grl-config.c      |   32 ++++++++++++++------------------
 src/data/grl-config.h      |   38 +++++++++++++++++++++++++++++++++++---
 src/grl-metadata-key.h     |   16 ----------------
 src/grl-plugin-registry.c  |   35 ++++++++++++++++++++++-------------
 src/grl-plugin-registry.h  |    4 ++--
 tools/grilo-test-ui/main.c |    4 ++--
 6 files changed, 75 insertions(+), 54 deletions(-)

commit 262d5c3d16a2b5716a04b537f2c8f6d5d0d5b964
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Fri Mar 12 09:29:57 2010 +0100

    [doc] removed brainstorming notes, they were obsolete.

 doc/brainstorming/itoral-initial-brainstorming.txt |  210 --------------------
 .../jasuarez-initial-brainstorming.txt             |   73 -------
 doc/brainstorming/to-be-discussed.txt              |   51 -----
 3 files changed, 334 deletions(-)

commit 9261f2ce29cf0ab429b8a42252f653d7d53c23e3
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Fri Mar 12 09:09:39 2010 +0100

    [core] Replaced the generic guint type for operation flags by its
    corresponding type (GrlMetadataResolutionFlags or GrlMetadataWritingFlags).

 src/grl-media-source.c    |    4 ++--
 src/grl-metadata-source.c |    6 +++---
 src/grl-metadata-source.h |    8 ++++----
 3 files changed, 9 insertions(+), 9 deletions(-)

commit 91c93e1d68d5f518103d04e979ff3008f35b3e22
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Fri Mar 12 09:03:18 2010 +0100

    [core] Added a flags parameter to the set_metadata() API to allow
    the user to select whether he wants to restrict the operation to
    the particular source he is using, or spread the operation among
    all available plugins if necessary.

 src/grl-metadata-source.c |   12 ++++++++++--
 src/grl-metadata-source.h |   13 +++++++++++++
 2 files changed, 23 insertions(+), 2 deletions(-)

commit b01908ba3741696f4460c36fe4ca2dc84622869f
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Fri Mar 12 08:51:52 2010 +0100

    [core] Use grl_plugin_registry_get_sources_by_capabilities() instead
    of checking for virtual method implementations directly.

 src/grl-metadata-source.c |   12 +++---------
 1 file changed, 3 insertions(+), 9 deletions(-)

commit 8404761ad9afd5505b3c65626c1c3fa5f1fcd28e
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Thu Mar 11 13:12:09 2010 +0100

    [core] If a source cannot handle writing of all the keys specified
    in a set_metadata() operation, use other sources to store the keys
    if possible.

 src/grl-metadata-source.c |  285 ++++++++++++++++++++++++++++++++++++++++-----
 src/grl-metadata-source.h |    7 ++
 2 files changed, 264 insertions(+), 28 deletions(-)

commit 99d367c87173a7bfe664331e0b5f97655f33a755
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Thu Mar 11 10:58:02 2010 +0100

    [core] Add a list of failed keys to the callback of set_metadata().

 src/grl-metadata-source.h |    2 ++
 1 file changed, 2 insertions(+)

commit 570f50af0412a6b93949b666240f8cb74bed4af5
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Thu Mar 11 09:55:02 2010 +0100

    [core] Modified set_metadata() API to accept a list of keys. Also,
    free resources when operation is fininshed.

 src/grl-metadata-source.c |   21 ++++++++++++++++++---
 src/grl-metadata-source.h |    4 ++--
 2 files changed, 20 insertions(+), 5 deletions(-)

commit ab52e8c532f9ce406a1f3342e3650982965b1241
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Wed Mar 10 16:43:13 2010 +0100

    [core] Added GRL_ERROR_SET_METADATA_FAILED definition.

 src/grl-error.h |    1 +
 1 file changed, 1 insertion(+)

commit 6e5e36bb404454aa6eaa6f5f99abaef775019585
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Wed Mar 10 10:40:49 2010 +0100

    [core] Added support for play-count, last-played and last-position
    metadata keys.

 src/data/grl-media.h      |   63 +++++++++++++++++++++++++++++++++++++++++++++
 src/grl-metadata-key.h    |   12 +++++++++
 src/grl-plugin-registry.c |    3 +++
 3 files changed, 78 insertions(+)

commit 486bae040a57249773bed3fdee293d5e22babae7
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Wed Mar 10 08:19:40 2010 +0100

    [core] Added APIs to modify metadata

 src/grl-metadata-source.c |   76 +++++++++++++++++++++++++++++++++++++++++++++
 src/grl-metadata-source.h |   50 +++++++++++++++++++++++++++++
 2 files changed, 126 insertions(+)

commit a4b22a81bda45f52f280078772252acc824b7dea
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Mon Mar 8 14:51:11 2010 +0100

    [build] fix distcheck

 src/Makefile.am |   11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

commit 6de7fddb8c924eb193ac160248ee33c8928558a5
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Sun Mar 7 23:25:00 2010 +0100

    [gtk-doc] Document GrlMediaVideo

 src/data/grl-media-video.c |   17 ++++++++++++----
 src/data/grl-media-video.h |   47 ++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 60 insertions(+), 4 deletions(-)

commit 520f51ef7091c4ecebf999879fb797be6b467d2a
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Sun Mar 7 23:16:25 2010 +0100

    [gtk-doc] Document GrlMediaBox

 src/data/grl-media-box.c |   30 +++++++++++++++++++++++-------
 src/data/grl-media-box.h |    6 ++++++
 2 files changed, 29 insertions(+), 7 deletions(-)

commit c2c0c756e203c0867ee4168ac505b79af5baa356
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Sun Mar 7 23:07:52 2010 +0100

    [gtk-doc] Document GrlConfig

 src/data/grl-config.c |   11 ++++----
 src/data/grl-config.h |   71 +++++++++++++++++++++++++++++++++++++++++++++----
 2 files changed, 72 insertions(+), 10 deletions(-)

commit 7a083fbf23c9f2050bb2093a62e1341926a0a0c8
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Sun Mar 7 21:19:21 2010 +0100

    [gtk-doc] Refer GrlConfig in TOC

 doc/reference/grilo-docs.sgml |    1 +
 1 file changed, 1 insertion(+)

commit b3e5b2c275fdaff4955cc16495b14a44448c5e85
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Sun Mar 7 21:18:56 2010 +0100

    [gtk-doc] Document GrlMedia

 src/data/grl-media.c |   17 ++++-
 src/data/grl-media.h |  169 +++++++++++++++++++++++++++++++++++++++++++++++++-
 2 files changed, 181 insertions(+), 5 deletions(-)

commit dc21676e514f36e70fd1a9cd0796c48c20e297c7
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Sun Mar 7 22:36:15 2010 +0100

    [vala] regenerate vapi file

 bindings/vala/grilo-0.1.vapi |  113 ++++++++++++++++++++++++++++++++----------
 1 file changed, 88 insertions(+), 25 deletions(-)

commit 8591aa58893caddd164b9174db76e84c2183a296
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Sun Mar 7 22:35:49 2010 +0100

    [vala] custom code for Media object

 bindings/vala/grilo-0.1/grilo-0.1-custom.vala |   25 +++++++++++++++++++------
 1 file changed, 19 insertions(+), 6 deletions(-)

commit c95312347959dfddf344e603a9e1c2b99930d40c
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Sun Mar 7 22:34:32 2010 +0100

    [vala] update the GI file

 bindings/vala/grilo-0.1/grilo-0.1.gi |  117 +++++++++++++++++++++++++---------
 1 file changed, 87 insertions(+), 30 deletions(-)

commit 74c07ab1acceb8d9bc5c68aa4186813224c3449f
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Sun Mar 7 17:58:36 2010 +0100

    [build] Avoid autotools abuse
    
    There is no need to build an unshared library. It also makes the compilation
    slower.

 configure.ac         |    1 -
 src/Makefile.am      |   44 +++++++++++++++++++++++---------------------
 src/data/Makefile.am |   41 -----------------------------------------
 3 files changed, 23 insertions(+), 63 deletions(-)

commit 9aa27fddf1ee94e5e82f0807491c8af5c155965c
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Sun Mar 7 17:33:12 2010 +0100

    [build] Refactor gobject-instrospection autoconf-fu
    
    Following the documentation in
    http://live.gnome.org/GObjectIntrospection/AutotoolsIntegration

 configure.ac    |   12 ++-------
 src/Makefile.am |   74 +++++++++++++++++++++++++++++--------------------------
 2 files changed, 41 insertions(+), 45 deletions(-)

commit e299a64e9da323145a85253a19812eddf26d92f8
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Sat Mar 6 16:21:42 2010 +0100

    Updated TODO file

 TODO |   13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

commit 56548caf776f71a42f088076dd095f7c34360c8e
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Mar 5 11:58:26 2010 +0100

    Add introspection.m4 macro
    
    Some distros miss this macro.

 Makefile.am         |    2 ++
 autogen.sh          |    1 +
 m4/introspection.m4 |   94 +++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 97 insertions(+)

commit fb9466ab4cb8e3ca4596b1fd63c9291b78f39589
Author: Eduardo Lima Mitev <elima@igalia.com>
Date:   Thu Mar 4 23:23:43 2010 +0100

    [js] Adds simple Javascript program to test introspected API

 tools/js/testGrilo.js |   68 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 68 insertions(+)

commit 528b513d5978de2c19fb1a3623f53be1c665df86
Author: Eduardo Lima Mitev <elima@igalia.com>
Date:   Thu Mar 4 23:22:32 2010 +0100

    [annotations] Simple annotation to 'grl_metadata_source_supported_operations'
    
    To allow Javascript test to work. Currently bitwise enumerators are not
    supported by GJS.

 src/grl-metadata-source.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit dba2c14c43e094c4bbc10b7f749c601e67eec5ec
Author: Eduardo Lima Mitev <elima@igalia.com>
Date:   Thu Mar 4 23:18:34 2010 +0100

    [build] Adds gobject-introspection support to build system

 configure.ac    |   16 ++++++++++++++++
 src/Makefile.am |   44 ++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 60 insertions(+)

commit a52dd20dd4bebcde68a8053dbf6072e000e649a1
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Mar 4 22:29:18 2010 +0100

    Rename GrlDataVideo to GrlMediaVideo

 bindings/vala/grilo-0.1.vapi         |    4 +-
 bindings/vala/grilo-0.1/grilo-0.1.gi |    8 +--
 doc/reference/grilo-docs.sgml        |    2 +-
 src/data/Makefile.am                 |    4 +-
 src/data/grl-data-video.c            |   89 -----------------------------
 src/data/grl-data-video.h            |  104 ----------------------------------
 src/data/grl-data.c                  |    2 +-
 src/data/grl-media-video.c           |   89 +++++++++++++++++++++++++++++
 src/data/grl-media-video.h           |  104 ++++++++++++++++++++++++++++++++++
 src/grilo.h                          |    2 +-
 tools/grilo-test-ui/main.c           |    4 +-
 tools/vala/grilo-test.vala           |    2 +-
 12 files changed, 207 insertions(+), 207 deletions(-)

commit 83e11ba8cee5fb6029a2aa6f9bb0e6606fe3e0ab
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Mar 4 22:23:10 2010 +0100

    Remame GrlDataImage to GrlMediaImage

 bindings/vala/grilo-0.1.vapi         |    4 +-
 bindings/vala/grilo-0.1/grilo-0.1.gi |    8 +--
 doc/reference/grilo-docs.sgml        |    2 +-
 src/data/Makefile.am                 |    4 +-
 src/data/grl-data-image.c            |   89 -------------------------------
 src/data/grl-data-image.h            |   95 ----------------------------------
 src/data/grl-data.c                  |    2 +-
 src/data/grl-media-image.c           |   89 +++++++++++++++++++++++++++++++
 src/data/grl-media-image.h           |   95 ++++++++++++++++++++++++++++++++++
 src/grilo.h                          |    2 +-
 tools/grilo-test-ui/main.c           |    6 +--
 11 files changed, 198 insertions(+), 198 deletions(-)

commit 923ad6b0ea117b77cc99344b6e77a982070eac27
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Mar 4 22:17:13 2010 +0100

    Rename GrlDataBox to GrlMediaBox

 bindings/vala/grilo-0.1.vapi         |   10 +--
 bindings/vala/grilo-0.1/grilo-0.1.gi |   18 ++---
 doc/reference/grilo-docs.sgml        |    2 +-
 src/data/Makefile.am                 |    4 +-
 src/data/grl-data-box.c              |  132 ----------------------------------
 src/data/grl-data-box.h              |   79 --------------------
 src/data/grl-data.c                  |    2 +-
 src/data/grl-media-box.c             |  132 ++++++++++++++++++++++++++++++++++
 src/data/grl-media-box.h             |   79 ++++++++++++++++++++
 src/grilo.h                          |    2 +-
 src/grl-media-source.c               |   12 ++--
 src/grl-media-source.h               |    8 +--
 tools/grilo-test-ui/main.c           |   18 ++---
 13 files changed, 249 insertions(+), 249 deletions(-)

commit 241c49f746f191a602a243778288a6f67e567147
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Mar 4 22:02:48 2010 +0100

    Rename GrlDataAudio to GrlMediaAudio

 bindings/vala/grilo-0.1.vapi         |    4 +-
 bindings/vala/grilo-0.1/grilo-0.1.gi |    4 +-
 doc/reference/grilo-docs.sgml        |    2 +-
 src/data/Makefile.am                 |    4 +-
 src/data/grl-data-audio.c            |   80 ------------------------
 src/data/grl-data-audio.h            |  114 ----------------------------------
 src/data/grl-data.c                  |    2 +-
 src/data/grl-media-audio.c           |   80 ++++++++++++++++++++++++
 src/data/grl-media-audio.h           |  114 ++++++++++++++++++++++++++++++++++
 src/grilo.h                          |    2 +-
 tools/grilo-test-ui/main.c           |    4 +-
 tools/vala/grilo-test.vala           |    2 +-
 12 files changed, 206 insertions(+), 206 deletions(-)

commit 9c537f1b7f2924affee659c5bfb1a652e5adbee8
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Mar 4 21:55:30 2010 +0100

    Rename GrlDataMedia to GrlMedia

 bindings/vala/grilo-0.1.vapi         |   50 +++++------
 bindings/vala/grilo-0.1/grilo-0.1.gi |   56 ++++++------
 doc/reference/grilo-docs.sgml        |    2 +-
 src/data/Makefile.am                 |    8 +-
 src/data/grl-data-audio.c            |    8 +-
 src/data/grl-data-audio.h            |    8 +-
 src/data/grl-data-box.c              |   10 +--
 src/data/grl-data-box.h              |    8 +-
 src/data/grl-data-image.c            |    8 +-
 src/data/grl-data-image.h            |    8 +-
 src/data/grl-data-media.c            |  115 ------------------------
 src/data/grl-data-media.h            |  161 ----------------------------------
 src/data/grl-data-video.c            |    8 +-
 src/data/grl-data-video.h            |    8 +-
 src/data/grl-data.c                  |    4 +-
 src/data/grl-media.c                 |  115 ++++++++++++++++++++++++
 src/data/grl-media.h                 |  161 ++++++++++++++++++++++++++++++++++
 src/grilo.h                          |    2 +-
 src/grl-media-source.c               |   54 ++++++------
 src/grl-media-source.h               |   26 +++---
 src/grl-metadata-source.c            |   16 ++--
 src/grl-metadata-source.h            |   16 ++--
 tools/grilo-test-ui/main.c           |   62 ++++++-------
 tools/vala/grilo-test.vala           |    2 +-
 24 files changed, 458 insertions(+), 458 deletions(-)

commit 539fe8717f2d08bafbeb69da66a63ca0693c58ac
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Mar 4 21:32:41 2010 +0100

    Rename GrlDataConfig to GrlConfig

 src/data/Makefile.am       |    4 +-
 src/data/grl-config.c      |   99 ++++++++++++++++++++++++++++++++++++++++
 src/data/grl-config.h      |  107 ++++++++++++++++++++++++++++++++++++++++++++
 src/data/grl-data-config.c |   99 ----------------------------------------
 src/data/grl-data-config.h |  107 --------------------------------------------
 src/grilo.h                |    2 +-
 src/grl-plugin-registry.c  |    6 +--
 src/grl-plugin-registry.h  |    6 +--
 tools/grilo-test-ui/main.c |   10 ++---
 9 files changed, 220 insertions(+), 220 deletions(-)

commit 9a80b3fb002bd13e00b1d04328318a85dc73e4fa
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Mar 4 20:58:32 2010 +0100

    Rename Content to Data
    
    Rename from GrlContent/grl_content to GrlData/grl_data.
    
    As Config will inherit from it, makes more sense using a generic Data name than
    a Content name.

 bindings/vala/grilo-0.1.vapi                  |   64 ++--
 bindings/vala/grilo-0.1/grilo-0.1-custom.vala |   12 +-
 bindings/vala/grilo-0.1/grilo-0.1.gi          |  154 ++++----
 configure.ac                                  |    2 +-
 doc/reference/grilo-docs.sgml                 |   16 +-
 grilo-0.1-uninstalled.pc.in                   |    2 +-
 src/Makefile.am                               |    6 +-
 src/content/Makefile.am                       |   41 ---
 src/content/grl-content-audio.c               |   80 -----
 src/content/grl-content-audio.h               |  114 ------
 src/content/grl-content-box.c                 |  132 -------
 src/content/grl-content-box.h                 |   79 -----
 src/content/grl-content-config.c              |   99 ------
 src/content/grl-content-config.h              |  107 ------
 src/content/grl-content-image.c               |   89 -----
 src/content/grl-content-image.h               |   95 -----
 src/content/grl-content-media.c               |  115 ------
 src/content/grl-content-media.h               |  161 ---------
 src/content/grl-content-video.c               |   89 -----
 src/content/grl-content-video.h               |  104 ------
 src/content/grl-content.c                     |  468 -------------------------
 src/content/grl-content.h                     |  122 -------
 src/data/Makefile.am                          |   41 +++
 src/data/grl-data-audio.c                     |   80 +++++
 src/data/grl-data-audio.h                     |  114 ++++++
 src/data/grl-data-box.c                       |  132 +++++++
 src/data/grl-data-box.h                       |   79 +++++
 src/data/grl-data-config.c                    |   99 ++++++
 src/data/grl-data-config.h                    |  107 ++++++
 src/data/grl-data-image.c                     |   89 +++++
 src/data/grl-data-image.h                     |   95 +++++
 src/data/grl-data-media.c                     |  115 ++++++
 src/data/grl-data-media.h                     |  161 +++++++++
 src/data/grl-data-video.c                     |   89 +++++
 src/data/grl-data-video.h                     |  104 ++++++
 src/data/grl-data.c                           |  468 +++++++++++++++++++++++++
 src/data/grl-data.h                           |  122 +++++++
 src/grilo.h                                   |   14 +-
 src/grl-media-source.c                        |   72 ++--
 src/grl-media-source.h                        |   36 +-
 src/grl-metadata-source.c                     |   16 +-
 src/grl-metadata-source.h                     |   16 +-
 src/grl-plugin-registry.c                     |    6 +-
 src/grl-plugin-registry.h                     |    6 +-
 tools/grilo-test-ui/Makefile.am               |    2 +-
 tools/grilo-test-ui/main.c                    |  116 +++---
 tools/vala/Makefile.am                        |    2 +-
 tools/vala/grilo-test.vala                    |    4 +-
 48 files changed, 2168 insertions(+), 2168 deletions(-)

commit 427c6837e8d406f54927f2c3ad8da0529b4eaf76
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Mar 2 18:10:10 2010 +0100

    Set flickr configuration
    
    Flickr plugin requires credentials, that should be set by application.

 tools/grilo-test-ui/main.c |   23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

commit f241a7ec4c7a274a98d6d018b489a1a1fa3c6832
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Mar 2 17:48:22 2010 +0100

    Send configuration when loading a plugin
    
    When invoking plugin_init(), look up for the configuration associated with that
    plugin and pass it as parameter.

 src/grl-plugin-registry.c |    6 +++++-
 src/grl-plugin-registry.h |    2 +-
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 62f3c0c801280e8b1d69f79152df76d405646124
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Mar 2 17:14:47 2010 +0100

    Set plugin configuration api
    
    Add a function to save in registry the configuration of a plugin.
    
    This configuration will be passed later when plugin is initialized.

 src/grl-plugin-registry.c |   27 +++++++++++++++++++++++++++
 src/grl-plugin-registry.h |    4 ++++
 2 files changed, 31 insertions(+)

commit 035503806a68d203f1c1926e9580b68099c4d104
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Mar 2 10:56:45 2010 +0100

    Add GrlContentConfig
    
    This class contains configuration settings to be used by plugins.

 src/content/Makefile.am          |    6 ++-
 src/content/grl-content-config.c |   99 +++++++++++++++++++++++++++++++++++
 src/content/grl-content-config.h |  107 ++++++++++++++++++++++++++++++++++++++
 src/grilo.h                      |    1 +
 src/grl-metadata-key.h           |   16 ++++++
 5 files changed, 227 insertions(+), 2 deletions(-)

commit 86891575eb6fef87b8e4745684ac83e2a8e99a7e
Author: Xabier Rodriguez Calvar <xrcalvar@igalia.com>
Date:   Tue Mar 2 15:49:46 2010 +0100

    One more fallback for the test ui to check if default app does not work

 tools/grilo-test-ui/main.c |    9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

commit 5ca821d7488066999290fc5161c164dc0879ac70
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Tue Mar 2 15:15:15 2010 +0100

    [gtk-doc] Document GrlContent

 src/content/grl-content.c |   12 ++++++------
 src/content/grl-content.h |    7 +++++++
 2 files changed, 13 insertions(+), 6 deletions(-)

commit 6521df6010d73d137d06cb68e0c5a87c3c483bb0
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Tue Mar 2 14:38:23 2010 +0100

    [gtk-doc] Move GrlContent into the media content section

 doc/reference/grilo-docs.sgml |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 927a7c53a7fb58c83bc3b4afb80d9c0d9c11fdf0
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Tue Mar 2 14:38:22 2010 +0100

    [gtk-doc] Document GrlPluginRegistry

 src/grl-plugin-registry.c |  140 +++++++++++++++++++++++++++++++++++++++++++++
 src/grl-plugin-registry.h |   67 +++++++++++++++++++++-
 2 files changed, 205 insertions(+), 2 deletions(-)

commit 0a472d7daea7700fb66ecbf921c09010d798806e
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Mon Mar 1 22:56:59 2010 +0100

    [gtk-doc] Document GrlMediaSource

 src/grl-media-source.c |  158 ++++++++++++++++++++++++++++++++++++++++++++++++
 src/grl-media-source.h |  133 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 291 insertions(+)

commit 1c0aabf59cfc2f55f20412bb83c772490999e649
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Mar 1 11:05:20 2010 +0100

    Bumped version to 0.1.3

 NEWS         |   10 ++++++++++
 configure.ac |    2 +-
 2 files changed, 11 insertions(+), 1 deletion(-)

commit 41b83c0b57de025aaeeaff78b40eda2997722a66
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Mar 1 10:53:41 2010 +0100

    Return const when getting information from plugins
    
    In most cases, users do not need a dupped string when getting information from
    a plugin (author, description, etc.)

 src/grl-media-plugin.c     |   70 ++++++++++++++++++--------------------------
 src/grl-media-plugin.h     |   14 ++++-----
 tools/grilo-test-ui/main.c |    3 +-
 3 files changed, 36 insertions(+), 51 deletions(-)

commit 796ba811851dc80307af0a2163c3a484eeb8ee0b
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Sun Feb 28 23:18:59 2010 +0100

    [gtk-doc] Document GrlMetadataSource
    
    There are several TBD, which are tokens that I don't known what they mean.

 src/grl-metadata-source.c |  117 +++++++++++++++++++++++++++++++++++++++++++++
 src/grl-metadata-source.h |   60 ++++++++++++++++++++++-
 2 files changed, 175 insertions(+), 2 deletions(-)

commit 64c2786b7e5f750b5e318ddac3810dc38e6c4962
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Sun Feb 28 23:18:58 2010 +0100

    [gtk-doc] Document GrlMediaPlugin

 src/grl-media-plugin.c |   78 ++++++++++++++++++++++++++++++++++++++++++++++++
 src/grl-media-plugin.h |    4 +++
 2 files changed, 82 insertions(+)

commit e53b1a25419d2b2af46f759e011b1437fb639f69
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Sun Feb 28 23:18:57 2010 +0100

    [gtk-doc] Use $(top_srcdir) variable for src path

 doc/reference/Makefile.am |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 3f3c148d03f304a3fb2cbe52b4d71db7bb3b0e6c
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Feb 26 13:32:08 2010 +0100

    [vala] Install vala bindings

 bindings/vala/Makefile.am |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 5f0ea2a9536aa943b1999c5d378dcef66b768b99
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Feb 25 21:04:49 2010 +0100

    Use current media if metadata() is not supported
    
    Usually, to get information from a media we are using metadata().
    
    Nevertheless, it is possible that the source does not implement metadata(). In this case, we still have the media with the data obtained in the browse() operation (where the media was created).
    
    Thus, if metadata() is not supported show current available information from the media (obtained in the previous browse() operation).

 tools/grilo-test-ui/main.c |   19 +++++++++++++------
 1 file changed, 13 insertions(+), 6 deletions(-)

commit 427ec94da09146f3a61f27ca3c412e5fb53e7511
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Feb 25 20:54:18 2010 +0100

    Use pre-defined applications to show content
    
    When showing images, try to use EyeOfGNOME (eog).
    
    When showing videos from Apple Trailers, use mplayer, setting user-agent to
    "QuickTime" (in other case, videos would not be shown).
    
    When showing videos other than Apple Trailers, or music, use Totem.
    
    If some of above programs fail or are not installed, then use the default
    player (depends on system).

 tools/grilo-test-ui/main.c |   56 +++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 55 insertions(+), 1 deletion(-)

commit 3439f1abd433d7f0609f03da53d5becbbfc68ff0
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Thu Feb 25 12:52:40 2010 +0100

    [core] Better checks for store() method: do not force to have
    a URL if adding a container object.

 src/grl-media-source.c     |    2 +-
 tools/grilo-test-ui/main.c |   10 ++++++++--
 2 files changed, 9 insertions(+), 3 deletions(-)

commit 75df0d0eac64768027279f0456b41904c9e2909a
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Feb 23 17:58:57 2010 +0100

    Do not build doc if gtk-doc is disabled

 Makefile.am |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit a6276b1181350c97e6f939945efa8d3b9b5560cc
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Feb 23 08:27:19 2010 +0100

    Upgrade vala requirements
    
    Due to latest changes, bump vala requirement version to 0.7.2.

 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a2712af38684994b4b3926d54ce2da189a728f78
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Feb 22 10:41:45 2010 +0100

    [core] Renamed grl_plugin_registry_get_sources_by_interface to
    grl_plugin_registry_get_sources_by_capabilities.

 src/grl-plugin-registry.c  |    8 ++++----
 src/grl-plugin-registry.h  |    6 +++---
 tools/grilo-test-ui/main.c |   18 +++++++++---------
 3 files changed, 16 insertions(+), 16 deletions(-)

commit 33e60b93f946876c38c7fee3457f815090068c04
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Feb 22 09:52:52 2010 +0100

    Support bitrate in Audio content

 src/content/grl-content-audio.h |    7 +++++++
 1 file changed, 7 insertions(+)

commit 02effd8cbf2875feed77f681c528e15e28f0b6f9
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Feb 22 09:43:54 2010 +0100

    Add bitrate metadata
    
    Add key for media bitrate, measured in kbits/s.

 src/grl-metadata-key.h    |    4 ++++
 src/grl-plugin-registry.c |    1 +
 2 files changed, 5 insertions(+)

commit eb80ae9fcba0ef971d79214eae23565e9e2e050d
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Feb 22 09:01:53 2010 +0100

    [core] Added API to find sources by interface.

 src/grl-plugin-registry.c  |   79 +++++++++++++++++++++++++++---------
 src/grl-plugin-registry.h  |    4 ++
 tools/grilo-test-ui/main.c |   97 ++++++++++++++++++++------------------------
 3 files changed, 108 insertions(+), 72 deletions(-)

commit c7c887de2564f22e3a6faed8ea48a014d02f79cd
Author: Iago Toral Quiroga <itoral@igalia.com>
Date:   Mon Feb 22 08:31:23 2010 +0100

    [core] Implemented plugin rankings.

 src/grl-media-plugin.c     |    6 +++
 src/grl-media-plugin.h     |    1 +
 src/grl-metadata-source.c  |    2 +-
 src/grl-plugin-registry.c  |   96 +++++++++++++++++++++++++++++++++++++++++++-
 src/grl-plugin-registry.h  |   15 ++++++-
 tools/grilo-test-ui/main.c |    6 +--
 6 files changed, 119 insertions(+), 7 deletions(-)

commit a7f67e26eeba64f34045334487e62e870de98c1c
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Feb 19 21:05:43 2010 +0100

    Bump version to 0.1.2

 NEWS         |   12 ++++++++++++
 configure.ac |    2 +-
 2 files changed, 13 insertions(+), 1 deletion(-)

commit dd013b9e551064d408b9f372095c6d4d260b7859
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Thu Feb 18 13:56:58 2010 +0100

    Custom documentation main page

 doc/reference/grilo-docs.sgml |   68 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 68 insertions(+)

commit 80537f4d9432c3b795f8dbe775d8e4cbe4f42bb8
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Thu Feb 18 13:56:57 2010 +0100

    Ignore files for documentation

 doc/reference/Makefile.am |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 0e8df448f3525d139ab143bd7925444b7986205c
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Thu Feb 18 13:01:32 2010 +0100

    Initial support to gtk-doc

 Makefile.am               |    4 +-
 configure.ac              |    8 ++++
 doc/Makefile.am           |    8 ++++
 doc/reference/Makefile.am |  102 +++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 121 insertions(+), 1 deletion(-)

commit aa8e963b789ae5831abc299d64b7a90d65129b31
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Feb 16 12:49:09 2010 +0100

    Get rid of release version
    
    Do not include release into version.

 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5aa2e4a603910710b7e2d840f49e60c16a5f3255
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Tue Feb 16 13:01:22 2010 +0100

    [vala] make distcheck compliant
    
    Add missing EXTRA_DIST autoconf-fu kata for vala tool compilation

 tools/vala/Makefile.am |    2 ++
 1 file changed, 2 insertions(+)

commit 713e200971ae7b81d0bd579066cd5a490e1e9499
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Feb 15 20:20:06 2010 +0100

    Fix leak

 src/content/grl-content.c |    1 +
 1 file changed, 1 insertion(+)

commit 72b13f00ff0c33675c371355ee659167b645b7a9
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Feb 15 19:32:05 2010 +0100

    get_{id,name,description}() returns const gchar*
    
    Returning a newly-allocated string in
    grl_metadata_source_get_{name,id,description}() functions was creating some
    leaks.
    
    The point is that in most of the functions, a const gchar* is more sensitive,
    as usually the returned string is either used to print it, or to pass to
    function that already dups it.

 src/grl-media-source.c     |   12 ++++--------
 src/grl-metadata-source.c  |   27 +++++++++------------------
 src/grl-metadata-source.h  |    6 +++---
 tools/grilo-test-ui/main.c |    9 ++++++---
 4 files changed, 22 insertions(+), 32 deletions(-)

commit 9d2f4638eed53c08bba7af223f90fb26793c3a76
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Fri Feb 12 12:05:54 2010 +0100

    [vala] autoconf-fu for the vala tool sample

 bindings/Makefile.am   |    2 +-
 configure.ac           |    3 ++-
 tools/Makefile.am      |    6 +++++-
 tools/vala/Makefile.am |   38 ++++++++++++++++++++++++++++++++++++++
 4 files changed, 46 insertions(+), 3 deletions(-)

commit 56f3bc4bf761f9cdf2dde3b3b4fce2062a45913a
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Fri Feb 12 12:05:53 2010 +0100

    [vala] First vala sample tool

 tools/vala/grilo-test.vala |   92 ++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 92 insertions(+)

commit abedaea83ca7da18045cffcadb19c67904773545
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Thu Feb 11 00:00:04 2010 +0100

    Vapi regenerated

 bindings/vala/grilo-0.1.vapi |   31 +++++++++++++++++++++----------
 1 file changed, 21 insertions(+), 10 deletions(-)

commit 0672da58048247af1190543901c87adf0e4aecf4
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Thu Feb 11 00:00:03 2010 +0100

    Custom code for delegates

 bindings/vala/grilo-0.1/grilo-0.1-custom.vala |   11 +++++++++++
 bindings/vala/grilo-0.1/grilo-0.1.metadata    |    5 +++++
 2 files changed, 16 insertions(+)

commit 304c1c85fdc64de6b71d06a094426344d52df89e
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Thu Feb 11 00:00:02 2010 +0100

    Custom code for macros

 bindings/vala/grilo-0.1/grilo-0.1-custom.vala |   15 +++++++++++++++
 1 file changed, 15 insertions(+)

commit ff6a64a14517411ba9f40cb093d7e23e182f17cd
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Thu Feb 11 00:00:01 2010 +0100

    Regenerate vapi file

 bindings/vala/grilo-0.1.vapi         |  209 +++++++++++++++++++---------------
 bindings/vala/grilo-0.1/grilo-0.1.gi |   49 +++++++-
 2 files changed, 163 insertions(+), 95 deletions(-)

commit 07dc71db77e31d4af293e1938777ab3ea8297ee8
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Thu Feb 11 00:00:00 2010 +0100

    Add the metadata file

 bindings/vala/grilo-0.1/grilo-0.1.metadata |    3 +++
 1 file changed, 3 insertions(+)

commit 234f10fae539d7e26e710ac3a17949f36738aa3e
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Wed Feb 10 23:59:59 2010 +0100

    Name the error enum as GrlError
    
    In this way we can mark the enum as an error domain in vala.

 src/grl-error.h |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit f327e63c41cbcfc2c8b32442d06834ee0196edcf
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Feb 10 13:08:54 2010 +0100

    Downgrade Vala version requirements
    
    Downgrade required version to 0.3.4, that comes with Debian Stable.
    
    Right now, we do not have any reason to need 0.7.5. If in future we need it,
    then we will upgrade it.

 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 9e6a51f45718cb2aa77a2aa5f3156a959bf8b4ed
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Feb 9 21:45:25 2010 +0100

    Fix previous commit
    
    I'm sorry :)

 tools/Makefile.am |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 73a03b1f3f4ab50c3d83f8435b1519ba9cd602b3
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Feb 9 21:43:03 2010 +0100

    Fix build files
    
    Update configure.ac and Makefile.am to reflect the change from test-ui to grilo-test-ui.

 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit aceae66e95c724227906b14ade2b60f106194cae
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Feb 9 19:38:38 2010 +0100

    Rename test-ui to grilo-test-ui

 tools/grilo-test-ui/Makefile.am |   31 +
 tools/grilo-test-ui/TODO        |    1 +
 tools/grilo-test-ui/main.c      | 1412 +++++++++++++++++++++++++++++++++++++++
 tools/test-ui/Makefile.am       |   31 -
 tools/test-ui/TODO              |    1 -
 tools/test-ui/main.c            | 1412 ---------------------------------------
 6 files changed, 1444 insertions(+), 1444 deletions(-)

commit 15dcb5c09eb28b0053d4d0a96b081e4e64521185
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Tue Feb 9 15:48:23 2010 +0100

    rename the binary to grilo-test-ui
    
    It's a good idea to know which ui are we testing.

 tools/test-ui/Makefile.am |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 0d558f9880e90796ccdf1adcb2fb456cf9462ecd
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Tue Feb 9 14:17:40 2010 +0100

    Add a menu
    
    Just to be gentle with people with minimalistic window-managers,
    add a simple menu in the test application with the file->quit

 tools/test-ui/main.c |   38 +++++++++++++++++++++++++++++++++++++-
 1 file changed, 37 insertions(+), 1 deletion(-)

commit 74af8888372fc922995c22ba453b95f29c973bb7
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Feb 9 19:30:33 2010 +0100

    Connect source signals before loading them
    
    It makes more sense to connect signals to source-added/source-removed before
    loading the plugins.
    
    In the same way, makes more sense to build the UI before loading the plugins.
    
    Thanks to Victor Jaquez.

 tools/test-ui/main.c |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 4dd84ebe0e21ec4ca566fde54ceb8f142613424f
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Feb 9 00:36:14 2010 +0100

    Add content dir in uninstalled pkg-config

 grilo-0.1-uninstalled.pc.in |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 9f2a2bed3aa97dbfcb84b0dcdc4d4938b2ac45ce
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Feb 8 18:50:51 2010 +0100

    Get rid of plugins requirements
    
    We do not need to check for plugins requirements.

 configure.ac |    6 ------
 1 file changed, 6 deletions(-)

commit 8091b5c93377b4655b17066fe534f56e1d36e6d1
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Feb 5 19:29:09 2010 +0100

    Rename project
    
    Change name from "Media Store" to Grilo.
    
    Change prefixes from "ms" to "grl".

 Makefile.am                                        |    2 +-
 TODO                                               |    2 +-
 autogen.sh                                         |    2 +-
 bindings/vala/Makefile.am                          |    2 +-
 bindings/vala/grilo-0.1.vapi                       |  366 +++++
 bindings/vala/grilo-0.1/grilo-0.1.files            |    3 +
 bindings/vala/grilo-0.1/grilo-0.1.gi               |  759 +++++++++
 bindings/vala/grilo-0.1/grilo-0.1.namespace        |    1 +
 bindings/vala/media-store-0.1.vapi                 |  366 -----
 .../vala/media-store-0.1/media-store-0.1.files     |    3 -
 bindings/vala/media-store-0.1/media-store-0.1.gi   |  759 ---------
 .../vala/media-store-0.1/media-store-0.1.namespace |    1 -
 configure.ac                                       |   26 +-
 grilo-0.1-uninstalled.pc.in                        |   14 +
 grilo-0.1.pc.in                                    |   14 +
 media-store-0.1-uninstalled.pc.in                  |   14 -
 media-store-0.1.pc.in                              |   14 -
 src/Makefile.am                                    |   50 +-
 src/content/Makefile.am                            |   26 +-
 src/content/grl-content-audio.c                    |   80 +
 src/content/grl-content-audio.h                    |  107 ++
 src/content/grl-content-box.c                      |  132 ++
 src/content/grl-content-box.h                      |   79 +
 src/content/grl-content-image.c                    |   89 ++
 src/content/grl-content-image.h                    |   95 ++
 src/content/grl-content-media.c                    |  115 ++
 src/content/grl-content-media.h                    |  161 ++
 src/content/grl-content-video.c                    |   89 ++
 src/content/grl-content-video.h                    |  104 ++
 src/content/grl-content.c                          |  467 ++++++
 src/content/grl-content.h                          |  115 ++
 src/content/ms-content-audio.c                     |   80 -
 src/content/ms-content-audio.h                     |   90 --
 src/content/ms-content-box.c                       |  132 --
 src/content/ms-content-box.h                       |   74 -
 src/content/ms-content-image.c                     |   89 --
 src/content/ms-content-image.h                     |   83 -
 src/content/ms-content-media.c                     |  112 --
 src/content/ms-content-media.h                     |  123 --
 src/content/ms-content-video.c                     |   89 --
 src/content/ms-content-video.h                     |   87 -
 src/content/ms-content.c                           |  464 ------
 src/content/ms-content.h                           |   90 --
 src/grilo.h                                        |   46 +
 src/grl-error.h                                    |   39 +
 src/grl-log.c                                      |  148 ++
 src/grl-log.h                                      |   34 +
 src/grl-media-plugin-priv.h                        |   47 +
 src/grl-media-plugin.c                             |  138 ++
 src/grl-media-plugin.h                             |   96 ++
 src/grl-media-source.c                             | 1686 ++++++++++++++++++++
 src/grl-media-source.h                             |  253 +++
 src/grl-metadata-key.c                             |   43 +
 src/grl-metadata-key.h                             |  132 ++
 src/grl-metadata-source-priv.h                     |   53 +
 src/grl-metadata-source.c                          |  634 ++++++++
 src/grl-metadata-source.h                          |  169 ++
 src/grl-plugin-registry.c                          |  337 ++++
 src/grl-plugin-registry.h                          |  163 ++
 src/media-store.h                                  |   46 -
 src/ms-error.h                                     |   39 -
 src/ms-log.c                                       |  146 --
 src/ms-log.h                                       |   34 -
 src/ms-media-plugin-priv.h                         |   46 -
 src/ms-media-plugin.c                              |  134 --
 src/ms-media-plugin.h                              |   82 -
 src/ms-media-source.c                              | 1672 -------------------
 src/ms-media-source.h                              |  238 ---
 src/ms-metadata-key.c                              |   43 -
 src/ms-metadata-key.h                              |  132 --
 src/ms-metadata-source-priv.h                      |   53 -
 src/ms-metadata-source.c                           |  627 --------
 src/ms-metadata-source.h                           |  152 --
 src/ms-plugin-registry.c                           |  331 ----
 src/ms-plugin-registry.h                           |  125 --
 tools/test-ui/Makefile.am                          |    2 +-
 tools/test-ui/main.c                               |  422 ++---
 77 files changed, 7078 insertions(+), 6834 deletions(-)

commit bb7ee6d94a34c4fe5ed3d2202af535ff69f01aaf
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Feb 5 12:09:58 2010 +0100

    Update AUTHORS
    
    Add Victor Jáquez Leal as Vala bindings' author.
    
    Add contributions to each author.

 AUTHORS |    6 ++++++
 1 file changed, 6 insertions(+)

commit f568bc099df5fb4ec5ad58d0e70c4cfb7968e12f
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Thu Feb 4 12:19:27 2010 +0100

    autoconf-fu magic for vala bindigs

 Makefile.am               |    2 +-
 bindings/Makefile.am      |    5 +++++
 bindings/vala/Makefile.am |    2 ++
 configure.ac              |   26 ++++++++++++++++++++++++++
 4 files changed, 34 insertions(+), 1 deletion(-)

commit d30002c2119e027ab02349dadb877126e424220d
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Thu Feb 4 12:19:26 2010 +0100

    import initial vala bindings
    
    Also are imported the files needed for the automatic binding generation.

 bindings/vala/media-store-0.1.vapi                 |  366 ++++++++++
 .../vala/media-store-0.1/media-store-0.1.files     |    3 +
 bindings/vala/media-store-0.1/media-store-0.1.gi   |  759 ++++++++++++++++++++
 .../vala/media-store-0.1/media-store-0.1.namespace |    1 +
 4 files changed, 1129 insertions(+)

commit 9ff6d63636e881ab8d73036077d669aa6066e71b
Author: Iago Toral <itoral@igalia.com>
Date:   Fri Feb 5 11:55:32 2010 +0100

    [test-ui] Implemented support for content removal.

 tools/test-ui/main.c |   78 ++++++++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 76 insertions(+), 2 deletions(-)

commit 0fe76b552115ba47a6d45207814d046502ea2fec
Author: Iago Toral <itoral@igalia.com>
Date:   Fri Feb 5 11:54:47 2010 +0100

    Added support for content removal operations.

 src/ms-error.h           |    1 +
 src/ms-media-source.c    |   63 ++++++++++++++++++++++++++++++++++++++++++++++
 src/ms-media-source.h    |   20 +++++++++++++++
 src/ms-metadata-source.h |    1 +
 4 files changed, 85 insertions(+)

commit 871f67b540fb707ab81869951741205fcbcd1577
Author: Iago Toral <itoral@igalia.com>
Date:   Thu Feb 4 10:08:17 2010 +0100

    [test-ui] Do not let toolbar buttons expand.

 tools/test-ui/main.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 58df9fa85aa1a688dec502c673e3ca108912bc14
Author: Iago Toral <itoral@igalia.com>
Date:   Thu Feb 4 10:03:05 2010 +0100

    [test-ui] Implemented support for adding content to sources that
    support MS_OP_STORE or MS_OP_STORE_PARENT.

 tools/test-ui/main.c |  143 ++++++++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 138 insertions(+), 5 deletions(-)

commit e6d7ee3267a0692fbdf4cb481ef9fc4dac1859a9
Author: Iago Toral <itoral@igalia.com>
Date:   Thu Feb 4 10:02:17 2010 +0100

    Implemented ms_media_source_store().

 src/ms-media-source.c    |   78 ++++++++++++++++++++++++++++++++++++++++++++++
 src/ms-media-source.h    |   35 +++++++++++++++------
 src/ms-metadata-source.h |   14 +++++----
 3 files changed, 112 insertions(+), 15 deletions(-)

commit beb5ae48321ec6ae65300e2207e8dfe0f17bdeb7
Author: Iago Toral <itoral@igalia.com>
Date:   Thu Feb 4 10:01:30 2010 +0100

    Added MS_ERROR_STORE_FAILED

 src/ms-error.h |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 9721715cc20b34e404bee6fec99a67f4cefb9295
Author: Iago Toral <itoral@igalia.com>
Date:   Thu Feb 4 05:59:14 2010 +0100

    [test-ui] Moved last_url from 'view' to 'ui_state'

 tools/test-ui/main.c |   15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

commit da91773e4c823f04e0a0e8ba75606e3441f21d22
Author: Iago Toral <itoral@igalia.com>
Date:   Thu Feb 4 05:34:43 2010 +0100

    [test-ui] do no assume that search/query results cannot be containers.

 tools/test-ui/main.c |   22 +++++++++++++++++-----
 1 file changed, 17 insertions(+), 5 deletions(-)

commit f7f418d760e388ad1e4e50544f709810daad74ab
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Feb 2 20:10:44 2010 +0100

    [test-ui] Add Show button
    
    Add a button to display the selected image, video or audio.
    
    The item will be open with default external application.

 tools/test-ui/main.c |   33 ++++++++++++++++++++++++++++++++-
 1 file changed, 32 insertions(+), 1 deletion(-)

commit 3c39651458ecbc460544618ddfdde4d635707b9d
Author: Iago Toral <itoral@igalia.com>
Date:   Mon Feb 1 18:38:14 2010 +0100

    [test-ui] Added support for "query" operations

 tools/test-ui/main.c |  148 ++++++++++++++++++++++++++++++++++++++++++++++----
 1 file changed, 137 insertions(+), 11 deletions(-)

commit 2f0320d31a84c46fa22c3a55c33bd63a04cf25a5
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Jan 29 10:34:22 2010 +0100

    Update document
    
    Proposal to get rid of slow_keys() function

 doc/brainstorming/to-be-discussed.txt |    7 +++++++
 1 file changed, 7 insertions(+)

commit 9714566333fcabdd2c446229c08a888af01edc6e
Author: Iago Toral <itoral@igalia.com>
Date:   Fri Jan 29 12:54:06 2010 +0100

    [test-ui] Cosmetic changes to debug traces

 tools/test-ui/main.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit db0bf4dbaf087ea25719bfb3d37b87a37bf86f42
Author: Iago Toral <itoral@igalia.com>
Date:   Fri Jan 29 12:52:56 2010 +0100

    [test-ui] Added G_LOG_DOMAIN definition

 tools/test-ui/main.c |    3 +++
 1 file changed, 3 insertions(+)

commit 781f6d9650080f9ba7af1c7eda12f668847cb376
Author: Iago Toral <itoral@igalia.com>
Date:   Fri Jan 29 12:43:44 2010 +0100

    [test-ui] Free icon pixbufs

 tools/test-ui/main.c |    2 ++
 1 file changed, 2 insertions(+)

commit e34be0adafce535d81d059ca2875e746144baae0
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jan 28 21:10:09 2010 +0100

    Get rid of get_framerate() in Image class
    
    Framerate only makes sense in Videos, not Images.

 src/content/ms-content-image.h |    2 --
 1 file changed, 2 deletions(-)

commit f09ea34289d45de68ba8441659cfa4020ff953a2
Author: Iago Toral <itoral@igalia.com>
Date:   Thu Jan 28 17:26:46 2010 +0100

    [test-ui] Updated TODO

 tools/test-ui/TODO |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit f1f187bcc4fd12ef278df1a8178180fd0fa44621
Author: Iago Toral <itoral@igalia.com>
Date:   Thu Jan 28 17:25:41 2010 +0100

    [test-ui] Ignore metadata results for items that are not the one
    currently selected.

 tools/test-ui/main.c |    6 ++++++
 1 file changed, 6 insertions(+)

commit 83b827db5777dc3b0d8c35d1e4879f1e9b7072f1
Author: Iago Toral <itoral@igalia.com>
Date:   Thu Jan 28 16:56:49 2010 +0100

    Added debug trace to keep track of memory disposal

 src/content/ms-content-media.c |    2 ++
 1 file changed, 2 insertions(+)

commit aae0aeb2b2a5444bd7f8135186b9e752274e43eb
Author: Iago Toral <itoral@igalia.com>
Date:   Thu Jan 28 16:56:05 2010 +0100

    [test-ui] Added comments on memory management

 tools/test-ui/main.c |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit f2c85e8bf784c3f7e03debc4ed509705e9100932
Author: Iago Toral <itoral@igalia.com>
Date:   Thu Jan 28 16:12:35 2010 +0100

    [test-ui] Improved code for memmory management

 tools/test-ui/main.c |  174 +++++++++++++++++++++++++++++++++-----------------
 1 file changed, 117 insertions(+), 57 deletions(-)

commit 895e9def4f7eb84e4822e87fdddc856449d52a11
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jan 25 10:21:37 2010 +0100

    Update todo
    
    It would be helpful to group plugins (or have a way to do it).

 doc/brainstorming/to-be-discussed.txt |   24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

commit 1a047b0481a98ccf4e15d0893ca536ab878afffc
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Jan 22 18:18:18 2010 +0100

    Fix previous commit

 src/ms-media-source.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 13ef0e753432df0e7b7dfaf3cdd6d12bedf8b00e
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Jan 22 17:49:39 2010 +0100

    Fix some warnings
    
    Initalize some pointers to NULL in ms-media-source.c

 src/ms-media-source.c |    7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

commit 7174c43d5a868be5216556f67508b9a85ee60537
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Jan 22 16:12:13 2010 +0100

    Define MS_NAME
    
    Define it in configure.ac, to simplify Makefile.am
    
    Its current value is "media-store-0.1".

 configure.ac                      |    8 ++++++-
 media-store-0.1-uninstalled.pc.in |    4 ++--
 media-store-0.1.pc.in             |    4 ++--
 src/Makefile.am                   |   44 ++++++++++++++++++-------------------
 src/content/Makefile.am           |    2 +-
 tools/test-ui/Makefile.am         |    2 +-
 6 files changed, 35 insertions(+), 29 deletions(-)

commit ea1688efc8353d6949cc5334966b1a461edfae2c
Author: Iago Toral <itoral@igalia.com>
Date:   Fri Jan 22 13:03:27 2010 +0100

    Improved memory management

 src/ms-media-source.c    |   17 +++++++++++++++++
 src/ms-metadata-source.c |    3 ++-
 2 files changed, 19 insertions(+), 1 deletion(-)

commit fd8f165db98e8aafd28c80eafb0974102916bcc7
Author: Iago Toral <itoral@igalia.com>
Date:   Fri Jan 22 10:50:16 2010 +0100

    Force substitution of builddir for older Automake versions.

 configure.ac |    1 +
 1 file changed, 1 insertion(+)

commit 2050e61ab37031a1bd2667376b499de200f0c18a
Author: Iago Toral <itoral@igalia.com>
Date:   Fri Jan 22 10:23:48 2010 +0100

    [test-ui] Proper refreshing of search combo when dealing with
    dynamic sources.

 tools/test-ui/main.c |   31 ++++++++++++++++++++-----------
 1 file changed, 20 insertions(+), 11 deletions(-)

commit afded3e6a92c5394234b737ae450d563b524924e
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jan 21 21:13:29 2010 +0100

    Fix distcheck

 src/Makefile.am         |    6 +++---
 src/content/Makefile.am |    4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

commit 162bf21255c0d51134602e30c5482dab42896e2f
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jan 21 19:48:14 2010 +0100

    Add headers directories with "-I" argument

 src/Makefile.am                |    5 ++++-
 src/content/Makefile.am        |    1 +
 src/content/ms-content-audio.h |    2 +-
 src/content/ms-content-box.h   |    2 +-
 src/content/ms-content-image.h |    2 +-
 src/content/ms-content-media.h |    2 +-
 src/content/ms-content-video.h |    2 +-
 src/content/ms-content.h       |    2 +-
 src/media-store.h              |   12 ++++++------
 src/ms-media-source.h          |    6 +++---
 src/ms-metadata-source.h       |    6 +++---
 src/ms-plugin-registry.h       |    4 ++--
 tools/test-ui/Makefile.am      |    3 ++-
 13 files changed, 27 insertions(+), 22 deletions(-)

commit ce31f9197c98ed54ca4a959f9177924535ec15ae
Author: Iago Toral <itoral@igalia.com>
Date:   Thu Jan 21 19:18:56 2010 +0100

    [test-ui] Use source name instead of plugin name

 tools/test-ui/main.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 54c93ecc2ab04043fa1201fca4497600ef8d7778
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jan 21 18:47:43 2010 +0100

    Add pkgconfig file

 Makefile.am           |    3 +++
 configure.ac          |    1 +
 media-store-0.1.pc.in |   14 ++++++++++++++
 3 files changed, 18 insertions(+)

commit a32389d218afed4a0dad4050d0374666b6b67a39
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jan 21 18:18:00 2010 +0100

    Add ABI version (0.1) to uninstalled.pc

 configure.ac                      |    2 +-
 media-store-0.1-uninstalled.pc.in |   14 ++++++++++++++
 media-store-uninstalled.pc.in     |   14 --------------
 3 files changed, 15 insertions(+), 15 deletions(-)

commit 2d7bd2859b292a95647707e2de02c18e5d51a59d
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jan 21 17:56:38 2010 +0100

    Use PACKAGE_NAME variable in Makefile.am
    
    Thus, if we change project name, libraries will change accordingly.

 src/Makefile.am           |   14 +++++++-------
 src/content/Makefile.am   |    2 +-
 tools/test-ui/Makefile.am |    2 +-
 3 files changed, 9 insertions(+), 9 deletions(-)

commit 852079f6f97f840a1a3ade0c749537a9165ab43b
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jan 21 17:02:55 2010 +0100

    Fix pkgconfig file (uninstalled version)

 media-store-uninstalled.pc.in |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit b8a21f9263d3ffcb98da81b006a29493c1649c0d
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jan 21 16:33:19 2010 +0100

    Add ABI to libraries and specific directories
    
    Adding ABI as suffix will avoid conflicts with different versions in system.
    
    Current ABI is 0.1.

 src/Makefile.am           |   31 ++++++++++++++++---------------
 src/content/Makefile.am   |    2 +-
 tools/test-ui/Makefile.am |    2 +-
 3 files changed, 18 insertions(+), 17 deletions(-)

commit 42312e66ca60e5e77f73918b701810a1be84a1b2
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jan 21 14:04:06 2010 +0100

    Merge libcontent into libmedia-store
    
    So now only one library is needed.

 src/Makefile.am           |    4 +++-
 src/content/Makefile.am   |    6 ++++--
 tools/test-ui/Makefile.am |   13 ++++++-------
 3 files changed, 13 insertions(+), 10 deletions(-)

commit 290e40850446ccf55dd584f4f49e81ee5ed0d2a7
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jan 21 13:49:21 2010 +0100

    Create libmedia-store instead of libmediastore

 configure.ac              |   40 +++++++++++++++++++++++++++-------------
 src/Makefile.am           |   12 ++++++------
 tools/test-ui/Makefile.am |    2 +-
 3 files changed, 34 insertions(+), 20 deletions(-)

commit c2302053483a23273f6e19cdeb5321928b6bcfad
Author: Iago Toral <itoral@igalia.com>
Date:   Thu Jan 21 09:38:17 2010 +0100

    [test-ui] Implement support for dynamic sources

 tools/test-ui/main.c |   59 +++++++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 58 insertions(+), 1 deletion(-)

commit 85da56e740beeb490d7725286c41e3fee8812287
Author: Iago Toral <itoral@igalia.com>
Date:   Thu Jan 21 09:37:51 2010 +0100

    Emit source-removed signal when appropriate.

 src/ms-plugin-registry.c |    1 +
 1 file changed, 1 insertion(+)

commit 21bce9e84abe8e67cb4f94e68f69634d55e0b80a
Author: Iago Toral <itoral@igalia.com>
Date:   Wed Jan 20 17:47:16 2010 +0100

    Added support for dynamic sources.

 src/ms-plugin-registry.c |   59 ++++++++++++++++++++++++++++++++++++++++++++--
 src/ms-plugin-registry.h |    1 +
 2 files changed, 58 insertions(+), 2 deletions(-)

commit 117ab7fe77fbbacf34e2110d8e2049feb0b0ff84
Author: Iago Toral <itoral@igalia.com>
Date:   Wed Jan 20 17:46:07 2010 +0100

    Added debug traces for some memory freeing operations

 src/ms-media-source.c |    3 +++
 1 file changed, 3 insertions(+)

commit fc31c94cc224e1a1b97d74001e1e434162eaf39b
Author: Iago Toral <itoral@igalia.com>
Date:   Wed Jan 20 17:44:24 2010 +0100

    [test-ui] Improved memory management

 tools/test-ui/main.c |   38 +++++++++++++++++++++++++++++++-------
 1 file changed, 31 insertions(+), 7 deletions(-)

commit bf30d171ebd60af585991dcc9bf9099819c94406
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Jan 20 16:01:54 2010 +0100

    Include src dir with -I flag

 src/content/Makefile.am |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 9f87347c1e678483e99eca7ee19923e219c7355b
Author: Iago Toral <itoral@igalia.com>
Date:   Wed Jan 20 14:01:34 2010 +0100

    Implemented auto-split for MsMediaSource.

 src/ms-media-source.c |  371 +++++++++++++++++++++++++++++++++++++++----------
 src/ms-media-source.h |    4 +
 2 files changed, 303 insertions(+), 72 deletions(-)

commit 8a0cd9f109ed974aeb354c596b6df186edab10bd
Author: Iago Toral <itoral@igalia.com>
Date:   Wed Jan 20 14:01:02 2010 +0100

    Cosmetic changes

 src/ms-metadata-source.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 4ada6aaf4ba8c2ceb2340c959a42872bb4f17548
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Jan 20 10:25:00 2010 +0000

    Use package name as base name for place where to install plugins

 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit adc1840c16bbab39bef8ba93292e031eb1bb8a44
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Jan 20 10:22:11 2010 +0000

    Install header files

 src/Makefile.am         |   36 ++++++++++++++++++++++++------------
 src/content/Makefile.am |   24 +++++++++++++++++-------
 2 files changed, 41 insertions(+), 19 deletions(-)

commit 3f92fe1d29fc2e39c9ab684385a263ba6e7de026
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Jan 20 09:47:50 2010 +0000

    Use absolute paths in Makefile.am
    
    Use vars "top_builddir" and "top_srcdir" to make references of building and
    source paths, respectively.

 src/Makefile.am           |    2 +-
 tools/test-ui/Makefile.am |   26 +++++++++++++-------------
 2 files changed, 14 insertions(+), 14 deletions(-)

commit 53a31c973eb3f42b87fa26c00076d3f0553ea9bf
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Jan 19 18:38:47 2010 +0000

    Use plugins dir as default value for MS_PLUGIN_PATH.

 configure.ac             |   11 ++++++++++-
 src/ms-plugin-registry.c |    8 +++++---
 2 files changed, 15 insertions(+), 4 deletions(-)

commit d4e9ec06107d5ca981c5053fd8a3074025cc2e24
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Jan 19 15:56:28 2010 +0000

    Install plugins into separated directory.

 configure.ac |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 86a7151c7a79eb95c7619a46065e5df96264428c
Author: Iago Toral <itoral@igalia.com>
Date:   Tue Jan 19 12:14:14 2010 +0100

    [test-ui] Request childcount when browsing

 tools/test-ui/main.c |    7 +++++++
 1 file changed, 7 insertions(+)

commit d96ea88bdbaef06c392061d2e216912da9a91f60
Author: Iago Toral <itoral@igalia.com>
Date:   Tue Jan 19 12:09:38 2010 +0100

    Fixed wrong cancellation handling in the idle relay callback
    when cancelling exactly when the last element is emitted.

 src/ms-media-source.c |   11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

commit c15e8231931391161bfa95c2a16c523b2adb9cee
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Jan 19 11:39:08 2010 +0000

    Do not check for gettext
    
    Right now, we are not using any kind of internationalization.

 configure.ac |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 91fa6a7ff3087fea81c3f1cb44247f37a2ea2bdf
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Jan 19 11:34:39 2010 +0000

    Remove po directory.
    
    Right now, we do not use it.

 po/Makefile.in.in |  270 -----------------------------------------------------
 1 file changed, 270 deletions(-)

commit e7f5a19152bfe01b93dbfc23be3bf09590163fa4
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Jan 19 11:32:58 2010 +0000

    Improve distclean target.
    
    Some files were still kept with distclean (mainly, *.in files).

 src/Makefile.am         |    2 ++
 src/content/Makefile.am |    2 ++
 2 files changed, 4 insertions(+)

commit 63568af68bbb8df1ddebff760fb557572ed79346
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Jan 19 11:28:13 2010 +0000

    Remove autom4te.cache in distclean.

 Makefile.am |    3 +++
 1 file changed, 3 insertions(+)

commit 30ddf0bb95bcb4fccfe649a4c5289077d5b1f4cc
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jan 18 20:36:48 2010 +0100

    Exit program after closing main window.

 tools/test-ui/main.c |    2 ++
 1 file changed, 2 insertions(+)

commit dd5060990a14c84b48add3fcbbb6552f230cb923
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jan 18 13:28:47 2010 +0100

    Add MS_RESOLVE_ERROR

 src/ms-error.h |    1 +
 1 file changed, 1 insertion(+)

commit 16b0dc3e1a94386609f70bcdc5547d1a1ad8eb53
Author: Iago Toral <itoral@igalia.com>
Date:   Mon Jan 18 13:59:57 2010 +0100

    [test-ui] Do not let widgets expand if they don't need to.

 tools/test-ui/main.c |   13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

commit e56df2ed8fe92a9a662982bf72bad9f4b49f2763
Author: Iago Toral <itoral@igalia.com>
Date:   Mon Jan 18 13:24:56 2010 +0100

    [test-ui] Request MS_METADATA_KEY_RATING in metadata operation

 tools/test-ui/main.c |    1 +
 1 file changed, 1 insertion(+)

commit 09567bc5f818ee5b146707b89265795482e8ac3e
Author: Iago Toral <itoral@igalia.com>
Date:   Mon Jan 18 13:24:13 2010 +0100

    Added support for rating key in MsContentMedia

 src/content/ms-content-media.c |   29 +++++++++++++++++++++++++++++
 src/content/ms-content-media.h |    5 +++++
 2 files changed, 34 insertions(+)

commit 505340bf2ce915ae913fe4df76790ae8b55c89e6
Author: Iago Toral <itoral@igalia.com>
Date:   Mon Jan 18 12:07:46 2010 +0100

    Added MS_METADATA_KEY_RATING

 src/ms-metadata-key.h    |    4 ++++
 src/ms-plugin-registry.c |    1 +
 2 files changed, 5 insertions(+)

commit 4268e0d585dac2b05b2cdad4e4902919eccc932e
Author: Iago Toral <itoral@igalia.com>
Date:   Mon Jan 18 12:02:41 2010 +0100

    [test-ui] Request sit key in metadata operation

 tools/test-ui/main.c |    1 +
 1 file changed, 1 insertion(+)

commit c9e60637e93f41db95b4b16ae06a3b9e58b19e5f
Author: Iago Toral <itoral@igalia.com>
Date:   Mon Jan 18 11:24:13 2010 +0100

    Cosmetic changes

 src/ms-media-source.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit f682b28751fe6273d8a89de10807405a214aa18b
Author: Iago Toral <itoral@igalia.com>
Date:   Mon Jan 18 11:21:57 2010 +0100

    Control the case when sources emit results with remaining=0
    more than once for the same operation (which is wrong). If this is
    detected drop a warning message and avoid crashing.

 src/ms-media-source.c |   60 ++++++++++++++++++++++++++++++++++++++++++++-----
 1 file changed, 54 insertions(+), 6 deletions(-)

commit 42f76682479760fd387a82056b58910db62c6aaa
Author: Iago Toral <itoral@igalia.com>
Date:   Mon Jan 18 10:20:20 2010 +0100

    [test-ui] Request MIME type in metadata queries

 tools/test-ui/main.c |    1 +
 1 file changed, 1 insertion(+)

commit 9b937dbe8c3c7f68fcfaa0f7e97019bf07c32d8a
Author: Iago Toral <itoral@igalia.com>
Date:   Sun Jan 17 04:33:25 2010 +0100

    [test-ui] Fixed critical warning when trying to get contents
    from NULL GValue.

 tools/test-ui/main.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 903933bdb42b8fe326e9b89ab51281f8070fd9f0
Author: Iago Toral <itoral@igalia.com>
Date:   Sun Jan 17 04:24:06 2010 +0100

    Fixed various issues with operation cancelling.
    Implemented cancellation in youtube plugin.
    Ensure that results are sent in appropriate order if MS_RESOLVE_FULL is used.

 src/ms-media-source.c |  416 +++++++++++++++++++++++++++++++++++++------------
 src/ms-media-source.h |    7 +
 2 files changed, 323 insertions(+), 100 deletions(-)

commit 3174122f16e5d93aad1c1d0a0ca16142a102f0dd
Author: Iago Toral <itoral@igalia.com>
Date:   Sat Jan 16 18:22:43 2010 +0100

    [test-ui] Added license header to main.c

 tools/test-ui/main.c |   22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

commit 9ecaa3b06c2c3976f0c0a880a1b3ca2cc30e8552
Author: Iago Toral <itoral@igalia.com>
Date:   Sat Jan 16 18:16:53 2010 +0100

    Added operation cancellation support (browse, search and query).

 src/ms-media-source.c |  285 ++++++++++++++++++++++++++++++++++---------------
 src/ms-media-source.h |    5 +
 tools/test-ui/main.c  |  208 ++++++++++++++++++++----------------
 3 files changed, 322 insertions(+), 176 deletions(-)

commit d5700e91d3254fb3db6a56bc4b243a3e4e1e86a8
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Jan 15 12:14:42 2010 +0100

    Add error code for failing query.

 src/ms-error.h |    1 +
 1 file changed, 1 insertion(+)

commit f687c299b13332d16152cae1865403a7b5beb18c
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jan 14 18:20:37 2010 +0100

    Fix ms_content_set.
    
    Value can be set if overwrite is FALSE but there is no old value.

 src/content/ms-content.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f5bd76e02a759673629b273a2e00102c6fa51da9
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jan 14 18:06:24 2010 +0100

    Internally store unknown values for childcount as NULL.

 src/content/ms-content-box.c |   50 ++++++++++++++++++++++++++++++++++++++++++
 src/content/ms-content-box.h |    8 ++-----
 2 files changed, 52 insertions(+), 6 deletions(-)

commit 1eff2428fd0ed259e399ddc3dc5225e12d48c382
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jan 14 17:46:08 2010 +0100

    Fix preconditions for ms_content_ operations.

 src/content/ms-content.c |   18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

commit f35228fadddc5e56a306b14339f27fc839d66852
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jan 14 17:42:23 2010 +0100

    Specify if old values can be replaced when setting values in MsContent.

 src/content/ms-content.c |  142 ++++++++++++++++++++++++++++++++++++++++------
 src/content/ms-content.h |    2 +
 2 files changed, 126 insertions(+), 18 deletions(-)

commit 4627e77f64597de7b275b2b0b8bd8cda773fd7b9
Author: Iago Toral <itoral@igalia.com>
Date:   Thu Jan 14 17:23:20 2010 +0100

    Disable search button while browse/search operations are on going

 tools/test-ui/main.c |    2 ++
 1 file changed, 2 insertions(+)

commit 4e8e2be54e7834bb83ad34ed5e6fb9af17941e87
Author: Iago Toral <itoral@igalia.com>
Date:   Thu Jan 14 17:22:02 2010 +0100

    Renames IS_MS_* macros to MS_IS_*

 src/content/ms-content-audio.h |    4 ++--
 src/content/ms-content-box.h   |    4 ++--
 src/content/ms-content-image.h |    4 ++--
 src/content/ms-content-media.h |    4 ++--
 src/content/ms-content-video.h |    4 ++--
 src/content/ms-content.h       |    4 ++--
 src/ms-media-plugin.c          |   16 ++++++++--------
 src/ms-media-plugin.h          |    4 ++--
 src/ms-media-source.c          |    8 ++++----
 src/ms-media-source.h          |    4 ++--
 src/ms-metadata-source.c       |   20 ++++++++++----------
 src/ms-metadata-source.h       |    4 ++--
 src/ms-plugin-registry.h       |    4 ++--
 tools/test-ui/main.c           |   10 +++++-----
 14 files changed, 47 insertions(+), 47 deletions(-)

commit b184e56a836544ac2e341ed5d1a04ed2f4388db7
Author: Iago Toral <itoral@igalia.com>
Date:   Thu Jan 14 17:08:16 2010 +0100

    Disable back button if browse or search operations are on going.

 tools/test-ui/main.c |   85 ++++++++++++++++++++++++++++----------------------
 1 file changed, 47 insertions(+), 38 deletions(-)

commit a06ab644d11e5ac00e89db3f0af4ed6d8807c343
Author: Iago Toral <itoral@igalia.com>
Date:   Thu Jan 14 16:46:11 2010 +0100

    test-ui: separate UI widgets from UI state.

 tools/test-ui/main.c |   39 +++++++++++++++++++++++----------------
 1 file changed, 23 insertions(+), 16 deletions(-)

commit 0aa835217a61115ddfb9b9f2e75c36eba075d492
Author: Iago Toral <itoral@igalia.com>
Date:   Thu Jan 14 16:33:11 2010 +0100

    Split search() in two: search() and query(), the former seach
    by text while the latter uses a plugin dependent filter.

 src/ms-media-source.c    |  117 ++++++++++++++++++++++++++++++++++++++++++++--
 src/ms-media-source.h    |   27 ++++++++++-
 src/ms-metadata-source.h |    3 +-
 tools/test-ui/main.c     |    2 -
 4 files changed, 140 insertions(+), 9 deletions(-)

commit 36dc02eebaaf344a358c18c60dc761368e1be1bd
Author: Iago Toral <itoral@igalia.com>
Date:   Thu Jan 14 12:39:57 2010 +0100

    Set the object type properly in the browse_cb (test-ui)

 tools/test-ui/main.c |    5 +++++
 1 file changed, 5 insertions(+)

commit caab7eaf21a7cae6486156fca8730ae5ed3bd7b2
Author: Iago Toral <itoral@igalia.com>
Date:   Thu Jan 14 11:58:00 2010 +0100

    Added traces to keep track of finished operations (browse & search)

 tools/test-ui/main.c |    2 ++
 1 file changed, 2 insertions(+)

commit 29a26c1becb39dfa9fa335ac0149d1c367e7f9d8
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Jan 13 19:20:52 2010 +0100

    Fix ms_content_key_is_known() function.

 src/content/ms-content.c |   16 ++++++++++++++--
 1 file changed, 14 insertions(+), 2 deletions(-)

commit 84fa16c3bbc1099dd6d43fbf0c79036898eceb31
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Jan 13 19:17:33 2010 +0100

    Implement get/set floats in MsContent.

 src/content/ms-content.c |   39 +++++++++++++++++++++++++++++++++++++++
 src/content/ms-content.h |    2 ++
 2 files changed, 41 insertions(+)

commit 081fb3bd8b12a86427bec35e4d549c4cac743821
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Jan 13 13:41:14 2010 +0100

    Refactor ms_content_get_keys so it returns a GList instead of an array.

 src/content/ms-content.c |   36 ++++++------------------------------
 src/content/ms-content.h |    2 +-
 tools/test-ui/main.c     |   17 ++++++++++-------
 3 files changed, 17 insertions(+), 38 deletions(-)

commit 44d1b75413f006e41430c0b64bcf35fd8157794f
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Jan 13 13:39:29 2010 +0100

    Add macros to convert between MsKeyID and gpointer.

 src/content/ms-content.c |   10 +++++-----
 src/ms-metadata-key.c    |    2 +-
 src/ms-metadata-key.h    |    7 +++++--
 src/ms-metadata-source.c |   20 ++++++++++----------
 4 files changed, 21 insertions(+), 18 deletions(-)

commit 49215c1d7f7a448415707de49d0bd5b2483e0e2b
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Jan 13 12:32:17 2010 +0100

    Add function ms_content_key_is_known.
    
    This function returns TRUE if the key has a value.

 src/content/ms-content.c |   19 +++++++++++++++++++
 src/content/ms-content.h |    1 +
 2 files changed, 20 insertions(+)

commit 3f66940b3614d71d99d9b84e77d8643b4d96dd21
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Jan 13 19:28:15 2010 +0100

    Include libcontent.la.

 tools/test-ui/Makefile.am |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 53ec9259e919b58abfa92303ded9271bd8d6835b
Author: Iago Toral <itoral@igalia.com>
Date:   Wed Jan 13 18:26:02 2010 +0100

    If metadata() is calles with a NULL media, transparently create
    a media with a NULL object-id and pass that to the plugins.

 src/ms-media-source.c |    8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

commit 4074c913b509323d6a9cae0cc5472c860082b157
Author: Iago Toral <itoral@igalia.com>
Date:   Wed Jan 13 18:19:08 2010 +0100

    Replace the object_id parameter with a MsContentMedia in browse()

 src/ms-media-source.c |   14 +++++++++++---
 src/ms-media-source.h |    4 ++--
 tools/test-ui/main.c  |   35 ++++++++++++++++++-----------------
 3 files changed, 31 insertions(+), 22 deletions(-)

commit 8ad6ba66d08f0692879faeb3cfda861dd23440b4
Author: Iago Toral <itoral@igalia.com>
Date:   Wed Jan 13 17:45:16 2010 +0100

    Added search functionality to the test-ui

 tools/test-ui/main.c |  258 ++++++++++++++++++++++++++++++++++++++++++--------
 1 file changed, 220 insertions(+), 38 deletions(-)

commit e9d7b8310b2e4408a0c88d5fdf446e2800dbe8ba
Author: Iago Toral <itoral@igalia.com>
Date:   Wed Jan 13 11:53:23 2010 +0100

    Fixed critical warning due to invalid unref of a NULL object

 src/ms-media-source.c |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit b96a30d2f9e6e45818cf6ac6aefa3fdf9ee81028
Author: Iago Toral <itoral@igalia.com>
Date:   Wed Jan 13 11:37:21 2010 +0100

    Modified the browse chunk size to test youtube's automatic chunking

 tools/test-ui/main.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 5f9a1dfe7508ef606103c12a7c28446f33e9c3da
Author: Iago Toral <itoral@igalia.com>
Date:   Wed Jan 13 08:08:38 2010 +0100

    Updated TODO file

 TODO |    3 +++
 1 file changed, 3 insertions(+)

commit a4a05861c61c2e9ed923cf50162ecb8f8c1cd7c6
Author: Iago Toral <itoral@igalia.com>
Date:   Tue Jan 12 13:16:03 2010 +0100

    In test-ui, do not execute metadata operations for the same item
    more than once

 tools/test-ui/main.c |   53 ++++++++++++++++++++++++++++++++++----------------
 1 file changed, 36 insertions(+), 17 deletions(-)

commit 9b371c7054309fb39b196b17077e3c634d6ae09a
Author: Iago Toral <itoral@igalia.com>
Date:   Tue Jan 12 12:33:09 2010 +0100

    Simplified code in test-ui

 tools/test-ui/main.c |    9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

commit 4aac5c3752b3304ce31cf5ab71d11439cee00927
Author: Iago Toral <itoral@igalia.com>
Date:   Tue Jan 12 12:28:36 2010 +0100

    Enabled image content in filesystem plugin and test-ui

 tools/test-ui/main.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 7de6996ccbc5c127015923b5ab8d196ab0865c43
Author: Iago Toral <itoral@igalia.com>
Date:   Tue Jan 12 12:27:47 2010 +0100

    Added ms-content-image.h to media-store.h

 src/media-store.h |    1 +
 1 file changed, 1 insertion(+)

commit 2afa87040446effff362704d926f085c54deab19
Author: Iago Toral <itoral@igalia.com>
Date:   Tue Jan 12 12:24:04 2010 +0100

    Prepared file-system plugin and test-ui for proper categorization
    of contents, including image contents.

 tools/test-ui/main.c |    8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

commit f07dfda739069ead679c8f42a56e513a57fd6388
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Jan 12 12:21:04 2010 +0100

    Add a new image content media to store image media.

 src/content/Makefile.am        |    1 +
 src/content/ms-content-image.c |   89 ++++++++++++++++++++++++++++++++++++++++
 src/content/ms-content-image.h |   85 ++++++++++++++++++++++++++++++++++++++
 3 files changed, 175 insertions(+)

commit 5497e8409cf0209bf4b091b48e38a2d36d09d973
Author: Iago Toral <itoral@igalia.com>
Date:   Tue Jan 12 12:02:42 2010 +0100

    Make MsMediaSource::metadata accept a MsContentMedia argument instead
    of a plin object identifier.

 src/ms-media-source.c |    6 +++---
 src/ms-media-source.h |    4 ++--
 tools/test-ui/main.c  |   33 ++++++++++++++++++++-------------
 3 files changed, 25 insertions(+), 18 deletions(-)

commit 3fdc2e8d5b92a36435e8cb87d615715efdee278e
Author: Iago Toral <itoral@igalia.com>
Date:   Tue Jan 12 11:03:27 2010 +0100

    implemented browsing by chunks (up to a maxinum of 200 results
    to avoid spamming)

 tools/test-ui/main.c |   53 ++++++++++++++++++++++++++++++++++++++++++--------
 1 file changed, 45 insertions(+), 8 deletions(-)

commit 8ff7bc4002a40830c649c7e712829550ca054adf
Author: Iago Toral <itoral@igalia.com>
Date:   Tue Jan 12 10:33:33 2010 +0100

    Icons for audio and video content in test-ui.
    Proper use os MsContent hierarchy in filesystem plugin.

 tools/test-ui/main.c |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 4aae1e0acf680480fea2fb9c6f6800e5329429f5
Author: Iago Toral <itoral@igalia.com>
Date:   Tue Jan 12 10:20:52 2010 +0100

    Fixed bug in error management

 tools/test-ui/main.c |    1 +
 1 file changed, 1 insertion(+)

commit f6fcac70b9de5395b36499a06c4607d0b2cb49b5
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jan 11 21:14:42 2010 +0100

    Make MsContentMedia the heart of system.
    
    As GtkWidget is the heart in Gtk+ (all gtk_<item>_new functions returns a
    GtkWidget instead of Gtk<item>), do the same here.

 src/content/ms-content-audio.c |    6 +++---
 src/content/ms-content-audio.h |    2 +-
 src/content/ms-content-box.c   |    6 +++---
 src/content/ms-content-box.h   |    2 +-
 src/content/ms-content-video.c |    6 +++---
 src/content/ms-content-video.h |    2 +-
 src/ms-media-source.c          |   14 +++++++-------
 src/ms-media-source.h          |    4 ++--
 src/ms-metadata-source.c       |    8 ++++----
 src/ms-metadata-source.h       |    8 ++++----
 tools/test-ui/main.c           |   10 ++++++----
 11 files changed, 35 insertions(+), 33 deletions(-)

commit 969f3b06d25db1c9fad162fe16d9f92b86f18463
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jan 11 17:15:22 2010 +0100

    Youtube plugin should manage MsContentBox and MsContentVideo.

 src/content/ms-content-media.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b4d697c46c14985f8b04c25a10af7bb83fd82c38
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jan 11 16:32:48 2010 +0100

    Register new keys.

 src/ms-plugin-registry.c |    3 +++
 1 file changed, 3 insertions(+)

commit a815b6a73c4ec7e82562216a7236c509570abb07
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jan 11 16:29:21 2010 +0100

    Add MsContentBox to store multiple items, like a list.

 src/content/Makefile.am        |    3 +-
 src/content/ms-content-audio.c |    4 +-
 src/content/ms-content-box.c   |   82 ++++++++++++++++++++++++++++++++++++++++
 src/content/ms-content-box.h   |   78 ++++++++++++++++++++++++++++++++++++++
 src/content/ms-content-media.c |   17 +--------
 src/content/ms-content-media.h |    1 -
 src/content/ms-content-video.c |    4 +-
 src/content/ms-content.c       |   75 +-----------------------------------
 src/content/ms-content.h       |    3 +-
 src/media-store.h              |    3 ++
 tools/test-ui/main.c           |    2 +-
 11 files changed, 173 insertions(+), 99 deletions(-)

commit 1f4547a9f2f9d6fe8a5f362c9c3c5153b4d5f542
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jan 11 13:28:33 2010 +0100

    Add new set/get methods.

 src/content/ms-content-media.h |   40 ++++++++++++++++++++++++++++------------
 1 file changed, 28 insertions(+), 12 deletions(-)

commit 5aaef89bd6921910ff9d25e419e939e01deabaa3
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jan 11 13:21:44 2010 +0100

    Add a new video content media to store video media.

 src/content/Makefile.am        |    3 +-
 src/content/ms-content-video.c |   89 ++++++++++++++++++++++++++++++++++++++++
 src/content/ms-content-video.h |   87 +++++++++++++++++++++++++++++++++++++++
 src/ms-metadata-key.h          |   12 ++++++
 4 files changed, 190 insertions(+), 1 deletion(-)

commit 777ba0b25bf273a3305402433dba59e9520e3f60
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jan 11 12:29:54 2010 +0100

    Add a new audio content media to store audio-only media.

 src/content/Makefile.am        |    3 +-
 src/content/ms-content-audio.c |   80 +++++++++++++++++++++++++++++++++++
 src/content/ms-content-audio.h |   90 ++++++++++++++++++++++++++++++++++++++++
 3 files changed, 172 insertions(+), 1 deletion(-)

commit 6ab3db21e86534820adf93459390c36f7bf1ffa9
Author: Iago Toral <itoral@igalia.com>
Date:   Tue Jan 12 08:48:32 2010 +0100

    Fixed critical warning in test-ui

 tools/test-ui/main.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 8ca892766b07ec802afab99fc2025446ffa6638e
Author: Iago Toral <itoral@igalia.com>
Date:   Tue Jan 12 08:40:17 2010 +0100

    Fixed backwards navigation in test-ui

 tools/test-ui/main.c |   39 +++++++++++++++++++--------------------
 1 file changed, 19 insertions(+), 20 deletions(-)

commit 5e53d9efffbbdc30a451ad9a3672d35b4e5a0fc8
Author: Iago Toral <itoral@igalia.com>
Date:   Tue Jan 12 08:39:47 2010 +0100

    Fixed --enable-debug option

 configure.ac |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 3d8134243f9c9e9d4db98fb5a2ed78c29811121d
Author: Iago Toral <itoral@igalia.com>
Date:   Mon Jan 11 13:28:43 2010 +0100

    Better default sizing for main view components in test-ui

 tools/test-ui/main.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 8b32c90d1d85c52cdc9e83f3e483039168539ae3
Author: Iago Toral <itoral@igalia.com>
Date:   Mon Jan 11 13:23:40 2010 +0100

    Added metadata support to test-ui

 tools/test-ui/main.c |  171 +++++++++++++++++++++++++++++++++++++++++++++++---
 1 file changed, 162 insertions(+), 9 deletions(-)

commit 24f7c181c5bf7eb380cf38c5f98c6c115900db1f
Author: Iago Toral <itoral@igalia.com>
Date:   Mon Jan 11 12:18:51 2010 +0100

    Added a back button to the test-ui

 tools/test-ui/main.c |   83 ++++++++++++++++++++++++++++++++++++++++++--------
 1 file changed, 70 insertions(+), 13 deletions(-)

commit 0f0d2fb212484ddf4690f7d0036e2482e6908d5f
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Jan 11 11:23:30 2010 +0100

    Fix CFLAGS

 tools/test-ui/Makefile.am |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7e53ea0e7ddd3cf05c7958ea6098f14d4dcfee1c
Author: Iago Toral <itoral@igalia.com>
Date:   Fri Jan 8 18:18:01 2010 +0100

    Reduced browse count to 50 (otherwise Youtube complains)

 tools/test-ui/main.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 402dafa5bdc679e97d527dfe078708faebfeef58
Author: Iago Toral <itoral@igalia.com>
Date:   Fri Jan 8 18:14:19 2010 +0100

    Added TODO file for test-ui

 tools/test-ui/TODO |    2 ++
 1 file changed, 2 insertions(+)

commit a47032a88009664cb26ff2a2e1946e7e09eeba38
Author: Iago Toral <itoral@igalia.com>
Date:   Fri Jan 8 18:10:46 2010 +0100

    Started implementation of a basic test UI

 Makefile.am               |    2 +-
 configure.ac              |   11 +-
 tools/Makefile.am         |   25 +++++
 tools/test-ui/Makefile.am |   30 +++++
 tools/test-ui/main.c      |  275 +++++++++++++++++++++++++++++++++++++++++++++
 5 files changed, 341 insertions(+), 2 deletions(-)

commit c91da5f20294ad9d6b1487a1fbde4128329065bd
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jan 7 14:09:31 2010 +0100

    Use MsMetadataResolutionFlags instead of guint for flags.

 src/ms-media-source.h |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 5584901b737177fcc40246f92e25ff077717d207
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Jan 7 13:13:53 2010 +0100

    Use MsMetadataResolutionFlags instead of guint.

 src/ms-media-source.c |    6 +++---
 src/ms-media-source.h |    6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

commit a735e4b8d987cb71a8718ff1ab6c055259b9344a
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Feb 8 18:34:12 2010 +0100

    Add new keys

 src/ms-metadata-key.h    |    4 ++++
 src/ms-plugin-registry.c |    1 +
 2 files changed, 5 insertions(+)

commit 8edd6671d9defa6a7ce3c3929f2ae609d53f52ef
Author: Iago Toral <itoral@igalia.com>
Date:   Thu Jan 7 00:46:18 2010 +0100

    Fixed typo

 src/ms-metadata-key.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b96cafaf3e03737f64fecead87f6bbdf00ddcae5
Author: Iago Toral <itoral@igalia.com>
Date:   Thu Jan 7 00:42:36 2010 +0100

    Updated TODO

 TODO |   11 -----------
 1 file changed, 11 deletions(-)

commit a45d0718edbe044a1404e20f71bda63dbf1ce767
Author: Iago Toral <itoral@igalia.com>
Date:   Thu Jan 7 00:26:10 2010 +0100

    Moved metadata() method from MsMetadataSource to MsMediaSource

 src/ms-media-source.c    |  222 ++++++++++++++++++++++++++++++++++++++++++++
 src/ms-media-source.h    |   24 +++++
 src/ms-metadata-source.c |  231 ----------------------------------------------
 src/ms-metadata-source.h |   24 -----
 4 files changed, 246 insertions(+), 255 deletions(-)

commit 67fc41fabf881d2f3ae367823144f9aadd751a9c
Author: Iago Toral <itoral@igalia.com>
Date:   Tue Jan 5 17:05:37 2010 +0100

    Fixed leak with variable 'name'

 src/ms-metadata-source.c |    1 +
 1 file changed, 1 insertion(+)

commit f3726b96ead88e4a01ed4b86af26e675f6375626
Author: Iago Toral <itoral@igalia.com>
Date:   Tue Jan 5 17:04:37 2010 +0100

    Better memory management  (full resolution mode)

 src/ms-media-source.c    |   30 ++++++++++++++++++++++++++++++
 src/ms-metadata-source.c |   30 +++++++++++++++++++++---------
 2 files changed, 51 insertions(+), 9 deletions(-)

commit b2cf38dcc26b9481552de33f53472e71ef0cd046
Author: Iago Toral <itoral@igalia.com>
Date:   Tue Jan 5 16:15:06 2010 +0100

    Better memory management (browse and search)

 src/ms-media-source.c |   50 ++++++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 49 insertions(+), 1 deletion(-)

commit ca7f947a8647b8757f0b7ce7b0571a6977a37cbb
Author: Iago Toral <itoral@igalia.com>
Date:   Mon Jan 4 16:29:42 2010 +0100

    Better memory management.

 src/ms-media-source.c    |    2 +-
 src/ms-metadata-source.c |   94 +++++++++++++++++++++++++++++++++++++++++++---
 2 files changed, 89 insertions(+), 7 deletions(-)

commit 873374db7ca4918ec10130e1f112795e3c5ecc65
Author: Iago Toral <itoral@igalia.com>
Date:   Mon Jan 4 15:47:23 2010 +0100

    Cosmetic changes

 src/ms-media-plugin.c |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit f22dfb61152eb3e1914c0aa6159c68832f1bc018
Author: Iago Toral <itoral@igalia.com>
Date:   Mon Jan 4 15:19:19 2010 +0100

    Allow plugin developers to access the operation flags, that could be
    handy in certain scenarios.

 src/ms-media-source.c    |    2 ++
 src/ms-media-source.h    |    2 ++
 src/ms-metadata-source.c |    2 ++
 src/ms-metadata-source.h |    2 ++
 4 files changed, 8 insertions(+)

commit 2fbb4aeff32d9d69e7007637afc09c261c0af824
Author: Iago Toral <itoral@igalia.com>
Date:   Mon Jan 4 15:15:21 2010 +0100

    Added support for fast keys resolution to browse, search and resolve.

 src/ms-media-source.c    |   38 +++++++++++++++++++++++++++-----------
 src/ms-metadata-source.c |   24 ++++++++++++++++++++----
 src/ms-metadata-source.h |    1 +
 3 files changed, 48 insertions(+), 15 deletions(-)

commit 5e32a7debbb43a8f27150ac0769db2879ff587ed
Author: Iago Toral <itoral@igalia.com>
Date:   Sun Jan 3 18:43:57 2010 +0100

    Updated TODO

 TODO |    1 +
 1 file changed, 1 insertion(+)

commit befaf17500906ea1bdc572be8e7c57cae4c1ec79
Author: Iago Toral <itoral@igalia.com>
Date:   Sun Jan 3 18:41:07 2010 +0100

    More flexible handling of key filtering methods

 src/ms-metadata-source.c |   39 +++++++++++++++++++++++++++++----------
 src/ms-metadata-source.h |    8 ++++++--
 2 files changed, 35 insertions(+), 12 deletions(-)

commit 71e3dad7a35a46ab1d378d1536f27a5bbbe3a7c6
Author: Iago Toral <itoral@igalia.com>
Date:   Sun Jan 3 18:35:18 2010 +0100

    Updated TODO file

 TODO |   13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

commit d42b358eecb318de06a40b43529666a6b0562f18
Author: Iago Toral <itoral@igalia.com>
Date:   Sun Jan 3 18:04:26 2010 +0100

    Updated TODO file

 TODO |    9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

commit 7550ba6c606f33ccf0a563e1a5ec84afd5245502
Author: Iago Toral <itoral@igalia.com>
Date:   Sun Jan 3 17:57:47 2010 +0100

    Removed traces

 src/ms-metadata-source.c |    3 ---
 1 file changed, 3 deletions(-)

commit 199e79ad3145a5cee67edcb636bcc3df07111549
Author: Iago Toral <itoral@igalia.com>
Date:   Sun Jan 3 17:55:32 2010 +0100

    Added support for defining and filtering slow keys

 src/ms-metadata-source.c |   60 ++++++++++++++++++++++++++++++++++++++++++++++
 src/ms-metadata-source.h |   13 +++++++---
 2 files changed, 70 insertions(+), 3 deletions(-)

commit 684f10d9063fe25c69aef6408504234e3782a08b
Author: Iago Toral <itoral@igalia.com>
Date:   Sat Jan 2 18:14:32 2010 +0100

    Added childcount metadata key.
    Added implementation of childcount in youtube source (browse only)

 src/ms-metadata-key.h    |    5 +++++
 src/ms-plugin-registry.c |    1 +
 2 files changed, 6 insertions(+)

commit db8f0eab5b03f047fe6236838a0a3fbd83e52ab6
Author: Iago Toral <itoral@igalia.com>
Date:   Fri Jan 1 18:14:00 2010 +0100

    Added logging support

 src/Makefile.am   |    3 +-
 src/media-store.h |    1 +
 src/ms-log.c      |  146 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/ms-log.h      |   34 +++++++++++++
 4 files changed, 183 insertions(+), 1 deletion(-)

commit b668efc8eb7abc2ec85817d75a17e045fd018fac
Author: Iago Toral <itoral@igalia.com>
Date:   Fri Jan 1 16:17:12 2010 +0100

    Added proper G_LOG_DOMAIN definitions

 src/ms-media-plugin.c    |    3 +++
 src/ms-media-source.c    |    3 +++
 src/ms-metadata-source.c |    3 +++
 src/ms-plugin-registry.c |    3 +++
 4 files changed, 12 insertions(+)

commit 4521da5648c3d8ddb43914863595ccf77723e3d8
Author: Iago Toral <itoral@igalia.com>
Date:   Wed Dec 30 12:04:37 2009 +0100

    updated

 TODO |    6 ++++++
 1 file changed, 6 insertions(+)

commit bfd5c25208d664275f4f84df5744d1f68eaa88a7
Author: Iago Toral <itoral@igalia.com>
Date:   Wed Dec 30 11:57:41 2009 +0100

    Added for NULLwhen attempting to set the source property on the
    media (could be NULL in case of an empty result set).

 src/ms-media-source.c |    8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

commit b2a62794d44543b809ef41082d0f48d6b375821c
Author: Iago Toral <itoral@igalia.com>
Date:   Wed Dec 30 11:16:37 2009 +0100

    Minor changes to assertionsin public APIs.

 src/ms-media-source.c    |    6 ++++--
 src/ms-metadata-source.c |    8 ++++----
 2 files changed, 8 insertions(+), 6 deletions(-)

commit c53f92a8acf157d85520e995e7261cc712455f8d
Author: Iago Toral <itoral@igalia.com>
Date:   Wed Dec 30 10:33:37 2009 +0100

    Updated TODO file

 TODO |    2 --
 1 file changed, 2 deletions(-)

commit 84babf81a9504ee6e81d6d5e44306bd3e4b0d0eb
Author: Iago Toral <itoral@igalia.com>
Date:   Wed Dec 30 10:32:18 2009 +0100

    Added assertions to public APIs.

 src/ms-media-plugin.c    |   12 +++
 src/ms-media-source.c    |   98 +++++++++--------
 src/ms-metadata-source.c |  262 +++++++++++++++++++++++++---------------------
 src/ms-plugin-registry.c |   30 ++++--
 4 files changed, 233 insertions(+), 169 deletions(-)

commit b0c75e4dcf13a6a4d38085adae132d376b8e1458
Author: Iago Toral <itoral@igalia.com>
Date:   Wed Dec 30 09:39:35 2009 +0100

    Implemented support for informing on supported operations.

 src/ms-media-source.c    |   28 ++++++++++++++++++++++++++++
 src/ms-metadata-source.c |   23 ++++++++++++++++++++++-
 src/ms-metadata-source.h |   12 ++++++++++++
 3 files changed, 62 insertions(+), 1 deletion(-)

commit 14e6b8ef69bbfe4e64eca969d7c3ee4de6557d9a
Author: Iago Toral <itoral@igalia.com>
Date:   Wed Dec 30 08:22:42 2009 +0100

    Updated TODO file

 TODO |    3 ---
 1 file changed, 3 deletions(-)

commit a9a475076b06d6158181f1b1e6171bef44228588
Author: Iago Toral <itoral@igalia.com>
Date:   Tue Dec 29 10:26:10 2009 +0100

    Renamed Metadata Resolution Flags to make them shorter.
    Always hook a relay callback for browse/search operations and use it
    to set the source property for each result.

 src/ms-media-source.c    |   83 +++++++++++++++++++++++++++++-----------------
 src/ms-metadata-source.c |   33 +++++++++++++++++-
 src/ms-metadata-source.h |   10 ++++--
 3 files changed, 91 insertions(+), 35 deletions(-)

commit c77956a948a0b7c4a6978d2c344749600b7f1f80
Author: Iago Toral <itoral@igalia.com>
Date:   Tue Dec 29 10:25:26 2009 +0100

    Added new constructor so that we can create MsContentMedia containers.

 src/content/ms-content-media.c |   15 +++++++++++++++
 src/content/ms-content-media.h |    1 +
 2 files changed, 16 insertions(+)

commit 2951eacfacc7176c0b5c284d797a548e4c7e5453
Author: Iago Toral <itoral@igalia.com>
Date:   Mon Dec 28 12:49:20 2009 +0100

    Updated TODO file

 TODO |    7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

commit bcccf4cf33674b46deaf40aa5be870f99ea85907
Author: Iago Toral <itoral@igalia.com>
Date:   Mon Dec 28 12:48:24 2009 +0100

    Added a root category level to the youtube source.
    Added provisional support for category type elements to MsContent.

 src/content/ms-content-media.c |    4 ++-
 src/content/ms-content.c       |   77 ++++++++++++++++++++++++++++++++++++++--
 src/content/ms-content.h       |    3 +-
 3 files changed, 80 insertions(+), 4 deletions(-)

commit 0b13ca19d759d17dea323a1deb64aa489b38cb57
Author: Iago Toral <itoral@igalia.com>
Date:   Mon Dec 28 10:01:58 2009 +0100

    Implemented relay support for idle callback result post-processing in both
    browse and search operations.

 src/ms-media-source.c    |   84 ++++++++++++++++++++++++++++++++++++++++++++--
 src/ms-metadata-source.c |    4 ++-
 src/ms-metadata-source.h |    1 +
 3 files changed, 86 insertions(+), 3 deletions(-)

commit d2c42c1facf7a82fb9c0e05f3a8ff50e02527f97
Author: Iago Toral <itoral@igalia.com>
Date:   Sat Dec 26 18:27:47 2009 +0100

    Cosmetic changes

 src/ms-media-source.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 820a4d39ca898e2ee04a9703978ff7eb7b324534
Author: Iago Toral <itoral@igalia.com>
Date:   Sat Dec 26 18:27:14 2009 +0100

    Implemented async in base class for metadata source resolve

 src/ms-metadata-source.c |   26 ++++++++++++++++++++------
 src/ms-metadata-source.h |   13 +++++++++----
 2 files changed, 29 insertions(+), 10 deletions(-)

commit 184f19c91f8897352f5afe7b8b02676d4674fd94
Author: Iago Toral <itoral@igalia.com>
Date:   Fri Dec 25 21:40:00 2009 +0100

    Updated TODO file

 TODO |    3 +++
 1 file changed, 3 insertions(+)

commit a1a1fa96c86b2314f02e463b36128e2b47b5c4f5
Author: Iago Toral <itoral@igalia.com>
Date:   Fri Dec 25 21:37:15 2009 +0100

    Call subclass impl of browse, search and metadata in idle call.
    Also, pass parameters for the subclass operation in a structure for
    convenience.

 src/ms-media-source.c    |   60 ++++++++++++++++++++++++++++++++++++----------
 src/ms-media-source.h    |   42 ++++++++++++++++++++------------
 src/ms-metadata-source.c |   22 +++++++++++++----
 src/ms-metadata-source.h |   14 +++++++----
 4 files changed, 102 insertions(+), 36 deletions(-)

commit 85064a972e84739a3ffd71ef8aa6f8fdc8348eaa
Author: Iago Toral <itoral@igalia.com>
Date:   Wed Dec 23 10:49:45 2009 +0100

    Updated

 TODO |    1 +
 1 file changed, 1 insertion(+)

commit 73237da63711dff887814a78fd8b2ccaad73d0d6
Author: Iago Toral <itoral@igalia.com>
Date:   Wed Dec 23 10:42:48 2009 +0100

    Fixed wrong guard in ms-error.h
    Removed trailing blank lines in media-store.h

 src/media-store.h |    2 --
 src/ms-error.h    |    6 +++---
 2 files changed, 3 insertions(+), 5 deletions(-)

commit c458deb33682059415217d4479a0571a1ffd719a
Author: Iago Toral <itoral@igalia.com>
Date:   Wed Dec 23 10:27:55 2009 +0100

    Added new error code for "media not found"

 src/ms-error.h |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 4bf659579fa231b741a28e64fa81446793510d11
Author: Iago Toral <itoral@igalia.com>
Date:   Tue Dec 22 13:29:54 2009 +0100

    Added date key

 src/ms-metadata-key.h    |    4 ++++
 src/ms-plugin-registry.c |    1 +
 2 files changed, 5 insertions(+)

commit 4ca9b4d6054485557deccb3f4dfbfaaddfdf2127
Author: Iago Toral <itoral@igalia.com>
Date:   Tue Dec 22 12:22:30 2009 +0100

    Added content header files

 src/media-store.h |    2 ++
 1 file changed, 2 insertions(+)

commit 2344dc3e81a8eb1cb0e00bcab6f7464fb246475f
Author: Iago Toral <itoral@igalia.com>
Date:   Tue Dec 22 12:02:21 2009 +0100

    Added header file for error definitions

 src/Makefile.am   |    1 +
 src/media-store.h |    1 +
 src/ms-error.h    |   34 ++++++++++++++++++++++++++++++++++
 3 files changed, 36 insertions(+)

commit 156aae112dc48c754ffb341cde59c278d375ce8e
Author: Iago Toral <itoral@igalia.com>
Date:   Tue Dec 22 11:25:49 2009 +0100

    Added duration key

 src/ms-metadata-key.h    |    4 ++++
 src/ms-plugin-registry.c |    1 +
 2 files changed, 5 insertions(+)

commit d15d59aed977089c6770a27dd81dd792b1451d1b
Author: Iago Toral <itoral@igalia.com>
Date:   Tue Dec 22 09:43:37 2009 +0100

    Fixed wrong path in .pc file

 media-store-uninstalled.pc.in |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e430ccb996056da427ce1272196d4d96b419e426
Author: Iago Toral <itoral@igalia.com>
Date:   Mon Dec 21 13:04:25 2009 +0100

    Handle browse-id generation in base classes

 src/ms-media-source.c |   42 +++++++++++++++++++++++++++++++-----------
 src/ms-media-source.h |   48 ++++++++++++++++++++++++++----------------------
 2 files changed, 57 insertions(+), 33 deletions(-)

commit 8725de87b2dd0284d41d3e887377923c63c31279
Author: Iago Toral <itoral@igalia.com>
Date:   Mon Dec 21 12:37:01 2009 +0100

    Added TODO file

 TODO |    2 ++
 1 file changed, 2 insertions(+)

commit fe7a572402dec908baf81620af5bb257093e0920
Author: Iago Toral <itoral@igalia.com>
Date:   Mon Dec 21 12:33:24 2009 +0100

    Added uninstalled pkg-config support.
    Fixed config.h includes

 Makefile.am                   |    2 +-
 configure.ac                  |    1 +
 media-store-uninstalled.pc.in |   14 ++++++++++++++
 src/Makefile.am               |    1 +
 src/media-store.h             |   40 ++++++++++++++++++++++++++++++++++++++++
 src/ms-media-plugin.h         |    4 ----
 src/ms-media-source.h         |    4 ----
 src/ms-metadata-key.h         |    4 ----
 src/ms-metadata-source.h      |    4 ----
 src/ms-plugin-registry.h      |    4 ----
 10 files changed, 57 insertions(+), 21 deletions(-)

commit 3fb32da851e1324a3095122ac8346baafaeb9db7
Author: Iago Toral <itoral@igalia.com>
Date:   Mon Dec 21 11:31:30 2009 +0100

    Fixed header comments

 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 37129cbd482af312abd3e2890a11a0738c3bf88c
Author: Iago Toral <itoral@igalia.com>
Date:   Mon Dec 21 11:23:14 2009 +0100

    Added missing file

 src/ms-metadata-source-priv.h |   53 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 53 insertions(+)

commit e5128842d2f9b95d3048c8c874630b25cb8c6a46
Author: Iago Toral <itoral@igalia.com>
Date:   Mon Dec 21 11:11:18 2009 +0100

    Allow defining several plugin paths in MS_PLUGIN_PATH. Also, added
    API for loading plugins from a specific direcotry path.

 src/ms-plugin-registry.c |   44 +++++++++++++++++++++++++++++++++++---------
 src/ms-plugin-registry.h |    1 +
 2 files changed, 36 insertions(+), 9 deletions(-)

commit f6620a86267e04132de1fcb592c1bed90a3b549d
Author: Iago Toral <itoral@igalia.com>
Date:   Mon Dec 21 10:49:26 2009 +0100

    Added support for full resolution in metadata_get

 src/ms-media-source.c    |    6 +--
 src/ms-metadata-source.c |  130 +++++++++++++++++++++++++++++++++++++++++++---
 src/ms-metadata-source.h |    4 +-
 3 files changed, 129 insertions(+), 11 deletions(-)

commit 557b71dac961b114ad72e233f02e5337e2aaab77
Author: Iago Toral <itoral@igalia.com>
Date:   Mon Dec 21 09:12:56 2009 +0100

    Moved full resolution support to MsMetadataSource

 src/Makefile.am          |    2 +-
 src/ms-media-source.c    |  280 ++++++++++------------------------------------
 src/ms-metadata-source.c |  164 +++++++++++++++++++++++++++
 3 files changed, 221 insertions(+), 225 deletions(-)

commit 26f50b694e0cd76470f9880ea27fa7b819a450d6
Author: Iago Toral <itoral@igalia.com>
Date:   Mon Dec 21 08:25:48 2009 +0100

    Added full metadata resolution support to search interface

 src/ms-media-source.c |  384 +++++++++++++++++++++++++++----------------------
 1 file changed, 214 insertions(+), 170 deletions(-)

commit 4b62975a2165e7adc4467206dd869d1ef07dbe09
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Dec 18 13:20:41 2009 +0100

    Prefix with MS.
    
    Prefix every issue with "MS" (media-store). So MS is the namespace.

 src/Makefile.am                |   12 +-
 src/content/Makefile.am        |    4 +-
 src/content/content-media.c    |   79 ---------
 src/content/content-media.h    |  102 -----------
 src/content/content.c          |  312 ---------------------------------
 src/content/content.h          |   84 ---------
 src/content/ms-content-media.c |   79 +++++++++
 src/content/ms-content-media.h |  102 +++++++++++
 src/content/ms-content.c       |  312 +++++++++++++++++++++++++++++++++
 src/content/ms-content.h       |   85 +++++++++
 src/media-plugin-priv.h        |   46 -----
 src/media-plugin.c             |  119 -------------
 src/media-plugin.h             |   86 ----------
 src/media-source.c             |  369 ----------------------------------------
 src/media-source.h             |  124 --------------
 src/metadata-key.h             |  100 -----------
 src/metadata-source.c          |  273 -----------------------------
 src/metadata-source.h          |  133 ---------------
 src/ms-media-plugin-priv.h     |   46 +++++
 src/ms-media-plugin.c          |  119 +++++++++++++
 src/ms-media-plugin.h          |   86 ++++++++++
 src/ms-media-source.c          |  369 ++++++++++++++++++++++++++++++++++++++++
 src/ms-media-source.h          |  124 ++++++++++++++
 src/ms-metadata-key.c          |   43 +++++
 src/ms-metadata-key.h          |  100 +++++++++++
 src/ms-metadata-source.c       |  273 +++++++++++++++++++++++++++++
 src/ms-metadata-source.h       |  134 +++++++++++++++
 src/ms-plugin-registry.c       |  228 +++++++++++++++++++++++++
 src/ms-plugin-registry.h       |  127 ++++++++++++++
 src/plugin-registry.c          |  229 -------------------------
 src/plugin-registry.h          |  127 --------------
 31 files changed, 2235 insertions(+), 2191 deletions(-)

commit ad8a19adcd3cf51279cedf9f56ed89c2938023f9
Author: Iago Toral <itoral@igalia.com>
Date:   Fri Dec 18 13:14:54 2009 +0100

    Use GList instead of KeyID arrays for APIs

 src/Makefile.am       |    1 +
 src/media-source.c    |   77 +++++++++++++------------------------------------
 src/media-source.h    |    6 ++--
 src/metadata-key.h    |    6 ++++
 src/metadata-source.c |   24 ++++++++-------
 src/metadata-source.h |   16 +++++-----
 6 files changed, 52 insertions(+), 78 deletions(-)

commit c537fabcdfc2d6e044fd9fdb40c6b44974b84686
Author: Iago Toral <itoral@igalia.com>
Date:   Fri Dec 18 11:53:30 2009 +0100

    Proper error management in full resolution method

 src/media-source.c |   20 +++++++++++++++-----
 1 file changed, 15 insertions(+), 5 deletions(-)

commit 5767da2a2ef28e0534531a7b039808fdcff6b2d6
Author: Iago Toral <itoral@igalia.com>
Date:   Fri Dec 18 11:44:10 2009 +0100

    Implemented async metadata resolution based on metadata

 src/media-source.c    |   98 +++++++++++++++++++++++++++++++++++++------------
 src/metadata-source.c |   11 ++++--
 src/metadata-source.h |   15 +++++++-
 3 files changed, 95 insertions(+), 29 deletions(-)

commit 2d9df272e23854a31ed1f5a84088db7e3b83bb23
Author: Iago Toral <itoral@igalia.com>
Date:   Fri Dec 18 10:41:44 2009 +0100

    Fixed build errors after merging with Content interface

 src/plugin-registry.c |    4 ++++
 1 file changed, 4 insertions(+)

commit bb64968a109398f4d5984a8ba97f939d26fa30bf
Author: Iago Toral <itoral@igalia.com>
Date:   Fri Dec 18 10:21:30 2009 +0100

    Fixed merge

 src/metadata-key.h |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit 63d89b53cc01de76b1101225659dc47c46a23d6a
Author: Iago Toral <itoral@igalia.com>
Date:   Fri Dec 18 10:15:36 2009 +0100

    some more work on key dependency resolution

 src/media-source.c    |   49 +++++++++++++++++++++++++++++++++++++++----------
 src/metadata-key.h    |    8 ++++++++
 src/metadata-source.c |    4 +++-
 src/plugin-registry.c |    2 ++
 4 files changed, 52 insertions(+), 11 deletions(-)

commit 600c11470d86b47de41af5f2510639c68b81c36e
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Dec 17 19:47:55 2009 +0100

    Fix merge commit.
    
    Merge done previously was not right, as I forgot to make sure everything was
    working fine. Fixed now.

 src/media-source.c    |    8 +++-----
 src/metadata-key.h    |    8 +++++---
 src/metadata-source.c |    4 ++--
 src/metadata-source.h |    5 +++--
 4 files changed, 13 insertions(+), 12 deletions(-)

commit 2f9dd3c351d4eda90dc943a2ce6e39dc87e68d51
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Dec 17 19:46:56 2009 +0100

    Define get/set thumbnail methods.
    
    Create methods to get/set thumbnails.

 src/content/content-media.h |    4 ++++
 1 file changed, 4 insertions(+)

commit 60551ff991d42a339da986baff511400b65a96af
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Dec 17 19:45:30 2009 +0100

    Use KeyID definition.
    
    Now keys are defined as KeyID instead of gint.

 src/content/content.c |   36 ++++++++++++++++++------------------
 src/content/content.h |   20 ++++++++++----------
 2 files changed, 28 insertions(+), 28 deletions(-)

commit 923055296a49942efb5d7f1af6ee66f5a978ffb8
Merge: 52283f2 5a00fbe
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Dec 17 17:21:46 2009 +0100

    Merge branch 'content'
    
    Conflicts resolved:
    	src/metadata-key.h
    	test/Makefile.am
    	test/youtube-source.c

commit 5a00fbee3a64d4c8d0c6dc5901fc69eb148c908f
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Dec 17 17:00:00 2009 +0100

    Add source property.
    
    Add source-id property to store the source providing the content.

 src/content/content-media.h |    4 ++++
 src/metadata-key.h          |    4 ++++
 2 files changed, 8 insertions(+)

commit 52283f2954aa891fff108783eeccbc9389344eb2
Author: Iago Toral <itoral@igalia.com>
Date:   Thu Dec 17 16:29:26 2009 +0100

    Added metadata based metadata resolution for full resolution browsing.
    Included example with fake-metadata-source.

 src/media-source.c    |   42 ++++++++++++++++++++++++++++--------------
 src/metadata-source.c |    9 +++++++++
 src/metadata-source.h |    5 +++++
 3 files changed, 42 insertions(+), 14 deletions(-)

commit 3c3a319ce93bf0fb863f4c5ba8eeceee52c59512
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Dec 17 15:46:56 2009 +0100

    Comment functions.
    
    Add gtk-doc comments in every function.

 src/content/content-media.c |   15 ++++++
 src/content/content.c       |  111 ++++++++++++++++++++++++++++++++++++++++++-
 2 files changed, 125 insertions(+), 1 deletion(-)

commit 3db40d31d4121a8223b3cd5ac7b2dc9c4f252348
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu Dec 17 15:46:17 2009 +0100

    Add copyright headers.
    
    Add appropriate copyright headers in every file.

 src/content/content-media.c |   24 ++++++++++++++++++++++++
 src/content/content-media.h |   24 ++++++++++++++++++++++++
 src/content/content.c       |   25 +++++++++++++++++++++++++
 src/content/content.h       |   24 ++++++++++++++++++++++++
 4 files changed, 97 insertions(+)

commit cfd98045823dce7a95f31e016909e1cd7fc4b1dd
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Dec 16 13:33:17 2009 +0100

    Use integers keys.
    
    Use the new type of keys, represented as integers instead of strings.

 src/content/content-media.c |   40 +++++++++++++++++++++++++
 src/content/content-media.h |   70 +++++++++++++++++++++++++++++++++++++++++++
 src/content/content.c       |   68 +++++++++++++++++++++++++++--------------
 src/content/content.h       |   22 +++++++-------
 src/metadata-key.h          |   46 ++++++++++++++++++----------
 5 files changed, 197 insertions(+), 49 deletions(-)

commit 5dd9235b3c1df55c93e6a9d97b3c7ffa024d224a
Author: Iago Toral <itoral@igalia.com>
Date:   Wed Dec 16 13:16:44 2009 +0100

    started development of full-resolution method (for browse only)

 src/media-source.c    |  226 ++++++++++++++++++++++++++++++++++++++++++++++++-
 src/media-source.h    |    4 +-
 src/metadata-source.c |   39 ++++++++-
 src/metadata-source.h |   14 ++-
 src/plugin-registry.c |   18 ++++
 src/plugin-registry.h |    2 +
 6 files changed, 295 insertions(+), 8 deletions(-)

commit 65a03975e0eec107f77213780431dcd04db4df95
Author: Iago Toral <itoral@igalia.com>
Date:   Tue Dec 15 16:09:59 2009 +0100

    Improved metadata-key support

 src/metadata-key.h    |   23 ++++++++++++++---------
 src/metadata-source.c |    8 +++++++-
 src/metadata-source.h |   15 ++++++---------
 src/plugin-registry.c |    8 +++++++-
 src/plugin-registry.h |    2 ++
 5 files changed, 36 insertions(+), 20 deletions(-)

commit 0c26204078788542dfdc6cf46204654a4a0f25c1
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Dec 15 13:09:02 2009 +0100

    Update AUTHORS.
    
    Add myself, of course :-)

 AUTHORS |    2 ++
 1 file changed, 2 insertions(+)

commit 749b7414b85b9874106fa6ece2078bbb81721b4b
Merge: d8cdc8a 24cf8c4
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Dec 15 13:08:12 2009 +0100

    Merge branch 'master' into content

commit 24cf8c4b878423194944c3a9531c2562dc2ae622
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Dec 15 13:06:41 2009 +0100

    Update todo notes.
    
    Considerer the case of using MetadataKey structure along the framework.

 doc/brainstorming/to-be-discussed.txt |   11 +++++++++++
 1 file changed, 11 insertions(+)

commit d8cdc8a4f73505353fc1220edada8e81063740f1
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Dec 15 12:43:11 2009 +0100

    Add ContentMedia class.
    
    This class is higher level than Content.
    
    It understands keys like author, title, id, url, and so on, providing a high
    level api.

 src/content/Makefile.am |    3 ++-
 src/content/content.c   |   24 ++++++++++++++++++++++++
 src/content/content.h   |    2 ++
 3 files changed, 28 insertions(+), 1 deletion(-)

commit 0412b0468082e9ff6a5927a44e6afe24911e3d67
Author: Iago Toral <itoral@igalia.com>
Date:   Tue Dec 15 12:12:07 2009 +0100

    Fixed wrong property definition

 src/metadata-source.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 8e407949bb652e0b5ab337063e605439a418672e
Author: Iago Toral <itoral@igalia.com>
Date:   Tue Dec 15 11:43:01 2009 +0100

    Added

 doc/brainstorming/to-be-discussed.txt |    9 +++++++++
 1 file changed, 9 insertions(+)

commit a361049578f2b8363882b43b68ac2e3e395d72c8
Author: Iago Toral <itoral@igalia.com>
Date:   Tue Dec 15 11:16:10 2009 +0100

    Added initial brainstorming information

 doc/brainstorming/itoral-initial-brainstorming.txt |  210 ++++++++++++++++++++
 1 file changed, 210 insertions(+)

commit 3c24173aaa8b8e1bef66fa970df688bf2331e5ef
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Dec 15 10:42:13 2009 +0100

    Move Content class to subdir.
    
    Avoiding messing up with files, put Content and related classes in its own
    directory.

 configure.ac            |    1 +
 src/Makefile.am         |    7 +--
 src/content.c           |  132 -----------------------------------------------
 src/content.h           |   58 ---------------------
 src/content/Makefile.am |   18 +++++++
 src/content/content.c   |  132 +++++++++++++++++++++++++++++++++++++++++++++++
 src/content/content.h   |   58 +++++++++++++++++++++
 src/media-source.h      |    2 +-
 8 files changed, 214 insertions(+), 194 deletions(-)

commit 0b60e6dd149a5120989dc164fe6eedaaa918b15a
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Dec 15 10:03:52 2009 +0100

    Add notes from initial brainstorming.
    
    Adding notes about Juan's brainstorming.

 .../jasuarez-initial-brainstorming.txt             |   73 ++++++++++++++++++++
 1 file changed, 73 insertions(+)

commit 29555a1c09ea5f3ca653af8b3ce4906981b80787
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Dec 14 18:21:39 2009 +0100

    Use Content class in sources.
    
    Use the new Content class in the sources.
    
    More specific Content types will be created in future.

 src/content.c      |   25 +++++++++++++++++++++++--
 src/content.h      |   18 ++++++++++--------
 src/media-source.h |    4 ++--
 3 files changed, 35 insertions(+), 12 deletions(-)

commit 6de0d0eb5eed70114c10127f5c8aedcd427195d4
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Dec 14 15:07:32 2009 +0100

    Add content_set_{int,string} functions.
    
    Add helper functions to set content value.

 src/content.c |   90 ++++++++++++++++++++++++++++++++++-----------------------
 src/content.h |   48 +++++++++++++++---------------
 2 files changed, 79 insertions(+), 59 deletions(-)

commit 4e69640f4f536ab6d099a93d1ba78e3e0b9e7855
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Dec 14 14:02:43 2009 +0100

    Add Content class.
    
    This is the base class to manage Content.

 src/Makefile.am |    3 +-
 src/content.c   |   93 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/content.h   |   54 ++++++++++++++++++++++++++++++++
 3 files changed, 149 insertions(+), 1 deletion(-)

commit 03baa2f94f496c5813dbe9012cbc51fb973fcc28
Author: Iago Toral <itoral@igalia.com>
Date:   Mon Dec 14 11:52:18 2009 +0100

    First commit

 AUTHORS                 |    1 +
 COPYING                 |  504 +++++++++++++++++++++++++++++++++++++++++++++++
 INSTALL                 |  236 ++++++++++++++++++++++
 Makefile.am             |   27 +++
 autogen.sh              |   21 ++
 configure.ac            |  101 ++++++++++
 po/Makefile.in.in       |  270 +++++++++++++++++++++++++
 src/Makefile.am         |   24 +++
 src/media-plugin-priv.h |   46 +++++
 src/media-plugin.c      |  119 +++++++++++
 src/media-plugin.h      |   86 ++++++++
 src/media-source.c      |   85 ++++++++
 src/media-source.h      |  122 ++++++++++++
 src/metadata-key.h      |   63 ++++++
 src/metadata-source.c   |  212 ++++++++++++++++++++
 src/metadata-source.h   |  109 ++++++++++
 src/plugin-registry.c   |  199 +++++++++++++++++++
 src/plugin-registry.h   |  123 ++++++++++++
 18 files changed, 2348 insertions(+)
