E CVS: calendar devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : calendar

Dir : e_modules/calendar


Modified Files:
module.desktop 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/calendar/module.desktop,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- module.desktop  18 Nov 2007 19:47:04 -  1.2
+++ module.desktop  30 Dec 2007 19:49:23 -  1.3
@@ -2,5 +2,5 @@
 Type=Link
 Name=Calendar
 Icon=e-module-calendar
-Comment=hilightCalendar Gadget/hilightbrCalendar sheet showingbrthe 
current day.
-Comment[it]=hilightModulo Calendar/hilightbrUn foglio di 
calendariobrche mostra la data attuale.
+Comment=hilightCalendar Gadget/hilightbrbrCalendar sheet showing the 
current day.
+Comment[it]=hilightModulo Calendar/hilightbrbrUn foglio di calendario 
che mostra la data attuale.



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: calendar devilhorns

2007-11-24 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : calendar

Dir : e_modules/calendar


Modified Files:
e_mod_main.h e_mod_main.c 


Log Message:
Fixes for gadcon menu breakage.

===
RCS file: /cvs/e/e_modules/calendar/e_mod_main.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- e_mod_main.h20 Nov 2007 11:19:51 -  1.3
+++ e_mod_main.h25 Nov 2007 05:05:58 -  1.4
@@ -10,7 +10,6 @@
 {
E_Module*module;
E_Config_Dialog *config_dialog;
-   E_Menu  *menu;
Evas_List   *instances;
Evas_List   *items;
 };
===
RCS file: /cvs/e/e_modules/calendar/e_mod_main.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -3 -r1.12 -r1.13
--- e_mod_main.c20 Nov 2007 11:08:10 -  1.12
+++ e_mod_main.c25 Nov 2007 05:05:58 -  1.13
@@ -38,7 +38,6 @@
 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 _cb_mouse_down(void *data, Evas *e, Evas_Object *obj, void 
*event_info);
-static void _menu_cb_post(void *data, E_Menu *m);
 
 static int days_in_month[2][12] =
 {
@@ -55,7 +54,8 @@
 static const E_Gadcon_Client_Class _gc_class = 
 {
GADCON_CLIENT_CLASS_VERSION, calendar, 
- {_gc_init, _gc_shutdown, _gc_orient, _gc_label, _gc_icon, _gc_id_new, 
NULL}
+ {_gc_init, _gc_shutdown, _gc_orient, _gc_label, _gc_icon, _gc_id_new, 
NULL},
+   E_GADCON_CLIENT_STYLE_PLAIN
 };
 
 static E_Gadcon_Client *
@@ -353,15 +353,12 @@
  {
e_gadcon_popup_toggle_pinned(inst-popup);
  }
-   if ((ev-button == 3)  (!calendar_conf-menu))
+   if ((ev-button == 3)  (!inst-gcc-menu))
  {
E_Menu *mn;
int cx, cy, cw, ch;
 
mn = e_menu_new();
-   calendar_conf-menu = mn;
-
-   e_menu_post_deactivate_callback_set(mn, _menu_cb_post, inst);
 
e_gadcon_client_util_menu_items_append(inst-gcc, mn, 0);
e_gadcon_canvas_zone_geometry_get(inst-gcc-gadcon, cx, cy, cw, 
ch);
@@ -372,14 +369,6 @@
 evas_event_feed_mouse_up(inst-gcc-gadcon-evas, ev-button,
 EVAS_BUTTON_NONE, ev-timestamp, NULL);
  } 
-}
-
-static void
-_menu_cb_post(void *data, E_Menu *m)
-{
-   if (!calendar_conf-menu) return;
-   e_object_del(E_OBJECT(calendar_conf-menu));
-   calendar_conf-menu = NULL;
 }
 
 EAPI E_Module_Api e_modapi = 



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: calendar devilhorns

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : calendar

Dir : e_modules/calendar


Modified Files:
configure.in 


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

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



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


E CVS: calendar devilhorns

2006-07-24 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : calendar

Dir : e_modules/calendar


Modified Files:
configure.in 


Log Message:
Patch from Marcus Huwe for installation on x86_64

===
RCS file: /cvs/e/e_modules/calendar/configure.in,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- configure.in10 Jun 2006 02:27:22 -  1.11
+++ configure.in25 Jul 2006 01:37:19 -  1.12
@@ -87,7 +87,7 @@
 datadir=${HOME}/.e/e/modules/${PACKAGE}
 else
 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
${prefix}/lib/enlightenment/modules/${PACKAGE}, Package installed data 
destination)
-datadir=${prefix}/lib/enlightenment/modules/${PACKAGE}
+datadir=${libdir}/enlightenment/modules/${PACKAGE}
 fi
 
 AC_PREFIX_DEFAULT(${HOME}/.e/e)



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


E CVS: calendar devilhorns

2006-07-24 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : calendar

Dir : e_modules/calendar


Modified Files:
configure.in 


Log Message:
Bad Marcus, no cookie :) . Fixed x86_64 install patch.

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



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


E CVS: calendar devilhorns

2006-06-03 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : calendar

Dir : e_modules/calendar/src


Modified Files:
e_mod_main.c e_mod_main.h 


Log Message:
Make calendar build again. (Sorry nasa, you weren't around to fix).
Not for shelf yet.


===
RCS file: /cvs/e/e_modules/calendar/src/e_mod_main.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- e_mod_main.c19 Apr 2006 12:34:04 -  1.13
+++ e_mod_main.c3 Jun 2006 13:22:42 -   1.14
@@ -5,24 +5,24 @@
 #include libintl.h

 

 /* module private routines */ 

-static Calendar *_calendar_new();
-

static void _calendar_shutdown(Calendar *calendar);
-

static int _date_cb_check(void *calendar);
-

static void _clear_dates(Calendar_Face *face);
-

static int _calendar_count;
-

static E_Config_DD *conf_edd;
-

static E_Config_DD *conf_font_edd;
-

static E_Config_DD *conf_color_edd;
+static Calendar *_calendar_new();

+

static void _calendar_shutdown(Calendar *calendar);

+

static int _date_cb_check(void *calendar);

+

static void _clear_dates(Calendar_Face *face);

+

static int _calendar_count;

+

static E_Config_DD *conf_edd;

+

static E_Config_DD *conf_font_edd;

+

static E_Config_DD *conf_color_edd;

 



EAPI E_Module_Api e_modapi = 
{ 

E_MODULE_API_VERSION, 
Calendar 

-};
+};

 


 /**  Public function ***/ 

 int 

 increment_cal_count() 

-{
-   

_calendar_count++;
-   

return _calendar_count;
-

}
+{

+   

_calendar_count++;

+   

return _calendar_count;

+

}

 


 / public module routines. all modules must have these 
***/ 

 /***

@@ -34,31 +34,30 @@
 **/ 

 EAPI void *

 e_modapi_init(E_Module *module) 

-{
-   

Calendar *calendar;
-
+{

+   

Calendar *calendar;

+




   /* Set up module's message catalogue */ 

-  bindtextdomain(PACKAGE, LOCALEDIR);
-   
bind_textdomain_codeset(PACKAGE, UTF-8);
+  bindtextdomain(PACKAGE, LOCALEDIR);

+   
bind_textdomain_codeset(PACKAGE, UTF-8);




   /* check module api version */ 

-  if (module-api-version  E_MODULE_API_VERSION)
+  if (module-api-version  E_MODULE_API_VERSION)

   


- {
+ {

 

e_error_dialog_show 

(Module API Error, 
Error initializing Module: calendar\n 

 It requires a minimum module API version of: %i.\n 

 The module API advertized by Enlightenment is: %i.\n 

-Aborting module., 
E_MODULE_API_VERSION, module-api-version);
-

return NULL;
- 

}
-   


-  /* actually init buttons */ 

-  calendar = _calendar_new();
-   

module-config_menu = calendar-config_menu;
-   

return calendar;
-

}
+Aborting module., 
E_MODULE_API_VERSION, module-api-version);

+

return NULL;

+ 

}

+   


+ /* actually init buttons */

+ calendar = _calendar_new();

+   

return calendar;

+

}

 


 /***

 / Function: 

@@ -68,21 +67,14 @@
 /** int e_modapi_shutdown(E_Module*) - Cleanup */ 

 EAPI int 

 e_modapi_shutdown(E_Module *module) 

-{
-   

Calendar *calendar;
-
-   


if (module-config_menu)
-  


- {
-

e_menu_deactivate(module-config_menu);
-

e_object_del(E_OBJECT(module-config_menu));
-

module-config_menu = NULL;
- 

}
-   


calendar = module-data;
-   

if (calendar)
-  

_calendar_shutdown(calendar);
-   


return 1;
-

}
+{

+   

Calendar *calendar;

+

+   


calendar = module-data;

+   

if (calendar)

+  

_calendar_shutdown(calendar);

+   


return 1;

+

}

 


 /***

 / Function: 

@@ -93,27 +85,13 @@
 /*ie: the calendar-conf stuff  */ 

 EAPI int 

 e_modapi_save(E_Module *module) 

-{
-   

Calendar *calendar;
-
-   


calendar = module-data;
-   

e_config_domain_save(module.calendar, conf_edd, calendar-conf);
-   

return 1;
-

}
-


-/***

-/ Function: 

-/ Purpose:  

-/

-**/ 

-/* * int e_modapi_info(E_Module*) - Setup module specific infomation */ 

-EAPI int 

-e_modapi_info(E_Module *module) 

-{
-   

module-icon_file = strdup(PACKAGE_DATA_DIR /module_icon.png);
-   

return 1;
-

}
-


+{

+   

Calendar *calendar;

+

+   


calendar = module-data;

+   

e_config_domain_save(module.calendar, conf_edd, calendar-conf);

+   

return 1;

+

}

 /***

 / Function: 

 / Purpose:  

@@ -123,10 +101,10 @@
 /* * int e_modapi_about(E_Module*). - Called when Modules' About Menu is 
invoked. */ 

 EAPI int 

 e_modapi_about(E_Module *module) 

-{
-   

e_error_dialog_show(D_(Enlightenment calendar Module), 

D_(A 

E CVS: calendar devilhorns

2006-06-03 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : calendar

Dir : e_modules/calendar


Modified Files:
Makefile.am 
Added Files:
module.eap 


Log Message:
Calendar should now show in module list.


===
RCS file: /cvs/e/e_modules/calendar/Makefile.am,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- Makefile.am 16 Mar 2006 20:56:09 -  1.3
+++ Makefile.am 3 Jun 2006 13:49:17 -   1.4
@@ -8,4 +8,5 @@
   stamp-h.in
 
 
-EXTRA_DIST = README AUTHORS COPYING COPYING-PLAIN e_modules-calendar.spec 
e_modules-calendar.spec.in
+EXTRA_DIST = README AUTHORS COPYING COPYING-PLAIN e_modules-calendar.spec \
+e_modules-calendar.spec.in module.eap




___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: calendar devilhorns

2006-06-03 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : calendar

Dir : e_modules/calendar/src


Modified Files:
Makefile.am 


Log Message:
Ok, now calendar shows in module list.


===
RCS file: /cvs/e/e_modules/calendar/src/Makefile.am,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- Makefile.am 21 Jan 2006 17:57:44 -  1.3
+++ Makefile.am 3 Jun 2006 14:05:20 -   1.4
@@ -9,7 +9,8 @@
 filesdir = $(datadir)
 files_DATA = \
 NoImage_icon.png \
-module_icon.png 
+module_icon.png \
+../module.eap
 
 EXTRA_DIST = $(files_DATA)
 




___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: calendar devilhorns

2006-05-24 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : calendar

Dir : e_modules/calendar/po


Added Files:
ru.po 


Log Message:
Added Russian translation from achernok :)





---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: calendar devilhorns

2006-05-24 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : calendar

Dir : e_modules/calendar


Modified Files:
configure.in 


Log Message:
Added Russian translation from achernok :)

===
RCS file: /cvs/e/e_modules/calendar/configure.in,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- configure.in13 May 2006 01:46:31 -  1.9
+++ configure.in24 May 2006 20:07:26 -  1.10
@@ -17,7 +17,7 @@
 AM_ENABLE_SHARED
 AM_PROG_LIBTOOL
 
-ALL_LINGUAS=bg fi it ja sv
+ALL_LINGUAS=bg fi it ja sv ru
 AC_SUBST(ALL_LINGUAS)
 
 AM_GNU_GETTEXT([external])




---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: calendar devilhorns

2005-12-18 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : calendar

Dir : e_modules/calendar


Removed Files:
aclocal.m4 


Log Message:
Removed from calendar directory, not needed in cvs tree.





---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: calendar devilhorns

2005-12-18 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : calendar

Dir : e_modules/calendar


Removed Files:
Makefile.in configure configure.in depcomp install-sh 
ltmain.sh mkinstalldirs 


Log Message:
Remove not needed files from calendar directory




---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: calendar devilhorns

2005-12-18 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : calendar

Dir : e_modules/calendar/src


Removed Files:
Makefile.in 


Log Message:
Remove not needed files from calendar directory




---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: calendar devilhorns

2005-12-18 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : calendar

Dir : e_modules/calendar/src/images


Removed Files:
Makefile.in 


Log Message:
Remove not needed files from calendar cvs




---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: calendar devilhorns

2005-12-18 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : calendar

Dir : e_modules/calendar


Modified Files:
autogen.sh 
Added Files:
configure.in 


Log Message:
Make calendar autogen correct
===
RCS file: /cvsroot/enlightenment/e_modules/calendar/autogen.sh,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- autogen.sh  19 Dec 2005 01:56:37 -  1.1
+++ autogen.sh  19 Dec 2005 02:47:35 -  1.2
@@ -1,13 +1,15 @@
 #!/bin/sh
 
 rm -rf autom4te.cache
-rm -f aclocal.m4
+rm -f aclocal.m4 ltmain.sh
 
-echo Running aclocal...; aclocal $ACLOCAL_FLAGS -I m4 \
- echo Running autoheader...; autoheader \
- echo Running autoconf...; autoconf \
- echo Running libtoolize...; (libtoolize --automake || glibtoolize 
--automake) \
- echo Running automake...; automake --add-missing --copy --gnu
+touch README
+
+echo Running aclocal... ; aclocal $ACLOCAL_FLAGS || exit 1
+echo Running autoheader... ; autoheader || exit 1
+echo Running autoconf... ; autoconf || exit 1
+echo Running libtoolize... ; (libtoolize --copy --automake || glibtoolize 
--automake) || exit 1
+echo Running automake... ; automake --add-missing --copy --gnu || exit 1
 
 if [ -z $NOCONFIGURE ]; then
./configure $@




---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs