E CVS: deskshow devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Modified Files:
module.desktop 


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

===
RCS file: /cvs/e/e_modules/deskshow/module.desktop,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- module.desktop  18 Nov 2007 19:47:05 -  1.3
+++ module.desktop  30 Dec 2007 19:49:23 -  1.4
@@ -2,5 +2,5 @@
 Type=Link
 Name=Deskshow
 Icon=e-module-deskshow
-Comment=Deskshow GadgetGadget to allow you to 
quicklyuncover your desktop.
-Comment[it]=Modulo DeskshowModulo che consente 
discoprire rapidamente ildesktop.
+Comment=Deskshow GadgetGadget to allow you to 
quickly uncover your desktop.
+Comment[it]=Modulo DeskshowModulo che consente di 
scoprire rapidamente il desktop.



-
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: deskshow devilhorns

2007-10-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Modified Files:
e_mod_main.c e_mod_main.h 


Log Message:
Fix deskshow for recent api changes.

===
RCS file: /cvs/e/e_modules/deskshow/e_mod_main.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -3 -r1.20 -r1.21
--- e_mod_main.c16 Sep 2007 03:31:40 -  1.20
+++ e_mod_main.c31 Oct 2007 15:31:21 -  1.21
@@ -186,12 +186,3 @@
 {
   return 1;
 }
-
-EAPI int
-e_modapi_about (E_Module * m)
-{
-  e_module_dialog_show (m, _("Enlightenment Deskshow Module"),
-   _
-   ("This module will allow you to show your desktop if it 
is covered with windows."));
-  return 1;
-}
===
RCS file: /cvs/e/e_modules/deskshow/e_mod_main.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- e_mod_main.h6 Jun 2006 15:27:45 -   1.3
+++ e_mod_main.h31 Oct 2007 15:31:21 -  1.4
@@ -9,6 +9,5 @@
 EAPI void *e_modapi_init (E_Module *m);
 EAPI int   e_modapi_shutdown (E_Module *m);
 EAPI int   e_modapi_save (E_Module *m);
-EAPI int   e_modapi_about(E_Module *m);
 
 #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: deskshow devilhorns

2007-04-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Modified Files:
configure.in 


Log Message:
Patches from Lutin for pkg-config.

===
RCS file: /cvs/e/e_modules/deskshow/configure.in,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- configure.in4 Feb 2007 02:48:57 -   1.6
+++ configure.in25 Apr 2007 09:11:15 -  1.7
@@ -85,22 +85,9 @@
 #AC_CHECK_LIB(dl, dlopen, dlopen_libs=-ldl)
 #AC_SUBST(dlopen_libs)
 
-AC_ARG_WITH(edje-config,
-[  --with-edje-config=EDJE_CONFIG  use edje-config specified ],
-[
-  EDJE_CONFIG=$withval;
-  echo "using "$EDJE_CONFIG" for edje-config";
-/
-],[
-  PROG="edje-config";
-  AC_PATH_PROG(EDJE_CONFIG, $PROG, "", $PATH)
-])
-edje_cflags=`$EDJE_CONFIG --cflags`
-edje_libs=`$EDJE_CONFIG --libs`
-AC_SUBST(edje_cflags)
-AC_SUBST(edje_libs)
+PKG_CHECK_MODULES(EDJE, [edje >= 0.5.0])
 
-edje_cc="`$EDJE_CONFIG --prefix`/bin/edje_cc"
+edje_cc="$(pkg-config --variable=prefix edje)/bin/edje_cc"
 AC_ARG_WITH(edje-cc,
 [  --with-edje-cc=PATH  specify a specific path to edje_cc],
 [
@@ -108,7 +95,7 @@
   edje_cc=$v
   echo "  Enlightenment edje_cc explicitly set to "$edje_cc;
 ],[
-  edje_cc="`$EDJE_CONFIG --prefix`/bin/edje_cc"
+  edje_cc="$(pkg-config --variable=prefix edje)/bin/edje_cc"
 ])
 AC_SUBST(edje_cc)
 



-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: deskshow devilhorns

2006-09-18 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Modified Files:
e_mod_main.c 


Log Message:
Remove unused variable and some formatting.

===
RCS file: /cvs/e/e_modules/deskshow/e_mod_main.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -3 -r1.14 -r1.15
--- e_mod_main.c18 Sep 2006 14:07:55 -  1.14
+++ e_mod_main.c18 Sep 2006 15:00:04 -  1.15
@@ -130,12 +130,7 @@
 
   zone = e_util_zone_current_get (e_manager_current_get ());
   if (zone)
-   {
-  e_desk_deskshow(zone);
-   }
-
-//  evas_event_feed_mouse_up(inst->gcc->gadcon->evas, ev->button,
-//   EVAS_BUTTON_NONE, ev->timestamp, NULL);
+e_desk_deskshow(zone);
 }
 }
 
@@ -145,7 +140,6 @@
E_Event_Desk_Show *ev;
E_Desk *desk;
Instance *inst;
-   Evas *evas;

inst = data;
ev = event;



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: deskshow devilhorns

2006-09-18 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Modified Files:
e_mod_main.c 


Log Message:
Remove the handlers on gc_shutdown so they can be recreated on a shelf param
change with the proper inst reference. Nice one metrics :)

===
RCS file: /cvs/e/e_modules/deskshow/e_mod_main.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- e_mod_main.c17 Sep 2006 14:07:48 -  1.13
+++ e_mod_main.c18 Sep 2006 14:07:55 -  1.14
@@ -49,6 +49,7 @@
 
   snprintf (buf, sizeof (buf), "%s/deskshow.edj",
e_module_dir_get (desk_module));
+   
   o = edje_object_add (gc->evas);
   if (!e_theme_edje_object_set
   (o, "base/theme/modules/deskshow", "modules/deskshow/main"))
@@ -81,8 +82,13 @@
   Instance *inst;
 
   inst = gcc->data;
+  while (handlers) 
+{
+   ecore_event_handler_del(handlers->data);
+   handlers = evas_list_remove_list(handlers, handlers);
+}
   evas_object_del (inst->o_button);
-  free (inst);
+  E_FREE (inst);
 }
 
 static void
@@ -139,11 +145,12 @@
E_Event_Desk_Show *ev;
E_Desk *desk;
Instance *inst;
-
+   Evas *evas;
+   
inst = data;
ev = event;
desk = ev->desk;
-
+   
if (desk->deskshow_toggle)
  edje_object_signal_emit(inst->o_button, "active", "");
else
@@ -168,11 +175,6 @@
 e_modapi_shutdown (E_Module * m)
 {
   desk_module = NULL;
-  while (handlers) 
-{
-   ecore_event_handler_del(handlers->data);
-   handlers = evas_list_remove_list(handlers, handlers);
-}
   e_gadcon_provider_unregister (&_gadcon_class);
   return 1;
 }



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: deskshow devilhorns

2006-09-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Modified Files:
Makefile.am 


Log Message:
Added make uninstall rule

===
RCS file: /cvs/e/e_modules/deskshow/Makefile.am,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -3 -r1.12 -r1.13
--- Makefile.am 15 Jul 2006 13:05:58 -  1.12
+++ Makefile.am 2 Sep 2006 12:36:54 -   1.13
@@ -42,3 +42,5 @@
 
 clean-local:
 rm -rf *.edj *~
+uninstall:
+   rm -rf $(datadir)



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: deskshow devilhorns

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Modified Files:
configure.in 


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

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



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


E CVS: deskshow devilhorns

2006-07-24 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Modified Files:
configure.in 


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

===
RCS file: /cvs/e/e_modules/deskshow/configure.in,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- configure.in25 Jul 2006 01:37:48 -  1.2
+++ configure.in25 Jul 2006 03:50:14 -  1.3
@@ -81,7 +81,7 @@
 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${HOME}/.e/e/modules/${PACKAGE}", 
"Package installed data destination")
 datadir="${HOME}/.e/e/modules/${PACKAGE}"
 else
-AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
"${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.php&p=sourceforge&CID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: deskshow devilhorns

2006-07-24 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Modified Files:
configure.in 


Log Message:
Patch from Marcus Huwe for installation on x86_64

===
RCS file: /cvs/e/e_modules/deskshow/configure.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- configure.in3 Jun 2006 11:44:38 -   1.1
+++ configure.in25 Jul 2006 01:37:48 -  1.2
@@ -82,7 +82,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_CHECK_LIB(dl, dlopen, dlopen_libs=-ldl)



-
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.php&p=sourceforge&CID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: deskshow devilhorns

2006-07-17 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Modified Files:
e_mod_config.c e_mod_main.c 


Log Message:
Indent.

===
RCS file: /cvs/e/e_modules/deskshow/e_mod_config.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- e_mod_config.c  3 Jun 2006 11:44:38 -   1.1
+++ e_mod_config.c  17 Jul 2006 23:57:20 -  1.2
@@ -4,308 +4,340 @@
 
 struct _E_Config_Dialog_Data
 {
-   int method;
-   int use_import;
-   int use_scrot;
-   double delay_time;
-   char *location;
-   char *filename;
-   struct
-   {
-  int use_img_border;
-  int use_dither;
-  int use_frame;
-  int use_window;
-  int use_silent;
-  int use_trim;
-   } import;
-   struct
-   {
-  int use_img_border;
-  int use_thumb;
-   } scrot;
-   int use_app;
-   char *app;
+  int method;
+  int use_import;
+  int use_scrot;
+  double delay_time;
+  char *location;
+  char *filename;
+  struct
+  {
+int use_img_border;
+int use_dither;
+int use_frame;
+int use_window;
+int use_silent;
+int use_trim;
+  } import;
+  struct
+  {
+int use_img_border;
+int use_thumb;
+  } scrot;
+  int use_app;
+  char *app;
 };
 
 /* Protos */
-static void *_create_data(E_Config_Dialog *cfd);
-static void _free_data(E_Config_Dialog *cfd, E_Config_Dialog_Data *cfdata);
-static Evas_Object *_basic_create_widgets(E_Config_Dialog *cfd, Evas *evas, 
E_Config_Dialog_Data *cfdata);
-static int _basic_apply_data(E_Config_Dialog *cfd, E_Config_Dialog_Data 
*cfdata);
-static Evas_Object *_advanced_create_widgets(E_Config_Dialog *cfd, Evas *evas, 
E_Config_Dialog_Data *cfdata);
-static int _advanced_apply_data(E_Config_Dialog *cfd, E_Config_Dialog_Data 
*cfdata);
+static void *_create_data (E_Config_Dialog * cfd);
+static void _free_data (E_Config_Dialog * cfd, E_Config_Dialog_Data * cfdata);
+static Evas_Object *_basic_create_widgets (E_Config_Dialog * cfd, Evas * evas,
+  E_Config_Dialog_Data * cfdata);
+static int _basic_apply_data (E_Config_Dialog * cfd,
+ E_Config_Dialog_Data * cfdata);
+static Evas_Object *_advanced_create_widgets (E_Config_Dialog * cfd,
+ Evas * evas,
+ E_Config_Dialog_Data * cfdata);
+static int _advanced_apply_data (E_Config_Dialog * cfd,
+E_Config_Dialog_Data * cfdata);
 
 /* Config Calls */
 void
-_config_screenshot_module(Config_Item *ci)
+_config_screenshot_module (Config_Item * ci)
 {
-   E_Config_Dialog *cfd;
-   E_Config_Dialog_View *v;
-   E_Container *con;
-   
-   v = E_NEW(E_Config_Dialog_View, 1);
-
-   /* methods */
-   v->create_cfdata = _create_data;
-   v->free_cfdata = _free_data;
-   v->basic.apply_cfdata = _basic_apply_data;
-   v->basic.create_widgets = _basic_create_widgets;
-   v->advanced.apply_cfdata = _advanced_apply_data;
-   v->advanced.create_widgets = _advanced_create_widgets;
-
-   /* create config diaolg */
-   con = e_container_current_get(e_manager_current_get());
-   cfd = e_config_dialog_new(con, D_("Screenshot Configuration"), NULL, 0, v, 
ci);
-   ss_config->config_dialog = cfd;
+  E_Config_Dialog *cfd;
+  E_Config_Dialog_View *v;
+  E_Container *con;
+
+  v = E_NEW (E_Config_Dialog_View, 1);
+
+  /* methods */
+  v->create_cfdata = _create_data;
+  v->free_cfdata = _free_data;
+  v->basic.apply_cfdata = _basic_apply_data;
+  v->basic.create_widgets = _basic_create_widgets;
+  v->advanced.apply_cfdata = _advanced_apply_data;
+  v->advanced.create_widgets = _advanced_create_widgets;
+
+  /* create config diaolg */
+  con = e_container_current_get (e_manager_current_get ());
+  cfd =
+e_config_dialog_new (con, D_ ("Screenshot Configuration"), NULL, 0, v,
+ci);
+  ss_config->config_dialog = cfd;
 }
 
 static void
-_fill_data(Config_Item *ci, E_Config_Dialog_Data *cfdata)
+_fill_data (Config_Item * ci, E_Config_Dialog_Data * cfdata)
 {
-   if (ci->use_import == 1)
- cfdata->method = 0;
-   else if (ci->use_scrot == 1)
- cfdata->method = 1;
-
-   cfdata->delay_time = ci->delay_time;
-   
-   cfdata->location = NULL;
-   if (ci->location != NULL)
- cfdata->location = strdup(ci->location);
-
-   cfdata->filename = NULL;   
-   if (ci->filename != NULL)
- cfdata->filename = strdup(ci->filename);
-
-   cfdata->use_app = ci->use_app;
-   cfdata->app = NULL;
-   if (ci->app != NULL)
- cfdata->app = strdup(ci->app);
-   
-   cfdata->import.use_img_border = ci->import.use_img_border;
-   cfdata->import.use_dither = ci->import.use_dither;
-   cfdata->import.use_frame = ci->import.use_frame;
-   cfdata->import.use_window = ci->import.use_window;
-   cfdata->import.use_silent = ci->import.use_silent;
-   cfdata->import.use_trim = ci->import.use_trim;
-

E CVS: deskshow devilhorns

2006-07-15 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Modified Files:
Makefile.am 


Log Message:
Fix for make distcheck and bsd.

===
RCS file: /cvs/e/e_modules/deskshow/Makefile.am,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- Makefile.am 15 Jul 2006 00:25:18 -  1.11
+++ Makefile.am 15 Jul 2006 13:05:58 -  1.12
@@ -37,10 +37,8 @@
 module_la_LDFLAGS  = -module -avoid-version
 module_la_DEPENDENCIES = $(top_builddir)/config.h $(top_builddir)/deskshow.edj
 
-deskshow.edj: Makefile deskshow.edc
-$(EDJE_CC) $(EDJE_FLAGS) \
-deskshow.edc \
-deskshow.edj
+%.edj:  %.edc
+   $(EDJE_CC) $(EDJE_FLAGS) $< $@
 
 clean-local:
 rm -rf *.edj *~




-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: deskshow devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Modified Files:
Makefile.am 


Log Message:
Fix makefile.am for *bsd installing edj files.

===
RCS file: /cvs/e/e_modules/deskshow/Makefile.am,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- Makefile.am 14 Jul 2006 18:53:14 -  1.10
+++ Makefile.am 15 Jul 2006 00:25:18 -  1.11
@@ -37,8 +37,10 @@
 module_la_LDFLAGS  = -module -avoid-version
 module_la_DEPENDENCIES = $(top_builddir)/config.h $(top_builddir)/deskshow.edj
 
-%.edj:  %.edc
-   $(EDJE_CC) $(EDJE_FLAGS) $< $@
+deskshow.edj: Makefile deskshow.edc
+$(EDJE_CC) $(EDJE_FLAGS) \
+deskshow.edc \
+deskshow.edj
 
 clean-local:
 rm -rf *.edj *~




-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: deskshow devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Modified Files:
Makefile.am 


Log Message:
Remove autogen.sh from make distcheck.

===
RCS file: /cvs/e/e_modules/deskshow/Makefile.am,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- Makefile.am 14 Jul 2006 18:22:07 -  1.9
+++ Makefile.am 14 Jul 2006 18:53:14 -  1.10
@@ -20,8 +20,7 @@
e17_titlebar_glint3.png \
e17_titlebar_shadow1.png \
e17_titlebar_shadow2.png \
-   VeraBd.ttf \
-   autogen.sh
+   VeraBd.ttf
 
 # the module .so file
 INCLUDES = -I. \




-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: deskshow devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Modified Files:
Makefile.am 


Log Message:
Add autogen.sh to make distcheck also.

===
RCS file: /cvs/e/e_modules/deskshow/Makefile.am,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- Makefile.am 14 Jul 2006 18:20:53 -  1.8
+++ Makefile.am 14 Jul 2006 18:22:07 -  1.9
@@ -20,7 +20,8 @@
e17_titlebar_glint3.png \
e17_titlebar_shadow1.png \
e17_titlebar_shadow2.png \
-   VeraBd.ttf
+   VeraBd.ttf \
+   autogen.sh
 
 # the module .so file
 INCLUDES = -I. \




-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: deskshow devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Modified Files:
Makefile.am 


Log Message:
Make distcheck should include the font also.

===
RCS file: /cvs/e/e_modules/deskshow/Makefile.am,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- Makefile.am 14 Jul 2006 18:19:30 -  1.7
+++ Makefile.am 14 Jul 2006 18:20:53 -  1.8
@@ -19,7 +19,8 @@
e17_titlebar_glint2.png \
e17_titlebar_glint3.png \
e17_titlebar_shadow1.png \
-   e17_titlebar_shadow2.png
+   e17_titlebar_shadow2.png \
+   VeraBd.ttf
 
 # the module .so file
 INCLUDES = -I. \




-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: deskshow devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Modified Files:
Makefile.am 


Log Message:
Previous commit for make distcheck forgot to add pngs for distribute.

===
RCS file: /cvs/e/e_modules/deskshow/Makefile.am,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- Makefile.am 14 Jul 2006 17:53:42 -  1.6
+++ Makefile.am 14 Jul 2006 18:19:30 -  1.7
@@ -12,7 +12,14 @@
module.eap \
deskshow.edj
 
-EXTRA_DIST = $(files_DATA)
+EXTRA_DIST = $(files_DATA) \
+   deskshow.edc \
+   e17_titlebar.png \
+   e17_titlebar_glint1.png \
+   e17_titlebar_glint2.png \
+   e17_titlebar_glint3.png \
+   e17_titlebar_shadow1.png \
+   e17_titlebar_shadow2.png
 
 # the module .so file
 INCLUDES = -I. \




-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: deskshow devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Modified Files:
Makefile.am 


Log Message:
Fix deskshow makeables:
-make install now properly does not distribute needless pngs.
-make distcheck works properly now.


===
RCS file: /cvs/e/e_modules/deskshow/Makefile.am,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- Makefile.am 14 Jul 2006 17:48:11 -  1.5
+++ Makefile.am 14 Jul 2006 17:53:42 -  1.6
@@ -8,7 +8,9 @@
 # data files for the module
 filesdir =  $(datadir)
 
-files_DATA = module_icon.png module.eap deskshow.edj
+files_DATA = module_icon.png \
+   module.eap \
+   deskshow.edj
 
 EXTRA_DIST = $(files_DATA)
 
@@ -25,12 +27,10 @@
 
 module_la_LIBADD   = @e_libs@ -lm
 module_la_LDFLAGS  = -module -avoid-version
-module_la_DEPENDENCIES = $(top_builddir)/config.h
+module_la_DEPENDENCIES = $(top_builddir)/config.h $(top_builddir)/deskshow.edj
 
-deskshow.edj: Makefile deskshow.edc
-$(EDJE_CC) $(EDJE_FLAGS) \
-$(top_srcdir)/deskshow.edc \
-$(top_builddir)/deskshow.edj
+%.edj:  %.edc
+   $(EDJE_CC) $(EDJE_FLAGS) $< $@
 
 clean-local:
 rm -rf *.edj *~




-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: deskshow devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Modified Files:
Makefile.am 


Log Message:
Some make install cleanup:
 -Do not need to distribute all the images as they are contained in the
edj.

===
RCS file: /cvs/e/e_modules/deskshow/Makefile.am,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- Makefile.am 14 Jul 2006 17:20:34 -  1.4
+++ Makefile.am 14 Jul 2006 17:48:11 -  1.5
@@ -8,9 +8,9 @@
 # data files for the module
 filesdir =  $(datadir)
 
-files_DATA = module_icon.png module.eap deskshow.edj $(wildcard e17*.png)
+files_DATA = module_icon.png module.eap deskshow.edj
 
-EXTRA_DIST = $(files_DATA) deskshow.edc VeraBd.ttf
+EXTRA_DIST = $(files_DATA)
 
 # the module .so file
 INCLUDES = -I. \




-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: deskshow devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Modified Files:
Makefile.am 


Log Message:
Few more make dist fixes :)

===
RCS file: /cvs/e/e_modules/deskshow/Makefile.am,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- Makefile.am 14 Jul 2006 16:53:11 -  1.3
+++ Makefile.am 14 Jul 2006 17:20:34 -  1.4
@@ -8,7 +8,7 @@
 # data files for the module
 filesdir =  $(datadir)
 
-files_DATA = module_icon.png module.eap $(wildcard e17*.png)
+files_DATA = module_icon.png module.eap deskshow.edj $(wildcard e17*.png)
 
 EXTRA_DIST = $(files_DATA) deskshow.edc VeraBd.ttf
 
@@ -30,7 +30,7 @@
 deskshow.edj: Makefile deskshow.edc
 $(EDJE_CC) $(EDJE_FLAGS) \
 $(top_srcdir)/deskshow.edc \
-$(top_builddir)deskshow.edj
+$(top_builddir)/deskshow.edj
 
 clean-local:
 rm -rf *.edj *~




-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: deskshow devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Modified Files:
Makefile.am 


Log Message:
Fix for make dist.
-Remove deskshow.edj from files_data. Cannot distribute an edj if it doesn't
exist yet.

===
RCS file: /cvs/e/e_modules/deskshow/Makefile.am,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- Makefile.am 10 Jul 2006 15:08:45 -  1.2
+++ Makefile.am 14 Jul 2006 16:53:11 -  1.3
@@ -8,7 +8,7 @@
 # data files for the module
 filesdir =  $(datadir)
 
-files_DATA = module_icon.png module.eap deskshow.edj $(wildcard e17*.png)
+files_DATA = module_icon.png module.eap $(wildcard e17*.png)
 
 EXTRA_DIST = $(files_DATA) deskshow.edc VeraBd.ttf
 




-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: deskshow devilhorns

2006-07-10 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Modified Files:
Makefile.am 


Log Message:
Fix Makefile.am for make distcheck.

===
RCS file: /cvs/e/e_modules/deskshow/Makefile.am,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makefile.am 3 Jun 2006 11:44:38 -   1.1
+++ Makefile.am 10 Jul 2006 15:08:45 -  1.2
@@ -1,7 +1,9 @@
 MAINTAINERCLEANFILES = Makefile.in mkinstalldirs
 
 EDJE_CC = @edje_cc@
-EDJE_FLAGS = -v
+EDJE_FLAGS = -v \
+-id $(top_srcdir) \
+-fd $(top_srcdir)
 
 # data files for the module
 filesdir =  $(datadir)
@@ -27,8 +29,8 @@
 
 deskshow.edj: Makefile deskshow.edc
 $(EDJE_CC) $(EDJE_FLAGS) \
-deskshow.edc \
-deskshow.edj
+$(top_srcdir)/deskshow.edc \
+$(top_builddir)deskshow.edj
 
 clean-local:
 rm -rf *.edj *~




-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: deskshow devilhorns

2006-07-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Modified Files:
e_mod_main.c 


Log Message:
Make all active e_modules work with the new e_module_dialog_show function
change(s). If you get errors building these, update e17/apps/e .

===
RCS file: /cvs/e/e_modules/deskshow/e_mod_main.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- e_mod_main.c6 Jun 2006 15:27:45 -   1.3
+++ e_mod_main.c2 Jul 2006 19:06:08 -   1.4
@@ -180,7 +180,7 @@
 EAPI int
 e_modapi_about(E_Module *m)
 {
-   e_module_dialog_show(_("Enlightenment Deskshow Module"),
+   e_module_dialog_show(m, _("Enlightenment Deskshow Module"),
_("This module will allow you to show your desktop if 
it is covered with windows."));
return 1;
 }



Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: deskshow devilhorns

2006-06-16 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Modified Files:
COPYING 
Added Files:
COPYING-PLAIN 


Log Message:
Fix license for deskshow to Bsd.

===
RCS file: /cvs/e/e_modules/deskshow/COPYING,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- COPYING 3 Jun 2006 11:44:38 -   1.1
+++ COPYING 16 Jun 2006 15:40:35 -  1.2
@@ -1,340 +1,28 @@
-   GNU GENERAL PUBLIC LICENSE
-  Version 2, June 1991
+Copyright (C) 2000 Christopher Michael and various contributors (see AUTHORS)
 
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.
- 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-   Preamble
-
-  The licenses for most software are designed to take away your
-freedom to share and change it.  By contrast, the GNU General Public
-License is intended to guarantee your freedom to share and change free
-software--to make sure the software is free for all its users.  This
-General Public License applies to most of the Free Software
-Foundation's software and to any other program whose authors commit to
-using it.  (Some other Free Software Foundation software is covered by
-the GNU Library General Public License instead.)  You can apply it to
-your programs, too.
-
-  When we speak of free software, we are referring to freedom, not
-price.  Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-this service if you wish), that you receive source code or can get it
-if you want it, that you can change the software or use pieces of it
-in new free programs; and that you know you can do these things.
-
-  To protect your rights, we need to make restrictions that forbid
-anyone to deny you these rights or to ask you to surrender the rights.
-These restrictions translate to certain responsibilities for you if you
-distribute copies of the software, or if you modify it.
-
-  For example, if you distribute copies of such a program, whether
-gratis or for a fee, you must give the recipients all the rights that
-you have.  You must make sure that they, too, receive or can get the
-source code.  And you must show them these terms so they know their
-rights.
-
-  We protect your rights with two steps: (1) copyright the software, and
-(2) offer you this license which gives you legal permission to copy,
-distribute and/or modify the software.
-
-  Also, for each author's protection and ours, we want to make certain
-that everyone understands that there is no warranty for this free
-software.  If the software is modified by someone else and passed on, we
-want its recipients to know that what they have is not the original, so
-that any problems introduced by others will not reflect on the original
-authors' reputations.
-
-  Finally, any free program is threatened constantly by software
-patents.  We wish to avoid the danger that redistributors of a free
-program will individually obtain patent licenses, in effect making the
-program proprietary.  To prevent this, we have made it clear that any
-patent must be licensed for everyone's free use or not licensed at all.
-
-  The precise terms and conditions for copying, distribution and
-modification follow.
-
-   GNU GENERAL PUBLIC LICENSE
-   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
-  0. This License applies to any program or other work which contains
-a notice placed by the copyright holder saying it may be distributed
-under the terms of this General Public License.  The "Program", below,
-refers to any such program or work, and a "work based on the Program"
-means either the Program or any derivative work under copyright law:
-that is to say, a work containing the Program or a portion of it,
-either verbatim or with modifications and/or translated into another
-language.  (Hereinafter, translation is included without limitation in
-the term "modification".)  Each licensee is addressed as "you".
-
-Activities other than copying, distribution and modification are not
-covered by this License; they are outside its scope.  The act of
-running the Program is not restricted, and the output from the Program
-is covered only if its contents constitute a work based on the
-Program (independent of having been made by running the Program).
-Whether that is true depends on what the Program does.
-
-  1. You may copy and distribute verbatim copies of the Program's
-source code as you receive it, in any medium, provided that you
-conspicuously and appropriately publish on each copy an appropriate
-copyright notice and disclaimer of warranty; keep intact all the
-notices

E CVS: deskshow devilhorns

2006-06-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Modified Files:
README 


Log Message:
Remove bad info from README.

===
RCS file: /cvs/e/e_modules/deskshow/README,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- README  3 Jun 2006 11:44:38 -   1.1
+++ README  7 Jun 2006 18:57:00 -   1.2
@@ -1 +0,0 @@
-This module is a port of the e16 epplet E-Screenshot by Tom Gilbert.




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


E CVS: deskshow devilhorns

2006-06-06 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Modified Files:
e_mod_main.c e_mod_main.h 


Log Message:
Revert back to void for e_modapi_init.
Compiler warnings will have to stay.

===
RCS file: /cvs/e/e_modules/deskshow/e_mod_main.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- e_mod_main.c6 Jun 2006 08:54:47 -   1.2
+++ e_mod_main.c6 Jun 2006 15:27:45 -   1.3
@@ -155,7 +155,7 @@
  "Deskshow"
 };
 
-EAPI int
+EAPI void *
 e_modapi_init(E_Module *m)
 {
desk_module = m;
===
RCS file: /cvs/e/e_modules/deskshow/e_mod_main.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- e_mod_main.h6 Jun 2006 08:54:47 -   1.2
+++ e_mod_main.h6 Jun 2006 15:27:45 -   1.3
@@ -6,7 +6,7 @@
 
 EAPI extern E_Module_Api e_modapi;
 
-EAPI int   e_modapi_init (E_Module *m);
+EAPI void *e_modapi_init (E_Module *m);
 EAPI int   e_modapi_shutdown (E_Module *m);
 EAPI int   e_modapi_save (E_Module *m);
 EAPI int   e_modapi_about(E_Module *m);




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


E CVS: deskshow devilhorns

2006-06-06 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Modified Files:
e_mod_main.c e_mod_main.h 


Log Message:
Fix e_modapi_init function declaration.

===
RCS file: /cvs/e/e_modules/deskshow/e_mod_main.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- e_mod_main.c3 Jun 2006 11:44:38 -   1.1
+++ e_mod_main.c6 Jun 2006 08:54:47 -   1.2
@@ -155,7 +155,7 @@
  "Deskshow"
 };
 
-EAPI void *
+EAPI int
 e_modapi_init(E_Module *m)
 {
desk_module = m;
===
RCS file: /cvs/e/e_modules/deskshow/e_mod_main.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- e_mod_main.h3 Jun 2006 11:44:38 -   1.1
+++ e_mod_main.h6 Jun 2006 08:54:47 -   1.2
@@ -6,7 +6,7 @@
 
 EAPI extern E_Module_Api e_modapi;
 
-EAPI void *e_modapi_init (E_Module *m);
+EAPI int   e_modapi_init (E_Module *m);
 EAPI int   e_modapi_shutdown (E_Module *m);
 EAPI int   e_modapi_save (E_Module *m);
 EAPI int   e_modapi_about(E_Module *m);




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


E CVS: deskshow devilhorns

2006-06-03 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Added Files:
.cvsignore 


Log Message:
Added cvsignore for onefang :)






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


E CVS: deskshow devilhorns

2006-06-03 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Added Files:
AUTHORS COPYING ChangeLog INSTALL Makefile.am NEWS README TODO 
VeraBd.ttf autogen.sh config.h.in configure.in deskshow.edc 
e17_titlebar.png e17_titlebar_glint1.png 
e17_titlebar_glint2.png e17_titlebar_glint3.png 
e17_titlebar_shadow1.png e17_titlebar_shadow2.png 
e_mod_config.c e_mod_main.c e_mod_main.h module.eap 
module_icon.png 


Log Message:
Suggested by CodeWarrior, inspired by saturn_vk's patch, and 
snarfed from start module it's the deskshow module :) (lmao)

This module basically iconifies/uniconifies all current windows on the 
desktop to "Show Desktop".






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


E CVS: deskshow devilhorns

2006-06-03 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow




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





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