E CVS: libs/ecore sebastid

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/src/lib/ecore


Modified Files:
Ecore_Data.h ecore_list.c 


Log Message:
Big ecore_dbus overhaul

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore/Ecore_Data.h,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -3 -r1.20 -r1.21
--- Ecore_Data.h12 Jan 2006 03:01:58 -  1.20
+++ Ecore_Data.h25 Jul 2006 12:44:19 -  1.21
@@ -98,6 +98,8 @@

/* Retrieve the current position in the list */
EAPI void *ecore_list_current(Ecore_List * list);
+   EAPI void *ecore_list_first(Ecore_List * list);
+   EAPI void *ecore_list_last(Ecore_List * list);
EAPI int ecore_list_index(Ecore_List * list);
EAPI int ecore_list_nodes(Ecore_List * list);

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore/ecore_list.c,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -3 -r1.23 -r1.24
--- ecore_list.c23 Jun 2006 06:40:26 -  1.23
+++ ecore_list.c25 Jul 2006 12:44:19 -  1.24
@@ -879,6 +879,40 @@
return ret;
 }
 
+/**
+ * Retrieve the data pointed to by the first item in @p list.
+ * @param  list The list.
+ * @return Returns the data at current position, can be @c NULL.
+ */
+EAPI inline void *
+ecore_list_first(Ecore_List *list)
+{
+   void *ret;
+
+   if (!list-first)
+ return NULL;
+   ret = list-first-data;
+
+   return ret;
+}
+
+/**
+ * Retrieve the data pointed to by the last item in @p list.
+ * @param  list The list.
+ * @return Returns the data at current position, can be @c NULL.
+ */
+EAPI inline void *
+ecore_list_last(Ecore_List *list)
+{
+   void *ret;
+
+   if (!list-last)
+ return NULL;
+   ret = list-last-data;
+
+   return ret;
+}
+
 /* Return the data of the current node without incrementing */
 static void *
 _ecore_list_current(Ecore_List *list)



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ecore sebastid

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/src/bin


Modified Files:
ecore_dbus_test.c 


Log Message:
Big ecore_dbus overhaul

===
RCS file: /cvs/e/e17/libs/ecore/src/bin/ecore_dbus_test.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- ecore_dbus_test.c   21 Jul 2006 20:03:52 -  1.2
+++ ecore_dbus_test.c   25 Jul 2006 12:44:19 -  1.3
@@ -35,11 +35,6 @@
handler[i++] = ecore_event_handler_add(ECORE_DBUS_EVENT_SERVER_DATA,
   _ecore_dbus_event_server_data, 
NULL);
 
-   /*
-   ret = ecore_dbus_message_new_method_call(svr, 
org.freedesktop.DBus.Hello,
-NULL, NULL, NULL, NULL);
-*/
-
ecore_main_loop_begin();
 
for (i = 0; i  3; i++)



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ecore sebastid

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/src/bin


Modified Files:
.cvsignore 


Log Message:
++

===
RCS file: /cvs/e/e17/libs/ecore/src/bin/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- .cvsignore  29 Jul 2005 16:41:03 -  1.2
+++ .cvsignore  25 Jul 2006 12:45:35 -  1.3
@@ -5,3 +5,4 @@
 ecore_config
 ecore_evas_test
 ecore_test
+ecore_dbus_test



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: bling devilhorns

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : bling

Dir : e_modules/bling


Modified Files:
configure.in 


Log Message:
Fix minor oversight with x86_64 libdir. Thanks Sebastian

===
RCS file: /cvs/e/e_modules/bling/configure.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- configure.in25 Jul 2006 03:49:34 -  1.3
+++ configure.in25 Jul 2006 13:29:51 -  1.4
@@ -82,7 +82,7 @@
 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, ${HOME}/.e/e/modules/${PACKAGE}, 
Package installed data destination)
 datadir=${HOME}/.e/e/modules/${PACKAGE}
 else
-AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/lib/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
+AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
 datadir=${libdir}/enlightenment/modules/${PACKAGE}
 fi
 



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: calendar devilhorns

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : calendar

Dir : e_modules/calendar


Modified Files:
configure.in 


Log Message:
Fix minor oversight with x86_64 libdir. Thanks Sebastian

===
RCS file: /cvs/e/e_modules/calendar/configure.in,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- configure.in25 Jul 2006 03:49:46 -  1.13
+++ configure.in25 Jul 2006 13:30:03 -  1.14
@@ -86,7 +86,7 @@
 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, ${HOME}/.e/e/modules/${PACKAGE}, 
Package installed data destination)
 datadir=${HOME}/.e/e/modules/${PACKAGE}
 else
-AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/lib/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
+AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
 datadir=${libdir}/enlightenment/modules/${PACKAGE}
 fi
 



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: cpu devilhorns

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : cpu

Dir : e_modules/cpu


Modified Files:
configure.in 


Log Message:
Fix minor oversight with x86_64 libdir. Thanks Sebastian

===
RCS file: /cvs/e/e_modules/cpu/configure.in,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -3 -r1.12 -r1.13
--- configure.in25 Jul 2006 03:49:59 -  1.12
+++ configure.in25 Jul 2006 13:30:15 -  1.13
@@ -86,7 +86,7 @@
 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, ${HOME}/.e/e/modules/${PACKAGE}, 
Package installed data destination)
 datadir=${HOME}/.e/e/modules/${PACKAGE}
 else
-AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/lib/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
+AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
 datadir=${libdir}/enlightenment/modules/${PACKAGE}
 fi
 



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: deskshow devilhorns

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Modified Files:
configure.in 


Log Message:
Fix minor oversight with x86_64 libdir. Thanks Sebastian

===
RCS file: /cvs/e/e_modules/deskshow/configure.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- configure.in25 Jul 2006 03:50:14 -  1.3
+++ configure.in25 Jul 2006 13:30:30 -  1.4
@@ -81,7 +81,7 @@
 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, ${HOME}/.e/e/modules/${PACKAGE}, 
Package installed data destination)
 datadir=${HOME}/.e/e/modules/${PACKAGE}
 else
-AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/lib/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
+AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
 datadir=${libdir}/enlightenment/modules/${PACKAGE}
 fi
  



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: eveil devilhorns

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : eveil

Dir : e_modules/eveil


Modified Files:
configure.in 


Log Message:
Fix minor oversight with x86_64 libdir. Thanks Sebastian

===
RCS file: /cvs/e/e_modules/eveil/configure.in,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- configure.in25 Jul 2006 03:51:08 -  1.6
+++ configure.in25 Jul 2006 13:30:57 -  1.7
@@ -90,7 +90,7 @@
 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, ${HOME}/.e/e/modules/${PACKAGE}, 
Package installed data destination)
 datadir=${HOME}/.e/e/modules/${PACKAGE}
 else
-AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/lib/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
+AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
 datadir=${libdir}/enlightenment/modules/${PACKAGE}
 fi
 



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: evolume devilhorns

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : evolume

Dir : e_modules/evolume


Modified Files:
configure.ac 


Log Message:
Fix minor oversight with x86_64 libdir. Thanks Sebastian

===
RCS file: /cvs/e/e_modules/evolume/configure.ac,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- configure.ac25 Jul 2006 03:51:22 -  1.7
+++ configure.ac25 Jul 2006 13:31:16 -  1.8
@@ -100,7 +100,7 @@
 moduledir=${prefix}/modules
 else
 datarootdir=${prefix}/share
-moduledir=${libdir}/lib/enlightenment/modules
+moduledir=${libdir}/enlightenment/modules
 fi
 
 AC_SUBST(E_MODULES, ${moduledir})



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: flame devilhorns

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : flame

Dir : e_modules/flame


Modified Files:
configure.in 


Log Message:
Fix minor oversight with x86_64 libdir. Thanks Sebastian

===
RCS file: /cvs/e/e_modules/flame/configure.in,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- configure.in25 Jul 2006 03:51:37 -  1.9
+++ configure.in25 Jul 2006 13:31:31 -  1.10
@@ -86,7 +86,7 @@
 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, ${HOME}/.e/e/modules/${PACKAGE}, 
Package installed data destination)
 datadir=${HOME}/.e/e/modules/${PACKAGE}
 else
-AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/lib/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
+AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
 datadir=${libdir}/enlightenment/modules/${PACKAGE}
 fi
 



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: language devilhorns

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : language

Dir : e_modules/language


Modified Files:
configure.in 


Log Message:
Fix minor oversight with x86_64 libdir. Thanks Sebastian

===
RCS file: /cvs/e/e_modules/language/configure.in,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- configure.in25 Jul 2006 03:51:50 -  1.8
+++ configure.in25 Jul 2006 13:31:45 -  1.9
@@ -86,7 +86,7 @@
 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, ${HOME}/.e/e/modules/${PACKAGE}, 
Package installed data destination)
 datadir=${HOME}/.e/e/modules/${PACKAGE}
 else
-AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/lib/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
+AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
 datadir=${libdir}/enlightenment/modules/${PACKAGE}
 fi
 



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mail devilhorns

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : mail

Dir : e_modules/mail


Modified Files:
configure.in 


Log Message:
Fix minor oversight with x86_64 libdir. Thanks Sebastian

===
RCS file: /cvs/e/e_modules/mail/configure.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- configure.in25 Jul 2006 03:52:02 -  1.5
+++ configure.in25 Jul 2006 13:31:57 -  1.6
@@ -81,7 +81,7 @@
 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, ${HOME}/.e/e/modules/${PACKAGE}, 
Package installed data destination)
 datadir=${HOME}/.e/e/modules/${PACKAGE}
 else
-AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/lib/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
+AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
 datadir=${libdir}/enlightenment/modules/${PACKAGE}
 fi
  



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mbar devilhorns

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : mbar

Dir : e_modules/mbar


Modified Files:
configure.in 


Log Message:
Fix minor oversight with x86_64 libdir. Thanks Sebastian

===
RCS file: /cvs/e/e_modules/mbar/configure.in,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- configure.in25 Jul 2006 03:52:17 -  1.6
+++ configure.in25 Jul 2006 13:32:09 -  1.7
@@ -102,7 +102,7 @@
 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, ${HOME}/.e/e/modules/${PACKAGE}, 
Package installed data destination)
 datadir=${HOME}/.e/e/modules/${PACKAGE}
 else
-AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/lib/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
+AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
 datadir=${libdir}/enlightenment/modules/${PACKAGE}
 fi
  



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mem devilhorns

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : mem

Dir : e_modules/mem


Modified Files:
configure.in 


Log Message:
Fix minor oversight with x86_64 libdir. Thanks Sebastian

===
RCS file: /cvs/e/e_modules/mem/configure.in,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -3 -r1.12 -r1.13
--- configure.in25 Jul 2006 03:52:29 -  1.12
+++ configure.in25 Jul 2006 13:32:23 -  1.13
@@ -105,7 +105,7 @@
 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, ${HOME}/.e/e/modules/${PACKAGE}, 
Package installed data destination)
 datadir=${HOME}/.e/e/modules/${PACKAGE}
 else
-AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/lib/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
+AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
 datadir=${libdir}/enlightenment/modules/${PACKAGE}
 fi
 



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: moon devilhorns

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : moon

Dir : e_modules/moon


Modified Files:
configure.ac 


Log Message:
Fix minor oversight with x86_64 libdir. Thanks Sebastian

===
RCS file: /cvs/e/e_modules/moon/configure.ac,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- configure.ac25 Jul 2006 03:52:43 -  1.7
+++ configure.ac25 Jul 2006 13:32:54 -  1.8
@@ -101,7 +101,7 @@
   moduledir=${prefix}/modules
 else
   datarootdir=${prefix}/share
-  moduledir=${libdir}/lib/enlightenment/modules
+  moduledir=${libdir}/enlightenment/modules
 fi
 AC_SUBST(MODULEDIR, ${moduledir})
 



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: taskbar devilhorns

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : taskbar

Dir : e_modules/taskbar


Modified Files:
configure.in 


Log Message:
Fix minor oversight with x86_64 libdir. Thanks Sebastian

===
RCS file: /cvs/e/e_modules/taskbar/configure.in,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- configure.in25 Jul 2006 03:54:20 -  1.7
+++ configure.in25 Jul 2006 13:34:31 -  1.8
@@ -97,7 +97,7 @@
 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, ${HOME}/.e/e/modules/${PACKAGE}, 
Package installed data destination)
 datadir=${HOME}/.e/e/modules/${PACKAGE}
 else
-AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/lib/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
+AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
 datadir=${libdir}/enlightenment/modules/${PACKAGE}
 fi
 



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: slideshow devilhorns

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : slideshow

Dir : e_modules/slideshow


Modified Files:
configure.in 


Log Message:
Fix minor oversight with x86_64 libdir. Thanks Sebastian

===
RCS file: /cvs/e/e_modules/slideshow/configure.in,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -3 -r1.18 -r1.19
--- configure.in25 Jul 2006 03:53:53 -  1.18
+++ configure.in25 Jul 2006 13:34:00 -  1.19
@@ -87,7 +87,7 @@
 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, ${HOME}/.e/e/modules/${PACKAGE}, 
Package installed data destination)
 datadir=${HOME}/.e/e/modules/${PACKAGE}
 else
-AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/lib/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
+AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
 datadir=${libdir}/enlightenment/modules/${PACKAGE}
 fi
 



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: tclock devilhorns

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : tclock

Dir : e_modules/tclock


Modified Files:
configure.in 


Log Message:
Fix minor oversight with x86_64 libdir. Thanks Sebastian

===
RCS file: /cvs/e/e_modules/tclock/configure.in,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -3 -r1.18 -r1.19
--- configure.in25 Jul 2006 03:54:34 -  1.18
+++ configure.in25 Jul 2006 13:34:43 -  1.19
@@ -34,7 +34,7 @@
 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, ${HOME}/.e/e/modules/${PACKAGE}, 
Package installed data destination)
 datadir=${HOME}/.e/e/modules/${PACKAGE}
 else
-AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/lib/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
+AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
 datadir=${libdir}/enlightenment/modules/${PACKAGE}
 fi
 



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: uptime devilhorns

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : uptime

Dir : e_modules/uptime


Modified Files:
configure.in 


Log Message:
Fix minor oversight with x86_64 libdir. Thanks Sebastian

===
RCS file: /cvs/e/e_modules/uptime/configure.in,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- configure.in25 Jul 2006 03:54:46 -  1.13
+++ configure.in25 Jul 2006 13:34:55 -  1.14
@@ -89,7 +89,7 @@
 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, ${HOME}/.e/e/modules/${PACKAGE}, 
Package installed data destination)
 datadir=${HOME}/.e/e/modules/${PACKAGE}
 else
-AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/lib/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
+AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
 datadir=${libdir}/enlightenment/modules/${PACKAGE}
 fi
 



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: weather devilhorns

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : weather

Dir : e_modules/weather


Modified Files:
configure.in 


Log Message:
Fix minor oversight with x86_64 libdir. Thanks Sebastian

===
RCS file: /cvs/e/e_modules/weather/configure.in,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -3 -r1.15 -r1.16
--- configure.in25 Jul 2006 03:54:58 -  1.15
+++ configure.in25 Jul 2006 13:35:08 -  1.16
@@ -86,7 +86,7 @@
 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, ${HOME}/.e/e/modules/${PACKAGE}, 
Package installed data destination)
 datadir=${HOME}/.e/e/modules/${PACKAGE}
 else
-AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/lib/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
+AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
 datadir=${libdir}/enlightenment/modules/${PACKAGE}
 fi
 



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: wlan devilhorns

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : wlan

Dir : e_modules/wlan


Modified Files:
configure.in 


Log Message:
Fix minor oversight with x86_64 libdir. Thanks Sebastian

===
RCS file: /cvs/e/e_modules/wlan/configure.in,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- configure.in25 Jul 2006 03:55:10 -  1.10
+++ configure.in25 Jul 2006 13:35:21 -  1.11
@@ -86,7 +86,7 @@
 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, ${HOME}/.e/e/modules/${PACKAGE}, 
Package installed data destination)
 datadir=${HOME}/.e/e/modules/${PACKAGE}
 else
-AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/lib/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
+AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${libdir}/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
 datadir=${libdir}/enlightenment/modules/${PACKAGE}
 fi
 



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ecore sebastid

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/src/lib/ecore_dbus


Modified Files:
Ecore_DBus.h ecore_dbus.c ecore_dbus_message.c 
ecore_dbus_private.h ecore_dbus_unmarshal.c 


Log Message:
Trap known messages

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_dbus/Ecore_DBus.h,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- Ecore_DBus.h25 Jul 2006 12:44:19 -  1.9
+++ Ecore_DBus.h25 Jul 2006 14:12:21 -  1.10
@@ -119,9 +119,7 @@
EAPI void  ecore_dbus_message_del(Ecore_DBus_Message *msg);
EAPI void  ecore_dbus_message_print(Ecore_DBus_Message *msg);
EAPI void *ecore_dbus_message_header_field_get(Ecore_DBus_Message 
*msg, Ecore_DBus_Message_Header_Field field);
-#if 0
-   EAPI void *ecore_dbus_get_body_field(Ecore_DBus_Message *msg, 
Ecore_DBus_Message_Field *field, unsigned int pos);
-#endif
+   EAPI void *ecore_dbus_message_body_field_get(Ecore_DBus_Message 
*msg, unsigned int pos);
 
 #ifdef __cplusplus
 }
===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_dbus/ecore_dbus.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -3 -r1.12 -r1.13
--- ecore_dbus.c25 Jul 2006 12:44:19 -  1.12
+++ ecore_dbus.c25 Jul 2006 14:12:21 -  1.13
@@ -147,6 +147,8 @@
svr-cnt_msg = 0;
svr-auth_type = -1;
svr-auth_type_transaction = 0;
+   svr-methods = ecore_hash_new(ecore_direct_hash, ecore_direct_compare);
+   ecore_hash_set_free_value(svr-methods, free);
servers = _ecore_list2_append(servers, svr);
 
return svr;
@@ -157,6 +159,8 @@
 {
if (svr-server) ecore_con_server_del(svr-server);
servers = _ecore_list2_remove(servers, svr);
+   if (svr-unique_name) free(svr-unique_name);
+   ecore_hash_destroy(svr-methods);
free(svr);
 }
 
@@ -338,6 +342,7 @@
while (e-size)
  {
 Ecore_DBus_Event_Server_Data *ev;
+Ecore_DBus_Message_Field_UInt32 *serial;
 
 msg = _ecore_dbus_message_unmarshal(svr, (unsigned char 
*)(e-data) + offset, e-size);
 if (msg == NULL) break;
@@ -345,11 +350,53 @@
 e-size -= msg-length;
 printf([ecore_dbus] dbus message length %u bytes, still %d\n,
msg-length, e-size);
-ecore_dbus_message_print(msg);
-ev = malloc(sizeof(Ecore_DBus_Event_Server_Data));
-ev-server = svr;
-ev-message = msg;
-ecore_event_add(ECORE_DBUS_EVENT_SERVER_DATA, ev, 
_ecore_dbus_event_server_data_free, NULL);
+//ecore_dbus_message_print(msg);
+/* Trap known messages */
+serial = ecore_dbus_message_header_field_get(msg, 
ECORE_DBUS_HEADER_FIELD_REPLY_SERIAL);
+if (msg-type == ECORE_DBUS_MESSAGE_TYPE_METHOD_RETURN)
+  {
+ char *method;
+
+ method = ecore_hash_remove(svr-methods, (void 
*)serial-value);
+ if (method)
+   {
+  printf(Return from method: %s\n, method);
+  if (!strcmp(method, org.freedesktop.DBus.Hello))
+{
+   char *name;
+
+   name = ecore_dbus_message_body_field_get(msg, 0);
+   printf(Got unique name: %s\n, name);
+   svr-unique_name = strdup(name);
+   _ecore_dbus_message_free(msg);
+}
+  else
+{
+   ev = malloc(sizeof(Ecore_DBus_Event_Server_Data));
+   ev-server = svr;
+   ev-message = msg;
+   ecore_event_add(ECORE_DBUS_EVENT_SERVER_DATA, ev,
+   _ecore_dbus_event_server_data_free, 
NULL);
+}
+  free(method);
+   }
+ else
+   {
+  ev = malloc(sizeof(Ecore_DBus_Event_Server_Data));
+  ev-server = svr;
+  ev-message = msg;
+  ecore_event_add(ECORE_DBUS_EVENT_SERVER_DATA, ev,
+  _ecore_dbus_event_server_data_free, 
NULL);
+   }
+  }
+else
+  {
+ ev = malloc(sizeof(Ecore_DBus_Event_Server_Data));
+ ev-server = svr;
+ ev-message = msg;
+ ecore_event_add(ECORE_DBUS_EVENT_SERVER_DATA, ev,
+ _ecore_dbus_event_server_data_free, NULL);
+  }
  }
  }
return 0;

E CVS: libs/ecore sebastid

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/src/bin


Modified Files:
ecore_dbus_test.c 


Log Message:
Trap known messages

===
RCS file: /cvs/e/e17/libs/ecore/src/bin/ecore_dbus_test.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- ecore_dbus_test.c   25 Jul 2006 12:44:19 -  1.3
+++ ecore_dbus_test.c   25 Jul 2006 14:12:21 -  1.4
@@ -54,7 +54,7 @@
 
event = ev;
printf(_ecore_dbus_event_server_add\n);
-   ret = ecore_dbus_message_new_method_call(event-server, 
org.freedesktop.DBus /*service*/,
+   ret = ecore_dbus_message_new_method_call(event-server, 
org.freedesktop.DBus /*destination*/,
/org/freedesktop/DBus /*path*/,
org.freedesktop.DBus 
/*interface*/,
Hello /*method*/, NULL /*fmt*/);



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ecore sebastid

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/src/lib/ecore_dbus


Modified Files:
Makefile.am ecore_dbus.c 
Added Files:
ecore_dbus_methods.c 


Log Message:
Add wrapper for common dbus methods

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_dbus/Makefile.am,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- Makefile.am 25 Jul 2006 12:44:19 -  1.5
+++ Makefile.am 25 Jul 2006 14:34:47 -  1.6
@@ -24,6 +24,7 @@
 ecore_dbus_message.c \
 ecore_dbus_marshal.c \
 ecore_dbus_unmarshal.c \
+ecore_dbus_methods.c \
 ecore_dbus_utils.c \
 ecore_dbus_private.h
 
===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_dbus/ecore_dbus.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- ecore_dbus.c25 Jul 2006 14:12:21 -  1.13
+++ ecore_dbus.c25 Jul 2006 14:34:47 -  1.14
@@ -124,6 +124,7 @@
switch (type)
  {
 #if 0
+   /* Get address from DBUS_SESSION_BUS_ADDRESS env */
  case ECORE_DBUS_BUS_SESSION:
svr-server =
   ecore_con_server_connect(ECORE_CON_LOCAL_USER | extra, name, port, 
svr);



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ecore sebastid

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/src/bin


Modified Files:
ecore_dbus_test.c ecore_dbus_test.h 


Log Message:
Update for lates ecore_dbus changes.

===
RCS file: /cvs/e/e17/libs/ecore/src/bin/ecore_dbus_test.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- ecore_dbus_test.c   25 Jul 2006 14:12:21 -  1.4
+++ ecore_dbus_test.c   25 Jul 2006 16:02:44 -  1.5
@@ -54,10 +54,7 @@
 
event = ev;
printf(_ecore_dbus_event_server_add\n);
-   ret = ecore_dbus_message_new_method_call(event-server, 
org.freedesktop.DBus /*destination*/,
-   /org/freedesktop/DBus /*path*/,
-   org.freedesktop.DBus 
/*interface*/,
-   Hello /*method*/, NULL /*fmt*/);
+   ret = ecore_dbus_method_hello(event-server);
printf(ret: %d\n, ret);
return 0;
 }
@@ -78,7 +75,31 @@
Ecore_DBus_Event_Server_Data *event;
 
event = ev;
-   printf(_ecore_dbus_event_server_data\n);
+   if (!event-method) return 0;
+   printf(_ecore_dbus_event_server_data %s\n, event-method);
+   if (!strcmp(event-method, org.freedesktop.DBus.Hello))
+ {
+   printf(List names\n);
+   ecore_dbus_method_list_names(event-server);
+ }
+   else if (!strcmp(event-method, org.freedesktop.DBus.ListNames))
+ {
+   Ecore_List *names;
+
+   printf(Got names\n);
+   names = ecore_dbus_message_body_field_get(event-message, 0);
+   if (names)
+ {
+char *name;
+ecore_list_goto_first(names);
+while ((name = ecore_list_next(names)))
+  {
+ printf(Name: %s\n, name);
+  }
+ecore_list_destroy(names);
+ }
+   ecore_main_loop_quit();
+ }
return 0;
 }
 #else
===
RCS file: /cvs/e/e17/libs/ecore/src/bin/ecore_dbus_test.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ecore_dbus_test.h   20 Jul 2006 16:48:32 -  1.1
+++ ecore_dbus_test.h   25 Jul 2006 16:02:44 -  1.2
@@ -7,9 +7,11 @@
 #include config.h
 #include stdlib.h
 #include stdio.h
+#include string.h
 
 #ifdef BUILD_ECORE_DBUS
 #include Ecore.h
+#include Ecore_Data.h
 #include Ecore_DBus.h
 #endif
 



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ecore sebastid

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/src/lib/ecore_dbus


Modified Files:
Ecore_DBus.h ecore_dbus.c ecore_dbus_message.c 
ecore_dbus_methods.c ecore_dbus_private.h 
ecore_dbus_unmarshal.c ecore_dbus_utils.c 


Log Message:
Fix Fix

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_dbus/Ecore_DBus.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- Ecore_DBus.h25 Jul 2006 14:12:21 -  1.10
+++ Ecore_DBus.h25 Jul 2006 16:03:05 -  1.11
@@ -84,6 +84,7 @@
struct _Ecore_DBus_Event_Server_Data
  {
Ecore_DBus_Server  *server;
+   char   *method;
Ecore_DBus_Message *message;
  };
 
@@ -120,6 +121,16 @@
EAPI void  ecore_dbus_message_print(Ecore_DBus_Message *msg);
EAPI void *ecore_dbus_message_header_field_get(Ecore_DBus_Message 
*msg, Ecore_DBus_Message_Header_Field field);
EAPI void *ecore_dbus_message_body_field_get(Ecore_DBus_Message 
*msg, unsigned int pos);
+
+   /* methods */
+   EAPI int ecore_dbus_method_hello(Ecore_DBus_Server *svr);
+   EAPI int ecore_dbus_method_list_names(Ecore_DBus_Server *svr);
+   EAPI int ecore_dbus_method_name_has_owner(Ecore_DBus_Server *svr, char 
*name);
+   EAPI int ecore_dbus_method_start_service_by_name(Ecore_DBus_Server *svr, 
char *name, unsigned int flags);
+   EAPI int ecore_dbus_method_get_name_owner(Ecore_DBus_Server *svr, char 
*name);
+   EAPI int ecore_dbus_method_get_connection_unix_user(Ecore_DBus_Server *svr, 
char *connection);
+   EAPI int ecore_dbus_method_add_match(Ecore_DBus_Server *svr, char *match);
+   EAPI int ecore_dbus_method_remove_match(Ecore_DBus_Server *svr, char 
*match);
 
 #ifdef __cplusplus
 }
===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_dbus/ecore_dbus.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -3 -r1.14 -r1.15
--- ecore_dbus.c25 Jul 2006 14:34:47 -  1.14
+++ ecore_dbus.c25 Jul 2006 16:03:05 -  1.15
@@ -342,8 +342,9 @@
printf([ecore_dbus] received server data, %d bytes\n, e-size);
while (e-size)
  {
-Ecore_DBus_Event_Server_Data *ev;
+Ecore_DBus_Event_Server_Data*ev;
 Ecore_DBus_Message_Field_UInt32 *serial;
+char*method;
 
 msg = _ecore_dbus_message_unmarshal(svr, (unsigned char 
*)(e-data) + offset, e-size);
 if (msg == NULL) break;
@@ -351,12 +352,11 @@
 e-size -= msg-length;
 printf([ecore_dbus] dbus message length %u bytes, still %d\n,
msg-length, e-size);
-//ecore_dbus_message_print(msg);
+ecore_dbus_message_print(msg);
 /* Trap known messages */
 serial = ecore_dbus_message_header_field_get(msg, 
ECORE_DBUS_HEADER_FIELD_REPLY_SERIAL);
 if (msg-type == ECORE_DBUS_MESSAGE_TYPE_METHOD_RETURN)
   {
- char *method;
 
  method = ecore_hash_remove(svr-methods, (void 
*)serial-value);
  if (method)
@@ -369,35 +369,19 @@
name = ecore_dbus_message_body_field_get(msg, 0);
printf(Got unique name: %s\n, name);
svr-unique_name = strdup(name);
-   _ecore_dbus_message_free(msg);
 }
-  else
-{
-   ev = malloc(sizeof(Ecore_DBus_Event_Server_Data));
-   ev-server = svr;
-   ev-message = msg;
-   ecore_event_add(ECORE_DBUS_EVENT_SERVER_DATA, ev,
-   _ecore_dbus_event_server_data_free, 
NULL);
-}
-  free(method);
-   }
- else
-   {
-  ev = malloc(sizeof(Ecore_DBus_Event_Server_Data));
-  ev-server = svr;
-  ev-message = msg;
-  ecore_event_add(ECORE_DBUS_EVENT_SERVER_DATA, ev,
-  _ecore_dbus_event_server_data_free, 
NULL);
}
   }
 else
   {
- ev = malloc(sizeof(Ecore_DBus_Event_Server_Data));
- ev-server = svr;
- ev-message = msg;
- ecore_event_add(ECORE_DBUS_EVENT_SERVER_DATA, ev,
- _ecore_dbus_event_server_data_free, NULL);
+ method = NULL;
   }
+ev = malloc(sizeof(Ecore_DBus_Event_Server_Data));
+ev-server = svr;
+ev-message = msg;

E CVS: apps/evfs kaethorn

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kaethorn
Project : e17
Module  : apps/evfs

Dir : e17/apps/evfs/debian


Modified Files:
control 


Log Message:
add libsqlite dependency.

===
RCS file: /cvs/e/e17/apps/evfs/debian/control,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- control 15 Jul 2006 21:14:44 -  1.4
+++ control 25 Jul 2006 16:46:58 -  1.5
@@ -2,12 +2,12 @@
 Section: libs
 Priority: optional
 Maintainer: E17 Debian Team [EMAIL PROTECTED]
-Build-Depends: automake1.7, libtool, autotools-dev, debhelper (= 4.0.0), 
libsmbclient-dev, libxml2-dev, libecore-dev, libcurl3-dev, libbz2-dev, 
libeet-dev, libx11-dev, libxrender-dev, libssl-dev, libxcursor-dev, libxss-dev, 
libxinerama-dev, libxrandr-dev, libxp-dev, zlib1g-dev
+Build-Depends: automake1.7, libtool, autotools-dev, debhelper (= 4.0.0), 
libsmbclient-dev, libxml2-dev, libecore-dev, libcurl3-dev, libbz2-dev, 
libeet-dev, libx11-dev, libxrender-dev, libssl-dev, libxcursor-dev, libxss-dev, 
libxinerama-dev, libxrandr-dev, libxp-dev, zlib1g-dev, libsqlite3-dev
 Standards-Version: 3.6.2
 
 Package: libevfs0
 Architecture: any
-Depends: ${shlibs:Depends}, libbz2-1.0, libxml2, libsmbclient, libecore, 
libevas, libcurl3, libxinerama1, libxrandr2, libxext6, libxss1, libxcursor1, 
libxp6, libx11-6 
+Depends: ${shlibs:Depends}, libbz2-1.0, libxml2, libsmbclient, libecore, 
libevas, libcurl3, libxinerama1, libxrandr2, libxext6, libxss1, libxcursor1, 
libxp6, libx11-6, libsqlite3-0
 Provides: libevfs
 Section: libs
 Description: enlightenment virtual filesystem library



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: language maxerba

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : maxerba
Project : e_modules
Module  : language

Dir : e_modules/language/po




Log Message:
Directory /cvs/e/e_modules/language/po added to the repository




-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: language maxerba

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : maxerba
Project : e_modules
Module  : language

Dir : e_modules/language/src/module


Modified Files:
e_mod_config.c e_mod_main.c e_mod_main.h 


Log Message:
added i18n support and italian localization

===
RCS file: /cvs/e/e_modules/language/src/module/e_mod_config.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -3 -r1.18 -r1.19
--- e_mod_config.c  17 Jul 2006 23:08:29 -  1.18
+++ e_mod_config.c  25 Jul 2006 22:07:17 -  1.19
@@ -101,7 +101,7 @@
 
snprintf(buf, sizeof(buf), %s/module.eap, 
e_module_dir_get(language_config-module));
cfd = e_config_dialog_new(e_container_current_get(e_manager_current_get()),
-_(Language Module Settings), buf, 0, v, conf);
+D_(Language Module Settings), buf, 0, v, conf);
conf-config_dialog = cfd;
 }
 
@@ -171,7 +171,7 @@
o = e_widget_list_add(evas, 0, 0);
 
ol = e_widget_list_add(evas, 0, 1);
-  of = e_widget_framelist_add(evas, _(Available Languages), 1);
+  of = e_widget_framelist_add(evas, D_(Available Languages), 1);
 ob = e_widget_ilist_add(evas, ILIST_ICON_WIDTH, ILIST_ICON_HEIGHT, 
(cfdata-plang));
 e_widget_min_size_set(ob, 220, 160);
 e_widget_ilist_go(ob);
@@ -179,7 +179,7 @@
 cfdata-gui.o_plang = ob;
   e_widget_list_object_append(ol, of, 1, 1, 0.5);
 
-  of = e_widget_framelist_add(evas, _(Selected Languages), 0);
+  of = e_widget_framelist_add(evas, D_(Selected Languages), 0);
 ob = e_widget_ilist_add(evas, ILIST_ICON_WIDTH, ILIST_ICON_HEIGHT, 
(cfdata-slang));
 e_widget_min_size_set(ob, 220, 160);
 e_widget_ilist_go(ob);
@@ -195,12 +195,12 @@
e_widget_list_object_append(ol2, ob, 1, 1, 0.5);
cfdata-gui.o_del = ob;
 
-   ob = e_widget_button_add(evas, _(Up), widget/up_arrow, 
+   ob = e_widget_button_add(evas, D_(Up), widget/up_arrow, 
 _conf_cb_language_up, cfdata, NULL);
e_widget_list_object_append(ol2, ob, 1, 1, 0.5);
cfdata-gui.o_up = ob;
 
-   ob = e_widget_button_add(evas, _(Down), widget/down_arrow, 
+   ob = e_widget_button_add(evas, D_(Down), widget/down_arrow, 
 _conf_cb_language_down, cfdata, NULL);
e_widget_list_object_append(ol2, ob, 1, 1, 0.5);
cfdata-gui.o_down = ob;
@@ -208,16 +208,16 @@
   e_widget_list_object_append(ol, of, 1, 1, 0.5);
e_widget_list_object_append(o, ol, 1, 1, 0.5);
 
-   of = e_widget_framelist_add(evas, _(Language Switch Policy), 1);
+   of = e_widget_framelist_add(evas, D_(Language Switch Policy), 1);
   rg = e_widget_radio_group_new((int *)(cfdata-lang_policy));
 
-  ob = e_widget_radio_add(evas, _(Global), LS_GLOBAL_POLICY, rg);
+  ob = e_widget_radio_add(evas, D_(Global), LS_GLOBAL_POLICY, rg);
   e_widget_framelist_object_append(of, ob);
 
-  ob = e_widget_radio_add(evas, _(Window), LS_WINDOW_POLICY, rg);
+  ob = e_widget_radio_add(evas, D_(Window), LS_WINDOW_POLICY, rg);
   e_widget_framelist_object_append(of, ob);
 
-  ob = e_widget_radio_add(evas, _(Application), LS_APPLICATION_POLICY, 
rg);
+  ob = e_widget_radio_add(evas, D_(Application), LS_APPLICATION_POLICY, 
rg);
   e_widget_framelist_object_append(of, ob);
   e_widget_disabled_set(ob, 1); // this is temporary
e_widget_list_object_append(o, of, 1, 1, 0.5);
@@ -246,7 +246,7 @@
o = e_widget_list_add(evas, 0, 0);
 
ol = e_widget_list_add(evas, 0, 1);
-  of = e_widget_framelist_add(evas, _(Available Languages), 1);
+  of = e_widget_framelist_add(evas, D_(Available Languages), 1);
 ob = e_widget_ilist_add(evas, ILIST_ICON_WIDTH, ILIST_ICON_HEIGHT, 
(cfdata-plang));
 e_widget_min_size_set(ob, 220, 160);
 e_widget_ilist_go(ob);
@@ -254,7 +254,7 @@
 cfdata-gui.o_plang = ob;
   e_widget_list_object_append(ol, of, 1, 1, 0.5);
 
-  of = e_widget_framelist_add(evas, _(Selected Languages), 0);
+  of = e_widget_framelist_add(evas, D_(Selected Languages), 0);
 ob = e_widget_ilist_add(evas, ILIST_ICON_WIDTH, ILIST_ICON_HEIGHT, 
(cfdata-slang));
 e_widget_min_size_set(ob, 220, 160);
 e_widget_ilist_go(ob);
@@ -270,12 +270,12 @@
e_widget_list_object_append(ol2, ob, 1, 1, 0.5);
cfdata-gui.o_del = ob;
 
-   ob = e_widget_button_add(evas, _(Up), widget/up_arrow,
+   ob = e_widget_button_add(evas, D_(Up), widget/up_arrow,
 _conf_cb_language_up, cfdata, NULL);
e_widget_list_object_append(ol2, ob, 1, 1, 0.5);
cfdata-gui.o_up = ob;
 
-   ob = e_widget_button_add(evas, _(Down), widget/down_arrow,
+   ob = e_widget_button_add(evas, D_(Down), widget/down_arrow,
   

E CVS: language maxerba

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : maxerba
Project : e_modules
Module  : language

Dir : e_modules/language/po


Added Files:
.cvsignore Makefile.am it.po 


Log Message:
added i18n support and italian localization




-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: language maxerba

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : maxerba
Project : e_modules
Module  : language

Dir : e_modules/language


Modified Files:
Makefile.am autogen.sh configure.in 
Added Files:
ABOUT-NLS 


Log Message:
added i18n support and italian localization

===
RCS file: /cvs/e/e_modules/language/Makefile.am,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- Makefile.am 1 Jun 2006 19:23:42 -   1.4
+++ Makefile.am 25 Jul 2006 22:07:16 -  1.5
@@ -1,6 +1,6 @@
 MAINTAINERCLEANFILES = Makefile.in
 
-SUBDIRS = src data
+SUBDIRS = src data po
 
 # data files for the module
 filesdir = $(datadir)
===
RCS file: /cvs/e/e_modules/language/autogen.sh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- autogen.sh  16 Jun 2006 20:58:30 -  1.2
+++ autogen.sh  25 Jul 2006 22:07:16 -  1.3
@@ -10,6 +10,17 @@
 echo Running autoconf... ; autoconf || exit 1
 echo Running libtoolize... ; (libtoolize --copy --automake || glibtoolize 
--automake) || exit 1
 echo Running automake... ; automake --add-missing --copy --foreign || exit 1
+echo Generating gettext language.pot template; \
+xgettext \
+--output language.pot \
+--output-dir=po \
+--language=C \
+--add-location \
+--keyword=D_ \
+--sort-by-file \
+--copyright-holder=TODO \
+--foreign-user \
+`find . -name *.[ch] -print` || exit 1
 
 if [ -z $NOCONFIGURE ]; then
./configure $@
===
RCS file: /cvs/e/e_modules/language/configure.in,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- configure.in25 Jul 2006 13:31:45 -  1.9
+++ configure.in25 Jul 2006 22:07:16 -  1.10
@@ -17,11 +17,11 @@
 AM_ENABLE_SHARED
 AM_PROG_LIBTOOL
 
-ALL_LINGUAS=
+ALL_LINGUAS=it
 AC_SUBST(ALL_LINGUAS)
 
-#AM_GNU_GETTEXT([external])
-#AM_GNU_GETTEXT_VERSION(0.14)
+AM_GNU_GETTEXT([external])
+AM_GNU_GETTEXT_VERSION(0.14)
 
 MODULE_ARCH=$host_os-$host_cpu
 AC_SUBST(MODULE_ARCH)
@@ -161,6 +161,7 @@
 data/Makefile
 data/themes/Makefile
 data/themes/images/Makefile
+po/Makefile
 ],[
 ])
 



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs