Changeset 38

Show
Ignore:
Timestamp:
03/08/07 15:56:13 (2 years ago)
Author:
inz
Message:

Fix method signatures, make blog_create_post asynchronous, add blog_edit_post function.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • blog-service/trunk/bs-manager.xml

    r34 r38  
    1212   <annotation name="org.freedesktop.DBus.GLib.CSymbol" value="bs_manager_get_blog_posts" /> 
    1313   <arg type="s" name="blog_id" direction="in" /> 
    14    <arg type="s" name="fields" direction="in" /> 
     14   <arg type="as" name="fields" direction="in" /> 
    1515   <arg type="aa{sv}" name="values" direction="out" /> 
    1616  </method> 
     
    2828  <method name="blog_create_post"> 
    2929   <annotation name="org.freedesktop.DBus.GLib.CSymbol" value="bs_manager_blog_create_post" /> 
    30     <arg type="s" name="blog_id" /> 
    31     <arg type="a{sv}" name="fields" direction="in" /> 
    32     <arg type="b" name="status" direction="out" /> 
     30   <annotation name="org.freedesktop.DBus.GLib.ASync" value="" /> 
     31   <arg type="s" name="blog_id" /> 
     32   <arg type="a{sv}" name="fields" direction="in" /> 
     33   <arg type="b" name="status" direction="out" /> 
     34  </method> 
     35  <method name="blog_edit_post"> 
     36   <annotation name="org.freedesktop.DBus.GLib.CSymbol" value="bs_manager_blog_edit_post" /> 
     37   <annotation name="org.freedesktop.DBus.GLib.ASync" value="" /> 
     38   <arg type="s" name="blog_id" /> 
     39   <arg type="s" name="post_id" /> 
     40   <arg type="a{sv}" name="fields" direction="in" /> 
     41   <arg type="b" name="status" direction="out" /> 
    3342  </method> 
    3443 </interface>