E CVS: libs/evas tilman

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : tilman
Project : e17
Module  : libs/evas

Dir : e17/libs/evas/src/lib/engines/common


Modified Files:
evas_font_draw.c 


Log Message:
Replace another deprecated macro.

===
RCS file: /cvs/e/e17/libs/evas/src/lib/engines/common/evas_font_draw.c,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -3 -r1.33 -r1.34
--- evas_font_draw.c25 Aug 2007 11:54:17 -  1.33
+++ evas_font_draw.c26 Aug 2007 08:21:57 -  1.34
@@ -39,7 +39,7 @@
  }
if (fg-glyph-format != FT_GLYPH_FORMAT_BITMAP)
  {
-   error = FT_Glyph_To_Bitmap((fg-glyph), ft_render_mode_normal, 0, 1);
+   error = FT_Glyph_To_Bitmap((fg-glyph), FT_RENDER_MODE_NORMAL, 0, 1);
if (error)
  {
 FT_Done_Glyph(fg-glyph);



-
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


E CVS: libs/ecore doursse

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ecore

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




Log Message:
Directory /cvs/e/e17/libs/ecore/src/lib/ecore_win32 added to the repository




-
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


E CVS: apps/e urandom

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : urandom
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_gadcon_popup.c 


Log Message:
recalc the min size, in case the container changes it's geometry

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_gadcon_popup.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- e_gadcon_popup.c25 Aug 2007 09:41:25 -  1.2
+++ e_gadcon_popup.c26 Aug 2007 11:16:31 -  1.3
@@ -24,8 +24,7 @@
e_popup_layer_set(pop-win, 990);
 
o = edje_object_add(pop-win-evas);
-   e_theme_edje_object_set(o, base/theme/gadman,
-  e/gadman/popup);
+   e_theme_edje_object_set(o, base/theme/gadman, e/gadman/popup);
evas_object_show(o);
evas_object_move(o, 0, 0);
e_popup_edje_bg_object_set(pop-win, o);
@@ -47,9 +46,7 @@
E_OBJECT_CHECK(pop);
E_OBJECT_TYPE_CHECK(pop, E_GADCON_POPUP_TYPE);
 
-   old_o =
-  edje_object_part_swallow_get(pop-o_bg,
-   e.swallow.content);
+   old_o = edje_object_part_swallow_get(pop-o_bg, e.swallow.content);
if (old_o)
  {
edje_object_part_unswallow(pop-o_bg, old_o);
@@ -67,13 +64,24 @@
 EAPI void
 e_gadcon_popup_show(E_Gadcon_Popup *pop)
 {
+   Evas_Object *o;
Evas_Coord gx, gy, gw, gh, zw, zh, px, py, ww, wh;
 
if (!pop) return;
E_OBJECT_CHECK(pop);
E_OBJECT_TYPE_CHECK(pop, E_GADCON_POPUP_TYPE);
 
-   if (pop-pinned) return;
+   if (pop-win-visible) return;
+
+   if (o = edje_object_part_swallow_get(pop-o_bg, e.swallow.content))
+ {
+   Evas_Coord w = 0, h = 0;
+
+   e_widget_min_size_get(o, w, h);
+   if (!w || !h)
+ edje_object_size_min_calc(o, w, h);
+   edje_extern_object_min_size_set(o, w, h);
+ }
 
evas_object_show(pop-o_bg);
edje_object_size_min_calc(pop-o_bg, ww, wh);



-
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


E CVS: libs/ecore doursse

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ecore

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


Added Files:
Ecore_Win32.h Makefile.am ecore_win32.c ecore_win32_ddraw.c 
ecore_win32_direct3d.cpp ecore_win32_event.c 
ecore_win32_private.h ecore_win32_window.c 


Log Message:
add windows support to ecore. ecore_evas is ported too (directdraw and 
direct3d. No opengl yet). It needs to be tested a lot, though. Remove some 
trailing spaces here and there. Replace WIN32 with _WIN32




-
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


E CVS: libs/ecore doursse

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore


Modified Files:
Makefile.am configure.in 
Added Files:
ecore-win32.pc.in 


Log Message:
add windows support to ecore. ecore_evas is ported too (directdraw and 
direct3d. No opengl yet). It needs to be tested a lot, though. Remove some 
trailing spaces here and there. Replace WIN32 with _WIN32

===
RCS file: /cvs/e/e17/libs/ecore/Makefile.am,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -3 -r1.37 -r1.38
--- Makefile.am 16 Jul 2007 07:23:10 -  1.37
+++ Makefile.am 26 Aug 2007 11:17:20 -  1.38
@@ -21,6 +21,7 @@
   ecore-job.pc \
   ecore-txt.pc \
   ecore-x.pc \
+  ecore-win32.pc \
   ecore-sdl.pc \
   ecore.pc
 
@@ -40,6 +41,7 @@
 ecore-job.pc.in \
 ecore-txt.pc.in \
 ecore-x.pc.in \
+ecore-win32.pc.in \
 ecore-sdl.pc.in \
 ecore.spec.in ecore.spec \
 debian/changelog \
@@ -105,6 +107,11 @@
 px = ecore-x.pc
 endif
 
+if BUILD_ECORE_WIN32
+pwin32 = ecore-win32.pc
+endif
+
+
 if BUILD_ECORE_SDL
 psdl = ecore-sdl.pc
 endif
@@ -116,4 +123,5 @@
 pkgconfigdir = $(libdir)/pkgconfig
 pkgconfig_DATA = \
ecore.pc $(pcon) $(pconfig) $(pdfb) $(pevas) \
-   $(pfb) $(pfile) $(pdesktop) $(pipc) $(pjob) $(ptxt) $(px) $(psdl)
+   $(pfb) $(pfile) $(pdesktop) $(pipc) $(pjob) $(ptxt) \
+   $(px) $(pwin32) $(psdl)
===
RCS file: /cvs/e/e17/libs/ecore/configure.in,v
retrieving revision 1.206
retrieving revision 1.207
diff -u -3 -r1.206 -r1.207
--- configure.in22 Aug 2007 17:24:44 -  1.206
+++ configure.in26 Aug 2007 11:17:20 -  1.207
@@ -17,7 +17,7 @@
 AM_ENABLE_SHARED
 AM_PROG_LIBTOOL
 AC_C___ATTRIBUTE__
-   
+
 if test x${bindir} = 'xNONE'; then
   if test x${prefix} = xNONE; then
 PACKAGE_BIN_DIR=${ac_default_prefix}/bin
@@ -28,7 +28,7 @@
   PACKAGE_BIN_DIR=${bindir}
 fi
 AC_SUBST(PACKAGE_BIN_DIR)
-   
+
 if test x${libdir} = 'xNONE'; then
   if test x${prefix} = xNONE; then
 PACKAGE_LIB_DIR=${ac_default_prefix}/lib
@@ -72,6 +72,7 @@
 requirements_ecore_job=
 requirements_ecore_txt=
 requirements_ecore_x=
+requirements_ecore_win32=
 requirements_ecore_sdl=
 
 dnl The first call to PKG_CHECK_MODULES is done conditionally,
@@ -115,7 +116,7 @@
  have_iconv=yes
 ]
   )
-  
+
   if test x$have_iconv != xyes; then
 AC_CHECK_LIB(iconv, iconv,
   [
@@ -285,7 +286,7 @@
 
   AC_SUBST(Xcursor_cflags)
   AC_SUBST(Xcursor_libs)
-  
+
   ECORE_CHECK_X_EXTENSION([Xdamage], [Xdamage.h], [Xdamage], [XDamageSubtract])
   ECORE_CHECK_X_EXTENSION([Xdpms], [dpms.h], [Xdpms], [DPMSQueryExtension])
   if test x$use_xdpms = xno ; then
@@ -303,6 +304,31 @@
 
 fi
 
+AC_CHECK_HEADER(ddraw.h,
+  [ have_ddraw=yes
+AC_DEFINE(HAVE_DIRECTDRAW, 1, [Build Ecore_Win32 with DirectDraw Code])
+ddraw_libs=-lddraw -ldxguid ],
+  [ have_ddraw=no ]
+)
+AC_SUBST(ddraw_libs)
+
+AC_CHECK_HEADERS(d3d9.h d3dx9.h,
+  [ have_direct3d=yes
+AC_DEFINE(HAVE_DIRECT3D, 1, [Build Ecore_Win32 with Direct3D Code])
+direct3d_libs=-ld3d9 -ld3dx9d ],
+  [ have_direct3d=no ]
+)
+AC_SUBST(direct3d_libs)
+
+have_win32=no
+if test x${have_ddraw} = xyes -o x${have_direct3d} = xyes; then
+  have_win32=yes
+fi
+
+ECORE_CHECK_MODULE([Win32], [no], [$have_win32],
+  [ecore_win32_libs=$ecore_win32_libs $ddraw_libs $direct3d_libs])
+
+
 ECORE_CHECK_MODULE([Job], [yes])
 
 PKG_CHECK_MODULES(DIRECTFB, directfb = 0.9.16,
@@ -462,7 +488,7 @@
 AC_ARG_ENABLE(ecore-evas-dfb,
   [  --disable-ecore-evas-dfb  disable DirectFB in the ecore_evas module],
   [
-if test x$enableval = xno ; then  
+if test x$enableval = xno ; then
   want_ecore_evas_dfb=no
 else
   want_ecore_evas_dfb=yes
@@ -496,10 +522,10 @@
 have_ecore_evas_fb=no;
 
 AC_MSG_CHECKING(whether ecore_evas fb support is to be built)
-AC_ARG_ENABLE(ecore-evas-fb, 
+AC_ARG_ENABLE(ecore-evas-fb,
   [  --enable-ecore-evas-fb   enable fb in the ecore_evas module],
   [
-if test x$enableval = xyes ; then  
+if test x$enableval = xyes ; then
   AC_MSG_RESULT(yes)
   want_ecore_evas_fb=yes
 else
@@ -582,10 +608,10 @@
 have_ecore_evas_buffer=no;
 
 AC_MSG_CHECKING(whether ecore_evas buffer support is to be built)
-AC_ARG_ENABLE(ecore-evas-buffer, 
+AC_ARG_ENABLE(ecore-evas-buffer,
   [  --disable-ecore-evas-buffer   disable buffer in the ecore_evas module],
   [
-if test x$enableval = xyes ; then  
+if test x$enableval = xyes ; then
   AC_MSG_RESULT(yes)
 else
   AC_MSG_RESULT(no)
@@ -672,10 +698,10 @@
 if test x$have_ecore_file = xyes; then
   dnl We need 

E CVS: libs/ecore doursse

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/src/lib


Modified Files:
Makefile.am 


Log Message:
add windows support to ecore. ecore_evas is ported too (directdraw and 
direct3d. No opengl yet). It needs to be tested a lot, though. Remove some 
trailing spaces here and there. Replace WIN32 with _WIN32

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/Makefile.am,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -3 -r1.12 -r1.13
--- Makefile.am 16 Jul 2007 07:23:11 -  1.12
+++ Makefile.am 26 Aug 2007 11:17:20 -  1.13
@@ -7,6 +7,7 @@
 ecore_directfb \
 ecore_con \
 ecore_x \
+ecore_win32 \
 ecore_sdl \
 ecore_ipc \
 ecore_evas \



-
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


E CVS: libs/ecore doursse

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ecore

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


Modified Files:
Makefile.am 


Log Message:
add windows support to ecore. ecore_evas is ported too (directdraw and 
direct3d. No opengl yet). It needs to be tested a lot, though. Remove some 
trailing spaces here and there. Replace WIN32 with _WIN32

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_sdl/Makefile.am,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makefile.am 16 Jul 2007 07:23:11 -  1.1
+++ Makefile.am 26 Aug 2007 11:17:21 -  1.2
@@ -20,7 +20,7 @@
 
 libecore_sdl_la_LIBADD = \
 $(top_builddir)/src/lib/ecore/libecore.la \
[EMAIL PROTECTED]@
[EMAIL PROTECTED]@ @create_shared_lib@
 
 libecore_sdl_la_DEPENDENCIES = \
 $(top_builddir)/src/lib/ecore/libecore.la



-
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


E CVS: libs/ecore doursse

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ecore

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


Modified Files:
ecore_ipc.c 


Log Message:
add windows support to ecore. ecore_evas is ported too (directdraw and 
direct3d. No opengl yet). It needs to be tested a lot, though. Remove some 
trailing spaces here and there. Replace WIN32 with _WIN32

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_ipc/ecore_ipc.c,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -3 -r1.44 -r1.45
--- ecore_ipc.c 19 Aug 2007 23:44:34 -  1.44
+++ ecore_ipc.c 26 Aug 2007 11:17:21 -  1.45
@@ -7,8 +7,8 @@
 
 #ifdef HAVE_NETINET_IN_H
 #include netinet/in.h
-#elif WIN32
-#include winsock.h
+#elif _WIN32
+#include winsock2.h
 #endif
 
 #define DLT_ZERO   0
@@ -33,7 +33,7 @@
 _ecore_ipc_swap_16(unsigned short v)
 {
unsigned char *s, t;
-   
+
s = (unsigned char *)(v);
t = s[0]; s[0] = s[1]; s[1] = t;
return v;
@@ -43,7 +43,7 @@
 _ecore_ipc_swap_32(unsigned int v)
 {
unsigned char *s, t;
-   
+
s = (unsigned char *)(v);
t = s[0]; s[0] = s[3]; s[3] = t;
t = s[1]; s[1] = s[2]; s[2] = t;
@@ -54,7 +54,7 @@
 _ecore_ipc_swap_64(unsigned long long v)
 {
unsigned char *s, t;
-   
+
s = (unsigned char *)(v);
t = s[0]; s[0] = s[7]; s[7] = t;
t = s[1]; s[1] = s[6]; s[6] = t;
@@ -223,7 +223,7 @@
 static void _ecore_ipc_event_server_add_free(void *data, void *ev);
 static void _ecore_ipc_event_server_del_free(void *data, void *ev);
 static void _ecore_ipc_event_server_data_free(void *data, void *ev);
-
+
 EAPI int ECORE_IPC_EVENT_CLIENT_ADD = 0;
 EAPI int ECORE_IPC_EVENT_CLIENT_DEL = 0;
 EAPI int ECORE_IPC_EVENT_SERVER_ADD = 0;
@@ -275,7 +275,7 @@
  _ecore_ipc_event_client_data, NULL);
handler[i++] = ecore_event_handler_add(ECORE_CON_EVENT_SERVER_DATA,
  _ecore_ipc_event_server_data, NULL);
-   return init_count;   
+   return init_count;
 }
 
 /**
@@ -327,7 +327,7 @@
Ecore_Ipc_Server *svr;
Ecore_Ipc_Type type;
Ecore_Con_Type extra = 0;
-   
+
svr = calloc(1, sizeof(Ecore_Ipc_Server));
if (!svr) return NULL;
type = compl_type;
@@ -385,7 +385,7 @@
Ecore_Ipc_Server *svr;
Ecore_Ipc_Type type;
Ecore_Con_Type extra = 0;
-   
+
svr = calloc(1, sizeof(Ecore_Ipc_Server));
if (!svr) return NULL;
type = compl_type;
@@ -439,7 +439,7 @@
svr-data = NULL;
svr-delete_me = 1;
if (svr-event_count == 0)
- { 
+ {
while (svr-clients)
  ecore_ipc_client_del((Ecore_Ipc_Client *)svr-clients);
ecore_con_server_del(svr-server);
@@ -564,7 +564,7 @@
int ret;
int *head, md = 0, d, s;
unsigned char dat[sizeof(Ecore_Ipc_Msg_Head)];
-   
+
if (!ECORE_MAGIC_CHECK(svr, ECORE_MAGIC_IPC_SERVER))
  {
ECORE_MAGIC_FAIL(svr, ECORE_MAGIC_IPC_SERVER,
@@ -635,7 +635,7 @@
 
 /**
  * Sets the max data payload size for an Ipc message in bytes
- * 
+ *
  * @param   svr   The given server.
  * @param   size  The maximum data payload size in bytes.
  * @ingroup Ecore_Ipc_Server_Group
@@ -654,7 +654,7 @@
 
 /**
  * Gets the max data payload size for an Ipc message in bytes
- * 
+ *
  * @param   svr   The given server.
  * @return The maximum data payload in bytes.
  * @ingroup Ecore_Ipc_Server_Group
@@ -673,7 +673,7 @@
 
 /**
  * Gets the IP address of a server that has been connected to.
- * 
+ *
  * @param   svr   The given server.
  * @return  A pointer to an internal string that contains the IP address of
  *  the connected server in the form XXX.YYY.ZZZ.AAA IP notation.
@@ -772,7 +772,7 @@
int ret;
int *head, md = 0, d, s;
unsigned char dat[sizeof(Ecore_Ipc_Msg_Head)];
-   
+
if (!ECORE_MAGIC_CHECK(cl, ECORE_MAGIC_IPC_CLIENT))
  {
ECORE_MAGIC_FAIL(cl, ECORE_MAGIC_IPC_CLIENT,
@@ -837,7 +837,7 @@
 {
void *data;
Ecore_Ipc_Server *svr;
-   
+
if (!ECORE_MAGIC_CHECK(cl, ECORE_MAGIC_IPC_CLIENT))
  {
ECORE_MAGIC_FAIL(cl, ECORE_MAGIC_IPC_CLIENT,
@@ -867,7 +867,7 @@
  */
 EAPI void
 ecore_ipc_client_data_set(Ecore_Ipc_Client *cl, const void *data)
-{  
+{
if (!ECORE_MAGIC_CHECK(cl, ECORE_MAGIC_IPC_CLIENT))
  {
ECORE_MAGIC_FAIL(cl, ECORE_MAGIC_IPC_CLIENT,
@@ -875,7 +875,7 @@
return;
  }
cl-data = (void *)data;
-}  
+}
 
 /**
  * Retrieves the data that has been associated with the given IPC client.
@@ -885,7 +885,7 @@
  */
 EAPI void *
 ecore_ipc_client_data_get(Ecore_Ipc_Client *cl)
-{  
+{
if (!ECORE_MAGIC_CHECK(cl, ECORE_MAGIC_IPC_CLIENT))
  {
ECORE_MAGIC_FAIL(cl, ECORE_MAGIC_IPC_CLIENT,
@@ -897,7 +897,7 @@
 
 /**
  * Sets the max data payload size for an Ipc message in bytes
- * 
+ *
  * @param   clientThe given client.
  * @param   size  The maximum data payload 

E CVS: libs/ecore doursse

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ecore

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


Modified Files:
ecore_con.c 


Log Message:
add windows support to ecore. ecore_evas is ported too (directdraw and 
direct3d. No opengl yet). It needs to be tested a lot, though. Remove some 
trailing spaces here and there. Replace WIN32 with _WIN32

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_con/ecore_con.c,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -3 -r1.85 -r1.86
--- ecore_con.c 25 Jul 2007 17:00:55 -  1.85
+++ ecore_con.c 26 Aug 2007 11:17:21 -  1.86
@@ -22,8 +22,8 @@
 
 #ifdef HAVE_NETINET_IN_H
 #include netinet/in.h
-#elif WIN32
-#include winsock.h
+#elif _WIN32
+#include winsock2.h
 #endif
 
 static void _ecore_con_cb_dns_lookup(void *data, struct hostent *he);
@@ -110,7 +110,7 @@
ecore_con_dns_shutdown();
 
ecore_shutdown();
-   
+
return init_count;
 }
 
@@ -158,7 +158,7 @@
struct sockaddr_un  socket_unix;
struct linger   lin;
charbuf[4096];
-   
+
if (port  0) return NULL;
/* local  user   socket: FILE:   ~/.ecore/[name]/[port] */
/* local  system socket: FILE:   /tmp/.ecore_service|[name]|[port] */
@@ -171,7 +171,7 @@
/* unset the SSL flag for the following checks */
type = ~ECORE_CON_USE_SSL;
 #endif
-  
+
if ((type == ECORE_CON_LOCAL_USER) ||
(type == ECORE_CON_LOCAL_SYSTEM) ||
(type == ECORE_CON_LOCAL_ABSTRACT))
@@ -180,7 +180,7 @@
struct stat st;
mode_t pmode, mask;
int socket_unix_len;
-   
+
if (!name) goto error;
mask =
  S_IRGRP | S_IWGRP | S_IXGRP |
@@ -223,19 +223,19 @@
  }
if (fcntl(svr-fd, F_SETFL, O_NONBLOCK)  0)
  {
-umask(pmode);   
+umask(pmode);
 goto error;
  }
if (fcntl(svr-fd, F_SETFD, FD_CLOEXEC)  0)
  {
-umask(pmode);   
+umask(pmode);
 goto error;
  }
lin.l_onoff = 1;
lin.l_linger = 0;
if (setsockopt(svr-fd, SOL_SOCKET, SO_LINGER, lin, sizeof(struct 
linger))  0)
  {
-umask(pmode);   
+umask(pmode);
 goto error;
  }
socket_unix.sun_family = AF_UNIX;
@@ -245,11 +245,11 @@
 /* . is a placeholder */
 snprintf(socket_unix.sun_path, sizeof(socket_unix.sun_path), 
.%s, name);
 /* first char null indicates abstract namespace */
-socket_unix.sun_path[0] = '\0'; 
+socket_unix.sun_path[0] = '\0';
 socket_unix_len = LENGTH_OF_ABSTRACT_SOCKADDR_UN(socket_unix, 
name);
 #else
 fprintf(stderr, Your system does not support abstract 
sockets!\n);
-umask(pmode);   
+umask(pmode);
 goto error;
 #endif
  }
@@ -260,7 +260,7 @@
  }
if (bind(svr-fd, (struct sockaddr *)socket_unix, socket_unix_len)  0)
  {
-if (connect(svr-fd, (struct sockaddr *)socket_unix, 
+if (connect(svr-fd, (struct sockaddr *)socket_unix,
 socket_unix_len)  0)
   {
  if ((type == ECORE_CON_LOCAL_USER) ||
@@ -269,7 +269,7 @@
   if (unlink(buf)  0)
 {
umask(pmode);
-   goto error;
+   goto error;
 }
   else
 goto start;
@@ -277,24 +277,24 @@
  else
{
   umask(pmode);
-  goto error; 
+  goto error;
}
   }
 else
   {
- umask(pmode);  
+ umask(pmode);
  goto error;
   }
  }
if (listen(svr-fd, 4096)  0)
  {
-umask(pmode);   
+umask(pmode);
 goto error;
  }
svr-path = strdup(buf);
if (!svr-path)
  {
-umask(pmode);   
+umask(pmode);
 goto error;
  }
svr-fd_handler = ecore_main_fd_handler_add(svr-fd,
@@ -338,14 +338,14 @@
/* SSLv3 gives *weird* results on my box, don't use it yet */
if (!(svr-ssl_ctx = SSL_CTX_new(SSLv2_client_method(
  goto error;
-   
+
if (!(svr-ssl = SSL_new(svr-ssl_ctx)))
  goto error;
-   
+
SSL_set_fd(svr-ssl, svr-fd);
  }
 #endif
-   
+
svr-name = strdup(name);
if (!svr-name) goto error;
svr-type = type;
@@ -357,9 +357,9 @@
svr-clients = ecore_list_new();
svr-ppid = getpid();

E CVS: libs/ecore doursse

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ecore

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


Modified Files:
Ecore_Evas.h Makefile.am ecore_evas.c ecore_evas_buffer.c 
ecore_evas_private.h ecore_evas_sdl.c 
Added Files:
ecore_evas_win32.c 


Log Message:
add windows support to ecore. ecore_evas is ported too (directdraw and 
direct3d. No opengl yet). It needs to be tested a lot, though. Remove some 
trailing spaces here and there. Replace WIN32 with _WIN32

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_evas/Ecore_Evas.h,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -3 -r1.29 -r1.30
--- Ecore_Evas.h16 Jul 2007 07:23:11 -  1.29
+++ Ecore_Evas.h26 Aug 2007 11:17:21 -  1.30
@@ -32,7 +32,7 @@
  * - iconfication api needs to work
  * - maximization api needs to work
  * - document all calls
- * 
+ *
  * later:
  * - buffer back-end that renders to an evas_image_object ???
  * - qt back-end ???
@@ -53,6 +53,7 @@
 #define HAVE_ECORE_EVAS_GL 1
 #define HAVE_ECORE_EVAS_X11_16 1
 #define HAVE_ECORE_EVAS_DIRECTFB 1
+#define HAVE_ECORE_EVAS_WIN32 1
 
 typedef enum _Ecore_Evas_Engine_Type
 {
@@ -63,6 +64,8 @@
ECORE_EVAS_ENGINE_XRENDER_X11,
ECORE_EVAS_ENGINE_DIRECTFB,
ECORE_EVAS_ENGINE_SOFTWARE_X11_16,
+   ECORE_EVAS_ENGINE_SOFTWARE_DDRAW,
+   ECORE_EVAS_ENGINE_DIRECT3D,
ECORE_EVAS_ENGINE_SDL
 } Ecore_Evas_Engine_Type;
 
@@ -70,12 +73,16 @@
 #define _ECORE_X_WINDOW_PREDEF
 typedef unsigned int Ecore_X_Window;
 #endif
-   
+
 #ifndef _ECORE_DIRECTFB_H
 #define _ECORE_DIRECTFB_WINDOW_PREDEF
 typedef struct _Ecore_DirectFB_Window Ecore_DirectFB_Window;
 #endif
-   
+
+#ifndef __ECORE_WIN32_H__
+typedef void Ecore_Win32_Window;
+#endif
+
 #ifndef _ECORE_EVAS_PRIVATE_H
 /* basic data types */
 typedef struct _Ecore_Evas Ecore_Evas;
@@ -84,7 +91,7 @@
 /* module setup/shutdown calls */
 
 EAPI int ecore_evas_engine_type_supported_get(Ecore_Evas_Engine_Type 
engine);
-   
+
 EAPI int ecore_evas_init(void);
 EAPI int ecore_evas_shutdown(void);
 
@@ -95,7 +102,7 @@
 EAPI voidecore_evas_software_x11_direct_resize_set(Ecore_Evas *ee, 
int on);
 EAPI int ecore_evas_software_x11_direct_resize_get(Ecore_Evas *ee);
 EAPI voidecore_evas_software_x11_extra_event_window_add(Ecore_Evas 
*ee, Ecore_X_Window win);
-   
+
 EAPI Ecore_Evas *ecore_evas_gl_x11_new(const char *disp_name, 
Ecore_X_Window parent, int x, int y, int w, int h);
 EAPI Ecore_X_Window  ecore_evas_gl_x11_window_get(Ecore_Evas *ee);
 EAPI Ecore_X_Window  ecore_evas_gl_x11_subwindow_get(Ecore_Evas *ee);
@@ -124,9 +131,21 @@
 
 EAPI Ecore_Evas *ecore_evas_buffer_new(int w, int h);
 EAPI const int  *ecore_evas_buffer_pixels_get(Ecore_Evas *ee);
-   
+
 EAPI Evas_Object*ecore_evas_object_image_new(Ecore_Evas *ee_target);
 
+EAPI Ecore_Evas *ecore_evas_software_ddraw_new(Ecore_Win32_Window *parent,
+   int x,
+   int y,
+   int width,
+   int height);
+
+EAPI Ecore_Evas *ecore_evas_direct3d_new(Ecore_Win32_Window *parent,
+ int x,
+ int y,
+ int width,
+ int height);
+
 EAPI Ecore_Evas *ecore_evas_sdl_new(const char* name, int w, int h, int 
fullscreen, int hwsurface, int noframe, int alpha);
 
 /* generic manipulation calls */
@@ -161,10 +180,10 @@
 EAPI voidecore_evas_alpha_set(Ecore_Evas *ee, int alpha);
 EAPI int ecore_evas_alpha_get(Ecore_Evas *ee);
 EAPI voidecore_evas_show(Ecore_Evas *ee);
-EAPI voidecore_evas_hide(Ecore_Evas *ee);   
+EAPI voidecore_evas_hide(Ecore_Evas *ee);
 EAPI int ecore_evas_visibility_get(Ecore_Evas *ee);
 EAPI voidecore_evas_raise(Ecore_Evas *ee);
-EAPI voidecore_evas_lower(Ecore_Evas *ee);   
+EAPI voidecore_evas_lower(Ecore_Evas *ee);
 EAPI voidecore_evas_title_set(Ecore_Evas *ee, const char *t);
 EAPI const char *ecore_evas_title_get(Ecore_Evas *ee);
 EAPI voidecore_evas_name_class_set(Ecore_Evas *ee, const char *n, 
const char *c);
===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_evas/Makefile.am,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -3 -r1.15 -r1.16
--- Makefile.am 16 Jul 2007 07:23:11 -  1.15
+++ Makefile.am 26 Aug 2007 11:17:21 -  1.16
@@ -30,6 +30,16 @@
 ECORE_DIRECTFB_LDF = 
 

E CVS: libs/ecore doursse

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ecore

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


Modified Files:
Ecore.h ecore.c ecore_exe.c ecore_main.c ecore_plugin.c 
ecore_private.h ecore_signal.c ecore_time.c 


Log Message:
add windows support to ecore. ecore_evas is ported too (directdraw and 
direct3d. No opengl yet). It needs to be tested a lot, though. Remove some 
trailing spaces here and there. Replace WIN32 with _WIN32

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore/Ecore.h,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -3 -r1.53 -r1.54
--- Ecore.h 15 Mar 2007 22:21:26 -  1.53
+++ Ecore.h 26 Aug 2007 11:17:20 -  1.54
@@ -74,7 +74,7 @@
EAPI extern int ECORE_EXE_EVENT_DATA; /** Data from a child process. */
EAPI extern int ECORE_EXE_EVENT_ERROR; /** Errors from a child process. */
 
-#ifndef _ECORE_PRIVATE_H   
+#ifndef _ECORE_PRIVATE_H
enum _Ecore_Fd_Handler_Flags
  {
ECORE_FD_READ = 1, /** Fd Read mask */
@@ -82,7 +82,7 @@
ECORE_FD_ERROR = 4 /** Fd Error mask */
  };
typedef enum _Ecore_Fd_Handler_Flags Ecore_Fd_Handler_Flags;
-   
+
enum _Ecore_Exe_Flags /* flags for executing a child with its stdin and/or 
stdout piped back */
  {
 
@@ -96,8 +96,8 @@
ECORE_EXE_USE_SH = 128 /** Use /bin/sh to run the command. */
  };
typedef enum _Ecore_Exe_Flags Ecore_Exe_Flags;
-   
-#ifndef WIN32
+
+#ifndef _WIN32
typedef void Ecore_Exe; /** A handle for spawned processes */
 #endif
typedef void Ecore_Timer; /** A handle for timers */
@@ -120,7 +120,7 @@
typedef struct _Ecore_Exe_Event_Data_Line   Ecore_Exe_Event_Data_Line; /** 
Lines from a child process */
typedef struct _Ecore_Exe_Event_DataEcore_Exe_Event_Data; /** Data 
from a child process */
 
-#ifndef WIN32
+#ifndef _WIN32
 #endif
 
struct _Ecore_Event_Signal_User /** User signal event */
@@ -128,20 +128,20 @@
int   number; /** The signal number. Either 1 or 2 */
void *ext_data; /** Extension data - not used */
 
-#ifndef WIN32
+#ifndef _WIN32
siginfo_t data; /** Signal info */
 #endif
  };
-   
+
struct _Ecore_Event_Signal_Hup /** Hup signal event */
  {
void *ext_data; /** Extension data - not used */
 
-#ifndef WIN32
+#ifndef _WIN32
siginfo_t data; /** Signal info */
 #endif
  };
-   
+
struct _Ecore_Event_Signal_Exit /** Exit request event */
  {
int   interrupt : 1; /** Set if the exit request was an interrupt  
signal*/
@@ -149,7 +149,7 @@
int   terminate : 1; /** Set if the exit request was a terminate 
singal */
void *ext_data; /** Extension data - not used */
 
-#ifndef WIN32
+#ifndef _WIN32
siginfo_t data; /** Signal info */
 #endif
  };
@@ -158,7 +158,7 @@
  {
void *ext_data; /** Extension data - not used */
 
-#ifndef WIN32
+#ifndef _WIN32
siginfo_t data; /** Signal info */
 #endif
  };
@@ -167,12 +167,12 @@
  {
int num; /** The realtime signal's number */
 
-#ifndef WIN32
+#ifndef _WIN32
siginfo_t data; /** Signal info */
 #endif
  };
 
-#ifndef WIN32
+#ifndef _WIN32
struct _Ecore_Exe_Event_Add /** Process add event */
  {
Ecore_Exe *exe; /** The handle to the added process */
@@ -205,10 +205,10 @@
Ecore_Exe_Event_Data_Line *lines; /** an array of line data if line 
buffered, the last one has it's line member set to NULL */
  };
 #endif
-   
+
EAPI int  ecore_init(void);
EAPI int  ecore_shutdown(void);
-   
+
EAPI void ecore_app_args_set(int argc, const char **argv);
EAPI void ecore_app_args_get(int *argc, char ***argv);
EAPI void ecore_app_restart(void);
@@ -222,9 +222,9 @@
EAPI void*ecore_event_filter_del(Ecore_Event_Filter *ef);
EAPI int  ecore_event_current_type_get(void);
EAPI void*ecore_event_current_event_get(void);
-   
-   
-#ifndef WIN32
+
+
+#ifndef _WIN32
EAPI Ecore_Exe  *ecore_exe_run(const char *exe_cmd, const void *data);
EAPI Ecore_Exe  *ecore_exe_pipe_run(const char *exe_cmd, Ecore_Exe_Flags 
flags, const void *data);
EAPI int ecore_exe_send(Ecore_Exe *exe, void *data, int size);
@@ -245,10 +245,10 @@
EAPI voidecore_exe_signal(Ecore_Exe *exe, int num);
EAPI voidecore_exe_hup(Ecore_Exe *exe);
 #endif
-   
+
EAPI Ecore_Idler *ecore_idler_add(int (*func) (void *data), const void 
*data);
EAPI void*ecore_idler_del(Ecore_Idler *idler);
-   
+
EAPI Ecore_Idle_Enterer *ecore_idle_enterer_add(int (*func) (void *data), 
const void *data);
EAPI void   *ecore_idle_enterer_del(Ecore_Idle_Enterer 
*idle_enterer);
 
@@ -264,18 +264,18 @@
EAPI int   ecore_main_fd_handler_fd_get(Ecore_Fd_Handler 
*fd_handler);
EAPI int   

E CVS: cpu urandom

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : urandom
Project : e_modules
Module  : cpu

Dir : e_modules/cpu


Modified Files:
Makefile.am cpu.edc e_mod_main.c e_mod_main.h 
Added Files:
VeraBd.ttf e_mod_config.c 


Log Message:
history chart of cpu usage. the module config file should be deleted.

===
RCS file: /cvs/e/e_modules/cpu/Makefile.am,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -3 -r1.17 -r1.18
--- Makefile.am 30 Mar 2007 21:14:54 -  1.17
+++ Makefile.am 26 Aug 2007 11:32:08 -  1.18
@@ -13,6 +13,7 @@
 EXTRA_DIST = $(files_DATA) \
 cpu.edc \
 VeraMono.ttf \
+VeraBd.ttf \
 cpu.png \
 e_modules-cpu.spec
 
@@ -28,7 +29,8 @@
 pkgdir = $(datadir)/$(MODULE_ARCH)
 pkg_LTLIBRARIES= module.la
 module_la_SOURCES  = e_mod_main.c \
-  e_mod_main.h
+  e_mod_main.h \
+  e_mod_config.c
 
 module_la_LIBADD   = @e_libs@
 module_la_LDFLAGS  = -module -avoid-version
===
RCS file: /cvs/e/e_modules/cpu/cpu.edc,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -3 -r1.17 -r1.18
--- cpu.edc 23 May 2007 22:04:17 -  1.17
+++ cpu.edc 26 Aug 2007 11:32:08 -  1.18
@@ -6,6 +6,7 @@
 fonts
 {
font: VeraMono.ttf VeraMono;
+   font: VeraBd.ttf VeraBold;
 }
 
 styles
@@ -17,74 +18,738 @@
}
 }
 
-collections
-{
-   group
- {
-   name: modules/cpu/main;
-   parts
- {
-part
-  {
- name:   fade_clip;
- type:   RECT;
- mouse_events:   0;
- description
-   {
-  state: default 0.0;
-  color: 255 255 255 255;
-   }
-  }
-part
-  {
- name: cpu;
- clip_to: fade_clip;
- description
-   {
-  state: default 0.0;
-  aspect: 1.0 1.0;
-  aspect_preference: BOTH;
-  align: 0.5 0.5;
-  rel1
-{
-   relative: 0.0 0.0;
-}
-  rel2
-{
-   relative: 1.0 1.0;
-}
-  image
-{
-   normal: cpu.png;
-}
-   }
-  }
-part
-  {
- name:   load;
- type:   TEXTBLOCK;
- effect: SOFT_SHADOW;
- mouse_events: 0;
- clip_to: fade_clip;
- description
-   {
-  state: default 0.0;
-  align: 0.5 0.5;
-  rel1
-{
-   relative: 0.0  0.0;
-   to: cpu;
-}
-  rel2
-{
-   relative: 1.0  1.0;
-   to: cpu;
-}
-   text {
-  style:cpu_style;
-  min:  0 1;
-   }
-  }
- }
- }
+collections {
+group {
+name: modules/cpu/main;
+parts {
+part {
+name:   fade_clip;
+type:   RECT;
+mouse_events:   0;
+description {
+state: default 0.0;
+color: 255 255 255 255;
+}
+}
+part {
+name: cpu;
+clip_to: fade_clip;
+description {
+state: default 0.0;
+aspect: 1.0 1.0;
+aspect_preference: BOTH;
+align: 0.5 0.5;
+rel1.relative: 0.0 0.0;
+rel2.relative: 1.0 1.0;
+image.normal: cpu.png;
+}
+}
+part {
+name:   load;
+type:   TEXTBLOCK;
+effect: SOFT_SHADOW;
+mouse_events: 0;
+clip_to: fade_clip;
+description {
+state: default 0.0;
+align: 0.5 0.5;
+rel1 {
+relative: 0.0  0.0;
+to: cpu;
+}
+rel2 {
+relative: 1.0  1.0;
+to: cpu;
+}
+ 

E CVS: cpu urandom

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : urandom
Project : e_modules
Module  : cpu

Dir : e_modules/cpu


Modified Files:
e_mod_main.c 


Log Message:
remove rogue br

===
RCS file: /cvs/e/e_modules/cpu/e_mod_main.c,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -3 -r1.37 -r1.38
--- e_mod_main.c26 Aug 2007 11:32:08 -  1.37
+++ e_mod_main.c26 Aug 2007 11:37:06 -  1.38
@@ -274,10 +274,7 @@
 
_graph_values(inst);
 
-   if (cpu_count == 1)
- snprintf(str, sizeof(str), br%d%%, cpu_stats[0]);
-   else
- snprintf(str, sizeof(str), %d%%, cpu_stats[0]);
+   snprintf(str, sizeof(str), %d%%, cpu_stats[0]);

i = 1;
while (i  cpu_count)



-
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


E CVS: test tilman

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : tilman
Project : e17
Module  : test

Dir : e17/test/orig/edje


Modified Files:
edje_main.c 


Log Message:
fixed image paths etc

===
RCS file: /cvs/e/e17/test/orig/edje/edje_main.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- edje_main.c 28 Oct 2006 09:01:59 -  1.1
+++ edje_main.c 26 Aug 2007 12:29:49 -  1.2
@@ -135,7 +135,7 @@
evas = ecore_evas_get(ecore_evas);
evas_image_cache_set(evas, 2 * 1024 * 1024);
evas_font_cache_set(evas, 512 * 1024);
-   snprintf(buf, sizeof(buf), data/test/fonts);
+   snprintf(buf, sizeof(buf), data/fonts);
evas_font_path_append(evas, buf);
return 1;
 }
@@ -193,7 +193,7 @@
evas_object_resize(o, startw, starth);
evas_object_layer_set(o, -999);
evas_object_color_set(o, 255, 255, 255, 255);
-   snprintf(buf, sizeof(buf), data/test/images/bg.png);
+   snprintf(buf, sizeof(buf), data/images/bg.png);
evas_object_image_file_set(o, buf, NULL);
evas_object_image_fill_set(o, 0, 0, 128, 128);
evas_object_pass_events_set(o, 1);
@@ -207,7 +207,7 @@
evas_object_resize(o, startw, starth);
evas_object_layer_set(o, -999);
evas_object_color_set(o, 255, 255, 255, 255);
-   snprintf(buf, sizeof(buf), data/test/images/shadow.png);
+   snprintf(buf, sizeof(buf), data/images/shadow.png);
evas_object_image_file_set(o, buf, NULL);
evas_object_image_smooth_scale_set(o, 0);
evas_object_image_fill_set(o, 0, 0, startw, starth);
@@ -476,7 +476,7 @@
char buf[4096];

co = data;
-   snprintf(buf, sizeof(buf), data/test/images/item_selected.png);
+   snprintf(buf, sizeof(buf), data/images/item_selected.png);
evas_object_image_file_set(co-bg, buf, NULL);
 }
 
@@ -487,7 +487,7 @@
char buf[4096];

co = data;
-   snprintf(buf, sizeof(buf), data/test/images/item_normal.png);
+   snprintf(buf, sizeof(buf), data/images/item_normal.png);
evas_object_image_file_set(co-bg, buf, NULL);
test_setup(co-file, co-part);
evas_object_color_set(co-bg, 128, 128, 128, 128);
@@ -594,7 +594,7 @@
o = evas_object_image_add(evas);
evas_object_layer_set(o, 10);
evas_object_image_border_set(o, 10, 10, 10, 10);
-   snprintf(buf, sizeof(buf), data/test/images/item_title.png);
+   snprintf(buf, sizeof(buf), data/images/item_title.png);
evas_object_image_file_set(o, buf, NULL);
evas_object_event_callback_add(o, EVAS_CALLBACK_MOUSE_DOWN, 
list_head_down_cb, co);
evas_object_event_callback_add(o, EVAS_CALLBACK_MOUSE_UP,   
list_head_up_cb, co);
@@ -633,7 +633,7 @@
 o = evas_object_image_add(evas);
 evas_object_layer_set(o, 10);
 evas_object_image_border_set(o, 10, 10, 10, 10);
-snprintf(buf, sizeof(buf), data/test/images/item_normal.png);
+snprintf(buf, sizeof(buf), data/images/item_normal.png);
 evas_object_image_file_set(o, buf, NULL);
 evas_object_event_callback_add(o, EVAS_CALLBACK_MOUSE_DOWN, 
list_down_cb, co);
 evas_object_event_callback_add(o, EVAS_CALLBACK_MOUSE_UP,   
list_up_cb, co);
@@ -731,7 +731,7 @@
edjes = evas_list_append(edjes, de);
 
o = evas_object_image_add(evas);
-   snprintf(buf, sizeof(buf), data/test/images/border.png);
+   snprintf(buf, sizeof(buf), data/images/border.png);
evas_object_image_file_set(o, buf, NULL);
evas_object_image_smooth_scale_set(o, 0);
evas_object_color_set(o, 255, 255, 255, 255);



-
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


E CVS: libs/edje doursse

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/edje

Dir : e17/libs/edje/src/lib


Modified Files:
Edje.h Makefile.am edje_private.h 


Log Message:
make edje binaries compile and allow the creation of the edje shared lib on 
windows. Remove some trailing spaces

===
RCS file: /cvs/e/e17/libs/edje/src/lib/Edje.h,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -3 -r1.51 -r1.52
--- Edje.h  16 Jul 2007 07:31:06 -  1.51
+++ Edje.h  26 Aug 2007 12:54:51 -  1.52
@@ -6,7 +6,7 @@
 #ifdef EAPI
 #undef EAPI
 #endif
-#ifdef WIN32
+#ifdef _MSC_VER
 # ifdef BUILDING_DLL
 #  define EAPI __declspec(dllexport)
 # else
===
RCS file: /cvs/e/e17/libs/edje/src/lib/Makefile.am,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -3 -r1.34 -r1.35
--- Makefile.am 21 Mar 2007 15:36:26 -  1.34
+++ Makefile.am 26 Aug 2007 12:54:51 -  1.35
@@ -39,5 +39,5 @@
 libedje_la_LIBADD   = -lm @EDJE_LIBS@ @fnmatch_libs@
 libedje_la_CPPFLAGS =
 libedje_la_DEPENDENCIES = $(top_builddir)/config.h
-libedje_la_LDFLAGS  = -version-info 5:0:5
+libedje_la_LDFLAGS  = @create_shared_lib@ -version-info 5:0:5
 
===
RCS file: /cvs/e/e17/libs/edje/src/lib/edje_private.h,v
retrieving revision 1.131
retrieving revision 1.132
diff -u -3 -r1.131 -r1.132
--- edje_private.h  2 Aug 2007 22:48:14 -   1.131
+++ edje_private.h  26 Aug 2007 12:54:51 -  1.132
@@ -35,7 +35,7 @@
 #ifdef EAPI
 #undef EAPI
 #endif
-#ifdef WIN32
+#ifdef _MSC_VER
 # ifdef BUILDING_DLL
 #  define EAPI __declspec(dllexport)
 # else



-
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


E CVS: libs/edje doursse

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/edje

Dir : e17/libs/edje/src/bin


Modified Files:
Makefile.am edje_cc_out.c edje_cc_parse.c edje_decc.c 
edje_prefix.c 


Log Message:
make edje binaries compile and allow the creation of the edje shared lib on 
windows. Remove some trailing spaces

===
RCS file: /cvs/e/e17/libs/edje/src/bin/Makefile.am,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -3 -r1.36 -r1.37
--- Makefile.am 21 Mar 2007 15:36:26 -  1.36
+++ Makefile.am 26 Aug 2007 12:54:51 -  1.37
@@ -8,7 +8,7 @@
 -DPACKAGE_BIN_DIR=\@[EMAIL PROTECTED] \
 -DPACKAGE_LIB_DIR=\@[EMAIL PROTECTED] \
 -DPACKAGE_DATA_DIR=\@[EMAIL PROTECTED] 
- 
+
 bin_SCRIPTS = \
 @EDJE_RECC_PRG@
 
@@ -16,8 +16,8 @@
 EXTRA_SCRIPTS = edje_recc
 
 bin_PROGRAMS = \
[EMAIL PROTECTED]@ \
[EMAIL PROTECTED]@
+edje_cc \
+edje_decc
 
 EXTRA_PROGRAMS = \
 edje_cc \
===
RCS file: /cvs/e/e17/libs/edje/src/bin/edje_cc_out.c,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -3 -r1.56 -r1.57
--- edje_cc_out.c   21 Jul 2007 05:06:39 -  1.56
+++ edje_cc_out.c   26 Aug 2007 12:54:51 -  1.57
@@ -2,6 +2,11 @@
  * vim:ts=8:sw=3:sts=8:noexpandtab:cino=5n-3f0^-2{2
  */
 
+#ifdef _WIN32
+# include windows.h
+#endif /* _WIN32 */
+
+
 #include edje_cc.h
 
 typedef struct _Part_Lookup Part_Lookup;
@@ -156,14 +161,14 @@
 static void
 check_program (Edje_Part_Collection *pc, Edje_Program *ep, Eet_File *ef)
 {
-   switch (ep-action) 
+   switch (ep-action)
  {
   case EDJE_ACTION_TYPE_STATE_SET:
   case EDJE_ACTION_TYPE_ACTION_STOP:
   case EDJE_ACTION_TYPE_DRAG_VAL_SET:
   case EDJE_ACTION_TYPE_DRAG_VAL_STEP:
   case EDJE_ACTION_TYPE_DRAG_VAL_PAGE:
-if (!ep-targets) 
+if (!ep-targets)
   {
  fprintf(stderr, %s: Error. collection %i: 
target missing in program %s\n,
@@ -179,7 +184,7 @@
 static void
 check_spectrum (Edje_Spectrum_Directory_Entry *se, Eet_File *ef)
 {
-   if (!se-entry) 
+   if (!se-entry)
  fprintf(stderr, %s: Error. Spectrum missing a name.\n, progname);
else if (!se-color_list)
  fprintf(stderr, %s: Error. Spectrum %s is empty. At least one color must 
be given., progname, se-entry);
@@ -204,7 +209,7 @@
int font_num;
int collection_num;
int i;
-   
+
bytes = 0;
input_bytes = 0;
total_bytes = 0;
@@ -224,7 +229,7 @@
if (edje_file)
  {
 
-   if (edje_file-collection_dir) 
+   if (edje_file-collection_dir)
  {
 /* copy aliases into collection directory */
 while (aliases)
@@ -237,7 +242,7 @@
if (bytes = 0)
  {
 fprintf(stderr, %s: Error. unable to write \edje_file\ entry to 
\%s\ \n,
-progname, file_out);   
+progname, file_out);
 ABORT_WRITE(ef, file_out);
  }
else
@@ -255,13 +260,13 @@
int fsize = 0;
Evas_List *ll;
FILE *f;
-   
+
fn = l-data;
f = fopen(fn-file, rb);
if (f)
  {
 long pos;
-
+
 fseek(f, 0, SEEK_END);
 pos = ftell(f);
 rewind(f);
@@ -283,13 +288,13 @@
 for (ll = fnt_dirs; ll; ll = ll-next)
   {
  char buf[4096];
- 
+
  snprintf(buf, sizeof(buf), %s/%s, (char *)(ll-data), 
fn-file);
  f = fopen(buf, rb);
  if (f)
{
   long pos;
-  
+
   fseek(f, 0, SEEK_END);
   pos = ftell(f);
   rewind(f);
@@ -318,13 +323,13 @@
else
  {
 char buf[4096];
-
+
 snprintf(buf, sizeof(buf), fonts/%s, fn-name);
 bytes = eet_write(ef, buf, fdata, fsize, 1);
 if (bytes = 0)
   {
  fprintf(stderr, %s: Error. unable to write font part \%s\ 
as \%s\ part entry to %s \n,
- progname, fn-file, buf, file_out);   
+ progname, fn-file, buf, file_out);
  ABORT_WRITE(ef, file_out);
   }
 else
@@ -348,7 +353,7 @@
  {
Ecore_Evas *ee;
Evas *evas;
-   
+
ecore_init();
ecore_evas_init();
ee = ecore_evas_buffer_new(1, 1);
@@ -361,8 +366,8 @@
for (l = edje_file-image_dir-entries; l; l = l-next)
  {
 Edje_Image_Directory_Entry *img;
-
-img = l-data; 
+
+img = l-data;
 if (img-source_type == EDJE_IMAGE_SOURCE_TYPE_EXTERNAL)
   {
   }
@@ -370,19 +375,19 @@
   {

E CVS: libs/edje doursse

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/edje

Dir : e17/libs/edje


Modified Files:
INSTALL configure.in 


Log Message:
make edje binaries compile and allow the creation of the edje shared lib on 
windows. Remove some trailing spaces

===
RCS file: /cvs/e/e17/libs/edje/INSTALL,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- INSTALL 2 Jun 2003 23:49:54 -   1.1
+++ INSTALL 26 Aug 2007 12:54:51 -  1.2
@@ -12,3 +12,8 @@
 make install
 
 NOTE: You MUST make install Edje for it to run properly.
+
+NOTE: for compilation with MinGW, fnmatch.h is probably missing.
+  That file can be found here:
+http://www.koders.com/c/fid2B518462CB1EED3D4E31E271DB83CD1582F6EEBE.aspx
+  It should be installed in the mingw include directory.
===
RCS file: /cvs/e/e17/libs/edje/configure.in,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -3 -r1.83 -r1.84
--- configure.in10 Jul 2007 00:13:23 -  1.83
+++ configure.in26 Aug 2007 12:54:51 -  1.84
@@ -12,24 +12,38 @@
 
 AC_PROG_CC
 AM_PROG_CC_STDC
+AM_PROG_CC_C_O
 AC_HEADER_STDC
 AC_C_CONST
 AM_ENABLE_SHARED
 AM_PROG_LIBTOOL
 AC_FUNC_ALLOCA
 
+create_shared_lib=
+case $host_os in
+   mingw|mingw32)
+   create_shared_lib=-no-undefined 
+   ;;
+esac
+
+AC_SUBST(create_shared_lib)
+
 AC_CHECK_FUNCS(realpath)
 
-AC_CHECK_HEADERS(fnmatch.h,, AC_MSG_ERROR([Cannot find fnmatch.h. Make sure 
your CFLAGS environment variable contains include lines for the location of 
this file]))
+AC_CHECK_HEADERS(fnmatch.h,, AC_MSG_ERROR([Cannot find fnmatch.h. Make sure 
your CFLAGS environment variable contains include lines for the location of 
this file MinGW users: see the INSTALL file]))
 
+fnmatch_libs=
 AC_CHECK_FUNCS(fnmatch, res=yes, res=no)
 if test x$res = xno; then
-  AC_CHECK_LIB(fnmatch, fnmatch, res=yes, res=no)
-  if test x$res = xno; then
-AC_MSG_ERROR([Cannot find fnmatch() in neither libc nor libfnmatch])
-  else
-fnmatch_libs=-lfnmatch
-  fi
+   AC_CHECK_LIB(fnmatch, fnmatch, res=yes fnmatch_libs=-lfnmatch, res=no)
+dnl Test for compilation with MinGW.
+dnl fnmatch function is in the libiberty library
+   if test x$res = xno; then
+   AC_CHECK_LIB(iberty, fnmatch, res=yes fnmatch_libs=-liberty, 
res=no)
+   fi
+   if test x$res = xno; then
+   AC_MSG_ERROR([Cannot find fnmatch() in neither libc nor 
libfnmatch, nor libiberty])
+   fi
 fi
 
 AC_SUBST(fnmatch_libs)



-
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


E CVS: libs/ecore raster

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/ecore

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


Modified Files:
ecore_time.c 


Log Message:


fix build.

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore/ecore_time.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- ecore_time.c26 Aug 2007 11:17:21 -  1.8
+++ ecore_time.c26 Aug 2007 12:57:11 -  1.9
@@ -3,6 +3,7 @@
 #else
 # include sys/time.h
 #endif
+#include ecore_private.h
 #include Ecore.h
 
 /**



-
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


E CVS: libs/edje doursse

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/edje

Dir : e17/libs/edje/src/bin


Modified Files:
Makefile.am 


Log Message:
revert that change

===
RCS file: /cvs/e/e17/libs/edje/src/bin/Makefile.am,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -3 -r1.37 -r1.38
--- Makefile.am 26 Aug 2007 12:54:51 -  1.37
+++ Makefile.am 26 Aug 2007 12:59:24 -  1.38
@@ -16,8 +16,8 @@
 EXTRA_SCRIPTS = edje_recc
 
 bin_PROGRAMS = \
-edje_cc \
-edje_decc
[EMAIL PROTECTED]@ \
[EMAIL PROTECTED]@
 
 EXTRA_PROGRAMS = \
 edje_cc \



-
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


E CVS: apps/evfs chaos

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : chaos
Project : e17
Module  : apps/evfs

Dir : e17/apps/evfs/src/lib


Modified Files:
evfs_commands.c 


Log Message:
* Allow persistence of search vfolders

===
RCS file: /cvs/e/e17/apps/evfs/src/lib/evfs_commands.c,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -3 -r1.46 -r1.47
--- evfs_commands.c 24 Aug 2007 06:06:21 -  1.46
+++ evfs_commands.c 26 Aug 2007 13:08:36 -  1.47
@@ -472,6 +472,7 @@
long id = command-client_identifier;
 
command-type = EVFS_CMD_VFOLDER_CREATE;
+   command-file_command-ref = strdup(name);
 
return command;
 }



-
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


E CVS: apps/evfs chaos

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : chaos
Project : e17
Module  : apps/evfs

Dir : e17/apps/evfs/src/common


Modified Files:
evfs_cleanup.c evfs_io.c 


Log Message:
* Allow persistence of search vfolders

===
RCS file: /cvs/e/e17/apps/evfs/src/common/evfs_cleanup.c,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -3 -r1.36 -r1.37
--- evfs_cleanup.c  24 Aug 2007 06:06:20 -  1.36
+++ evfs_cleanup.c  26 Aug 2007 13:08:36 -  1.37
@@ -40,6 +40,8 @@
   }
   evas_list_free(command-file_command-files); 
}
+
+   if (command-file_command-ref) free(command-file_command-ref);
 }
 
 void 
===
RCS file: /cvs/e/e17/apps/evfs/src/common/evfs_io.c,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -3 -r1.85 -r1.86
--- evfs_io.c   24 Aug 2007 06:06:20 -  1.85
+++ evfs_io.c   26 Aug 2007 13:08:36 -  1.86
@@ -192,8 +192,10 @@
  EvfsCommand_operation, op, 
_EvfsOperation_edd);   
EET_DATA_DESCRIPTOR_ADD_BASIC(_EvfsCommand_edd, evfs_command,
  EvfsCommand_id, client_identifier, 
EET_T_INT);
-  EET_DATA_DESCRIPTOR_ADD_BASIC(_EvfsCommand_edd, evfs_command,
+   EET_DATA_DESCRIPTOR_ADD_BASIC(_EvfsCommand_edd, evfs_command,
  EvfsCommand_options, options, EET_T_INT);
+   EET_DATA_DESCRIPTOR_ADD_LIST(_EvfsCommand_edd, evfs_command,
+EvfsCommand_entries, entries, 
_EvfsVfolderEntry_edd);
 
/*Base event EDD*/
_EvfsEvent_edd = _NEW_EDD(EvfsEvent);



-
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


E CVS: apps/evfs chaos

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : chaos
Project : e17
Module  : apps/evfs

Dir : e17/apps/evfs/src/demo


Modified Files:
evfs_demo.c 


Log Message:
* Allow persistence of search vfolders

===
RCS file: /cvs/e/e17/apps/evfs/src/demo/evfs_demo.c,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -3 -r1.36 -r1.37
--- evfs_demo.c 21 Aug 2007 13:11:14 -  1.36
+++ evfs_demo.c 26 Aug 2007 13:08:36 -  1.37
@@ -155,6 +155,10 @@
evfs_client_metadata_string_file_get(con, dir_path-files[0], 
entropy_folder_preference);
} else if (!strcmp(cmd, MIME)) {
   evfs_client_mime_request(con, dir_path-files[0]);
+   } else if (!strcmp(cmd, VFOLDER)) {
+  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);
}
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


E CVS: apps/evfs chaos

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : chaos
Project : e17
Module  : apps/evfs

Dir : e17/apps/evfs/src/include


Modified Files:
evfs_metadata_db.h evfs_server_handle.h 


Log Message:
* Allow persistence of search vfolders

===
RCS file: /cvs/e/e17/apps/evfs/src/include/evfs_metadata_db.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- evfs_metadata_db.h  16 Aug 2007 11:31:17 -  1.5
+++ evfs_metadata_db.h  26 Aug 2007 13:08:36 -  1.6
@@ -3,10 +3,14 @@
 
 int evfs_metadata_db_upgrade_check(sqlite3* db,int startmode);
 void evfs_metadata_db_init(sqlite3** db);
+sqlite3* evfs_metadata_db_connect();
 int evfs_metadata_db_version_bump(sqlite3* db, char* ver);
 
 int evfs_metadata_db_id_for_file(sqlite3* db, EvfsFilereference* ref, int 
create);
 void evfs_metadata_db_file_keyword_add(sqlite3* db, int file, char* key, char* 
value);
 void evfs_metadata_db_delete_file(sqlite3* db, int file);
+int evfs_metadata_db_vfolder_search_create(sqlite3* db, char* name);
+sqlite3* evfs_metadata_db_close(sqlite3* db);
+void evfs_metadata_db_vfolder_search_entry_add(sqlite3* db, int id, 
EvfsVfolderEntry* entry);
 
 #endif
===
RCS file: /cvs/e/e17/apps/evfs/src/include/evfs_server_handle.h,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -3 -r1.26 -r1.27
--- evfs_server_handle.h21 Aug 2007 13:11:15 -  1.26
+++ evfs_server_handle.h26 Aug 2007 13:08:36 -  1.27
@@ -47,4 +47,6 @@
 
 void evfs_handle_auth_respond_command(evfs_client* client, evfs_command* 
command);
 void evfs_handle_mime_request(evfs_client* client, evfs_command* command);
+
+void evfs_handle_vfolder_create(evfs_client* client, evfs_command* command);
 #endif



-
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


E CVS: apps/evfs chaos

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : chaos
Project : e17
Module  : apps/evfs

Dir : e17/apps/evfs/src/bin


Modified Files:
evfs_metadata_db.c evfs_server_handle.c evfs_worker.c 


Log Message:
* Allow persistence of search vfolders

===
RCS file: /cvs/e/e17/apps/evfs/src/bin/evfs_metadata_db.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- evfs_metadata_db.c  24 Aug 2007 00:49:46 -  1.11
+++ evfs_metadata_db.c  26 Aug 2007 13:08:36 -  1.12
@@ -10,8 +10,9 @@
  * * Make a 'bulk-run' function to avoid the endless repeated sqlite3_exec
  */
 
-#define EVFS_METADATA_DB_CONFIG_LATEST 4
+#define EVFS_METADATA_DB_CONFIG_LATEST 6
 static char metadata_db[PATH_MAX];
+static int loc_init = 0;
 static char* homedir;
 static Ecore_Hash* db_upgrade_hash = NULL;
 
@@ -146,6 +147,24 @@
return evfs_metadata_db_version_bump(db, 5);
 }
 
+int evfs_metadata_db_upgrade_5_6(sqlite3* db)
+{
+   int ret;
+   char* errMsg = 0;
+
+   printf(Performing upgrade from v.5 to v.6\n);
+
+   ret = sqlite3_exec(db, 
+   create table VfolderSearch (id integer primary key AUTOINCREMENT, name 
varchar(255));,
+   NULL, 0,errMsg);
+
+   ret = sqlite3_exec(db, 
+   create table VfolderSearchComponent (id integer primary key 
AUTOINCREMENT, vfolderSearch int, rtype char, rkey varchar(255), rvalue 
varchar(255));,
+   NULL, 0,errMsg);
+
+   return evfs_metadata_db_version_bump(db, 6);
+}
+
 int evfs_metadata_db_version_bump(sqlite3* db, char* ver)
 {
int ret;
@@ -160,15 +179,23 @@
 }
 /*---*/
 
+void evfs_metadata_db_location_init()
+{
+   if (!loc_init) {
+   loc_init =1 ;
+   homedir = strdup(getenv(HOME));
+   snprintf(metadata_db, PATH_MAX, %s/.e/evfs/evfs_metadata.db, 
homedir);
+   }
+}
+
 void evfs_metadata_db_init(sqlite3** db)
 {
struct stat config_dir_stat;
int ret;
int ver;
int runs = 0;
-   
-   homedir = strdup(getenv(HOME));
-   snprintf(metadata_db, PATH_MAX, %s/.e/evfs/evfs_metadata.db, homedir);
+
+   evfs_metadata_db_location_init();
 
db_upgrade_hash = ecore_hash_new(ecore_direct_hash, 
ecore_direct_compare);
ecore_hash_set(db_upgrade_hash, (int*)0, evfs_metadata_db_upgrade_0_1);
@@ -176,6 +203,7 @@
ecore_hash_set(db_upgrade_hash, (int*)2, evfs_metadata_db_upgrade_2_3);
ecore_hash_set(db_upgrade_hash, (int*)3, evfs_metadata_db_upgrade_3_4);
ecore_hash_set(db_upgrade_hash, (int*)4, evfs_metadata_db_upgrade_4_5);
+   ecore_hash_set(db_upgrade_hash, (int*)5, evfs_metadata_db_upgrade_5_6);

/*Check if we need to seed the DB*/
if (stat(metadata_db, config_dir_stat)) {
@@ -220,6 +248,28 @@
printf(DB Init complete..\n);
 }
 
+sqlite3* evfs_metadata_db_connect()
+{
+   sqlite3* db;
+   int ret;
+   
+   evfs_metadata_db_location_init();
+   
+   ret = sqlite3_open(metadata_db, db);
+   if( ret ){
+   fprintf(stderr, Can't open metadata database: %s\n, 
sqlite3_errmsg(db));
+   sqlite3_close(db);
+   exit(1);
+   }
+
+   return db;
+}
+
+sqlite3* evfs_metadata_db_close(sqlite3* db)
+{
+   sqlite3_close(db);
+}
+
 int evfs_metadata_db_upgrade_check(sqlite3* db, int startmode) 
 {
char query[1024];
@@ -317,6 +367,7 @@
printf(id_for_file: sqlite error (%s)\n, file_path);
file = 0;
}
+   free(file_path);
 
return file;
 }
@@ -380,3 +431,72 @@
if (errMsg) printf(ERROR: %s\n, errMsg);  
 }
 
+
+int evfs_metadata_db_vfolder_search_create(sqlite3* db, char* name)
+{
+   char query[PATH_MAX];
+   int ret;
+   int vfo = 0;
+   sqlite3_stmt *pStmt;
+
+   snprintf(query, sizeof(query), select id from VFolderSearch where name 
= ?);
+   ret = sqlite3_prepare(db, query, -1, pStmt, 0);
+
+   if (ret == SQLITE_OK) {
+   sqlite3_bind_text(pStmt, 1, name, strlen(name), SQLITE_STATIC);
+   
+   ret = sqlite3_step(pStmt);
+   if (ret == SQLITE_ROW)  {
+   vfo = sqlite3_column_int(pStmt,0);
+
+   sqlite3_reset(pStmt);
+   sqlite3_finalize(pStmt);
+   } else {
+   sqlite3_reset(pStmt);
+   sqlite3_finalize(pStmt);
+   
+   snprintf(query, sizeof(query), insert into 
VFolderSearch (name) values(?););
+   ret = sqlite3_prepare(db, query, -1, pStmt, 0);
+   sqlite3_bind_text(pStmt, 1, name, strlen(name), 
SQLITE_STATIC);
+
+   if (sqlite3_step(pStmt) == SQLITE_DONE) {
+   vfo = (int)sqlite3_last_insert_rowid(db);
+   } else {
+ 

E CVS: libs/esmart kwo

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_trans_x11


Modified Files:
esmart_trans_x11.c 


Log Message:
Fix warnings, remove unnecessary casts.

===
RCS file: /cvs/e/e17/libs/esmart/src/lib/esmart_trans_x11/esmart_trans_x11.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- esmart_trans_x11.c  6 Sep 2006 07:17:49 -   1.7
+++ esmart_trans_x11.c  26 Aug 2007 13:44:56 -  1.8
@@ -177,16 +177,15 @@
   if (ret  (p = *((Ecore_X_Pixmap *) data)))
   {
  Imlib_Imageim;
- unsigned int   pw, ph;
- intpx, py;
+ intpx, py, pw, ph;
 
  ecore_x_pixmap_geometry_get(p, px, py, pw, ph);
  if (pw  ph) {
 imlib_context_set_drawable(*((Ecore_X_Pixmap *) data));
 
 /* Check if the object will fit within the pixmap's boundaries */
-if ((x = px)  (y = py)  ((x + w) = (px + ((signed int) 
pw))) 
-   ((y + h) = (py + ((signed int) ph
+if ((x = px)  (y = py)  ((x + w) = (px + pw))
+   ((y + h) = (py + ph)))
 {
im = imlib_create_image_from_drawable(0, x, y, w, h, 1);
imlib_context_set_image(im);



-
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


E CVS: libs/esmart kwo

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_trans_x11


Modified Files:
esmart_trans_x11.c 


Log Message:
evas_smart_new-evas_smart_class_new.

===
RCS file: /cvs/e/e17/libs/esmart/src/lib/esmart_trans_x11/esmart_trans_x11.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- esmart_trans_x11.c  26 Aug 2007 13:44:56 -  1.8
+++ esmart_trans_x11.c  26 Aug 2007 13:49:47 -  1.9
@@ -38,11 +38,6 @@
 /* smart object handlers */
 static void _esmart_trans_x11_add(Evas_Object *o);
 static void _esmart_trans_x11_del(Evas_Object *o);
-static void _esmart_trans_x11_layer_set(Evas_Object *o, int l);
-static void _esmart_trans_x11_raise(Evas_Object *o);
-static void _esmart_trans_x11_lower(Evas_Object *o);
-static void _esmart_trans_x11_stack_above(Evas_Object *o, Evas_Object *above);
-static void _esmart_trans_x11_stack_below(Evas_Object *o, Evas_Object *below);
 static void _esmart_trans_x11_move(Evas_Object *o, Evas_Coord x, Evas_Coord y);
 static void _esmart_trans_x11_resize(Evas_Object *o, Evas_Coord w, Evas_Coord 
h);
 static void _esmart_trans_x11_show(Evas_Object *o);
@@ -459,6 +454,21 @@
return 1;
 }
 
+static const Evas_Smart_Class _esmart_trans_x11_smart_class = {
+  x11_trans_object,
+  EVAS_SMART_CLASS_VERSION,
+  _esmart_trans_x11_add,
+  _esmart_trans_x11_del,
+  _esmart_trans_x11_move,
+  _esmart_trans_x11_resize,
+  _esmart_trans_x11_show,
+  _esmart_trans_x11_hide,
+  _esmart_trans_x11_color_set,
+  _esmart_trans_x11_clip_set,
+  _esmart_trans_x11_clip_unset,
+  NULL
+};
+
 static Evas_Smart *
 _esmart_trans_x11_smart_get(void)
 {
@@ -467,23 +477,7 @@
   if (smart)
  return smart;
   
-  smart = evas_smart_new (x11_trans_object,
-  _esmart_trans_x11_add,
-  _esmart_trans_x11_del,
-  _esmart_trans_x11_layer_set,
-  _esmart_trans_x11_raise,
-  _esmart_trans_x11_lower,
-  _esmart_trans_x11_stack_above,
-  _esmart_trans_x11_stack_below,
-  _esmart_trans_x11_move,
-  _esmart_trans_x11_resize,
-  _esmart_trans_x11_show,
-  _esmart_trans_x11_hide,
-  _esmart_trans_x11_color_set,
-  _esmart_trans_x11_clip_set,
-  _esmart_trans_x11_clip_unset,
-  NULL
-  );
+  smart = evas_smart_class_new(_esmart_trans_x11_smart_class);
 
   /* Get the real root window */
   rroot = DefaultRootWindow(ecore_x_display_get());
@@ -527,53 +521,6 @@
data-clip = NULL;
free(data);
   }
-}
-
-static void
-_esmart_trans_x11_layer_set(Evas_Object *o, int l)
-{
-  Esmart_Trans_X11 *data;
-  
-  if((data = evas_object_smart_data_get(o)))
-evas_object_layer_set(data-clip, l);
-}
-
-static void
-_esmart_trans_x11_raise(Evas_Object *o)
-{
-  Esmart_Trans_X11 *data;
-  
-  if((data = evas_object_smart_data_get(o)))
-evas_object_raise(data-clip);
-}
-
-static void
-_esmart_trans_x11_lower(Evas_Object *o)
-{
-  Esmart_Trans_X11 *data;
-  
-  if((data = evas_object_smart_data_get(o)))
-   evas_object_lower(data-clip);
-}
-
-static void
-_esmart_trans_x11_stack_above(Evas_Object *o, Evas_Object *above)
-{
-  Esmart_Trans_X11 *data;
-  
-  if((data = evas_object_smart_data_get(o)))
-evas_object_stack_above(data-clip, above);
-}
-
-static void
-_esmart_trans_x11_stack_below(Evas_Object *o, Evas_Object *below)
-{
-  Esmart_Trans_X11 *data;
-  
-  data = evas_object_smart_data_get(o);
-
-  if((data = evas_object_smart_data_get(o)))
-evas_object_stack_below(data-clip, below);
 }
 
 static void



-
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


E CVS: rage raster

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : misc
Module  : rage

Dir : misc/rage


Modified Files:
configure.in 


Log Message:


asparagus

===
RCS file: /cvs/e/misc/rage/configure.in,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- configure.in10 Jul 2007 00:12:35 -  1.6
+++ configure.in26 Aug 2007 14:33:37 -  1.7
@@ -1,7 +1,7 @@
 rm -f config.cache
 
 AC_INIT(configure.in)
-AM_INIT_AUTOMAKE(rage, 0.2.0.004)
+AM_INIT_AUTOMAKE(rage, 0.2.0.005)
 AM_CONFIG_HEADER(config.h)
 
 AC_C_BIGENDIAN



-
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


E CVS: apps/e raster

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/e

Dir : e17/apps/e/po


Modified Files:
bg.po ca.po de.po eo.po fr.po hu.po it.po ja.po ko.po pt_BR.po 
ru.po sl.po 


Log Message:


asparagus!




-
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


E CVS: apps/entrance raster

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/entrance

Dir : e17/apps/entrance


Modified Files:
configure.in 


Log Message:


asparagus!

===
RCS file: /cvs/e/e17/apps/entrance/configure.in,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -3 -r1.75 -r1.76
--- configure.in10 Jul 2007 00:13:22 -  1.75
+++ configure.in26 Aug 2007 14:33:38 -  1.76
@@ -1,7 +1,7 @@
 dnl Process this file with autoconf to produce a configure script.
 
 AC_INIT(configure.in)
-AM_INIT_AUTOMAKE(entrance, 0.9.0.012)
+AM_INIT_AUTOMAKE(entrance, 0.9.0.013)
 AM_CONFIG_HEADER(src/config.h)
 
 AC_ISC_POSIX



-
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


E CVS: libs/edb raster

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/edb

Dir : e17/libs/edb


Modified Files:
configure.in 


Log Message:


asparagus!

===
RCS file: /cvs/e/e17/libs/edb/configure.in,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -3 -r1.41 -r1.42
--- configure.in1 Jul 2007 16:46:53 -   1.41
+++ configure.in26 Aug 2007 14:33:38 -  1.42
@@ -2,7 +2,7 @@
 AC_CANONICAL_BUILD
 AC_CANONICAL_HOST
 AC_ISC_POSIX
-AM_INIT_AUTOMAKE(edb, 1.0.5.007)
+AM_INIT_AUTOMAKE(edb, 1.0.5.008)
 AM_CONFIG_HEADER(config.h)
 
 AC_PROG_CC



-
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


E CVS: apps/e raster

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/e

Dir : e17/apps/e/data/themes


Modified Files:
default_wizard.edc 


Log Message:


asparagus!

===
RCS file: /cvs/e/e17/apps/e/data/themes/default_wizard.edc,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- default_wizard.edc  25 Aug 2007 13:49:43 -  1.4
+++ default_wizard.edc  26 Aug 2007 14:33:36 -  1.5
@@ -95,7 +95,7 @@
color3: 0 0 0 16;
text {
   text: Title;
-  font: Edje Vera Bold;
+  font: Edje-Vera-Bold;
   size: 20;
   min:  0 1;
   align: 0.5 0.0;



-
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


E CVS: apps/e raster

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/e

Dir : e17/apps/e


Modified Files:
configure.in 


Log Message:


asparagus!

===
RCS file: /cvs/e/e17/apps/e/configure.in,v
retrieving revision 1.184
retrieving revision 1.185
diff -u -3 -r1.184 -r1.185
--- configure.in12 Aug 2007 10:16:26 -  1.184
+++ configure.in26 Aug 2007 14:33:36 -  1.185
@@ -5,7 +5,7 @@
 AC_CANONICAL_BUILD
 AC_CANONICAL_HOST
 AC_ISC_POSIX
-AM_INIT_AUTOMAKE(enlightenment, 0.16.999.040)
+AM_INIT_AUTOMAKE(enlightenment, 0.16.999.041)
 AM_CONFIG_HEADER(config.h)
 
 AC_C_BIGENDIAN



-
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


E CVS: libs/ecore raster

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore


Modified Files:
configure.in 


Log Message:


asparagus!

===
RCS file: /cvs/e/e17/libs/ecore/configure.in,v
retrieving revision 1.207
retrieving revision 1.208
diff -u -3 -r1.207 -r1.208
--- configure.in26 Aug 2007 11:17:20 -  1.207
+++ configure.in26 Aug 2007 14:33:38 -  1.208
@@ -4,7 +4,7 @@
 AC_CANONICAL_BUILD
 AC_CANONICAL_HOST
 AC_ISC_POSIX
-AM_INIT_AUTOMAKE(ecore, 0.9.9.040)
+AM_INIT_AUTOMAKE(ecore, 0.9.9.041)
 AM_CONFIG_HEADER(config.h)
 
 AC_C_BIGENDIAN



-
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


E CVS: libs/esmart raster

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart


Modified Files:
configure.in 


Log Message:


asparagus!

===
RCS file: /cvs/e/e17/libs/esmart/configure.in,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -3 -r1.27 -r1.28
--- configure.in10 Jul 2007 18:03:44 -  1.27
+++ configure.in26 Aug 2007 14:33:40 -  1.28
@@ -1,7 +1,7 @@
 dnl Process this file with autoconf to produce a configure script.
 
 AC_INIT(configure.in)
-AM_INIT_AUTOMAKE(esmart, 0.9.0.010)
+AM_INIT_AUTOMAKE(esmart, 0.9.0.011)
 AM_CONFIG_HEADER(src/config.h)
 
 AC_ISC_POSIX



-
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


E CVS: libs/edje raster

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/edje

Dir : e17/libs/edje


Modified Files:
configure.in 


Log Message:


asparagus!

===
RCS file: /cvs/e/e17/libs/edje/configure.in,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -3 -r1.84 -r1.85
--- configure.in26 Aug 2007 12:54:51 -  1.84
+++ configure.in26 Aug 2007 14:33:38 -  1.85
@@ -7,7 +7,7 @@
 AC_CANONICAL_BUILD
 AC_CANONICAL_HOST
 AC_ISC_POSIX
-AM_INIT_AUTOMAKE(edje, 0.5.0.040)
+AM_INIT_AUTOMAKE(edje, 0.5.0.041)
 AM_CONFIG_HEADER(config.h)
 
 AC_PROG_CC



-
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


E CVS: libs/eet raster

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/eet

Dir : e17/libs/eet


Modified Files:
configure.in 


Log Message:


asparagus!

===
RCS file: /cvs/e/e17/libs/eet/configure.in,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -3 -r1.75 -r1.76
--- configure.in10 Jul 2007 00:13:23 -  1.75
+++ configure.in26 Aug 2007 14:33:38 -  1.76
@@ -5,7 +5,7 @@
 AC_CANONICAL_BUILD
 AC_CANONICAL_HOST
 AC_ISC_POSIX
-AM_INIT_AUTOMAKE(eet, 0.9.10.040)
+AM_INIT_AUTOMAKE(eet, 0.9.10.041)
 AM_CONFIG_HEADER(config.h)
 
 AC_PROG_CC



-
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


E CVS: libs/efreet raster

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/efreet

Dir : e17/libs/efreet


Modified Files:
configure.in 


Log Message:


asparagus!

===
RCS file: /cvs/e/e17/libs/efreet/configure.in,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- configure.in12 Aug 2007 10:00:02 -  1.13
+++ configure.in26 Aug 2007 14:33:38 -  1.14
@@ -1,7 +1,7 @@
 AC_INIT(configure.in)
 AC_CANONICAL_BUILD
 AC_CANONICAL_HOST
-AM_INIT_AUTOMAKE(efreet, 0.0.3.005)
+AM_INIT_AUTOMAKE(efreet, 0.0.3.006)
 AM_CONFIG_HEADER(config.h)
 
 AC_ISC_POSIX



-
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


E CVS: libs/embryo raster

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/embryo

Dir : e17/libs/embryo


Modified Files:
configure.in 


Log Message:


asparagus!

===
RCS file: /cvs/e/e17/libs/embryo/configure.in,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -3 -r1.58 -r1.59
--- configure.in10 Jul 2007 00:13:23 -  1.58
+++ configure.in26 Aug 2007 14:33:38 -  1.59
@@ -5,7 +5,7 @@
 AC_CANONICAL_BUILD
 AC_CANONICAL_HOST
 AC_ISC_POSIX
-AM_INIT_AUTOMAKE(embryo, 0.9.1.040)
+AM_INIT_AUTOMAKE(embryo, 0.9.1.041)
 AM_CONFIG_HEADER(config.h)
 
 AC_C_BIGENDIAN



-
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


E CVS: libs/imlib2_loaders raster

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/imlib2_loaders

Dir : e17/libs/imlib2_loaders


Modified Files:
configure.in 


Log Message:


asparagus!

===
RCS file: /cvs/e/e17/libs/imlib2_loaders/configure.in,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -3 -r1.51 -r1.52
--- configure.in15 Jul 2007 01:41:20 -  1.51
+++ configure.in26 Aug 2007 14:33:41 -  1.52
@@ -5,7 +5,7 @@
 AC_CANONICAL_BUILD
 AC_CANONICAL_HOST
 AC_ISC_POSIX
-AM_INIT_AUTOMAKE(imlib2_loaders, 1.4.0.002)
+AM_INIT_AUTOMAKE(imlib2_loaders, 1.4.0.003)
 AM_CONFIG_HEADER(config.h)
 
 AC_C_BIGENDIAN



-
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


E CVS: libs/epeg raster

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/epeg

Dir : e17/libs/epeg


Modified Files:
configure.in 


Log Message:


asparagus!

===
RCS file: /cvs/e/e17/libs/epeg/configure.in,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -3 -r1.22 -r1.23
--- configure.in10 Jul 2007 00:13:25 -  1.22
+++ configure.in26 Aug 2007 14:33:40 -  1.23
@@ -4,7 +4,7 @@
 rm -f config.cache
 
 AC_INIT(configure.in)
-AM_INIT_AUTOMAKE(epeg, 0.9.0.010)
+AM_INIT_AUTOMAKE(epeg, 0.9.0.011)
 AM_CONFIG_HEADER(config.h)
 
 AC_ISC_POSIX



-
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


E CVS: libs/epsilon raster

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/epsilon

Dir : e17/libs/epsilon


Modified Files:
configure.in 


Log Message:


asparagus!

===
RCS file: /cvs/e/e17/libs/epsilon/configure.in,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -3 -r1.33 -r1.34
--- configure.in27 Jul 2007 15:21:53 -  1.33
+++ configure.in26 Aug 2007 14:33:40 -  1.34
@@ -1,7 +1,7 @@
 dnl Process this file with autoconf to produce a configure script.
 
 AC_INIT(configure.in)
-AM_INIT_AUTOMAKE(epsilon, 0.3.0.010)
+AM_INIT_AUTOMAKE(epsilon, 0.3.0.011)
 AM_CONFIG_HEADER(src/config.h)
 
 AC_ISC_POSIX



-
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


E CVS: libs/emotion raster

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/emotion

Dir : e17/libs/emotion


Modified Files:
configure.in 


Log Message:


asparagus!

===
RCS file: /cvs/e/e17/libs/emotion/configure.in,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -3 -r1.50 -r1.51
--- configure.in10 Jul 2007 00:13:23 -  1.50
+++ configure.in26 Aug 2007 14:33:40 -  1.51
@@ -4,7 +4,7 @@
 rm -f config.cache
 
 AC_INIT(configure.in)
-AM_INIT_AUTOMAKE(emotion, 0.0.1.007)
+AM_INIT_AUTOMAKE(emotion, 0.0.1.008)
 AM_CONFIG_HEADER(config.h)
 
 AC_C_BIGENDIAN



-
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


E CVS: libs/evas raster

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/evas

Dir : e17/libs/evas


Modified Files:
configure.in 


Log Message:


asparagus!

===
RCS file: /cvs/e/e17/libs/evas/configure.in,v
retrieving revision 1.229
retrieving revision 1.230
diff -u -3 -r1.229 -r1.230
--- configure.in17 Aug 2007 09:12:21 -  1.229
+++ configure.in26 Aug 2007 14:33:40 -  1.230
@@ -5,7 +5,7 @@
 AC_CANONICAL_BUILD
 AC_CANONICAL_HOST
 AC_ISC_POSIX
-AM_INIT_AUTOMAKE(evas, 0.9.9.040)
+AM_INIT_AUTOMAKE(evas, 0.9.9.041)
 AM_CONFIG_HEADER(config.h)
 
 AC_C_BIGENDIAN



-
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


E CVS: libs/etk raster

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/etk

Dir : e17/libs/etk


Modified Files:
configure.in 


Log Message:


asparagus!

===
RCS file: /cvs/e/e17/libs/etk/configure.in,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -3 -r1.29 -r1.30
--- configure.in10 Jul 2007 00:13:25 -  1.29
+++ configure.in26 Aug 2007 14:33:40 -  1.30
@@ -5,7 +5,7 @@
 AC_CANONICAL_BUILD
 AC_CANONICAL_HOST
 AC_ISC_POSIX
-AM_INIT_AUTOMAKE(etk, 0.1.0.005)
+AM_INIT_AUTOMAKE(etk, 0.1.0.006)
 AM_CONFIG_HEADER(config.h)
 
 AC_C_BIGENDIAN



-
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


E CVS: libs/ewl raster

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl


Modified Files:
configure.in 


Log Message:


asparagus!

===
RCS file: /cvs/e/e17/libs/ewl/configure.in,v
retrieving revision 1.112
retrieving revision 1.113
diff -u -3 -r1.112 -r1.113
--- configure.in10 Jul 2007 00:13:26 -  1.112
+++ configure.in26 Aug 2007 14:33:41 -  1.113
@@ -3,7 +3,7 @@
 AC_INIT(configure.in)
 AC_CANONICAL_BUILD
 AC_CANONICAL_HOST
-AM_INIT_AUTOMAKE(ewl, 0.5.1.010)
+AM_INIT_AUTOMAKE(ewl, 0.5.1.011)
 AM_CONFIG_HEADER(ewl-config.h)
 
 AC_ISC_POSIX



-
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


E CVS: cpu devilhorns

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : cpu

Dir : e_modules/cpu


Modified Files:
cpu.edc 


Log Message:
Fix edc formatting. Remove useless entries.

===
RCS file: /cvs/e/e_modules/cpu/cpu.edc,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -3 -r1.18 -r1.19
--- cpu.edc 26 Aug 2007 11:32:08 -  1.18
+++ cpu.edc 26 Aug 2007 14:42:37 -  1.19
@@ -11,745 +11,823 @@
 
 styles
 {
-   style {
-  name: cpu_style;
-  base: font=VeraMono font_size=10 text_class=tb_plain align=center 
color=#fff style=outline_soft_shadow shadow_color=#0032 wrap=word;
-  tag:  br \n;
-   }
+   style
+ {
+   name: cpu_style;
+   base: font=VeraMono font_size=10 text_class=tb_plain align=center 
color=#fff style=outline_soft_shadow shadow_color=#0032 wrap=word;
+   tag: br \n;
+ }
 }
 
-collections {
-group {
+collections
+{
+   group
+ {
 name: modules/cpu/main;
-parts {
-part {
-name:   fade_clip;
-type:   RECT;
-mouse_events:   0;
-description {
-state: default 0.0;
-color: 255 255 255 255;
-}
-}
-part {
-name: cpu;
-clip_to: fade_clip;
-description {
-state: default 0.0;
-aspect: 1.0 1.0;
-aspect_preference: BOTH;
-align: 0.5 0.5;
-rel1.relative: 0.0 0.0;
-rel2.relative: 1.0 1.0;
-image.normal: cpu.png;
-}
-}
-part {
-name:   load;
-type:   TEXTBLOCK;
-effect: SOFT_SHADOW;
-mouse_events: 0;
-clip_to: fade_clip;
-description {
-state: default 0.0;
-align: 0.5 0.5;
-rel1 {
-relative: 0.0  0.0;
-to: cpu;
-}
-rel2 {
-relative: 1.0  1.0;
-to: cpu;
-}
-text {
-style:cpu_style;
-min:  0 1;
-}
-}
-}
-}
-}
-group {
+parts
+ {
+part
+  {
+ name: fade_clip;
+ type: RECT;
+ mouse_events: 0;
+ description
+   {
+  state: default 0.0;
+  color: 255 255 255 255;
+   }
+  }
+part
+  {
+ name: cpu;
+ clip_to: fade_clip;
+ description
+   {
+  state: default 0.0;
+  aspect: 1.0 1.0;
+  aspect_preference: BOTH;
+  align: 0.5 0.5;
+  image.normal: cpu.png;
+   }
+  }
+part
+  {
+ name: load;
+ type: TEXTBLOCK;
+ effect: SOFT_SHADOW;
+ mouse_events: 0;
+ clip_to: fade_clip;
+ description
+   {
+  state: default 0.0;
+  align: 0.5 0.5;
+  rel1.to: cpu;
+  rel2.to: cpu;
+  text
+{
+   style: cpu_style;
+   min: 0 1;
+}
+   }
+  }
+ }
+ }
+   group
+ {
 name: modules/cpu/popup;
-data {
-item: chart_color1 0 59 179 170;
-item: chart_color2 4 179 0 170;
-item: chart_color3 180 0 0 170;
-item: chart_color4 179 55 0 170;
-}
-
-parts {
-part {
-name: bg;
-type: RECT;
-
-description {
-state: default 0.0;
-min: 100 100;
-color: 0 0 0 0;
-}
-description {
-state: cpu_count_2 0.0;
-inherit: default 0.0;
-min: 200 100;
-}
-description {
-state: cpu_count_3 0.0;
-inherit: default 0.0;
-min: 150 100;
-}
-description {
-state: cpu_count_4 0.0;
-inherit: default 0.0;
-  

E CVS: apps/e englebass

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_int_config_modules.c 


Log Message:
formatting.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_config_modules.c,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -3 -r1.69 -r1.70
--- e_int_config_modules.c  26 Aug 2007 04:35:27 -  1.69
+++ e_int_config_modules.c  26 Aug 2007 14:59:58 -  1.70
@@ -401,9 +401,9 @@
module = evas_hash_find(modules, lbl);
if (!module) continue;
if (module-comment)
-   e_widget_textblock_markup_set(cfdata-o_desc, module-comment);
+ e_widget_textblock_markup_set(cfdata-o_desc, module-comment);
else
-   e_widget_textblock_markup_set(cfdata-o_desc, Description: 
Unavailable.);
+ e_widget_textblock_markup_set(cfdata-o_desc, Description: 
Unavailable.);
module-selected = 1;
  }
if (l) evas_list_free(l);
@@ -450,9 +450,9 @@
module = evas_hash_find(modules, lbl);
if (!module) continue;
if (module-comment)
-   e_widget_textblock_markup_set(cfdata-o_desc, module-comment);
+ e_widget_textblock_markup_set(cfdata-o_desc, module-comment);
else
-   e_widget_textblock_markup_set(cfdata-o_desc, Description: 
Unavailable.);
+ e_widget_textblock_markup_set(cfdata-o_desc, Description: 
Unavailable.);
module-selected = 1;
if (c == 1) 
  {



-
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


E CVS: cpu devilhorns

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : cpu

Dir : e_modules/cpu


Modified Files:
Makefile.am cpu.edc e_mod_main.h 
Removed Files:
e_mod_config.c 


Log Message:
Revert recent graph-ness. There is a much better way todo this type of stuff.

===
RCS file: /cvs/e/e_modules/cpu/Makefile.am,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -3 -r1.18 -r1.19
--- Makefile.am 26 Aug 2007 11:32:08 -  1.18
+++ Makefile.am 26 Aug 2007 15:10:16 -  1.19
@@ -13,7 +13,6 @@
 EXTRA_DIST = $(files_DATA) \
 cpu.edc \
 VeraMono.ttf \
-VeraBd.ttf \
 cpu.png \
 e_modules-cpu.spec
 
@@ -29,8 +28,7 @@
 pkgdir = $(datadir)/$(MODULE_ARCH)
 pkg_LTLIBRARIES= module.la
 module_la_SOURCES  = e_mod_main.c \
-  e_mod_main.h \
-  e_mod_config.c
+  e_mod_main.h
 
 module_la_LIBADD   = @e_libs@
 module_la_LDFLAGS  = -module -avoid-version
===
RCS file: /cvs/e/e_modules/cpu/cpu.edc,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -3 -r1.19 -r1.20
--- cpu.edc 26 Aug 2007 14:42:37 -  1.19
+++ cpu.edc 26 Aug 2007 15:10:16 -  1.20
@@ -6,31 +6,29 @@
 fonts
 {
font: VeraMono.ttf VeraMono;
-   font: VeraBd.ttf VeraBold;
 }
 
 styles
 {
-   style
- {
-   name: cpu_style;
-   base: font=VeraMono font_size=10 text_class=tb_plain align=center 
color=#fff style=outline_soft_shadow shadow_color=#0032 wrap=word;
-   tag: br \n;
- }
+   style {
+  name: cpu_style;
+  base: font=VeraMono font_size=10 text_class=tb_plain align=center 
color=#fff style=outline_soft_shadow shadow_color=#0032 wrap=word;
+  tag:  br \n;
+   }
 }
 
 collections
 {
group
  {
-name: modules/cpu/main;
-parts
+   name: modules/cpu/main;
+   parts
  {
 part
   {
- name: fade_clip;
- type: RECT;
- mouse_events: 0;
+ name:   fade_clip;
+ type:   RECT;
+ mouse_events:   0;
  description
{
   state: default 0.0;
@@ -47,786 +45,45 @@
   aspect: 1.0 1.0;
   aspect_preference: BOTH;
   align: 0.5 0.5;
-  image.normal: cpu.png;
-   }
-  }
-part
-  {
- name: load;
- type: TEXTBLOCK;
- effect: SOFT_SHADOW;
- mouse_events: 0;
- clip_to: fade_clip;
- description
-   {
-  state: default 0.0;
-  align: 0.5 0.5;
-  rel1.to: cpu;
-  rel2.to: cpu;
-  text
-{
-   style: cpu_style;
-   min: 0 1;
-}
-   }
-  }
- }
- }
-   group
- {
-name: modules/cpu/popup;
-data
- {
-item: chart_color1 0 59 179 170;
-item: chart_color2 4 179 0 170;
-item: chart_color3 180 0 0 170;
-item: chart_color4 179 55 0 170;
- }
-parts
- {
-part
-  {
- name: bg;
- type: RECT;
- description
-   {
-  state: default 0.0;
-  min: 100 100;
-  color: 0 0 0 0;
-   }
- description
-   {
-  state: cpu_count_2 0.0;
-  inherit: default 0.0;
-  min: 200 100;
-   }
- description
-   {
-  state: cpu_count_3 0.0;
-  inherit: default 0.0;
-  min: 150 100;
-   }
- description
-   {
-  state: cpu_count_4 0.0;
-  inherit: default 0.0;
-  min: 150 150;
-   }
-  }
-part
-  {
- name: chart1;
- type: SWALLOW;
- description
-   {
-  state: default 0.0;
-  rel1.relative: 0.04 0.04;
-  rel2.relative: 0.96 0.96;
-  color: 255 255 255 255;
-   }
- description
-   {
-  state: cpu_count_2 0.0;
-  inherit: default 0.0;
- 

E CVS: cpu devilhorns

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : cpu

Dir : e_modules/cpu


Modified Files:
e_mod_main.c 


Log Message:
Revert e_mod_main.c also.

===
RCS file: /cvs/e/e_modules/cpu/e_mod_main.c,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -3 -r1.38 -r1.39
--- e_mod_main.c26 Aug 2007 11:37:06 -  1.38
+++ e_mod_main.c26 Aug 2007 15:16:43 -  1.39
@@ -1,5 +1,5 @@
 /*
- * vim:ts=8:sw=3:sts=8:noexpandtab:cino=5n-3f0^-2{2(0
+ * vim:ts=8:sw=3:sts=8:noexpandtab:cino=5n-3f0^-2{2
  */
 #include e.h
 #include e_mod_main.h
@@ -18,11 +18,6 @@
E_Gadcon_Client *gcc;
Cpu *cpu;
Ecore_Timer *timer;
-
-   E_Gadcon_Popup  *popup;
-   Evas_Object *o_bg, *o_chart[4], *o_poly[4];
-   Evas_List   *points[4];
-   int chart_colors[4][4];
 };
 
 struct _Cpu 
@@ -40,12 +35,13 @@
 static int _set_cpu_load(void *data);
 static int _get_cpu_count(void);
 static int _get_cpu_load(void);
-static void _graph_values(Instance *inst);
+static void _button_cb_mouse_down(void *data, Evas *e, Evas_Object *obj, void 
*event_info);
 static void _menu_cb_post(void *data, E_Menu *m);
-static void _cb_mouse_down(void *data, Evas *e, Evas_Object *obj, void 
*event_info);
-static void _cb_mouse_in(void *data, Evas *e, Evas_Object *obj, void 
*event_info);
-static void _cb_mouse_out(void *data, Evas *e, Evas_Object *obj, void 
*event_info);
-static void _cpu_menu_cb_configure (void *data, E_Menu * m, E_Menu_Item * mi);
+static void _cpu_menu_fast(void *data, E_Menu *m, E_Menu_Item *mi);
+static void _cpu_menu_medium(void *data, E_Menu *m, E_Menu_Item *mi);
+static void _cpu_menu_normal(void *data, E_Menu *m, E_Menu_Item *mi);
+static void _cpu_menu_slow(void *data, E_Menu *m, E_Menu_Item *mi);
+static void _cpu_menu_very_slow(void *data, E_Menu *m, E_Menu_Item *mi);
 
 static E_Config_DD *conf_edd = NULL;
 static E_Config_DD *conf_item_edd = NULL;
@@ -54,7 +50,7 @@
 
 static int cpu_count;
 static int cpu_stats[4];
-static float update_poll_time;
+static float update_interval;
 
 static const E_Gadcon_Client_Class _gc_class = 
 {
@@ -69,10 +65,7 @@
Instance*inst;
Config_Item *ci;
E_Gadcon_Client *gcc;
-   const char *color_string;
char buf[4096];
-   int i;
-
 
cpu_count = _get_cpu_count();

@@ -90,66 +83,21 @@

cpu-o_icon = edje_object_add(gc-evas);
if (!e_theme_edje_object_set(cpu-o_icon, 
-   base/theme/modules, modules/cpu/main))
+   base/theme/modules/cpu, modules/cpu/main))
  edje_object_file_set(cpu-o_icon, buf, modules/cpu/main);
evas_object_show(cpu-o_icon);

gcc = e_gadcon_client_new(gc, name, id, style, cpu-o_icon);
-   gcc-data   = inst;
-   inst-gcc   = gcc;
-   inst-cpu   = cpu;
-
-   inst-popup = e_gadcon_popup_new(gcc, NULL);
-   inst-o_bg  = edje_object_add(inst-popup-win-evas);
-   if (!e_theme_edje_object_set(inst-o_bg, 
-   base/theme/modules, modules/cpu/popup))
- edje_object_file_set(inst-o_bg, buf, modules/cpu/popup);
-
-   for (i = 0; i  cpu_count  i  4; i++)
- {
-   snprintf(buf, sizeof(buf), chart%d, i + 1);
-   inst-o_chart[i] = edje_object_add(inst-popup-win-evas);
-   evas_object_layer_set(inst-o_chart[i], 1);
-   edje_object_part_swallow(inst-o_bg, buf, inst-o_chart[i]);
-
-   inst-o_poly[i] = evas_object_polygon_add(inst-popup-win-evas);
-   evas_object_layer_set(inst-o_poly[i], 1);
-   evas_object_anti_alias_set(inst-o_poly[i], 1);
-
-   evas_object_show(inst-o_chart[i]);
-   evas_object_show(inst-o_poly[i]);
-
-   snprintf(buf, sizeof(buf), chart_color%d, i + 1);
-   color_string = edje_object_data_get(inst-o_bg, buf);
-   if (!color_string || sscanf(color_string, %d %d %d %d,
-   inst-chart_colors[i][0],
-   inst-chart_colors[i][1],
-   inst-chart_colors[i][2],
-   inst-chart_colors[i][3]) != 4)
- {
-inst-chart_colors[i][0] = 55;
-inst-chart_colors[i][1] = 110;
-inst-chart_colors[i][2] = 250;
-inst-chart_colors[i][3] = 155;
- }
- }
-
-   snprintf(buf, sizeof(buf), e,state,orientation,%d,
-   cpu_count  4 ? 4 : cpu_count);
-   edje_object_signal_emit(inst-o_bg, buf, e);
-
-   e_gadcon_popup_content_set(inst-popup, inst-o_bg);
+   gcc-data = inst;
+   inst-gcc = gcc;
+   inst-cpu = cpu;
 
cpu_conf-instances = evas_list_append(cpu_conf-instances, inst);
 
evas_object_event_callback_add(cpu-o_icon, EVAS_CALLBACK_MOUSE_DOWN,
- _cb_mouse_down, inst);
-   evas_object_event_callback_add(cpu-o_icon, EVAS_CALLBACK_MOUSE_IN,
-  

E CVS: cpu devilhorns

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : cpu

Dir : e_modules/cpu


Removed Files:
VeraBd.ttf 


Log Message:
Remove VeraBd font also.




-
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


E CVS: apps/e maxerba

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : maxerba
Project : e17
Module  : apps/e

Dir : e17/apps/e/po


Modified Files:
ja.po 


Log Message:





-
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


E CVS: e_modules onefang

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : onefang
Module  : e_modules

Dir : e_modules


Modified Files:
AUTHORS 


Log Message:
Identify E_modules maintainers.

===
RCS file: /cvs/e/e_modules/AUTHORS,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- AUTHORS 17 May 2007 16:55:37 -  1.7
+++ AUTHORS 26 Aug 2007 16:51:55 -  1.8
@@ -2,6 +2,10 @@
 each module.  See the individual AUTHORS files in each module for the
 complete list of credits.
 
+The current e_module maintainers are onefang and devilhorns, they are
+responisble for overall maintenance, but leave decisions regarding
+individual modules to their respective authors.
+
 alarm - Laurent 'kiwi' Ghigonis [EMAIL PROTECTED]
 
 bling - Ibukun Olumuyiwa [EMAIL PROTECTED]



-
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


E CVS: e_modules onefang

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : onefang
Module  : e_modules

Dir : e_modules


Modified Files:
README README.BROKEN 


Log Message:
typo--
Update removed modules info.

===
RCS file: /cvs/e/e_modules/README,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -3 -r1.18 -r1.19
--- README  17 May 2007 16:55:37 -  1.18
+++ README  26 Aug 2007 17:04:18 -  1.19
@@ -19,8 +19,6 @@
 
 bling - EFLized Composite Manager for E17. (Not for users right now).
 
-calendar - A module to display a desktop calendar.
-
 cpu - A module to monitor cpu load.  (Will be replaced by something better.)
 
 deskshow - A module to iconify/uniconify all current windows to show the
@@ -28,11 +26,9 @@
 
 emu - Experimental generic scriptable module for E17.
 
-engage - Icon bar / task bar / system tray.
-
 flame - A module to display flames on the desktop.
 
-forecasts - A module to display  the current condition and forecasts.
+forecasts - A module to display the current condition and forecasts.
 
 language - A module to control active keyboard/keyboard layout/layout variant.
 
===
RCS file: /cvs/e/e_modules/README.BROKEN,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- README.BROKEN   17 Oct 2006 16:26:45 -  1.1
+++ README.BROKEN   26 Aug 2007 17:04:18 -  1.2
@@ -3,14 +3,14 @@
 long time.
 
 
-calendar - Broke when the long advertised move from gadman to gadcon was
-completed and the gadman code was removed from E17.  The author plans to
-get back to it, but has no idea when.
+calendar (REMOVED) - Broke when the long advertised move from gadman to
+gadcon was completed and the gadman code was removed from E17.  The
+author plans to get back to it, but has no idea when.
 
-engage - Broke when the long advertised move from gadman to gadcon was
-completed and the gadman code was removed from E17.  The author plans to
-get back to it, but has no idea when.  Both the e_modules maintainers
-have expresed an interest in fixing it, but all three of us have this as
-a low priority task, and have many other higher priority tasks to take
-care of.  In the mean time, the standalone version is in misc/engage,
-and it will be kept limping along for now.
+engage (REMOVED) - Broke when the long advertised move from gadman to
+gadcon was completed and the gadman code was removed from E17.  The
+author plans to get back to it, but has no idea when.  Both the
+e_modules maintainers have expresed an interest in fixing it, but all
+three of us have this as a low priority task, and have many other higher
+priority tasks to take care of.  In the mean time, the standalone
+version is in misc/engage, and it will be kept limping along for now.



-
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


E CVS: apps/e devilhorns

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_gadcon_popup.c 


Log Message:
Add gcc suggested parens around assignment.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_gadcon_popup.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- e_gadcon_popup.c26 Aug 2007 11:16:31 -  1.3
+++ e_gadcon_popup.c26 Aug 2007 17:20:46 -  1.4
@@ -73,7 +73,7 @@
 
if (pop-win-visible) return;
 
-   if (o = edje_object_part_swallow_get(pop-o_bg, e.swallow.content))
+   if ((o = edje_object_part_swallow_get(pop-o_bg, e.swallow.content)))
  {
Evas_Coord w = 0, h = 0;
 



-
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


E CVS: language englebass

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : language

Dir : e_modules/language/src/module


Modified Files:
e_mod_main.c 


Log Message:
keybindings configure is in a module now.

===
RCS file: /cvs/e/e_modules/language/src/module/e_mod_main.c,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -3 -r1.27 -r1.28
--- e_mod_main.c26 Jul 2007 07:39:19 -  1.27
+++ e_mod_main.c26 Aug 2007 17:54:43 -  1.28
@@ -486,7 +486,7 @@
 static void
 _language_face_cb_menu_keybindings_configure(void *data, E_Menu *m, 
E_Menu_Item *mi)
 {
-   e_int_config_keybindings(e_container_current_get(e_manager_current_get()), 
NULL);
+   e_configure_registry_call(keyboard_and_mouse/key_bindings, 
e_container_current_get(e_manager_current_get()), NULL);
 }
 static void
 _language_face_cb_menu_switch_language_to(void *data, E_Menu *m, E_Menu_Item 
*mi)



-
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


E CVS: enthrall tilman

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : tilman
Project : misc
Module  : enthrall

Dir : misc/enthrall


Added Files:
Makefile 


Log Message:
Moved Makefile up one level




-
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


E CVS: enthrall tilman

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : tilman
Project : misc
Module  : enthrall

Dir : misc/enthrall/src


Removed Files:
Makefile 


Log Message:
Moved Makefile up one level




-
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


E CVS: wlan ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e_modules
Module  : wlan

Dir : e_modules/wlan


Modified Files:
module.desktop 


Log Message:
Add comments to various .desktop files for the description in the modules 
dialog.

===
RCS file: /cvs/e/e_modules/wlan/module.desktop,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- module.desktop  30 Mar 2007 21:09:31 -  1.1
+++ module.desktop  26 Aug 2007 19:49:45 -  1.2
@@ -2,3 +2,4 @@
 Type=Link
 Name=Wlan
 Icon=e-module-wlan
+Comment=hilightWLan Gadget/hilightbrGadget to monitor a wlan device.



-
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


E CVS: emu ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e_modules
Module  : emu

Dir : e_modules/emu/src/modules/emu


Modified Files:
module.desktop 


Log Message:
Add comments to various .desktop files for the description in the modules 
dialog.

===
RCS file: /cvs/e/e_modules/emu/src/modules/emu/module.desktop,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- module.desktop  29 May 2007 16:11:04 -  1.1
+++ module.desktop  26 Aug 2007 19:49:44 -  1.2
@@ -5,3 +5,4 @@
 Comment=Experimental generic scriptable module for E17
 X-Enlightenment-IconClass=emu,gadget
 Icon=e-module-emu
+Comment=hilightEmu Module/hilightbrGeneric scriptable 
module.brhilightExperimental!/hilight



-
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


E CVS: flame ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e_modules
Module  : flame

Dir : e_modules/flame


Modified Files:
module.desktop 


Log Message:
Add comments to various .desktop files for the description in the modules 
dialog.

===
RCS file: /cvs/e/e_modules/flame/module.desktop,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- module.desktop  30 Mar 2007 21:01:41 -  1.1
+++ module.desktop  26 Aug 2007 19:49:44 -  1.2
@@ -2,3 +2,4 @@
 Type=Link
 Name=Flame
 Icon=e-module-flame
+Comment=hilightFlame Module/hilightbrA module to display flames 
onbrthe desktop.



-
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


E CVS: language ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e_modules
Module  : language

Dir : e_modules/language


Modified Files:
module.desktop 


Log Message:
Add comments to various .desktop files for the description in the modules 
dialog.

===
RCS file: /cvs/e/e_modules/language/module.desktop,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- module.desktop  29 May 2007 16:26:01 -  1.1
+++ module.desktop  26 Aug 2007 19:49:44 -  1.2
@@ -6,3 +6,4 @@
 X-Enlightenment-WaitExit=false
 X-Enlightenment-IconClass=language,gadget
 Icon=e-module-language
+Comment=hilightLanguage Gadget/hilightbrGadget to control active 
keyboard,brkeyboard layout, and layout variant.



-
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


E CVS: news ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e_modules
Module  : news

Dir : e_modules/news


Modified Files:
module.desktop 


Log Message:
Add comments to various .desktop files for the description in the modules 
dialog.

===
RCS file: /cvs/e/e_modules/news/module.desktop,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- module.desktop  18 Jun 2007 18:30:27 -  1.1
+++ module.desktop  26 Aug 2007 19:49:44 -  1.2
@@ -2,3 +2,4 @@
 Type=Link
 Name=News
 Icon=e-module-news
+Comment=hilightNews Gadget/hilightbrGadget to monitor RSS feeds.



-
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


E CVS: snow ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e_modules
Module  : snow

Dir : e_modules/snow


Modified Files:
module.desktop 


Log Message:
Add comments to various .desktop files for the description in the modules 
dialog.

===
RCS file: /cvs/e/e_modules/snow/module.desktop,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- module.desktop  30 Mar 2007 21:04:34 -  1.1
+++ module.desktop  26 Aug 2007 19:49:45 -  1.2
@@ -2,3 +2,4 @@
 Type=Link
 Name=Snow
 Icon=e-module-snow
+Comment=hilightSnow Module/hilightbrModule to display snow on 
thebrdesktop.



-
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


E CVS: rain ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e_modules
Module  : rain

Dir : e_modules/rain


Modified Files:
module.desktop 


Log Message:
Add comments to various .desktop files for the description in the modules 
dialog.

===
RCS file: /cvs/e/e_modules/rain/module.desktop,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- module.desktop  30 Mar 2007 21:02:50 -  1.1
+++ module.desktop  26 Aug 2007 19:49:44 -  1.2
@@ -2,3 +2,4 @@
 Type=Link
 Name=Rain
 Icon=e-module-rain
+Comment=hilightRain Module/hilightbrModule to display rain on 
thebrdesktop.



-
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


E CVS: uptime ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e_modules
Module  : uptime

Dir : e_modules/uptime


Modified Files:
module.desktop 


Log Message:
Add comments to various .desktop files for the description in the modules 
dialog.

===
RCS file: /cvs/e/e_modules/uptime/module.desktop,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- module.desktop  30 Mar 2007 21:05:11 -  1.1
+++ module.desktop  26 Aug 2007 19:49:45 -  1.2
@@ -2,4 +2,4 @@
 Type=Link
 Name=Uptime
 Icon=e-module-uptime
-
+Comment=hilightUptime Gadget/hilightbrGadget to display the 
currentbruptime of the system.



-
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


E CVS: tclock ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e_modules
Module  : tclock

Dir : e_modules/tclock


Modified Files:
module.desktop 


Log Message:
Add comments to various .desktop files for the description in the modules 
dialog.

===
RCS file: /cvs/e/e_modules/tclock/module.desktop,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- module.desktop  25 Mar 2007 01:35:53 -  1.2
+++ module.desktop  26 Aug 2007 19:49:45 -  1.3
@@ -2,3 +2,4 @@
 Type=Link
 Name=TClock
 Icon=e-module-tclock
+Comment=hilightTClock Gadget/hilightbrA digital clock gadget.



-
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


E CVS: wlan ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e_modules
Module  : wlan

Dir : e_modules/wlan


Modified Files:
module.desktop 


Log Message:
Oops!

===
RCS file: /cvs/e/e_modules/wlan/module.desktop,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- module.desktop  26 Aug 2007 19:49:45 -  1.2
+++ module.desktop  26 Aug 2007 20:19:59 -  1.3
@@ -2,4 +2,4 @@
 Type=Link
 Name=Wlan
 Icon=e-module-wlan
-Comment=hilightWLan Gadget/hilightbrGadget to monitor a wlan device.
+Comment=hilightWLan Gadget/hilightbrGadget to monitor a wlan device.



-
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


E CVS: apps/e morlenxus

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : morlenxus
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_profiles


Modified Files:
e_int_config_profiles.c module.desktop.in 


Log Message:
Reset new profile type; module description added.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_profiles/e_int_config_profiles.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- e_int_config_profiles.c 3 Aug 2007 10:20:35 -   1.4
+++ e_int_config_profiles.c 26 Aug 2007 21:41:20 -  1.5
@@ -304,6 +304,7 @@
e_object_unref(E_OBJECT(dia));
cfdata-dia_new_profile = NULL;
cfdata-new_profile = NULL;
+   cfdata-new_profile_type = 0;
 }
 
 static void 
@@ -331,6 +332,7 @@
e_object_unref(E_OBJECT(dia));
cfdata-dia_new_profile = NULL;
cfdata-new_profile = NULL;
+   cfdata-new_profile_type = 0;
_ilist_fill(cfdata);
 }
 
@@ -342,5 +344,6 @@
  
cfdata-dia_new_profile = NULL;
cfdata-new_profile = NULL;
+   cfdata-new_profile_type = 0;
e_object_unref(E_OBJECT(dia));
 }
===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_profiles/module.desktop.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- module.desktop.in   16 Jul 2007 00:45:58 -  1.1
+++ module.desktop.in   26 Aug 2007 21:41:20 -  1.2
@@ -2,3 +2,4 @@
 Type=Link
 Name=Configuration - Profiles
 Icon=e-module-conf_profiles
+Comment=hilightE17 Configuration Applet/hilightbrAllows to manage 
configuration profiles.



-
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


E CVS: libs/edb vapier

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : vapier
Project : e17
Module  : libs/edb

Dir : e17/libs/edb/tools/edb_gtk_ed


Modified Files:
callbacks.c callbacks.h main.c 


Log Message:
fixup missing headers and such

===
RCS file: /cvs/e/e17/libs/edb/tools/edb_gtk_ed/callbacks.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- callbacks.c 19 Aug 2004 00:46:13 -  1.5
+++ callbacks.c 26 Aug 2007 22:19:36 -  1.6
@@ -8,6 +8,8 @@
 #include sys/stat.h
 #include unistd.h
 #include string.h
+#include stdio.h
+#include stdlib.h
 
 #include gdk/gdkkeysyms.h
 #include gtk/gtk.h
@@ -23,12 +25,6 @@
 
 int
 sort_compare(const void *v1, const void *v2);
-
-void
-new_db(GtkWidget *window, char *file);
-
-void
-init_type_menu(void);
 
 void
 on_int_activate(GtkMenuItem *menuitem, gpointer user_data);
===
RCS file: /cvs/e/e17/libs/edb/tools/edb_gtk_ed/callbacks.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- callbacks.h 6 Mar 2001 02:41:03 -   1.1
+++ callbacks.h 26 Aug 2007 22:19:36 -  1.2
@@ -1,6 +1,13 @@
 #include gtk/gtk.h
 
 
+void
+init_type_menu (void);
+
+void
+new_db (GtkWidget   *window,
+char*file);
+
 gboolean
 on_window_delete_event (GtkWidget   *widget,
 GdkEvent*event,
===
RCS file: /cvs/e/e17/libs/edb/tools/edb_gtk_ed/main.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- main.c  6 Mar 2001 19:23:54 -   1.2
+++ main.c  26 Aug 2007 22:19:36 -  1.3
@@ -11,6 +11,7 @@
 
 #include interface.h
 #include support.h
+#include callbacks.h
 
 GtkWidget *main_window;
 char *db_file = NULL;



-
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


E CVS: libs/edb vapier

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : vapier
Project : e17
Module  : libs/edb

Dir : e17/libs/edb/src


Modified Files:
os_rw.c txn_rec.c 


Log Message:
fixup missing headers and such

===
RCS file: /cvs/e/e17/libs/edb/src/os_rw.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- os_rw.c 5 Apr 2001 16:31:35 -   1.3
+++ os_rw.c 26 Aug 2007 22:19:36 -  1.4
@@ -5,6 +5,10 @@
  * Sleepycat Software.  All rights reserved.
  */
 
+/* needed to get pread/pwrite protos */
+#define _BSD_SOURCE
+#define _XOPEN_SOURCE 500
+
 #include config.h
 
 #ifndef lint
===
RCS file: /cvs/e/e17/libs/edb/src/txn_rec.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- txn_rec.c   5 Apr 2001 16:31:35 -   1.3
+++ txn_rec.c   26 Aug 2007 22:19:36 -  1.4
@@ -47,6 +47,7 @@
 #include sys/types.h
 
 #include errno.h
+#include string.h
 #endif
 
 #include edb_int.h



-
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


E CVS: libs/edb vapier

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : vapier
Project : e17
Module  : libs/edb

Dir : e17/libs/edb/tools


Modified Files:
edb_ed.c edb_vt_ed.c 


Log Message:
fixup missing headers and such

===
RCS file: /cvs/e/e17/libs/edb/tools/edb_ed.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -3 -r1.20 -r1.21
--- edb_ed.c29 Apr 2004 01:32:06 -  1.20
+++ edb_ed.c26 Aug 2007 22:19:36 -  1.21
@@ -3,6 +3,7 @@
 #include stdio.h
 #include stdlib.h
 #include errno.h
+#include string.h
 
 static int
 sort_compare(const void *v1, const void *v2);
@@ -316,7 +317,7 @@
if(!the_data)
  {
fprintf(stderr,
-   Out of RAM inporting stdin. Current 
allocation:%d\n,
+   Out of RAM inporting stdin. Current 
allocation:%zu\n,
data_read_size);
exit(-1);
  }
@@ -327,12 +328,12 @@

if(feof(stdin))
  {
-   fprintf(stdout,Read in %d bytes\n,data_read_size);
+   fprintf(stdout,Read in %zu 
bytes\n,data_read_size);
  }
else if(ferror(stdin))
  {
fprintf(stderr,
-   Error reading stdin at offset 
%d\n,data_read_size);
+   Error reading stdin at offset 
%zu\n,data_read_size);
exit(-1);
  }

===
RCS file: /cvs/e/e17/libs/edb/tools/edb_vt_ed.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- edb_vt_ed.c 24 Sep 2001 21:07:36 -  1.4
+++ edb_vt_ed.c 26 Aug 2007 22:19:36 -  1.5
@@ -4,6 +4,7 @@
 #include stdio.h
 #include stdlib.h
 #include unistd.h
+#include string.h
 
 #define  YELLOW_ON_BLUE 10
 #define  RED_ON_BLUE11



-
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


E CVS: enotes vapier

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : vapier
Project : misc
Module  : enotes

Dir : misc/enotes/src


Modified Files:
Makefile.am 


Log Message:
switch from -config scripts to pkg-config .pc files

===
RCS file: /cvs/e/misc/enotes/src/Makefile.am,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- Makefile.am 9 Oct 2004 16:06:34 -   1.7
+++ Makefile.am 26 Aug 2007 22:34:19 -  1.8
@@ -1,7 +1,7 @@
 ## Process this file with automake to produce Makefile.in
 
 INCLUDES = \
-   @ecore_cflags@ @evas_cflags@ @ewl_cflags@ @edje_cflags@ @edb_cflags@ 
@imlib2_cflags@ @esmart_cflags@
+   @ECORE_CFLAGS@ @ECORE_CONFIG_CFLAGS@ @EVAS_CFLAGS@ @EWL_CFLAGS@ 
@EDJE_CFLAGS@ @EDB_CFLAGS@ @IMLIB2_CFLAGS@ @ESMART_CFLAGS@
 
 bin_PROGRAMS = enotes
 
@@ -29,4 +29,4 @@
 menu.c \
 menu.h
 
-enotes_LDADD = @ewl_libs@ @ecore_libs@ @evas_libs@ @edje_libs@ @edb_libs@ 
@imlib2_libs@ @esmart_libs@ -lesmart_draggies
+enotes_LDADD = @EWL_LIBS@ @ECORE_LIBS@ @ECORE_CONFIG_LIBS@ @EVAS_LIBS@ 
@EDJE_LIBS@ @EDB_LIBS@ @IMLIB2_LIBS@ @ESMART_LIBS@



-
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


E CVS: enotes vapier

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : vapier
Project : misc
Module  : enotes

Dir : misc/enotes


Modified Files:
configure.in 


Log Message:
switch from -config scripts to pkg-config .pc files

===
RCS file: /cvs/e/misc/enotes/configure.in,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- configure.in25 Oct 2005 00:55:45 -  1.7
+++ configure.in26 Aug 2007 22:34:19 -  1.8
@@ -64,78 +64,14 @@
 packagesrcdir=`cd $srcdir  pwd`
 AC_DEFINE_UNQUOTED(PACKAGE_SOURCE_DIR, ${packagesrcdir}, 
[PACKAGE_SOURCE_DIR])
 
-PROG=ewl-config;
-AC_PATH_PROG(EWL_CONFIG, $PROG, , $PATH)
-if test -z $EWL_CONFIG ; then
-  AC_MSG_ERROR($PROG is not in your \$PATH. Please ensure it is.)
-fi
-ewl_cflags=`$EWL_CONFIG --cflags`
-ewl_libs=`$EWL_CONFIG --libs`
-AC_SUBST(ewl_cflags)
-AC_SUBST(ewl_libs)
-
-PROG=evas-config;
-AC_PATH_PROG(EVAS_CONFIG, $PROG, , $PATH)
-if test -z $EVAS_CONFIG ; then
-  AC_MSG_ERROR($PROG is not in your \$PATH. Please ensure it is.)
-fi
-evas_cflags=`$EVAS_CONFIG --cflags`
-evas_libs=`$EVAS_CONFIG --libs`
-AC_SUBST(evas_cflags)
-AC_SUBST(evas_libs)
-
-PROG=ecore-config;
-AC_PATH_PROG(ECORE_CONFIG, $PROG, , $PATH)
-if test -z $ECORE_CONFIG ; then
-  AC_MSG_ERROR($PROG is not in your \$PATH. Please ensure it is.)
-fi
-ecore_cflags=`$ECORE_CONFIG --cflags`
-ecore_libs=`$ECORE_CONFIG --libs`
-AC_SUBST(ecore_cflags)
-AC_SUBST(ecore_libs)
-
-PROG=imlib2-config;
-AC_PATH_PROG(IMLIB2_CONFIG, $PROG, , $PATH)
-if test -z $IMLIB2_CONFIG ; then
-  AC_MSG_ERROR($PROG is not in your \$PATH. Please ensure it is.)
-fi
-imlib2_cflags=`$IMLIB2_CONFIG --cflags` 
-imlib2_libs=`$IMLIB2_CONFIG --libs`
-AC_SUBST(imlib2_cflags)
-AC_SUBST(imlib2_libs)
-
-
-PROG=edje-config;
-AC_PATH_PROG(EDJE_CONFIG, $PROG, , $PATH)
-if test -z $EDJE_CONFIG ; then
-  AC_MSG_ERROR($PROG is not in your \$PATH. Please ensure it is.)
-fi
-edje_cflags=`$EDJE_CONFIG --cflags`
-edje_libs=`$EDJE_CONFIG --libs`
-AC_SUBST(edje_cflags)
-AC_SUBST(edje_libs)
-
-
-PROG=edb-config;
-AC_PATH_PROG(EDB_CONFIG, $PROG, , $PATH)
-if test -z $EDB_CONFIG ; then
-  AC_MSG_ERROR($PROG is not in your \$PATH. Please ensure it is.)
-fi
-edb_cflags=`$EDB_CONFIG --cflags`
-edb_libs=`$EDB_CONFIG --libs`
-AC_SUBST(edb_cflags)
-AC_SUBST(edb_libs)
-
-
-PROG=esmart-config;
-AC_PATH_PROG(ESMART_CONFIG, $PROG, , $PATH)
-if test -z $ESMART_CONFIG ; then
-  AC_MSG_ERROR($PROG is not in your \$PATH. Please ensure it is.)
-fi
-esmart_cflags=`$ESMART_CONFIG --cflags`
-esmart_libs=`$ESMART_CONFIG --libs`
-AC_SUBST(esmart_cflags)
-AC_SUBST(esmart_libs)
+PKG_CHECK_MODULES(EWL, [ewl])
+PKG_CHECK_MODULES(EVAS, [evas])
+PKG_CHECK_MODULES(ECORE, [ecore])
+PKG_CHECK_MODULES(ECORE_CONFIG, [ecore-config])
+PKG_CHECK_MODULES(IMLIB2, [imlib2])
+PKG_CHECK_MODULES(EDJE, [edje])
+PKG_CHECK_MODULES(EDB, [edb])
+PKG_CHECK_MODULES(ESMART, [esmart_draggies])
 
 CFLAGS=-Wall $CFLAGS
 



-
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


E CVS: apps/enscribe vapier

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : vapier
Project : e17
Module  : apps/enscribe

Dir : e17/apps/enscribe/src/bin


Modified Files:
Makefile.am 


Log Message:
switch from -config scripts to pkg-config .pc files

===
RCS file: /cvs/e/e17/apps/enscribe/src/bin/Makefile.am,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makefile.am 29 Mar 2005 21:01:15 -  1.1
+++ Makefile.am 26 Aug 2007 22:41:01 -  1.2
@@ -1,10 +1,9 @@
 ## Process this file with automake to produce Makefile.in
 
 INCLUDES = \
--I/usr/local/include \
 -I$(top_srcdir)/lib \
[EMAIL PROTECTED]@ @ecore_cflags@ @evas_cflags@ \
[EMAIL PROTECTED]@
[EMAIL PROTECTED]@ @ECORE_CFLAGS@ @EVAS_CFLAGS@ \
[EMAIL PROTECTED]@
 
 bin_PROGRAMS = enscribe
 
@@ -14,6 +13,4 @@
 window.c \
 main.c
 
-enscribe_LDADD =  @edje_libs@ @ecore_libs@ @evas_libs@ \
[EMAIL PROTECTED]@  -lesmart_container -lesmart_textarea
- 
+enscribe_LDADD = @EDJE_LIBS@ @ECORE_LIBS@ @EVAS_LIBS@ @ESMART_LIBS@



-
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


E CVS: apps/enscribe vapier

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : vapier
Project : e17
Module  : apps/enscribe

Dir : e17/apps/enscribe


Modified Files:
configure.in 


Log Message:
switch from -config scripts to pkg-config .pc files

===
RCS file: /cvs/e/e17/apps/enscribe/configure.in,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- configure.in11 Jun 2006 10:23:44 -  1.6
+++ configure.in26 Aug 2007 22:41:01 -  1.7
@@ -77,59 +77,10 @@
 packagesrcdir=`cd $srcdir  pwd`
 AC_DEFINE_UNQUOTED(PACKAGE_SOURCE_DIR, ${packagesrcdir}, 
[PACKAGE_SOURCE_DIR])
 
-# add your required libs / include here
-#my_includes=`evas-config --cflags` `ecore-config --cflags` `edje-config 
--cflags` `esmart-config --cflags`
-#my_libs=`evas-config --libs` `ecore-config --libs` `edje-config --libs` 
`esmart-config --libs` ${LIBS}
-#AC_SUBST(my_includes)
-#AC_SUBST(my_libs)
-
-PROG=esmart-config;
-AC_PATH_PROG(ESMART_CONFIG, $PROG, , $PATH)
-if test -z $ESMART_CONFIG ; then
-  echo $PROG  is not in your \$PATH. Please ensure it is.;
-  echo Read the manual page for you shell as to how to extend your path.;
-  AC_MSG_ERROR(Cannot find $PROG)
-fi
-esmart_cflags=`$ESMART_CONFIG --cflags`
-esmart_libs=`$ESMART_CONFIG --libs`
-AC_SUBST(esmart_cflags)
-AC_SUBST(esmart_libs)
-
-PROG=evas-config;
-AC_PATH_PROG(EVAS_CONFIG, $PROG, , $PATH)
-if test -z $EVAS_CONFIG ; then
-  echo $PROG  is not in your \$PATH. Please ensure it is.;
-  echo Read the manual page for you shell as to how to extend your path.;
-  AC_MSG_ERROR(Cannot find $PROG)
-fi
-evas_cflags=`$EVAS_CONFIG --cflags`
-evas_libs=`$EVAS_CONFIG --libs`
-AC_SUBST(evas_cflags)
-AC_SUBST(evas_libs)
-
-PROG=ecore-config;
-AC_PATH_PROG(ECORE_CONFIG, $PROG, , $PATH)
-if test -z $ECORE_CONFIG ; then
-  echo $PROG  is not in your \$PATH. Please ensure it is.;
-  echo Read the manual page for you shell as to how to extend your path.;
-  AC_MSG_ERROR(Cannot find $PROG)
-fi
-ecore_cflags=`$ECORE_CONFIG --cflags`
-ecore_libs=`$ECORE_CONFIG --libs`
-AC_SUBST(ecore_cflags)
-AC_SUBST(ecore_libs)
-
-PROG=edje-config;
-AC_PATH_PROG(EDJE_CONFIG, $PROG, , $PATH)
-if test -z $EDJE_CONFIG ; then
-  echo $PROG  is not in your \$PATH. Please ensure it is.;
-  echo Read the manual page for you shell as to how to extend your path.;
-  AC_MSG_ERROR(Cannot find $PROG)
-fi
-edje_cflags=`$EDJE_CONFIG --cflags`
-edje_libs=`$EDJE_CONFIG --libs`
-AC_SUBST(edje_cflags)
-AC_SUBST(edje_libs)
+PKG_CHECK_MODULES(ESMART, [esmart_textarea])
+PKG_CHECK_MODULES(EVAS, [evas])
+PKG_CHECK_MODULES(ECORE, [ecore])
+PKG_CHECK_MODULES(EDJE, [edje])
 
 
 AC_OUTPUT([



-
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


E CVS: epbb vapier

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : vapier
Project : misc
Module  : epbb

Dir : misc/epbb/src/bin


Modified Files:
Makefile.am 


Log Message:
switch from -config scripts to pkg-config .pc files

===
RCS file: /cvs/e/misc/epbb/src/bin/Makefile.am,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- Makefile.am 21 Jan 2004 21:48:59 -  1.2
+++ Makefile.am 26 Aug 2007 22:44:05 -  1.3
@@ -2,9 +2,9 @@
 
 INCLUDES = \
-Wall -I../lib \
-   @evas_cflags@ \
-   @ecore_cflags@ \
-   @edje_cflags@ \
+   @EVAS_CFLAGS@ \
+   @ECORE_CFLAGS@ \
+   @EDJE_CFLAGS@ \
@pbb_cflags@
 
 bin_PROGRAMS = epbb
@@ -14,8 +14,8 @@
 main.c
 
 epbb_LDADD = \
[EMAIL PROTECTED]@ \
[EMAIL PROTECTED]@ \
[EMAIL PROTECTED]@ \
[EMAIL PROTECTED]@ \
[EMAIL PROTECTED]@ \
[EMAIL PROTECTED]@ \
 @pbb_libs@ \
--lm -lc
+-lm



-
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


E CVS: epbb vapier

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : vapier
Project : misc
Module  : epbb

Dir : misc/epbb


Modified Files:
configure.in 


Log Message:
switch from -config scripts to pkg-config .pc files

===
RCS file: /cvs/e/misc/epbb/configure.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- configure.in25 Aug 2006 07:13:19 -  1.3
+++ configure.in26 Aug 2007 22:44:05 -  1.4
@@ -64,47 +64,9 @@
 packagesrcdir=`cd $srcdir  pwd`
 AC_DEFINE_UNQUOTED(PACKAGE_SOURCE_DIR, ${packagesrcdir}, [Source code 
directory])
 
-PROG=evas-config;
-AC_PATH_PROG(EVAS_CONFIG, $PROG, , $PATH)
-if test -z $EVAS_CONFIG ; then
-  AC_MSG_ERROR([
-  $PROG is not in your \$PATH. Please ensure it is.
-  Read the manual page for you shell as to how to extend your path.
-  FATAL ERROR. ABORT.
-  ])
-fi
-evas_cflags=`$EVAS_CONFIG --cflags`
-evas_libs=`$EVAS_CONFIG --libs`
-AC_SUBST(evas_cflags)
-AC_SUBST(evas_libs)
-
-PROG=ecore-config;
-AC_PATH_PROG(ECORE_CONFIG, $PROG, , $PATH)
-if [ test -z $ECORE_CONFIG ]; then
-  AC_MSG_ERROR([
-  $PROG is not in your \$PATH. Please ensure it is.
-  Read the manual page for you shell as to how to extend your path.
-  FATAL ERROR. ABORT.
-  ])
-fi
-ecore_cflags=`$ECORE_CONFIG --cflags`
-ecore_libs=`$ECORE_CONFIG --libs`
-AC_SUBST(ecore_cflags)
-AC_SUBST(ecore_libs)
-
-PROG=edje-config;
-AC_PATH_PROG(EDJE_CONFIG, $PROG, , $PATH)
-if [ test -z $EDJE_CONFIG ]; then
-  AC_MSG_ERROR([
-  $PROG is not in your \$PATH. Please ensure it is.
-  Read the manual page for you shell as to how to extend your path.
-  FATAL ERROR. ABORT.
-  ])
-fi
-edje_cflags=`$EDJE_CONFIG --cflags`
-edje_libs=`$EDJE_CONFIG --libs`
-AC_SUBST(edje_cflags)
-AC_SUBST(edje_libs)
+PKG_CHECK_MODULES(EVAS, [evas])
+PKG_CHECK_MODULES(ECORE, [ecore])
+PKG_CHECK_MODULES(EDJE, [edje])
 
 pbb_cflags=
 pbb_libs=



-
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


E CVS: epbb vapier

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : vapier
Project : misc
Module  : epbb

Dir : misc/epbb


Modified Files:
TODO 


Log Message:
incorrect pointer needs fixing

===
RCS file: /cvs/e/misc/epbb/TODO,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -3 -r1.1.1.1 -r1.2
--- TODO20 Jan 2004 10:19:36 -  1.1.1.1
+++ TODO26 Aug 2007 22:45:56 -  1.2
@@ -1 +1,3 @@
 Still left TODO
+
+main.c incorrectly casts (char*) to (struct pbbmessage*)



-
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


E CVS: proto/python-efl barbieri

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : barbieri
Project : e17
Module  : proto/python-efl

Dir : e17/proto/python-efl/python-edje/examples/evas-demo/02-vkbd


Modified Files:
02-vkbd.py 


Log Message:
Fix bug introduced with change to decorators.

===
RCS file: 
/cvs/e/e17/proto/python-efl/python-edje/examples/evas-demo/02-vkbd/02-vkbd.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- 02-vkbd.py  15 Aug 2007 15:09:10 -  1.2
+++ 02-vkbd.py  27 Aug 2007 00:21:15 -  1.3
@@ -147,7 +147,7 @@
 
 @edje.decorators.signal_callback(mouse,down,1,*, *)
 def on_edje_signal_mouse_down_multiple_key(self, emission, source):
-self.on_edje_signal_mouse_down_key(emission, source)
+self.on_edje_signal_mouse_down_key(self, emission, source)
 
 @edje.decorators.signal_callback(mouse,up,1, *)
 def on_edje_signal_mouse_up_key(self, emission, source):



-
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


E CVS: apps/e ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_mouse_cursor


Modified Files:
module.desktop.in 


Log Message:
Add comments to several of the default E config panel modules.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_mouse_cursor/module.desktop.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- module.desktop.in   8 Jul 2007 03:57:52 -   1.1
+++ module.desktop.in   27 Aug 2007 02:00:56 -  1.2
@@ -2,3 +2,4 @@
 Type=Link
 Name=Configuration - Mouse Cursor
 Icon=e-module-conf_mouse_cursor
+Comment=hilightE17 Configuration Applet/hilightbrSelect the mouse cursor 
style.



-
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


E CVS: apps/e ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_clientlist


Modified Files:
module.desktop.in 


Log Message:
Add comments to several of the default E config panel modules.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_clientlist/module.desktop.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- module.desktop.in   29 Jul 2007 03:25:33 -  1.1
+++ module.desktop.in   27 Aug 2007 02:00:53 -  1.2
@@ -2,3 +2,4 @@
 Type=Link
 Name=Configuration - Client List Menu
 Icon=e-module-conf_clientlist
+Comment=hilightE17 Configuration Applet/hilightbrAllows customization of 
the clientbrlist menu.



-
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


E CVS: apps/e ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_colors


Modified Files:
module.desktop.in 


Log Message:
Add comments to several of the default E config panel modules.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_colors/module.desktop.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- module.desktop.in   7 Jul 2007 15:44:01 -   1.1
+++ module.desktop.in   27 Aug 2007 02:00:54 -  1.2
@@ -2,3 +2,4 @@
 Type=Link
 Name=Configuration - Colors
 Icon=e-module-conf_colors
+Comment=hilightE17 Configuration Applet/hilightbrUsed to customize the 
color classes.



-
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


E CVS: apps/e ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_desklock


Modified Files:
module.desktop.in 


Log Message:
Add comments to several of the default E config panel modules.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_desklock/module.desktop.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- module.desktop.in   28 Jul 2007 03:50:14 -  1.1
+++ module.desktop.in   27 Aug 2007 02:00:54 -  1.2
@@ -2,3 +2,4 @@
 Type=Link
 Name=Configuration - Screen Lock
 Icon=e-module-conf_desklock
+Comment=hilightE17 Configuration Applet/hilightbrConfigures the 
integrated desk lock.



-
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


E CVS: apps/e ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_desks


Modified Files:
module.desktop.in 


Log Message:
Add comments to several of the default E config panel modules.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_desks/module.desktop.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- module.desktop.in   28 Jul 2007 03:50:14 -  1.1
+++ module.desktop.in   27 Aug 2007 02:00:54 -  1.2
@@ -2,3 +2,4 @@
 Type=Link
 Name=Configuration - Virtual Desktops
 Icon=e-module-conf_desks
+Comment=hilightE17 Configuration Applet/hilightbrConfigure the the 
virtual desktopbrproperties.



-
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


E CVS: apps/e ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_dialogs


Modified Files:
module.desktop.in 


Log Message:
Add comments to several of the default E config panel modules.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_dialogs/module.desktop.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- module.desktop.in   29 Jul 2007 06:58:23 -  1.1
+++ module.desktop.in   27 Aug 2007 02:00:54 -  1.2
@@ -2,3 +2,4 @@
 Type=Link
 Name=Configuration - Dialogs
 Icon=e-module-conf_dialogs
+Comment=hilightE17 Configuration Applet/hilightbrConfigure default 
dialog properties.



-
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


E CVS: apps/e ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_engine


Modified Files:
module.desktop.in 


Log Message:
Add comments to several of the default E config panel modules.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_engine/module.desktop.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- module.desktop.in   3 Aug 2007 22:44:21 -   1.1
+++ module.desktop.in   27 Aug 2007 02:00:54 -  1.2
@@ -2,3 +2,4 @@
 Type=Link
 Name=Configuration - Engine
 Icon=e-module-conf_engine
+Comment=hilightE17 Configuration Applet/hilightbrUsed to select the 
rendering engine.



-
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


E CVS: apps/e ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_borders


Modified Files:
module.desktop.in 


Log Message:
Add comments to several of the default E config panel modules.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_borders/module.desktop.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- module.desktop.in   8 Jul 2007 03:57:51 -   1.1
+++ module.desktop.in   27 Aug 2007 02:00:53 -  1.2
@@ -2,3 +2,4 @@
 Type=Link
 Name=Configuration - Borders
 Icon=e-module-conf_borders
+Comment=hilightE17 Configuration Applet/hilightbrUsed to select a 
default borderbrstyle.



-
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


E CVS: apps/e ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_exebuf


Modified Files:
module.desktop.in 


Log Message:
Add comments to several of the default E config panel modules.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_exebuf/module.desktop.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- module.desktop.in   29 Jul 2007 06:58:23 -  1.1
+++ module.desktop.in   27 Aug 2007 02:00:54 -  1.2
@@ -2,3 +2,4 @@
 Type=Link
 Name=Configuration - Run Command
 Icon=e-module-conf_exebuf
+Comment=hilightE17 Configuration Applet/hilightbrUsed to configure the 
settings ofbrthe run command GUI.



-
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


E CVS: apps/e ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_desk


Modified Files:
module.desktop.in 


Log Message:
Add comments to several of the default E config panel modules.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_desk/module.desktop.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- module.desktop.in   28 Jul 2007 03:50:14 -  1.1
+++ module.desktop.in   27 Aug 2007 02:00:54 -  1.2
@@ -2,3 +2,4 @@
 Type=Link
 Name=Configuration - Desk
 Icon=e-module-conf_desk
+Comment=hilightE17 Configuration Applet (internal)/hilightbrUsed to 
configure the desktop namebrand wallpaper for individualbrvirtual desktops.



-
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


E CVS: apps/e ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_imc


Modified Files:
module.desktop.in 


Log Message:
Add comments to several of the default E config panel modules.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_imc/module.desktop.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- module.desktop.in   13 Jul 2007 22:33:48 -  1.1
+++ module.desktop.in   27 Aug 2007 02:00:55 -  1.2
@@ -2,3 +2,4 @@
 Type=Link
 Name=Configuration - Input Methods
 Icon=e-module-conf_imc
+Comment=hilightE17 Configuration Applet/hilightbrUsed to select an input 
method.



-
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


E CVS: apps/e ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_keybindings


Modified Files:
module.desktop.in 


Log Message:
Add comments to several of the default E config panel modules.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_keybindings/module.desktop.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- module.desktop.in   29 Jul 2007 02:12:50 -  1.1
+++ module.desktop.in   27 Aug 2007 02:00:55 -  1.2
@@ -2,3 +2,4 @@
 Type=Link
 Name=Configuration - Key Bindings
 Icon=e-module-conf_keybindings
+Comment=hilightE17 Configuration Applet/hilightbrConfigure your 
keybindings here.



-
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


E CVS: apps/e ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_intl


Modified Files:
module.desktop.in 


Log Message:
Add comments to several of the default E config panel modules.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_intl/module.desktop.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- module.desktop.in   13 Jul 2007 22:33:48 -  1.1
+++ module.desktop.in   27 Aug 2007 02:00:55 -  1.2
@@ -2,3 +2,4 @@
 Type=Link
 Name=Configuration - Language
 Icon=e-module-conf_intl
+Comment=hilightE17 Configuration Applet/hilightbrUsed to select a 
default language.



-
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


E CVS: apps/e ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_dpms


Modified Files:
module.desktop.in 


Log Message:
Add comments to several of the default E config panel modules.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_dpms/module.desktop.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- module.desktop.in   28 Jul 2007 03:50:14 -  1.1
+++ module.desktop.in   27 Aug 2007 02:00:54 -  1.2
@@ -2,3 +2,4 @@
 Type=Link
 Name=Configuration - Power Management
 Icon=e-module-conf_dpms
+Comment=hilightE17 Configuration Applet/hilightbrConfigure the DPMS 
settings of yourbrsystem.



-
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


E CVS: apps/e ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_display


Modified Files:
module.desktop.in 


Log Message:
Add comments to several of the default E config panel modules.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_display/module.desktop.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- module.desktop.in   28 Jul 2007 03:50:14 -  1.1
+++ module.desktop.in   27 Aug 2007 02:00:54 -  1.2
@@ -2,3 +2,4 @@
 Type=Link
 Name=Configuration - Screen Resolution
 Icon=e-module-conf_display
+Comment=hilightE17 Configuration Applet/hilightbrUsed to configure your 
screen'sbrresolution.



-
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


E CVS: apps/e ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_mime


Modified Files:
module.desktop.in 


Log Message:
Add comments to several of the default E config panel modules.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_mime/module.desktop.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- module.desktop.in   29 Jul 2007 06:58:23 -  1.1
+++ module.desktop.in   27 Aug 2007 02:00:55 -  1.2
@@ -2,3 +2,4 @@
 Type=Link
 Name=Configuration - File Icons
 Icon=e-module-conf_mime
+Comment=hilightE17 Configuration Applet/hilightbrConfigure E17 mime 
icons.



-
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


E CVS: apps/e ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_fonts


Modified Files:
module.desktop.in 


Log Message:
Add comments to several of the default E config panel modules.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_fonts/module.desktop.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- module.desktop.in   7 Jul 2007 15:44:01 -   1.1
+++ module.desktop.in   27 Aug 2007 02:00:55 -  1.2
@@ -2,3 +2,4 @@
 Type=Link
 Name=Configuration - Fonts
 Icon=e-module-conf_fonts
+Comment=hilightE17 Configuration Applet/hilightbrFont configuration 
dialog.



-
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


E CVS: apps/e ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_mouse


Modified Files:
module.desktop.in 


Log Message:
Add comments to several of the default E config panel modules.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_mouse/module.desktop.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- module.desktop.in   29 Jul 2007 02:12:50 -  1.1
+++ module.desktop.in   27 Aug 2007 02:00:56 -  1.2
@@ -2,3 +2,4 @@
 Type=Link
 Name=Configuration - Mouse Acceleration
 Icon=e-module-conf_mouse
+Comment=hilightE17 Configuration Applet/hilightbrConfigure mouse cursor 
acceleration.



-
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


E CVS: apps/e ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_menus


Modified Files:
module.desktop.in 


Log Message:
Add comments to several of the default E config panel modules.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_menus/module.desktop.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- module.desktop.in   29 Jul 2007 03:25:34 -  1.1
+++ module.desktop.in   27 Aug 2007 02:00:55 -  1.2
@@ -2,3 +2,4 @@
 Type=Link
 Name=Configuration - Menu Settings
 Icon=e-module-conf_menus
+Comment=hilightE17 Configuration Applet/hilightbrConfigures menu 
behavior.



-
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


E CVS: apps/e ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_icon_theme


Modified Files:
module.desktop.in 


Log Message:
Add comments to several of the default E config panel modules.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_icon_theme/module.desktop.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- module.desktop.in   8 Jul 2007 03:57:52 -   1.1
+++ module.desktop.in   27 Aug 2007 02:00:55 -  1.2
@@ -2,3 +2,4 @@
 Type=Link
 Name=Configuration - Icon Theme
 Icon=e-module-conf_icon_theme
+Comment=hilightE17 Configuration Applet/hilightbrConfiguration applet 
used to selectbran icon theme for E17.



-
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


E CVS: apps/e ravenlock

2007-08-26 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ravenlock
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_int_config_modules.c 


Log Message:
Need a few more pixels in height to accomodate 4 full lines of text without a 
scrollbar.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_config_modules.c,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -3 -r1.70 -r1.71
--- e_int_config_modules.c  26 Aug 2007 14:59:58 -  1.70
+++ e_int_config_modules.c  27 Aug 2007 03:05:10 -  1.71
@@ -152,7 +152,8 @@
_fill_avail_list(cfdata);
e_widget_frametable_object_append(of, ow, 0, 0, 1, 1, 1, 1, 1, 1);
ow = e_widget_textblock_add(evas);
-   e_widget_min_size_set(ow, 200, 65);
+   e_widget_min_size_set(ow, 200, 70);
+   //e_widget_can_focus_set(ow, 0);
cfdata-o_desc = ow;
e_widget_textblock_markup_set(ow, Description: Unavailable.);
e_widget_frametable_object_append(of, ow, 0, 1, 1, 1, 1, 1, 1, 0);



-
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


  1   2   >