Enlightenment CVS committal

Author  : chaos
Project : e17
Module  : apps/evfs

Dir     : e17/apps/evfs/src/demo


Modified Files:
        evfs_demo.c 


Log Message:
An event to get a list of all extracted metadata keywords

===================================================================
RCS file: /cvs/e/e17/apps/evfs/src/demo/evfs_demo.c,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -3 -r1.37 -r1.38
--- evfs_demo.c 26 Aug 2007 13:08:36 -0000      1.37
+++ evfs_demo.c 29 Aug 2007 04:31:40 -0000      1.38
@@ -55,6 +55,17 @@
             
                             
             
+     } else if (data->type == EVFS_EV_METAALL) {
+       Evas_List* l;
+       EvfsMetaObject* m;
+
+       printf("Metaall event\n");
+       for (l=EVFS_EVENT_META_ALL(data)->meta;l;) {
+               m = l->data;
+               printf("%s\n", m->key);
+               l=l->next;
+       }
+
      }
 
    /*if (mon_current == 2) {
@@ -159,6 +170,8 @@
           evfs_command* cm = evfs_vfolder_create_command_new("Pictures");
           evfs_vfolder_command_entry_add(cm, 'M', "mimetype","image/jpeg");
           evfs_vfolder_command_send(con,cm);
+   } else if (!strcmp(cmd, "METAALL")) {
+          evfs_client_meta_list_all(con);
    }
    ecore_main_loop_begin();
    evfs_disconnect(con);



-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to