E CVS: debian kaethorn

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kaethorn
Project : e_modules
Module  : debian

Dir : e_modules/debian


Modified Files:
control emodule0-deskshow.install 
Added Files:
emodule0-photo.install 


Log Message:
emodule packaging update:
* add photo module
* fix included deskshow module files

===
RCS file: /cvs/e/e_modules/debian/control,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- control 25 Jun 2006 23:47:33 -  1.13
+++ control 14 Jul 2006 16:02:00 -  1.14
@@ -38,7 +38,7 @@
 Architecture: any
 Depends: ${shlibs:Depends}, enlightenment
 Provides: emodule-deskshow
-Description: E17 monitor module which minimizes all windows
+Description: E17 module which minimizes all windows
  An E17 module which minimizes all windows in order to show the
  desktop.
  
@@ -46,8 +46,8 @@
 Architecture: any
 Depends: ${shlibs:Depends}, enlightenment
 Provides: emodule-devian
-Description: E17 monitor module for displaying images and rss feeds
- An E17 module which displays images and rss feeds.
+Description: E17 monitor module for displaying logs and rss feeds
+ An E17 module which displays rss feeds and system logs.
  
 Package: emodule0-emu
 Architecture: any
@@ -136,6 +136,16 @@
  - configure poll interval
  - choose device.
  
+Package: emodule0-photo
+Architecture: any
+Depends: ${shlibs:Depends}, enlightenment
+Provides: emodule-photo
+Description: An E17 module for displaying pictures
+ An E17 module which displays pictures in a slideshow.
+ Some of the features are:
+ - define mouse button to trigger action
+ - actions such as set as background, show infos or open in a viewer.
+ 
 Package: emodule0-rain
 Architecture: any
 Depends: ${shlibs:Depends}, enlightenment
@@ -226,7 +236,7 @@
 
 Package: emodules0-all
 Architecture: any
-Depends: enlightenment, emodule0-bling, emodule0-calendar, emodule0-cpu, 
emodule0-deskshow, emodule0-devian, emodule0-emu, emodule0-eveil, 
emodule0-evolume, emodule0-flame, emodule0-language, emodule0-mail, 
emodule0-mbar, emodule0-mem, emodule0-moon, emodule0-net, emodule0-rain, 
emodule0-screenshot, emodule0-slideshow, emodule0-snow, emodule0-taskbar, 
emodule0-tclock, emodule0-uptime, emodule0-weather, emodule0-wlan
+Depends: enlightenment, emodule0-bling, emodule0-calendar, emodule0-cpu, 
emodule0-deskshow, emodule0-devian, emodule0-emu, emodule0-eveil, 
emodule0-evolume, emodule0-flame, emodule0-language, emodule0-mail, 
emodule0-mbar, emodule0-mem, emodule0-moon, emodule0-net, emodule0-photo, 
emodule0-rain, emodule0-screenshot, emodule0-slideshow, emodule0-snow, 
emodule0-taskbar, emodule0-tclock, emodule0-uptime, emodule0-weather, 
emodule0-wlan
 Conflicts: emodules-extra, evolume
 Provides: emodules-all
 Description: A dummy package for installing all modules for E17
@@ -247,6 +257,7 @@
  Mem : Monitors memory usage.
  Moon: Moon Clock module for Enlightenment
  Net : Network activity monitoring module.
+ Photo   : Display, view or set pictures as backgrounds.
  Rain: Displays rain on the desktop.
  Screenshot  : This module is used to take screenshots. It
supports using import and scrot. Version 0.0.2
===
RCS file: /cvs/e/e_modules/debian/emodule0-deskshow.install,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- emodule0-deskshow.install   8 Jun 2006 08:08:33 -   1.1
+++ emodule0-deskshow.install   14 Jul 2006 16:02:00 -  1.2
@@ -1,4 +1,3 @@
-debian/tmp/usr/lib/enlightenment/modules/deskshow/*.edj
 debian/tmp/usr/lib/enlightenment/modules/deskshow/*.eap
 debian/tmp/usr/lib/enlightenment/modules/deskshow/*.png
 debian/tmp/usr/lib/enlightenment/modules/deskshow/*/*.so




-
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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: proto codewarrior

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : codewarrior
Project : e17
Module  : proto

Dir : e17/proto/enhance/src/lib


Modified Files:
enhance.c 


Log Message:
patch from lok for window default width / height

===
RCS file: /cvs/e/e17/proto/enhance/src/lib/enhance.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- enhance.c   11 Jul 2006 03:16:41 -  1.8
+++ enhance.c   14 Jul 2006 16:24:32 -  1.9
@@ -576,12 +576,30 @@
PROPERTY_INT;
etk_object_properties_set(ETK_OBJECT(wid-wid), width_request, value, 
NULL);
  } 
+
+   else if(!strcmp(name, default_width))
+ {
+   IF_PARENT_CLASS(GtkWindow)
+  {
+PROPERTY_INT;
+etk_window_resize(ETK_WINDOW(wid-wid),  value, 
ETK_WINDOW(wid-wid)-height);
+  }
+ }
+   
+   else if(!strcmp(name, default_height))
+ {
+   IF_PARENT_CLASS(GtkWindow)
+  {
+PROPERTY_INT;
+etk_window_resize(ETK_WINDOW(wid-wid), 
ETK_WINDOW(wid-wid)-width, value);
+  }
+ } 

else if(!strcmp(name, stock))
  {
Etk_Stock_Id id;
PROPERTY_STR;
-
+   
_en_stock_items_hash_init();  
id = (Etk_Stock_Id)ecore_hash_get(_en_stock_items_hash, value);
etk_object_properties_set(ETK_OBJECT(wid-wid), stock_id, 
(Etk_Stock_Id)id, NULL);




-
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=lnkkid=120709bid=263057dat=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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: proto devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : proto

Dir : e17/proto/exhibit/src/bin


Modified Files:
exhibit.h 


Log Message:
Remove E_Lib.h from includes so exhibit can build again :)

===
RCS file: /cvs/e/e17/proto/exhibit/src/bin/exhibit.h,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -3 -r1.15 -r1.16
--- exhibit.h   10 Apr 2006 23:46:24 -  1.15
+++ exhibit.h   14 Jul 2006 16:56:24 -  1.16
@@ -20,10 +20,6 @@
 
 #include config.h
 
-#if HAVE_E
-#include E_Lib.h
-#endif
-
 #if HAVE_ENGRAVE
 #include Engrave.h
 #endif




-
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=lnkkid=120709bid=263057dat=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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: tclock devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : tclock

Dir : e_modules/tclock/fonts


Removed Files:
vera.ttf 


Log Message:
Remove vera.ttf from fonts as we use VeraMono for this module.





-
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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: tclock devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : tclock

Dir : e_modules/tclock


Modified Files:
Makefile.am configure.in tclock.edc 


Log Message:
Some package fixes:
 -Use VeraMono font, so remove vera font.
 -Add VeraMono to the edc so the font is included if we edje_decc.
 -Remove package_bin_dir and package_data_dir from configure as they are
not used.

===
RCS file: /cvs/e/e_modules/tclock/Makefile.am,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- Makefile.am 10 Jul 2006 17:42:52 -  1.7
+++ Makefile.am 14 Jul 2006 17:44:55 -  1.8
@@ -5,14 +5,13 @@
 EDJE_CC = @edje_cc@
 EDJE_FLAGS = -v \
 -id $(top_srcdir) \
--fd $(top_srcdir)/fonts
+-fd $(top_srcdir)
 
 filesdir = $(datadir)
 files_DATA = module_icon.png \
-   module.eap \
-   $(wildcard tclock.ed?) \
-   $(wildcard fonts/*.ttf)
-   
+module.eap \
+tclock.edj
+
 EXTRA_DIST = $(files_DATA) e_modules-tclock.spec
 CONFIG_CLEAN_FILES = e_modules-tclock.spec tclock.edj
 
===
RCS file: /cvs/e/e_modules/tclock/configure.in,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -3 -r1.15 -r1.16
--- configure.in29 Jun 2006 20:04:19 -  1.15
+++ configure.in14 Jul 2006 17:44:55 -  1.16
@@ -29,60 +29,6 @@
 AC_SUBST(MODULE_ARCH)
 AC_DEFINE_UNQUOTED(MODULE_ARCH, $MODULE_ARCH, Module architecture)
 
-if test x${bindir} = 'x${exec_prefix}/bin'; then
-  if test x${exec_prefix} = xNONE; then
-if test x${prefix} = xNONE; then
-  bindir=${ac_default_prefix}/bin;
-else
-  bindir=${prefix}/bin;
-fi
-  else
-if test x${prefix} = xNONE; then
-  bindir=${ac_default_prefix}/bin;
-else
-  bindir=${prefix}/bin;
-fi
-  fi
-fi
-
-if test x${libdir} = 'x${exec_prefix}/lib'; then
-  if test x${exec_prefix} = xNONE; then
-if test x${prefix} = xNONE; then
-  libdir=${ac_default_prefix}/lib;
-else
-  libdir=${prefix}/lib;
-fi
-  else
-if test x${prefix} = xNONE; then
-  libdir=${ac_default_prefix}/lib;
-else
-  libdir=${prefix}/lib;
-fi
-  fi
-fi
-
-dnl Set PACKAGE_BIN_DIR in config.h.
-if test x${bindir} = 'xNONE'; then
-  if test x${prefix} = xNONE; then
-AC_DEFINE_UNQUOTED(PACKAGE_BIN_DIR, ${ac_default_prefix}/bin, Package 
installed binaries destination)
-  else
-AC_DEFINE_UNQUOTED(PACKAGE_BIN_DIR, ${prefix}/bin, Package installed 
binaries destination)
-  fi
-else
-  AC_DEFINE_UNQUOTED(PACKAGE_BIN_DIR, ${bindir}, Package installed binaries 
destination)
-fi
-
-dnl Set PACKAGE_LIB_DIR in config.h.
-if test x${libdir} = 'xNONE'; then
-  if test x${prefix} = xNONE; then
-AC_DEFINE_UNQUOTED(PACKAGE_LIB_DIR, ${ac_default_prefix}/lib, Package 
installed libraries destination)
-  else
-AC_DEFINE_UNQUOTED(PACKAGE_LIB_DIR, ${prefix}/lib, Package installed 
libraries destination)
-  fi
-else
-  AC_DEFINE_UNQUOTED(PACKAGE_LIB_DIR, ${libdir}, Package installed 
libraries destination)
-fi
-
 dnl Set PACKAGE_DATA_DIR in config.h.
 if test x${prefix} = xNONE; then
 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, ${HOME}/.e/e/modules/${PACKAGE}, 
Package installed data destination)
===
RCS file: /cvs/e/e_modules/tclock/tclock.edc,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -3 -r1.19 -r1.20
--- tclock.edc  16 Jun 2006 16:24:44 -  1.19
+++ tclock.edc  14 Jul 2006 17:44:55 -  1.20
@@ -1,3 +1,7 @@
+fonts {
+   font: VeraMono.ttf VeraMono;
+}
+
 collections
 {
group




-
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=lnkkid=120709bid=263057dat=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=lnkkid=120709bid=263057dat=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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mail devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : mail

Dir : e_modules/mail


Modified Files:
Makefile.am 


Log Message:
Mail module now does make distcheck correctly.
Make install does not install needless pngs anymore.

===
RCS file: /cvs/e/e_modules/mail/Makefile.am,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- Makefile.am 10 Jul 2006 15:52:51 -  1.6
+++ Makefile.am 14 Jul 2006 17:56:48 -  1.7
@@ -8,9 +8,11 @@
 # data files for the module
 filesdir =  $(datadir)
 
-files_DATA = newmail.png module_icon.png module.eap mail.edj
+files_DATA = module_icon.png \
+   module.eap \
+   mail.edj
 
-EXTRA_DIST = $(files_DATA) mail.edc VeraBd.ttf
+EXTRA_DIST = $(files_DATA)
 
 # the module .so file
 INCLUDES = -I. \
@@ -32,12 +34,10 @@
 
 module_la_LIBADD   = @e_libs@
 module_la_LDFLAGS  = -module -avoid-version
-module_la_DEPENDENCIES = $(top_builddir)/config.h
+module_la_DEPENDENCIES = $(top_builddir)/config.h $(top_builddir)/mail.edj
 
-mail.edj: Makefile mail.edc
-$(EDJE_CC) $(EDJE_FLAGS) \
-$(top_srcdir)/mail.edc \
-$(top_builddir)/mail.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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mem devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : mem

Dir : e_modules/mem


Modified Files:
Makefile.am mem.edc 
Removed Files:
mem.png 


Log Message:
Mem module builds/installs correctly now:
-make distcheck works
-make install does not install needless pngs anymore.


===
RCS file: /cvs/e/e_modules/mem/Makefile.am,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- Makefile.am 10 Jul 2006 17:41:11 -  1.11
+++ Makefile.am 14 Jul 2006 18:05:07 -  1.12
@@ -1,6 +1,5 @@
 MAINTAINERCLEANFILES = Makefile.in e_modules-mem.spec
 
-
 SUBDIRS = po
 
 EDJE_CC = @edje_cc@
@@ -11,10 +10,12 @@
 # data files for the module
 filesdir = $(datadir)
 
-files_DATA = module_icon.png module.eap mem.edj mem.edc \
- DejaVuSansMono.ttf $(wildcard real*.png) $(wildcard swap*.png)
+files_DATA = module_icon.png \
+   module.eap \
+   mem.edj
 
-EXTRA_DIST=e_modules-mem.spec.in e_modules-mem.spec autogen.sh mem.png 
module_icon.png $(files_DATA)
+EXTRA_DIST= e_modules-mem.spec \
+   $(files_DATA)
 
 # the module .so file
 INCLUDES = -I. \
@@ -43,12 +44,10 @@
   
 module_la_LIBADD   = @e_libs@ @machdep_libs@
 module_la_LDFLAGS  = -module -avoid-version
-module_la_DEPENDENCIES = $(top_builddir)/config.h
+module_la_DEPENDENCIES = $(top_builddir)/config.h $(top_builddir)/mem.edj
 
-mem.edj: Makefile mem.edc
-$(EDJE_CC) $(EDJE_FLAGS) \
-$(top_srcdir)/mem.edc \
-$(top_builddir)/mem.edj
+%.edj:  %.edc
+   $(EDJE_CC) $(EDJE_FLAGS) $ $@
 
 clean-local:
 rm -rf *.edj *~
===
RCS file: /cvs/e/e_modules/mem/mem.edc,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -3 -r1.15 -r1.16
--- mem.edc 14 Jun 2006 14:15:39 -  1.15
+++ mem.edc 14 Jul 2006 18:05:07 -  1.16
@@ -1,6 +1,6 @@
 images
 {
-   image: mem.png COMP;
+   image: module_icon.png COMP;
image: real_00.png COMP;
image: real_01.png COMP;
image: real_02.png COMP;
@@ -101,7 +101,7 @@
 }
   image
 {
-   normal: mem.png;
+   normal: module_icon.png;
 }
   color: 255 255 255 192;
}




-
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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: net devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : net

Dir : e_modules/net


Modified Files:
Makefile.am 
Removed Files:
eth_dev.png 


Log Message:
Net module now does make distcheck and make install properly, not installing
needless pngs anymore.

===
RCS file: /cvs/e/e_modules/net/Makefile.am,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- Makefile.am 10 Jul 2006 15:06:34 -  1.7
+++ Makefile.am 14 Jul 2006 18:09:27 -  1.8
@@ -10,10 +10,11 @@
 # data files for the module
 filesdir = $(datadir)
 
-files_DATA = module_icon.png module.eap net.edj net.edc VeraMono.ttf \
- $(wildcard tx*.png) $(wildcard rx*.png)
+files_DATA = module_icon.png \
+   module.eap \
+   net.edj
 
-EXTRA_DIST=$(files_DATA) eth_dev.png module_icon.png e_modules-net.spec 
e_modules-net.spec.in
+EXTRA_DIST=$(files_DATA) e_modules-net.spec
 
 # the module .so file
 INCLUDES = -I. \
@@ -29,12 +30,10 @@
   
 module_la_LIBADD   = @e_libs@
 module_la_LDFLAGS  = -module -avoid-version
-module_la_DEPENDENCIES = $(top_builddir)/config.h
+module_la_DEPENDENCIES = $(top_builddir)/config.h $(top_builddir)/net.edj
 
-net.edj: Makefile net.edc
-$(EDJE_CC) $(EDJE_FLAGS) \
-$(top_srcdir)/net.edc \
-$(top_builddir)/net.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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl handyande

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : handyande
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/engines/x11


Modified Files:
ewl_engine_x11.c 


Log Message:
make ewl compile

===
RCS file: /cvs/e/e17/libs/ewl/src/engines/x11/ewl_engine_x11.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- ewl_engine_x11.c13 Jul 2006 12:31:58 -  1.5
+++ ewl_engine_x11.c14 Jul 2006 18:10:03 -  1.6
@@ -1046,12 +1046,12 @@
 window = ewl_window_window_find((void *)ev-win);
if (window) 
{
-   if (ev-content == ECORE_X_SELECTION_CONTENT_FILES) 
+   if (ev-selection == ECORE_X_SELECTION_CONTENT_FILES) 
{
Ecore_X_Selection_Data_Files* files = ev-data;
printf(We've got some files! - '%s'\n, 
files-files[0]);
} 
-   else if (ev-content == ECORE_X_SELECTION_CONTENT_TEXT) 
+   else if (ev-selection == 
ECORE_X_SELECTION_CONTENT_TEXT) 
{
Ecore_X_Selection_Data_Text* text = ev-data;
printf(We've got some text! - '%s'\n, 
text-text);
@@ -1059,7 +1059,7 @@
else 
{
Ecore_X_Selection_Data *data = ev-data;
-   printf(\nUnknown DND selection received, type: 
%d target: %s\n, ev-content, ev-target);
+   printf(\nUnknown DND selection received, type: 
%d target: %s\n, ev-selection, ev-target);
printf(\tData length: %d\n, data-length);
}
}




-
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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: screenshot devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : screenshot

Dir : e_modules/screenshot


Modified Files:
Makefile.am 


Log Message:
Screenshot module now does make distcheck and make install properly, not
installing needless pngs.

===
RCS file: /cvs/e/e_modules/screenshot/Makefile.am,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -3 -r1.15 -r1.16
--- Makefile.am 10 Jul 2006 17:39:59 -  1.15
+++ Makefile.am 14 Jul 2006 18:13:02 -  1.16
@@ -10,9 +10,11 @@
 # data files for the module
 filesdir =  $(datadir)
 
-files_DATA = module_icon.png module.eap screenshot.edj $(wildcard e17*.png)
+files_DATA = module_icon.png \
+   module.eap \
+   screenshot.edj
 
-EXTRA_DIST = $(files_DATA) screenshot.edc VeraBd.ttf e_modules-screenshot.spec
+EXTRA_DIST = $(files_DATA) e_modules-screenshot.spec
 
 # the module .so file
 INCLUDES = -I. \
@@ -28,12 +30,10 @@
 
 module_la_LIBADD   = @e_libs@
 module_la_LDFLAGS  = -module -avoid-version
-module_la_DEPENDENCIES = $(top_builddir)/config.h
+module_la_DEPENDENCIES = $(top_builddir)/config.h 
$(top_builddir)/screenshot.edj
 
-screenshot.edj: Makefile screenshot.edc
-$(EDJE_CC) $(EDJE_FLAGS) \
-$(top_srcdir)/screenshot.edc \
-$(top_builddir)/screenshot.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=lnkkid=120709bid=263057dat=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=lnkkid=120709bid=263057dat=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=lnkkid=120709bid=263057dat=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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mail devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : mail

Dir : e_modules/mail


Modified Files:
Makefile.am 


Log Message:
make distcheck should be ok now. Distribute the edc and autogen.sh also.

===
RCS file: /cvs/e/e_modules/mail/Makefile.am,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- Makefile.am 14 Jul 2006 17:56:48 -  1.7
+++ Makefile.am 14 Jul 2006 18:27:50 -  1.8
@@ -12,7 +12,12 @@
module.eap \
mail.edj
 
-EXTRA_DIST = $(files_DATA)
+EXTRA_DIST = $(files_DATA) \
+   mail.edc \
+   checking.png \
+   newmail.png \
+   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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: tclock handyande

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : handyande
Project : e_modules
Module  : tclock

Dir : e_modules/tclock


Added Files:
VeraMono.ttf 


Log Message:
add missing file





-
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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/elicit rephorm

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : rephorm
Project : e17
Module  : apps/elicit

Dir : e17/apps/elicit/src


Modified Files:
zoom.c 


Log Message:
oops. forgot to implement the clean up...

===
RCS file: /cvs/e/e17/apps/elicit/src/zoom.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- zoom.c  11 Jul 2006 05:23:00 -  1.1
+++ zoom.c  14 Jul 2006 18:33:19 -  1.2
@@ -192,6 +192,12 @@
   Elicit_Zoom *z;
 
   z = evas_object_smart_data_get(o);
+
+  if (z-shot) evas_object_del(z-shot);
+  if (z-grid) evas_object_del(z-grid);
+
+  free(z);
+  evas_object_smart_data_set(o, NULL);
 }
 
 static void




-
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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mem devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : mem

Dir : e_modules/mem


Modified Files:
Makefile.am 


Log Message:
Make distcheck now properly includes all the pngs and autogen.sh.

===
RCS file: /cvs/e/e_modules/mem/Makefile.am,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -3 -r1.12 -r1.13
--- Makefile.am 14 Jul 2006 18:05:07 -  1.12
+++ Makefile.am 14 Jul 2006 18:37:05 -  1.13
@@ -15,7 +15,31 @@
mem.edj
 
 EXTRA_DIST= e_modules-mem.spec \
-   $(files_DATA)
+   $(files_DATA) \
+   mem.edc \
+   autogen.sh \
+   real_00.png \
+   real_01.png \
+   real_02.png \
+   real_03.png \
+   real_04.png \
+   real_05.png \
+   real_06.png \
+   real_07.png \
+   real_08.png \
+   real_09.png \
+   real_10.png \
+   swap_00.png \
+   swap_01.png \
+   swap_02.png \
+   swap_03.png \
+   swap_04.png \
+   swap_05.png \
+   swap_06.png \
+   swap_07.png \
+   swap_08.png \
+   swap_09.png \
+   swap_10.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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mem devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : mem

Dir : e_modules/mem


Modified Files:
Makefile.am 


Log Message:
Include the font for make distcheck.

===
RCS file: /cvs/e/e_modules/mem/Makefile.am,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- Makefile.am 14 Jul 2006 18:37:05 -  1.13
+++ Makefile.am 14 Jul 2006 18:40:45 -  1.14
@@ -39,7 +39,8 @@
swap_07.png \
swap_08.png \
swap_09.png \
-   swap_10.png
+   swap_10.png \
+   DejaVuSansMono.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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: net devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : net

Dir : e_modules/net


Modified Files:
Makefile.am 


Log Message:
Include the pngs, font, edc, and autogen.sh for make distcheck.

===
RCS file: /cvs/e/e_modules/net/Makefile.am,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- Makefile.am 14 Jul 2006 18:09:27 -  1.8
+++ Makefile.am 14 Jul 2006 18:43:53 -  1.9
@@ -14,7 +14,33 @@
module.eap \
net.edj
 
-EXTRA_DIST=$(files_DATA) e_modules-net.spec
+EXTRA_DIST=$(files_DATA) \
+   e_modules-net.spec \
+   autogen.sh \
+   net.edc \
+   rx_00.png \
+   rx_01.png \
+   rx_02.png \
+   rx_03.png \
+   rx_04.png \
+   rx_05.png \
+   rx_06.png \
+   rx_07.png \
+   rx_08.png \
+   rx_09.png \
+   rx_10.png \
+   tx_00.png \
+   tx_01.png \
+   tx_02.png \
+   tx_03.png \
+   tx_04.png \
+   tx_05.png \
+   tx_06.png \
+   tx_07.png \
+   tx_08.png \
+   tx_09.png \
+   tx_10.png \
+   VeraMono.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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: net devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : net

Dir : e_modules/net


Modified Files:
Makefile.am 


Log Message:
Removed autogen.sh from make distcheck.

===
RCS file: /cvs/e/e_modules/net/Makefile.am,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- Makefile.am 14 Jul 2006 18:43:53 -  1.9
+++ Makefile.am 14 Jul 2006 18:52:41 -  1.10
@@ -16,7 +16,6 @@
 
 EXTRA_DIST=$(files_DATA) \
e_modules-net.spec \
-   autogen.sh \
net.edc \
rx_00.png \
rx_01.png \




-
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=lnkkid=120709bid=263057dat=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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mail devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : mail

Dir : e_modules/mail


Modified Files:
Makefile.am 


Log Message:
Remove autogen.sh from make distcheck.

===
RCS file: /cvs/e/e_modules/mail/Makefile.am,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- Makefile.am 14 Jul 2006 18:27:50 -  1.8
+++ Makefile.am 14 Jul 2006 18:53:41 -  1.9
@@ -16,8 +16,7 @@
mail.edc \
checking.png \
newmail.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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mem devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : mem

Dir : e_modules/mem


Modified Files:
Makefile.am 


Log Message:
Remove autogen.sh from make distcheck, thanks rephorm and dj2 :)

===
RCS file: /cvs/e/e_modules/mem/Makefile.am,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -3 -r1.14 -r1.15
--- Makefile.am 14 Jul 2006 18:40:45 -  1.14
+++ Makefile.am 14 Jul 2006 18:54:19 -  1.15
@@ -17,7 +17,6 @@
 EXTRA_DIST= e_modules-mem.spec \
$(files_DATA) \
mem.edc \
-   autogen.sh \
real_00.png \
real_01.png \
real_02.png \




-
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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: screenshot devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : screenshot

Dir : e_modules/screenshot


Modified Files:
Makefile.am 


Log Message:
Add edc and font for make distcheck.

===
RCS file: /cvs/e/e_modules/screenshot/Makefile.am,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -3 -r1.16 -r1.17
--- Makefile.am 14 Jul 2006 18:13:02 -  1.16
+++ Makefile.am 14 Jul 2006 18:56:08 -  1.17
@@ -14,7 +14,10 @@
module.eap \
screenshot.edj
 
-EXTRA_DIST = $(files_DATA) e_modules-screenshot.spec
+EXTRA_DIST = $(files_DATA) \
+   e_modules-screenshot.spec \
+   screenshot.edc \
+   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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: slideshow devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : slideshow

Dir : e_modules/slideshow


Modified Files:
Makefile.am 


Log Message:
Add edc to make distcheck.

===
RCS file: /cvs/e/e_modules/slideshow/Makefile.am,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- Makefile.am 10 Jul 2006 17:42:09 -  1.10
+++ Makefile.am 14 Jul 2006 18:57:58 -  1.11
@@ -15,7 +15,8 @@
 module.eap \
 slideshow.edj
 
-EXTRA_DIST = $(files_DATA) slideshow.edc
+EXTRA_DIST = $(files_DATA) \
+   slideshow.edc
 
 # the module .so file
 INCLUDES = -I. \
@@ -31,12 +32,10 @@
 
 module_la_LIBADD   = @e_libs@
 module_la_LDFLAGS  = -module -avoid-version
-module_la_DEPENDENCIES = $(top_builddir)/config.h
+module_la_DEPENDENCIES = $(top_builddir)/config.h $(top_builddir)/slideshow.edj
 
-slideshow.edj: Makefile slideshow.edc
-$(EDJE_CC) $(EDJE_FLAGS) \
-$(top_srcdir)/slideshow.edc \
-$(top_builddir)/slideshow.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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: tclock devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : tclock

Dir : e_modules/tclock


Modified Files:
Makefile.am 


Log Message:
Add font and edc to make distcheck.

===
RCS file: /cvs/e/e_modules/tclock/Makefile.am,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- Makefile.am 14 Jul 2006 17:44:55 -  1.8
+++ Makefile.am 14 Jul 2006 19:04:48 -  1.9
@@ -12,7 +12,11 @@
 module.eap \
 tclock.edj
 
-EXTRA_DIST = $(files_DATA) e_modules-tclock.spec
+EXTRA_DIST = $(files_DATA) \
+   e_modules-tclock.spec \
+   tclock.edc \
+   VeraMono.ttf
+
 CONFIG_CLEAN_FILES = e_modules-tclock.spec tclock.edj
 
 # the module .so file




-
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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: uptime devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : uptime

Dir : e_modules/uptime


Modified Files:
Makefile.am 


Log Message:
Add font and edc to make distcheck.

===
RCS file: /cvs/e/e_modules/uptime/Makefile.am,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- Makefile.am 10 Jul 2006 15:19:13 -  1.10
+++ Makefile.am 14 Jul 2006 19:06:11 -  1.11
@@ -9,13 +9,17 @@
 
 # data files for the module
 filesdir = $(datadir)
-
-EXTRA_DIST = $(files_DATA) uptime.png uptime.edc VeraMono.ttf \
-e_modules-uptime.spec e_modules-uptime.spec.in module.eap
-
 files_DATA = \
 uptime.edj \
-module.eap
+module.eap \
+uptime.png
+
+EXTRA_DIST = $(files_DATA) \
+   uptime.edc \
+   VeraMono.ttf \
+   e_modules-uptime.spec \
+   e_modules-uptime.spec.in
+
 
 # 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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: uptime devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : uptime

Dir : e_modules/uptime


Modified Files:
Makefile.am 


Log Message:
More generic edj compile in makefile.am.

===
RCS file: /cvs/e/e_modules/uptime/Makefile.am,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- Makefile.am 14 Jul 2006 19:06:11 -  1.11
+++ Makefile.am 14 Jul 2006 19:06:39 -  1.12
@@ -37,10 +37,8 @@
 module_la_LDFLAGS  = -module -avoid-version
 module_la_DEPENDENCIES = $(top_builddir)/config.h
 
-uptime.edj: Makefile uptime.edc
-$(EDJE_CC) $(EDJE_FLAGS) \
-$(top_srcdir)/uptime.edc \
-$(top_builddir)/uptime.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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: weather devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : weather

Dir : e_modules/weather


Modified Files:
Makefile.am 


Log Message:
Proper install for weather module: Do not install edc by default, just edj.
Generic edc compile in Makefile.am.

===
RCS file: /cvs/e/e_modules/weather/Makefile.am,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- Makefile.am 10 Jul 2006 15:20:24 -  1.9
+++ Makefile.am 14 Jul 2006 19:10:03 -  1.10
@@ -13,12 +13,13 @@
 files_DATA = \
 module_icon.png \
 module.eap \
-weather.edj \
-weather.edc \
-fonts/VeraBd.ttf \
-fonts/vera.ttf
+weather.edj
 
-EXTRA_DIST = $(files_DATA) e_modules-weather.spec
+EXTRA_DIST = $(files_DATA) \
+   e_modules-weather.spec \
+   weather.edc \
+   fonts/VeraBd.ttf \
+   fonts/vera.ttf
 
 # the module .so file
 INCLUDES = -I. \
@@ -36,10 +37,8 @@
 module_la_LDFLAGS  = -module -avoid-version
 module_la_DEPENDENCIES = $(top_builddir)/config.h
 
-weather.edj: Makefile weather.edc
-$(EDJE_CC) $(EDJE_FLAGS) \
-$(top_srcdir)/weather.edc \
-$(top_builddir)/weather.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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl ningerso

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ningerso
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/engines/x11


Modified Files:
ewl_engine_x11.c 


Log Message:
Check the content type in the selection data.

===
RCS file: /cvs/e/e17/libs/ewl/src/engines/x11/ewl_engine_x11.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- ewl_engine_x11.c14 Jul 2006 18:10:03 -  1.6
+++ ewl_engine_x11.c14 Jul 2006 19:10:54 -  1.7
@@ -1042,16 +1042,17 @@
else if (ev-selection == ECORE_X_SELECTION_XDND)
{
Ewl_Window *window;
+   Ecore_X_Selection_Data *data = ev-data;
 
 window = ewl_window_window_find((void *)ev-win);
if (window) 
{
-   if (ev-selection == ECORE_X_SELECTION_CONTENT_FILES) 
+   if (data-content == ECORE_X_SELECTION_CONTENT_FILES) 
{
Ecore_X_Selection_Data_Files* files = ev-data;
printf(We've got some files! - '%s'\n, 
files-files[0]);
} 
-   else if (ev-selection == 
ECORE_X_SELECTION_CONTENT_TEXT) 
+   else if (data-content == 
ECORE_X_SELECTION_CONTENT_TEXT)
{
Ecore_X_Selection_Data_Text* text = ev-data;
printf(We've got some text! - '%s'\n, 
text-text);
@@ -1059,7 +1060,7 @@
else 
{
Ecore_X_Selection_Data *data = ev-data;
-   printf(\nUnknown DND selection received, type: 
%d target: %s\n, ev-selection, ev-target);
+   printf(\nUnknown DND selection received, type: 
%d target: %s\n, data-content, ev-target);
printf(\tData length: %d\n, data-length);
}
}
@@ -1186,20 +1187,25 @@
 
window = ewl_window_window_find((void *)ev-win);
if (window) {
+   int i;
int x,y,wx,wy;
Ewl_Embed *embed= ewl_embed_evas_window_find((void *)ev-win);
ewl_embed_window_position_get(EWL_EMBED(window), wx, wy);
 
/* Request a DND data request */
-   /* TODO this only supports retrieval of the first type 
-* in the request */
-   if (window-dnd_types.num_types  0)
-   ecore_x_selection_xdnd_request(ev-win,
-   window-dnd_types.types[0]);
+   for (i = 0; i  window-dnd_types.num_types; i++) {
+   if (ewl_dnd_type_supported(window-dnd_types.types[i])) 
{
+   ecore_x_selection_xdnd_request(ev-win,
+   window-dnd_types.types[i]);
+   break;
+   }
+   }
+   if (i == window-dnd_types.num_types)
+   printf(No matching type found\n);
 
printf(Drop!\n);
 
-   if (ev-win == (Ecore_X_Window)window-window) {
+   if (ev-source == (Ecore_X_Window)window-window) {
printf(Source is dest! - Retrieving local data\n);
internal = 1;
} else {




-
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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: wlan devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : wlan

Dir : e_modules/wlan


Modified Files:
Makefile.am 


Log Message:
Some makefile.am cleanup, more generic edj compile.

===
RCS file: /cvs/e/e_modules/wlan/Makefile.am,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- Makefile.am 10 Jul 2006 15:21:41 -  1.6
+++ Makefile.am 14 Jul 2006 19:13:10 -  1.7
@@ -10,14 +10,18 @@
 # data files for the module
 filesdir = $(datadir)
 
-EXTRA_DIST = $(files_DATA) wlan.png module_icon.png e_modules-wlan.spec 
e_modules-wlan.spec.in
-
 files_DATA = \
 module_icon.png \
 module.eap \
-wlan.edj \
-wlan.edc \
-VeraMono.ttf
+wlan.edj
+
+EXTRA_DIST = $(files_DATA) \
+   wlan.edc \
+   VeraMono.ttf \
+   wlan.png \
+   module_icon.png \
+   e_modules-wlan.spec \
+   e_modules-wlan.spec.in
 
 # the module .so file
 INCLUDES = -I. \
@@ -36,10 +40,8 @@
 module_la_LDFLAGS  = -module -avoid-version
 module_la_DEPENDENCIES = $(top_builddir)/config.h
 
-wlan.edj: Makefile wlan.edc
-$(EDJE_CC) $(EDJE_FLAGS) \
-$(top_srcdir)/wlan.edc \
-$(top_builddir)/wlan.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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: cpu devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : cpu

Dir : e_modules/cpu


Modified Files:
Makefile.am 


Log Message:
Makefile.am cleanup and generic edj compile in makefile.am.

===
RCS file: /cvs/e/e_modules/cpu/Makefile.am,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- Makefile.am 10 Jul 2006 15:07:50 -  1.7
+++ Makefile.am 14 Jul 2006 19:13:39 -  1.8
@@ -7,21 +7,22 @@
 -id $(top_srcdir) \
 -fd $(top_srcdir)
 
+files_DATA = \
+module_icon.png \
+module.eap \
+cpu.edj
+
 EXTRA_DIST = $(files_DATA) \
 cpu.edc \
 VeraMono.ttf \
 cpu.png \
 module.eap \
-e_modules-cpu.spec e_modules-cpu.spec.in 
+e_modules-cpu.spec \
+e_modules-cpu.spec.in 
 
 # data files for the module
 filesdir = $(datadir)
 
-files_DATA = \
-module_icon.png \
-module.eap \
-cpu.edj
-
 # the module .so file
 INCLUDES = -I. \
 -I$(top_srcdir) \
@@ -39,10 +40,8 @@
 module_la_LDFLAGS  = -module -avoid-version
 module_la_DEPENDENCIES = $(top_builddir)/config.h
 
-cpu.edj: Makefile cpu.edc
-$(EDJE_CC) $(EDJE_FLAGS) \
-$(top_srcdir)/cpu.edc \
-$(top_builddir)/cpu.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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mbar devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : mbar

Dir : e_modules/mbar/data/themes


Modified Files:
Makefile.am 


Log Message:
Proper install and make distcheck now.

===
RCS file: /cvs/e/e_modules/mbar/data/themes/Makefile.am,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- Makefile.am 29 Mar 2006 00:47:39 -  1.3
+++ Makefile.am 14 Jul 2006 19:20:15 -  1.4
@@ -5,16 +5,15 @@
 
 filesdir = $(datadir)
 files_DATA = \
-fonts/VeraBd.ttf \
-mbar.edj \
-mbar.edc
+mbar.edj
 
-EXTRA_DIST = $(files_DATA) $(wildcard images/*.png)
+EXTRA_DIST = $(files_DATA) \
+   $(wildcard images/*.png) \
+   fonts/VeraBd.ttf \
+   mbar.edc
 
-mbar.edj: Makefile mbar.edc
-$(EDJE_CC) $(EDJE_FLAGS) \
-mbar.edc \
-mbar.edj
+%.edj:  %.edc
+   $(EDJE_CC) $(EDJE_FLAGS) $ $@
 
 clean-local:
rm -f *.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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mbar devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : mbar

Dir : e_modules/mbar


Modified Files:
Makefile.am 


Log Message:
Proper install and make distcheck now.

===
RCS file: /cvs/e/e_modules/mbar/Makefile.am,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- Makefile.am 4 Jun 2006 12:59:16 -   1.2
+++ Makefile.am 14 Jul 2006 19:20:14 -  1.3
@@ -15,6 +15,7 @@
 -I$(top_srcdir) \
 -I$(includedir) \
 @e_cflags@
+
 pkgdir = $(datadir)/$(MODULE_ARCH)
 pkg_LTLIBRARIES= module.la
 module_la_SOURCES  = e_mod_main.c \




-
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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e raster

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_border.c 


Log Message:


dan's patch for maximize bug! fix! :)

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_border.c,v
retrieving revision 1.510
retrieving revision 1.511
diff -u -3 -r1.510 -r1.511
--- e_border.c  3 Jul 2006 07:35:44 -   1.510
+++ e_border.c  14 Jul 2006 20:01:48 -  1.511
@@ -1691,8 +1691,14 @@
 x1 = bd-zone-x + (bd-zone-w - w) / 2;
 /* center y-direction */
 y1 = bd-zone-y + (bd-zone-h - h) / 2;
-e_border_move_resize(bd, x1, y1, w, h);
-/* FULLSCREEN doesn't work with VERTICAL/HORIZONTAL */
+
+if ((max  E_MAXIMIZE_DIRECTION) == E_MAXIMIZE_BOTH)
+  e_border_move_resize(bd, x1, y1, w, h);
+else if ((max  E_MAXIMIZE_DIRECTION) == E_MAXIMIZE_VERTICAL)
+  e_border_move_resize(bd, bd-x, y1, bd-w, h);
+else if ((max  E_MAXIMIZE_DIRECTION) == E_MAXIMIZE_HORIZONTAL)
+  e_border_move_resize(bd, x1, bd-y, w, bd-h);
+
 max |= E_MAXIMIZE_BOTH;
 break;
   case E_MAXIMIZE_SMART:




-
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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e raster

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/e

Dir : e17/apps/e


Modified Files:
TODO 


Log Message:


dan's patch for maximize bug! fix! :)

===
RCS file: /cvs/e/e17/apps/e/TODO,v
retrieving revision 1.364
retrieving revision 1.365
diff -u -3 -r1.364 -r1.365
--- TODO8 Jul 2006 18:47:41 -   1.364
+++ TODO14 Jul 2006 20:01:47 -  1.365
@@ -32,8 +32,6 @@
 * BUG: Hiding the label of e_widget_slider causes the slider line to disappear
 * BUG: Window locks should be honored by the pager (e.g. Lock me from
   changing position)
-* BUG: Doing an action to vertically maximize/minimize a window results in
-  in the window being horizontally maximized/minimized as well ( vice versa)
 * BUG: in screen resolution change dialog the flip config is a pair of raidio
   buttons. it should be a pair of checkboxes to turn that flip bit on or
   off etc. etc. this means adding check icon widgets too liek radio icons too




-
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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/evas raster

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/evas

Dir : e17/libs/evas


Modified Files:
configure.in 


Log Message:


libpng checks using pkg-config :)

===
RCS file: /cvs/e/e17/libs/evas/configure.in,v
retrieving revision 1.169
retrieving revision 1.170
diff -u -3 -r1.169 -r1.170
--- configure.in13 Jul 2006 19:48:09 -  1.169
+++ configure.in14 Jul 2006 20:37:05 -  1.170
@@ -646,11 +646,15 @@
 ###
 ## PNG
 have_png=no;
-AC_CHECK_HEADER(png.h,
-  [ have_png=yes ],
-  [ have_png=no ]
-)
 AC_MSG_CHECKING(whether to enable png image loader)
+if   pkg-config --exists libpng12; then
+  have_png=yes;
+elif pkg-config --exists libpng10; then
+  have_png=yes;
+elif pkg-config --exists libpng; then
+  have_png=yes;
+fi
+
 AC_ARG_ENABLE(image-loader-png, 
   [  --enable-image-loader-png   enable PNG image loader], [
   if test x$enableval = xyes ; then
@@ -665,26 +669,20 @@
   ]
 )
 if test x$have_png = xyes; then
-  AC_CHECK_HEADER(png.h,
-[ have_png=yes ],
-[ have_png=no ]
-  )
-fi
-# RHEL 3 has broken png libs. the default /usr/include/png*.h files are from
-# libpng 1.0 but the default libpng.so is from 1.2 - bad bad. need to try link
-# to libpng10 first.
-if test x$have_png = xyes; then
-  AC_DEFINE(BUILD_LOADER_PNG, 1, [PNG Image Loader Support])
-  png_cflags=
-  AC_CHECK_LIB(png10, png_check_sig, [
-png_libs=-lpng10 -lz -lm
-  ], [
-AC_CHECK_LIB(png, png_check_sig, [
-  png_libs=-lpng -lz -lm
-], [
-  have_png=no
-], -lz -lm)
-  ], -lz -lm)
+  if   pkg-config --exists libpng12; then
+png_cflags=`pkg-config --cflags libpng12`
+png_libs=`pkg-config --libs libpng12`
+AC_MSG_CHECKING(libpng 1.2.x)
+  elif pkg-config --exists libpng10; then
+png_cflags=`pkg-config --cflags libpng10`
+png_libs=`pkg-config --libs libpng10`
+AC_MSG_CHECKING(libpng 1.0.x)
+  elif pkg-config --exists libpng; then
+png_cflags=`pkg-config --cflags libpng`
+png_libs=`pkg-config --libs libpng`
+AC_MSG_CHECKING(generic system libpng)
+  fi
+  AC_MSG_RESULT($have_png)
 fi
 
 AM_CONDITIONAL(BUILD_LOADER_PNG, test x$have_png = xyes)




-
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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: e kwo

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/po


Modified Files:
bg.po bs.po da.po de.po en_US.po es.po fr.po hu.po ja.po ko.po 
nl.po no.po pl.po pt.po pt_BR.po ru.po sv.po tr.po 


Log Message:
Update po.

===
RCS file: /cvs/e/e16/e/po/bg.po,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -3 -r1.28 -r1.29
--- bg.po   9 Jul 2006 20:19:28 -   1.28
+++ bg.po   14 Jul 2006 20:55:11 -  1.29
@@ -6,7 +6,7 @@
 msgstr 
 Project-Id-Version: enlightenment 0.16.7\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2006-06-21 23:40+0200\n
+POT-Creation-Date: 2006-07-11 20:22+0200\n
 PO-Revision-Date: 2004-09-14 20:43-0300\n
 Last-Translator: Viktor Kojouharov\n
 Language-Team: Bulgarian\n
@@ -195,7 +195,7 @@
 Kim Woelders - [EMAIL PROTECTED]
 
 #: src/actions.c:322 src/dialog.c:876 src/dialog.c:2066 src/dialog.c:2093
-#: src/events.c:78 src/handlers.c:190 src/sound.c:308
+#: src/events.c:78 src/handlers.c:194 src/sound.c:308
 msgid OK
 msgstr Äà
 
@@ -1158,7 +1158,7 @@
 msgid   Select the group to break  
 msgstr   Èçáåðåòå ãðóïàòà, êîÿòî äà ðàçòðîãíåòå  
 
-#: src/handlers.c:64
+#: src/handlers.c:66
 #, c-format
 msgid 
 Enlightenment performed an Illegal Instruction.\n
@@ -1178,7 +1178,7 @@
 çà âàøàòà ñèñòåìà, èëè ïðåêîìïèëèðàéòå Å è ïî âúçìîæíîñò\n
 âñè÷êè ïîääúðæàùè áèáëèîòåêè êîèòî ñòå âçåëè âúâ äâîè÷åí ôîðìàò.\n
 
-#: src/handlers.c:78
+#: src/handlers.c:80
 msgid 
 Enlightenment caused a Floating Point Exception.\n
 \n
@@ -1204,7 +1204,7 @@
 êîãà å óìðÿë è äà èçïðàòèòå ïîëåçíà èíôîðìàöèÿ ñ èíôîðìàöèÿ çà  
 ïðîñëåäÿâàíåòî.\n
 
-#: src/handlers.c:97
+#: src/handlers.c:99
 msgid 
 Enlightenment caused Segment Violation (Segfault)\n
 \n
@@ -1230,7 +1230,7 @@
 êîãà å óìðÿë è äà èçïðàòèòå ïîëåçíà èíôîðìàöèÿ ñ èíôîðìàöèÿ çà  
 ïðîñëåäÿâàíåòî.\n
 
-#: src/handlers.c:113
+#: src/handlers.c:115
 msgid 
 Enlightenment caused Bus Error.\n
 \n
@@ -1244,11 +1244,11 @@
 Ïðåêàëåíî ñòðàííî å Å äà ïðè÷èíè Bus ãðåøêà íà ðàáîòåùî\n
 îáîðóäâàíå.\n
 
-#: src/handlers.c:189
+#: src/handlers.c:193
 msgid Another Window Manager is already running
 msgstr Äðóã Àäìèíèñòðàòîð íà Ïðîçîðöè âå÷å ðàáîòè
 
-#: src/handlers.c:191
+#: src/handlers.c:195
 msgid 
 Another Window Manager is already running.\n
 \n
===
RCS file: /cvs/e/e16/e/po/bs.po,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -3 -r1.21 -r1.22
--- bs.po   9 Jul 2006 20:19:28 -   1.21
+++ bs.po   14 Jul 2006 20:55:11 -  1.22
@@ -8,7 +8,7 @@
 msgstr 
 Project-Id-Version: bosnian\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2006-06-21 23:40+0200\n
+POT-Creation-Date: 2006-07-11 20:22+0200\n
 PO-Revision-Date: 2004-08-26 00:52+0200\n
 Last-Translator: Kemal Å anjta [EMAIL PROTECTED]\n
 Language-Team: Bosnian [EMAIL PROTECTED]\n
@@ -200,7 +200,7 @@
 Kim Woelders - [EMAIL PROTECTED]
 
 #: src/actions.c:322 src/dialog.c:876 src/dialog.c:2066 src/dialog.c:2093
-#: src/events.c:78 src/handlers.c:190 src/sound.c:308
+#: src/events.c:78 src/handlers.c:194 src/sound.c:308
 msgid OK
 msgstr Uredu
 
@@ -1177,7 +1177,7 @@
 msgid   Select the group to break  
 msgstr   Oznaīite grupu za slamanje  
 
-#: src/handlers.c:64
+#: src/handlers.c:66
 #, c-format
 msgid 
 Enlightenment performed an Illegal Instruction.\n
@@ -1198,7 +1198,7 @@
 re-compile Enlightenment and possibly any support libraries\n
 that you got in binary format to run Enlightenment.\n
 
-#: src/handlers.c:78
+#: src/handlers.c:80
 msgid 
 Enlightenment caused a Floating Point Exception.\n
 \n
@@ -1222,7 +1222,7 @@
 send in a useful bug report with backtrace information and variable\n
 dumps etc.\n
 
-#: src/handlers.c:97
+#: src/handlers.c:99
 msgid 
 Enlightenment caused Segment Violation (Segfault)\n
 \n
@@ -1246,7 +1246,7 @@
 useful bug report with backtrace information and variable\n
 dumps etc.\n
 
-#: src/handlers.c:113
+#: src/handlers.c:115
 msgid 
 Enlightenment caused Bus Error.\n
 \n
@@ -1260,11 +1260,11 @@
 Nije uopÄe uobiÄ«ajno da se Bus greÅ·ke javljaju na upotrebljivom\n
 hardveru.\n
 
-#: src/handlers.c:189
+#: src/handlers.c:193
 msgid Another Window Manager is already running
 msgstr Neki drugi upravitelj prozora je veÄ pokrenut
 
-#: src/handlers.c:191
+#: src/handlers.c:195
 msgid 
 Another Window Manager is already running.\n
 \n
===
RCS file: /cvs/e/e16/e/po/da.po,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -3 -r1.23 -r1.24
--- da.po   9 Jul 2006 20:19:28 -   1.23
+++ da.po   14 Jul 2006 20:55:12 -  1.24
@@ -7,7 +7,7 @@
 msgstr 
 Project-Id-Version: enlightenment 0.16.6\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2006-06-21 23:40+0200\n
+POT-Creation-Date: 2006-07-11 20:22+0200\n
 PO-Revision-Date: 2000-03-02 16:23+0100\n
 Last-Translator: Birger 

E CVS: libs/ewl pfritz

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : pfritz
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/data/themes/e17/bits


Modified Files:
button-groups.edc 


Log Message:
preventing button to be clipped

===
RCS file: /cvs/e/e17/libs/ewl/data/themes/e17/bits/button-groups.edc,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -3 -r1.12 -r1.13
--- button-groups.edc   27 Jun 2006 03:04:26 -  1.12
+++ button-groups.edc   14 Jul 2006 20:56:20 -  1.13
@@ -13,7 +13,7 @@
 mouse_events:  1;
 description {
state:default 0.0;
-   min:  56 16;
+   min:  16 16;
image {
   normal: e17_button_sm.png;
   border: 8 8 8 8;




-
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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl dj2

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/lib


Modified Files:
ewl_text.c 


Log Message:
- this should fix the segv that sometimes appears when selecting text in the
  ewl_text widget

===
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_text.c,v
retrieving revision 1.111
retrieving revision 1.112
diff -u -3 -r1.111 -r1.112
--- ewl_text.c  11 Jul 2006 20:48:02 -  1.111
+++ ewl_text.c  14 Jul 2006 21:31:25 -  1.112
@@ -3898,20 +3898,12 @@
base = ewl_text_trigger_base_get(s);
start_pos = ewl_text_trigger_start_pos_get(s);

-   if (idx = start_pos)
+   if (idx  base)
{
-   if (idx  base)
-   {
-   ewl_text_trigger_start_pos_set(s, idx);
-   ewl_text_trigger_length_set(s, base - idx);
-   }
-   else
-   {
-   ewl_text_trigger_start_pos_set(s, base);
-   ewl_text_trigger_length_set(s, idx - base);
-   }
+   ewl_text_trigger_start_pos_set(s, idx);
+   ewl_text_trigger_length_set(s, base - idx);
}
-   else
+   else
{
ewl_text_trigger_start_pos_set(s, base);
ewl_text_trigger_length_set(s, idx - base);




-
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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: equate pfritz

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : pfritz
Project : misc
Module  : equate

Dir : misc/equate/src


Modified Files:
gui.c 


Log Message:
warnings--

===
RCS file: /cvs/e/misc/equate/src/gui.c,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -3 -r1.47 -r1.48
--- gui.c   11 Jul 2006 01:35:24 -  1.47
+++ gui.c   14 Jul 2006 21:56:05 -  1.48
@@ -416,8 +416,7 @@
   but-button = button[bc];
   ewl_callback_append(button[bc], EWL_CALLBACK_MOUSE_DOWN,
   but-callback, but-cmd);
-  
ewl_object_alignment_set(EWL_OBJECT(EWL_BUTTON(button[bc])-label_object),
-   EWL_FLAG_ALIGN_CENTER);
+  ewl_button_alignment_set(EWL_BUTTON(button[bc]), EWL_FLAG_ALIGN_CENTER);
   ewl_container_child_append(EWL_CONTAINER(table), button[bc]);
   ewl_grid_child_position_set(EWL_GRID(table), button[bc], but-col,
but-col + but-height - 1, but-row,




-
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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: debian kaethorn

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kaethorn
Project : e_modules
Module  : debian

Dir : e_modules/debian


Modified Files:
emodule0-mbar.install 


Log Message:
reflect mbar install changes.

===
RCS file: /cvs/e/e_modules/debian/emodule0-mbar.install,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- emodule0-mbar.install   8 Jun 2006 06:28:48 -   1.2
+++ emodule0-mbar.install   14 Jul 2006 22:14:17 -  1.3
@@ -1,5 +1,4 @@
 debian/tmp/usr/lib/enlightenment/modules/mbar/*.edj
 debian/tmp/usr/lib/enlightenment/modules/mbar/*.eap
-debian/tmp/usr/lib/enlightenment/modules/mbar/*.ttf
 debian/tmp/usr/lib/enlightenment/modules/mbar/*.png
 debian/tmp/usr/lib/enlightenment/modules/mbar/*/*.so




-
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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: proto leviathan

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : leviathan
Project : e17
Module  : proto

Dir : e17/proto/etk-perl/lib/Etk


Modified Files:
Widget.pm 


Log Message:
- some more widget work
- start of simplifying Etk usage

===
RCS file: /cvs/e/e17/proto/etk-perl/lib/Etk/Widget.pm,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- Widget.pm   4 Jul 2006 02:23:58 -   1.4
+++ Widget.pm   14 Jul 2006 23:53:11 -  1.5
@@ -66,6 +66,18 @@
 Etk::etk_widget_lower($self-{WIDGET});
 }
 
+sub SizeRecalcQueue
+{
+my $self = shift;
+Etk::etk_widget_size_recalc_queue($self-{WIDGET});
+}
+
+sub RedrawQueue
+{
+my $self = shift;
+Etk::etk_widget_redraw_queue($self-{WIDGET});
+}
+
 sub SizeRequestSet
 {
 my $self = shift;
@@ -104,6 +116,12 @@
 Etk::etk_widget_pass_mouse_events_set($self-{WIDGET}, shift);
 }
 
+sub PassMouseEventsGet
+{
+my $self = shift;
+return Etk::etk_widget_pass_mouse_events_get($self-{WIDGET});
+}
+
 sub DndDestSet
 {
 my $self = shift;
@@ -193,11 +211,143 @@
 Etk::etk_widget_dnd_internal_set($self-{WIDGET}, $on);
 }
 
+# TODO drag_*
+
 sub ThemeFileSet
 {
 my $self = shift;
 my $theme_file = shift;
 Etk::etk_widget_theme_file_set($self-{WIDGET}, $theme_file);
+
+}
+
+sub ThemeFileGet
+{
+my $self = shift;
+return Etk::etk_widget_theme_file_get($self-{WIDGET});
+
+}
+
+sub ThemeGroupSet
+{
+my $self = shift;
+my $theme_group = shift;
+Etk::etk_widget_theme_group_set($self-{WIDGET}, $theme_group);
+}
+
+sub ThemeGroupGet
+{
+my $self = shift;
+return Etk::etk_widget_theme_group_get($self-{WIDGET});
+}
+
+sub ThemeParentSet
+{
+my $self = shift;
+my $parent = shift;
+Etk::etk_widget_theme_parent_set($self-{WIDGET}, $parent-{WIDGET});
+}
+
+sub ThemeParentGet
+{
+my $self = shift;
+return Etk::etk_widget_theme_parent_get($self-{WIDGET});
+}
+
+sub GeometryGet
+{
+my $self = shift;
+return Etk::etk_widget_geometry_get($self-{WIDGET});
+}
+
+sub InnerGeometryGet
+{
+my $self = shift;
+return Etk::etk_widget_inner_geometry_get($self-{WIDGET});
+}
+
+sub HasEventObjectSet
+{
+my $self = shift;
+my $has = shift;
+Etk::etk_widget_has_event_object_set($self-{WIDGET}, $has);
 }
 
+sub HasEventObjectGet
+{
+my $self = shift;
+return Etk::etk_widget_has_event_object_get($self-{WIDGET});
+}
+
+sub RepeatMouseEventsSet
+{
+my $self = shift;
+my $repeat = shift;
+Etk::etk_widget_repeat_mouse_events_set($self-{WIDGET}, $repeat);
+}
+
+sub RepeatMouseEventsGet
+{
+my $self = shift;
+return Etk::etk_widget_repeat_mouse_events_get($self-{WIDGET});
+}
+
+sub KeyEventPropagationStop
+{
+Etk::etk_widget_key_event_propagation_stop();
+}
+
+
+sub SwallowWidget
+{
+my $self = shift;
+my $part = shift;
+my $widget = shift;
+return Etk::etk_widget_swallow_widget($self-{WIDGET}, $part, 
$widget-{WIDGET});
+}
+
+sub UnswallowWidget
+{
+my $self = shift;
+my $widget = shift;
+Etk::etk_widget_unswallow_widget($self-{WIDGET}, $widget-{WIDGET});
+}
+
+sub IsSwallowingWidget
+{
+my $self = shift;
+my $widget = shift;
+return Etk::etk_widget_is_swallowing_widget($self-{WIDGET}, 
$widget-{WIDGET});
+}
+
+sub IsSwallowed
+{
+my $self = shift;
+return Etk::etk_widget_is_swallowed($self-{WIDGET});
+}
+
+sub ThemeObjectMinSizeCalc
+{
+my $self = shift;
+return Etk::etk_widget_theme_object_min_size_calc($self-{WIDGET});
+}
+
+sub ThemeObjectSignalEmit
+{
+my $self = shift;
+my $signal = shift;
+Etk::etk_widget_theme_object_signal_emit($self-{WIDGET}, $signal);
+}
+
+sub ThemeObjectPartTextSet
+{
+my $self = shift;
+my $part = shift;
+my $text = shift;
+Etk::etk_widget_theme_object_part_text_set($self-{WIDGET}, $part, $text);
+}
+
+
 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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: proto leviathan

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : leviathan
Project : e17
Module  : proto

Dir : e17/proto/etk-perl


Modified Files:
Etk.xs 


Log Message:
- some more widget work
- start of simplifying Etk usage

===
RCS file: /cvs/e/e17/proto/etk-perl/Etk.xs,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -3 -r1.26 -r1.27
--- Etk.xs  5 Jul 2006 00:00:07 -   1.26
+++ Etk.xs  14 Jul 2006 23:53:11 -  1.27
@@ -4969,12 +4969,35 @@
Etk_Widget *widget
 
 void
-etk_widget_geometry_get(widget, x, y, w, h)
+etk_widget_geometry_get(widget)
Etk_Widget *widget
-   int *   x
-   int *   y
-   int *   w
-   int *   h
+   PPCODE:
+   int x;
+   int y;
+   int w;
+   int h;
+
+   etk_widget_geometry_get(widget, x, y, w, h);
+   EXTEND(SP, 4);
+   PUSHs(sv_2mortal(newSViv(x)));
+   PUSHs(sv_2mortal(newSViv(y)));
+   PUSHs(sv_2mortal(newSViv(w)));
+   PUSHs(sv_2mortal(newSViv(h)));
+
+void
+etk_widget_inner_geometry_get(widget)
+   Etk_Widget *widget
+   PPCODE:
+   int x;
+   int y;
+   int w;
+   int h;
+   etk_widget_inner_geometry_get(widget, x, y, w, h);
+   EXTEND(SP, 4);
+   PUSHs(sv_2mortal(newSViv(x)));
+   PUSHs(sv_2mortal(newSViv(y)));
+   PUSHs(sv_2mortal(newSViv(w)));
+   PUSHs(sv_2mortal(newSViv(h)));
 
 Etk_Bool
 etk_widget_has_event_object_get(widget)
@@ -4993,14 +5016,6 @@
 etk_widget_hide_all(widget)
Etk_Widget *widget
 
-void
-etk_widget_inner_geometry_get(widget, x, y, w, h)
-   Etk_Widget *widget
-   int *   x
-   int *   y
-   int *   w
-   int *   h
-
 Etk_Bool
 etk_widget_is_swallowed(widget)
Etk_Widget *widget
@@ -5187,10 +5202,16 @@
char * format   
 
 void
-etk_widget_theme_object_min_size_calc(widget, w, h)
+etk_widget_theme_object_min_size_calc(widget)
Etk_Widget *widget
-   int *   w
-   int *   h
+   PPCODE:
+   int w;
+   int h;
+
+   etk_widget_theme_object_min_size_calc(widget, w, h);
+   EXTEND(SP, 2);
+   PUSHs(sv_2mortal(newSViv(w)));
+   PUSHs(sv_2mortal(newSViv(h)));
 
 void
 etk_widget_theme_object_part_text_set(widget, part_name, text)




-
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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: proto leviathan

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : leviathan
Project : e17
Module  : proto

Dir : e17/proto/etk-perl/lib


Modified Files:
Etk.pm 


Log Message:
- some more widget work
- start of simplifying Etk usage

===
RCS file: /cvs/e/e17/proto/etk-perl/lib/Etk.pm,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- Etk.pm  18 Jun 2006 10:47:42 -  1.4
+++ Etk.pm  14 Jul 2006 23:53:11 -  1.5
@@ -10,6 +10,9 @@
 
 our @ISA = qw(Exporter);
 
+use Etk::Main;
+use Etk::Window;
+
 # Items to export into callers namespace by default. Note: do not export
 # names by default without a very good reason. Use EXPORT_OK instead.
 # Do not simply export all your public functions/methods/constants.
@@ -50,6 +53,14 @@
 
 require XSLoader;
 XSLoader::load('Etk', $VERSION);
+
+
+# initialize Etk
+Etk::Init();
+
+END {
+   Etk::Shutdown();
+}
 
 # Preloaded methods go here.
 




-
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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: weather devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : weather

Dir : e_modules/weather


Modified Files:
Makefile.am 


Log Message:
*Bsd cannot handle the general edj build in makefile.am. Fix for *bsd.

===
RCS file: /cvs/e/e_modules/weather/Makefile.am,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- Makefile.am 14 Jul 2006 19:10:03 -  1.10
+++ Makefile.am 15 Jul 2006 00:23:19 -  1.11
@@ -37,8 +37,10 @@
 module_la_LDFLAGS  = -module -avoid-version
 module_la_DEPENDENCIES = $(top_builddir)/config.h
 
-%.edj:  %.edc
-   $(EDJE_CC) $(EDJE_FLAGS) $ $@
+weather.edj: Makefile weather.edc
+$(EDJE_CC) $(EDJE_FLAGS) \
+weather.edc \
+weather.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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: cpu devilhorns

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : cpu

Dir : e_modules/cpu


Modified Files:
Makefile.am 


Log Message:
Fix edj build in makefile.am for *bsd.

===
RCS file: /cvs/e/e_modules/cpu/Makefile.am,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- Makefile.am 14 Jul 2006 19:13:39 -  1.8
+++ Makefile.am 15 Jul 2006 00:24:18 -  1.9
@@ -40,8 +40,10 @@
 module_la_LDFLAGS  = -module -avoid-version
 module_la_DEPENDENCIES = $(top_builddir)/config.h
 
-%.edj:  %.edc
-   $(EDJE_CC) $(EDJE_FLAGS) $ $@
+cpu.edj: Makefile cpu.edc
+$(EDJE_CC) $(EDJE_FLAGS) \
+cpu.edc \
+cpu.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=lnkkid=120709bid=263057dat=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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: proto codewarrior

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : codewarrior
Project : e17
Module  : proto

Dir : e17/proto/enhance/src/lib


Modified Files:
enhance_widget.c 


Log Message:
patch from lok for the dialog signals / props

===
RCS file: /cvs/e/e17/proto/enhance/src/lib/enhance_widget.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- enhance_widget.c15 Jul 2006 00:27:19 -  1.10
+++ enhance_widget.c15 Jul 2006 03:43:42 -  1.11
@@ -96,13 +96,29 @@
 {
E_Widget  *dia;
char  *id;
+   char  *tag;
EXML_Node  *prop;   

id = ecore_hash_get(node-attributes, id);
if(!id) return NULL;
 
dia = _e_widget_new(en, node, etk_dialog_new(), id);
-   
+   if((tag = exml_down(en-xml)) != NULL)
+ {
+   do
+ {
+   if(!strcmp(tag, property))
+ {
+_e_traverse_property_xml(en);
+ }
+   else if(!strcmp(tag, signal))
+ {
+_e_traverse_signal_xml(en);
+ }
+ }
+   while((tag = exml_next_nomove(en-xml)) != NULL);
+ }
+
if((prop = find_node(node, internal-child, action_area)))
  {
if((prop = find_node(prop, class, GtkHButtonBox)))
@@ -981,7 +997,7 @@
int x_padding = 0;
int y_padding = 0;
int flags_set = 0;  
-   Etk_Fill_Policy_Flags fill_policy;
+   Etk_Fill_Policy_Flags fill_policy = ETK_FILL_POLICY_NONE;

if(child-packing)
  {




-
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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl titan

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : titan
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/data/themes/e17/bits/images


Modified Files:
e17_menu_separator.png 


Log Message:
Fix up the nobg state on scrollpanes.

===
RCS file: 
/cvs/e/e17/libs/ewl/data/themes/e17/bits/images/e17_menu_separator.png,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
Binary files /tmp/cvsfGRIwX and /tmp/cvsW7KKWy differ




-
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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl titan

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : titan
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/data/themes/e17/bits


Modified Files:
box-groups.edc 


Log Message:
Fix up the nobg state on scrollpanes.

===
RCS file: /cvs/e/e17/libs/ewl/data/themes/e17/bits/box-groups.edc,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- box-groups.edc  2 Mar 2006 01:59:25 -   1.5
+++ box-groups.edc  15 Jul 2006 03:46:47 -  1.6
@@ -53,6 +53,23 @@
smooth : 0;
}
}
+description {
+state:  nobg 0.0;
+rel1 {
+to: background2;
+}
+rel2 {
+to: background2;
+}
+image {
+normal: e17_tranny.png;
+border: 13 13 13 13;
+}
+fill {
+smooth : 0;
+}
+}
+
}
part {
name: focus;
@@ -101,6 +118,7 @@
action:STATE_SET nobg 0.0;
transition: LINEAR 0.0;
target:background2;
+target:over;
}
 }
 }




-
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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/elicit rephorm

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : rephorm
Project : e17
Module  : apps/elicit

Dir : e17/apps/elicit/src


Modified Files:
Elicit.h Makefile.am callbacks.c elicit.c themes.c util.c 
Added Files:
spectrum.c spectrum.h 


Log Message:
sliders and spectra!


===
RCS file: /cvs/e/e17/apps/elicit/src/Elicit.h,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -3 -r1.17 -r1.18
--- Elicit.h11 Jul 2006 05:23:00 -  1.17
+++ Elicit.h15 Jul 2006 06:47:01 -  1.18
@@ -37,6 +37,7 @@
 #include swatches.h
 #include shots.h
 #include themes.h
+#include spectrum.h
 #include zoom.h
 
 
===
RCS file: /cvs/e/e17/apps/elicit/src/Makefile.am,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- Makefile.am 11 Jul 2006 05:23:00 -  1.8
+++ Makefile.am 15 Jul 2006 06:47:01 -  1.9
@@ -13,6 +13,7 @@
 swatches.c swatches.h \
 shots.c shots.h \
 themes.c themes.h \
+   spectrum.c spectrum.h \
zoom.c zoom.h
 
 elicit_LDADD = @edje_libs@ @ecore_libs@ @edb_libs@ @evas_libs@ \
===
RCS file: /cvs/e/e17/apps/elicit/src/callbacks.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -3 -r1.21 -r1.22
--- callbacks.c 11 Jul 2006 05:23:00 -  1.21
+++ callbacks.c 15 Jul 2006 06:47:01 -  1.22
@@ -39,15 +39,10 @@
   ecore_evas_geometry_get(ee, NULL, NULL, w, h);
 
   gui = evas_object_name_find(ecore_evas_get(ee), gui);
-  shot = evas_object_name_find(ecore_evas_get(ee), shot);
   draggie = evas_object_name_find(ecore_evas_get(ee), draggie);
 
   evas_object_resize(gui, w, h);
   evas_object_resize(draggie, w, h);
-
-  /* keep the shot filling its bounds */
-  evas_object_geometry_get(shot, NULL, NULL, sw, sh);
-  evas_object_image_fill_set(shot, 0, 0, sw, sh);
 }
 
 void elicit_cb_pick(void *data, Evas_Object *o, const char *sig, const char 
*src)
===
RCS file: /cvs/e/e17/apps/elicit/src/elicit.c,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -3 -r1.27 -r1.28
--- elicit.c11 Jul 2006 05:23:00 -  1.27
+++ elicit.c15 Jul 2006 06:47:01 -  1.28
@@ -146,6 +146,7 @@
   elicit_swatches_init(el);
   elicit_shots_init(el);
   elicit_themes_init(el);
+  elicit_spectra_init(el);
 
   elicit_ui_update(el);
   return 0;
@@ -295,6 +296,7 @@
   elicit_ui_update_text(el);
   elicit_ui_update_sliders(el);
   elicit_zoom_zoom_set(el-shot, el-zoom);
+  elicit_spectra_update(el);
   
   evas_object_color_set(el-swatch, el-color.r, el-color.g, el-color.b, 
255);
 }
===
RCS file: /cvs/e/e17/apps/elicit/src/themes.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- themes.c5 Sep 2005 19:45:47 -   1.7
+++ themes.c15 Jul 2006 06:47:01 -  1.8
@@ -94,10 +94,10 @@
   esmart_container_element_remove(el-themes.cont, o);
   evas_object_del(o);
 
-#if 1
   elicit_shots_shutdown(el);
   elicit_swatches_shutdown(el);
   elicit_themes_shutdown(el);
+  elicit_spectra_shutdown(el);
 
   evas_object_del(el-gui);
   
@@ -111,7 +111,7 @@
   elicit_shots_init(el);
   elicit_swatches_init(el);
   elicit_themes_init(el);
-#endif
+  elicit_spectra_init(el);
 }
 
 
===
RCS file: /cvs/e/e17/apps/elicit/src/util.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -3 -r1.12 -r1.13
--- util.c  11 Jul 2006 05:23:00 -  1.12
+++ util.c  15 Jul 2006 06:47:01 -  1.13
@@ -16,11 +16,9 @@
   Imlib_Image *im;
   Imlib_Color col;
   int x, y;
-  int tr;
-  Window dummy;
 
   /* where are we pointing? */
-  XQueryPointer(ecore_x_display_get(), RootWindow(ecore_x_display_get(),0), 
dummy, dummy, tr, tr, x, y, tr);
+  ecore_x_pointer_last_xy_get(x, y);
 
   /* setup the imlib context */
   imlib_context_set_display(ecore_x_display_get());
@@ -32,71 +30,12 @@
   imlib_context_set_image(im);
   imlib_image_query_pixel(0, 0, col);
 
-  //evas_object_color_set(swatch.obj, col.red, col.green, col.blue, 255);
   /* set the color values */
   if (r) *r = col.red;
   if (g) *g = col.green;
   if (b) *b = col.blue;
 
-  /* update the other formats */
-  /*
-  _rgb_to_hsv();
-  _rgb_to_hex();
-
-  elicit_ui_update_text(el);
-  changed = 1;
-  */
   imlib_free_image(); 
-
-}
-
-void
-elicit_util_shoot(Evas_Object *shot, int w, int h)
-{
-  Imlib_Image *im;
-  int x, y;
-  int px, py;
-  int dw, dh;
-  int tr;
-  Evas_Coord sw, sh;
-  Window dummy;
-
-  XQueryPointer(ecore_x_display_get(), RootWindow(ecore_x_display_get(),0), 
dummy, dummy, tr, tr, px, py, tr);
-
-  x = px - .5 * w;
-  y = py - .5 * h;
-
-  

E CVS: apps/elicit rephorm

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : rephorm
Project : e17
Module  : apps/elicit

Dir : e17/apps/elicit/src


Modified Files:
zoom.c zoom.h 


Log Message:
force integer zooms to keep grid aligned with shot

===
RCS file: /cvs/e/e17/apps/elicit/src/zoom.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- zoom.c  14 Jul 2006 18:33:19 -  1.2
+++ zoom.c  15 Jul 2006 10:31:59 -  1.3
@@ -34,7 +34,7 @@
 }
 
 void
-elicit_zoom_zoom_set(Evas_Object *o, double zoom)
+elicit_zoom_zoom_set(Evas_Object *o, int zoom)
 {
   Elicit_Zoom *z;
   int iw, ih;
===
RCS file: /cvs/e/e17/apps/elicit/src/zoom.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- zoom.h  11 Jul 2006 05:23:00 -  1.1
+++ zoom.h  15 Jul 2006 10:31:59 -  1.2
@@ -2,7 +2,7 @@
 #define ELICIT_ZOOM_H
 
 Evas_Object *elicit_zoom_add(Evas *evas);
-void elicit_zoom_zoom_set(Evas_Object *o, double zoom);
+void elicit_zoom_zoom_set(Evas_Object *o, int zoom);
 void elicit_zoom_grid_visible_set(Evas_Object *o, int visible);
 void elicit_zoom(Evas_Object *o);
 void elicit_zoom_data_get(Evas_Object *o, void **data, int *w, int *h);




-
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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/elicit rephorm

2006-07-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : rephorm
Project : e17
Module  : apps/elicit

Dir : e17/apps/elicit/src


Modified Files:
zoom.c 


Log Message:
fix loading shots when zoom is different from when saved

===
RCS file: /cvs/e/e17/apps/elicit/src/zoom.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- zoom.c  15 Jul 2006 10:31:59 -  1.3
+++ zoom.c  15 Jul 2006 10:52:34 -  1.4
@@ -126,6 +126,9 @@
   z = evas_object_smart_data_get(o);
   if (!z) return;
 
+  z-iw = w;
+  z-ih = h;
+
   /* get the object ready, copy the data in */
   evas_object_image_alpha_set(z-shot, 0);
   evas_object_image_size_set(z-shot, z-iw, z-ih);




-
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=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs