E CVS: libs/efreet mekius

2007-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : mekius
Project : e17
Module  : libs/efreet

Dir : e17/libs/efreet/src/lib


Modified Files:
Efreet_Mime.h efreet_mime.c 


Log Message:
API update.  Now you have more control over which methods are used to check for 
a type by using the efreet_mime_*_type_get functions.  Also vastly increased 
the speed of the glob checking.

===
RCS file: /cvs/e/e17/libs/efreet/src/lib/Efreet_Mime.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- Efreet_Mime.h   3 Jul 2007 04:47:29 -   1.3
+++ Efreet_Mime.h   6 Jul 2007 03:01:21 -   1.4
@@ -30,6 +30,10 @@
 voidefreet_mime_shutdown(void);
 
 const char *efreet_mime_type_get(const char *file);
+const char *efreet_mime_magic_type_get(const char *file);
+const char *efreet_mime_globs_type_get(const char *file);
+const char *efreet_mime_special_type_get(const char *file);
+const char *efreet_mime_fallback_type_get(const char *file);
 
 /**
  * @}
===
RCS file: /cvs/e/e17/libs/efreet/src/lib/efreet_mime.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -3 -r1.18 -r1.19
--- efreet_mime.c   4 Jul 2007 15:46:19 -   1.18
+++ efreet_mime.c   6 Jul 2007 03:01:21 -   1.19
@@ -4,9 +4,12 @@
 #include 
 #include "efreet_private.h"
 #include 
+#include 
+#include 
 
 static Ecore_List *globs = NULL; /* contains Efreet_Mime_Glob structs */
 static Ecore_List *magics = NULL;/* contains Efreet_Mime_Magic structs */
+static Ecore_Hash *wild = NULL;  /* contains *.ext and mime.types globs*/
 static Ecore_Hash *monitors = NULL;  /* contains file monitors */
 
 /**
@@ -21,7 +24,6 @@
 EFREET_ENDIAN_LITTLE = 1 
 } efreet_mime_endianess = EFREET_ENDIAN_BIG;
 
-
 /*
  * Buffer sized used for magic checks.  The default is good enough for the 
  * current set of magic rules.  This setting is only here for the future.
@@ -113,7 +115,7 @@
 ecore_hash_set_free_key(monitors, ECORE_FREE_CB(free));
 ecore_hash_set_free_value(monitors,
 ECORE_FREE_CB(ecore_file_monitor_del));
-
+
 if (!efreet_mime_init_files())
 return 0;
 
@@ -138,7 +140,6 @@
 
 /**
  * @param file: The file to check the mime type
- * @param methods: The methods to use, see Efreet_Mime_Method structure
  * @return Returns mime type as a string
  * @brief Retreive the mime type of a file
  */
@@ -146,8 +147,6 @@
 efreet_mime_type_get(const char *file)
 {   
 const char *type = NULL;
-Efreet_Mime_Glob *g;
-char *s;
 
 if ((type = efreet_mime_special_check(file)))
 return type;
@@ -160,6 +159,56 @@
 
 /*
  * Check globs
+ */
+if ((type = efreet_mime_globs_type_get(file)))
+return type;
+
+/*
+ * Check rest of magics
+ */
+if ((type = efreet_mime_magic_check_priority(file, 80, 0)))
+return type;
+
+return efreet_mime_fallback_check(file);
+}
+
+/**
+ * @param file: The file to check the mime type
+ * @return Returns mime type as a string
+ * @brief Retreive the mime type of a file using magic
+ */
+const char *efreet_mime_magic_type_get(const char *file)
+{
+return efreet_mime_magic_check_priority(file,0,0);   
+}
+
+/**
+ * @param file: The file to check the mime type
+ * @return Returns mime type as a string
+ * @brief Retreive the mime type of a file using globs
+ */
+const char *efreet_mime_globs_type_get(const char *file)
+{
+Efreet_Mime_Glob *g;
+char *s;
+const char *ext, *mime;
+
+/*
+ * Check in the extension hash for the type
+ */
+ext = strchr(file,'.');
+while(ext)
+{
+++ext;
+
+if(ext && (mime = ecore_hash_get(wild, ext)))
+return mime;
+
+ext = strchr(ext,'.');
+}
+
+/*
+ * Fallback to the other globs if not found
  */
 ecore_list_goto_first(globs);
 while ((g = ecore_list_next(globs)))
@@ -177,12 +226,28 @@
 }
 FREE(s);
 
-/*
- * Check rest of magics
- */
-if ((type = efreet_mime_magic_check_priority(file, 80, 0)))
-return type;
-
+return NULL;
+}
+
+/**
+ * @param file: The file to check the mime type
+ * @param methods: The methods to use, see Efreet_Mime_Method structure
+ * @return Returns mime type as a string
+ * @brief Retreive the special mime type of a file
+ */
+const char *efreet_mime_special_type_get(const char *file)
+{
+return efreet_mime_special_check(file);
+}
+
+/**
+ * @param file: The file to check the mime type
+ * @param methods: The methods to use, see Efreet_Mime_Method structure
+ * @return Returns mime type as a string
+ * @brief Retreive the fallback mime type of a file
+ */
+const char *efreet_mime_fallback_type_get(const char *file)
+{
 return efreet_mime_fallback_check(file);
 }
 
@@ -233,10 +298,

E CVS: apps/evfs andreas

2007-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : andreas
Project : e17
Module  : apps/evfs

Dir : e17/apps/evfs


Modified Files:
configure.in 


Log Message:
removed AC_SUBST -> thanks for the hint Vincent

===
RCS file: /cvs/e/e17/apps/evfs/configure.in,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -3 -r1.29 -r1.30
--- configure.in4 Jul 2007 21:27:45 -   1.29
+++ configure.in5 Jul 2007 18:46:49 -   1.30
@@ -121,13 +121,9 @@
 
 dnl Check for pkg-config stuff
 PKG_CHECK_MODULES(ECORE, [ecore ecore-desktop ecore-ipc])
-AC_SUBST(ECORE_CFLAGS)
-AC_SUBST(ECORE_LIBS)
 
 dnl Check for pkg-config stuff
 PKG_CHECK_MODULES(EVAS, [evas])
-AC_SUBST(EVAS_CFLAGS)
-AC_SUBST(EVAS_LIBS)
 
 
 PROG="curl-config";
@@ -164,8 +160,6 @@
 
 dnl Check for pkg-config stuff
 PKG_CHECK_MODULES(EET, [eet])
-AC_SUBST(EET_CFLAGS)
-AC_SUBST(EET_LIBS)
 
 PROG="taglib-config";
 AC_PATH_PROG(TAGLIB_CONFIG, $PROG, "", $PATH)



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


E CVS: apps/e codewarrior

2007-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : codewarrior
Project : e17
Module  : apps/e

Dir : e17/apps/e/po


Modified Files:
POTFILES.in 


Log Message:
fixies, thanks drexil

===
RCS file: /cvs/e/e17/apps/e/po/POTFILES.in,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -3 -r1.20 -r1.21
--- POTFILES.in 24 Jun 2007 17:27:05 -  1.20
+++ POTFILES.in 5 Jul 2007 12:17:45 -   1.21
@@ -53,9 +53,6 @@
 src/bin/e_int_config_theme.c
 src/bin/e_int_config_theme_import.c
 src/bin/e_int_config_transitions.c
-src/bin/e_int_config_wallpaper.c
-src/bin/e_int_config_wallpaper_gradient.c
-src/bin/e_int_config_wallpaper_import.c
 src/bin/e_int_config_window_display.c
 src/bin/e_int_config_window_manipulation.c
 src/bin/e_int_config_winlist.c



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


E CVS: libs/etk_extra codewarrior

2007-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : codewarrior
Project : e17
Module  : libs/etk_extra

Dir : e17/libs/etk_extra/src/lib


Added Files:
.cvsignore 


Log Message:
++.cvsignore




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


E CVS: libs/etk_extra codewarrior

2007-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : codewarrior
Project : e17
Module  : libs/etk_extra

Dir : e17/libs/etk_extra/src


Added Files:
.cvsignore 


Log Message:
++.cvsignore




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


E CVS: libs/etk_extra codewarrior

2007-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : codewarrior
Project : e17
Module  : libs/etk_extra

Dir : e17/libs/etk_extra


Added Files:
.cvsignore 


Log Message:
++.cvsignore




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


E CVS: libs/etk_extra codewarrior

2007-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : codewarrior
Project : e17
Module  : libs/etk_extra

Dir : e17/libs/etk_extra/src/lib/etk_video


Added Files:
.cvsignore Makefile.am etk_video.c etk_video.h 


Log Message:
Etk_extra is a set of extra widgets and helpers for Etk applications that are
not part of the core etk package.





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


E CVS: libs/etk_extra codewarrior

2007-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : codewarrior
Project : e17
Module  : libs/etk_extra

Dir : e17/libs/etk_extra/src/lib/etk_tree_model_wobbly


Added Files:
.cvsignore Makefile.am etk_tree_model_wobbly.c 
etk_tree_model_wobbly.h 


Log Message:
Etk_extra is a set of extra widgets and helpers for Etk applications that are
not part of the core etk package.





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


E CVS: libs/etk_extra codewarrior

2007-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : codewarrior
Project : e17
Module  : libs/etk_extra

Dir : e17/libs/etk_extra/src


Added Files:
Makefile.am config.h.in 


Log Message:
Etk_extra is a set of extra widgets and helpers for Etk applications that are
not part of the core etk package.





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


E CVS: libs/etk_extra codewarrior

2007-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : codewarrior
Project : e17
Module  : libs/etk_extra

Dir : e17/libs/etk_extra/src/lib


Added Files:
Makefile.am 


Log Message:
Etk_extra is a set of extra widgets and helpers for Etk applications that are
not part of the core etk package.





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


E CVS: libs/etk_extra codewarrior

2007-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : codewarrior
Project : e17
Module  : libs/etk_extra

Dir : e17/libs/etk_extra/src/lib/etk_cairo


Added Files:
.cvsignore Makefile.am etk_cairo.c etk_cairo.h 


Log Message:
Etk_extra is a set of extra widgets and helpers for Etk applications that are
not part of the core etk package.





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


E CVS: libs/etk_extra codewarrior

2007-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : codewarrior
Project : e17
Module  : libs/etk_extra

Dir : e17/libs/etk_extra


Added Files:
AUTHORS COPYING ChangeLog INSTALL Makefile.am NEWS README 
autogen.sh configure.in etk_extra_cairo.pc.in 
etk_extra_tree_model_wobbly.pc.in etk_extra_video.pc.in 


Log Message:
Etk_extra is a set of extra widgets and helpers for Etk applications that are
not part of the core etk package.





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


E CVS: libs/etk_extra codewarrior

2007-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : codewarrior
Project : e17
Module  : libs/etk_extra

Dir : e17/libs/etk_extra/m4


Added Files:
ac_expand_dir.m4 ac_path_generic.m4 


Log Message:
Etk_extra is a set of extra widgets and helpers for Etk applications that are
not part of the core etk package.





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


E CVS: libs/etk_extra codewarrior

2007-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : codewarrior
Project : e17
Module  : libs/etk_extra

Dir : e17/libs/etk_extra/src/lib/etk_video




Log Message:
Directory /cvs/e/e17/libs/etk_extra/src/lib/etk_video added to the repository




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


E CVS: libs/etk_extra codewarrior

2007-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : codewarrior
Project : e17
Module  : libs/etk_extra

Dir : e17/libs/etk_extra/src/lib/etk_cairo




Log Message:
Directory /cvs/e/e17/libs/etk_extra/src/lib/etk_cairo added to the repository




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


E CVS: libs/etk_extra codewarrior

2007-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : codewarrior
Project : e17
Module  : libs/etk_extra

Dir : e17/libs/etk_extra/src/lib/etk_tree_model_wobbly




Log Message:
Directory /cvs/e/e17/libs/etk_extra/src/lib/etk_tree_model_wobbly added to the 
repository




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


E CVS: libs/etk_extra codewarrior

2007-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : codewarrior
Project : e17
Module  : libs/etk_extra

Dir : e17/libs/etk_extra/src/lib




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




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


E CVS: libs/etk_extra codewarrior

2007-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : codewarrior
Project : e17
Module  : libs/etk_extra

Dir : e17/libs/etk_extra/m4




Log Message:
Directory /cvs/e/e17/libs/etk_extra/m4 added to the repository




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


E CVS: libs/etk_extra codewarrior

2007-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : codewarrior
Project : e17
Module  : libs/etk_extra

Dir : e17/libs/etk_extra/src




Log Message:
Directory /cvs/e/e17/libs/etk_extra/src added to the repository




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


E CVS: libs/etk_extra codewarrior

2007-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : codewarrior
Project : e17
Module  : libs/etk_extra

Dir : e17/libs/etk_extra




Log Message:
Directory /cvs/e/e17/libs/etk_extra added to the repository




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


E CVS: apps/exhibit manowarrior

2007-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : manowarrior
Project : e17
Module  : apps/exhibit

Dir : e17/apps/exhibit/data/images


Modified Files:
fit_to_window.png one_to_one.png zoom_in.png zoom_out.png 


Log Message:

i'm nuts..

===
RCS file: /cvs/e/e17/apps/exhibit/data/images/fit_to_window.png,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
Binary files /tmp/cvsNZmSnC and /tmp/cvsk7dcr3 differ
===
RCS file: /cvs/e/e17/apps/exhibit/data/images/one_to_one.png,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
Binary files /tmp/cvsjJGAqE and /tmp/cvs6lqdx5 differ
===
RCS file: /cvs/e/e17/apps/exhibit/data/images/zoom_in.png,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
Binary files /tmp/cvsnOH4EH and /tmp/cvsgtycN8 differ
===
RCS file: /cvs/e/e17/apps/exhibit/data/images/zoom_out.png,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
Binary files /tmp/cvsbLHUnG and /tmp/cvs4ECAx7 differ



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


E CVS: apps/exhibit manowarrior

2007-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : manowarrior
Project : e17
Module  : apps/exhibit

Dir : e17/apps/exhibit/data


Modified Files:
gui.edc 


Log Message:

Make the toolbar icons 32x32 && new icons :-)


===
RCS file: /cvs/e/e17/apps/exhibit/data/gui.edc,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- gui.edc 15 Sep 2006 11:30:09 -  1.1
+++ gui.edc 5 Jul 2007 10:23:54 -   1.2
@@ -4,8 +4,8 @@
} \
group { \
   name: icon_name; \
-  min: 33 27; \
-  max: 33 27; \
+  min: 32 32; \
+  max: 32 32; \
   parts { \
 part { \
name: "icon"; \



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


E CVS: apps/exhibit manowarrior

2007-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : manowarrior
Project : e17
Module  : apps/exhibit

Dir : e17/apps/exhibit/data/images


Modified Files:
fit_to_window.png zoom_in.png zoom_out.png one_to_one.png 


Log Message:

Make the toolbar icons 32x32 && new icons :-)


===
RCS file: /cvs/e/e17/apps/exhibit/data/images/fit_to_window.png,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
Binary files /tmp/cvsYic5BG and /tmp/cvscUrLY2 differ
===
RCS file: /cvs/e/e17/apps/exhibit/data/images/zoom_in.png,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
Binary files /tmp/cvsJ5D1Ay and /tmp/cvsz7zKZU differ
===
RCS file: /cvs/e/e17/apps/exhibit/data/images/zoom_out.png,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
Binary files /tmp/cvsZ8FGfx and /tmp/cvsVkm4FT differ
===
RCS file: /cvs/e/e17/apps/exhibit/data/images/one_to_one.png,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
Binary files /tmp/cvsrmHfGA and /tmp/cvsDXQd8W differ



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


E CVS: libs/ecore doursse

2007-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore


Modified Files:
configure.in 


Log Message:
make ecore module compilable on Windows(tm)

===
RCS file: /cvs/e/e17/libs/ecore/configure.in,v
retrieving revision 1.200
retrieving revision 1.201
diff -u -3 -r1.200 -r1.201
--- configure.in5 Jul 2007 09:33:11 -   1.200
+++ configure.in5 Jul 2007 09:51:09 -   1.201
@@ -57,6 +57,8 @@
 fi
 changequote([,])dnl
 
+AC_HEADER_SYS_WAIT
+
 # define pkg-config requirements for all our submodules.
 # only the trivial requirements go here.
 requirements_ecore_con=""



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


E CVS: libs/ecore doursse

2007-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ecore

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


Modified Files:
ecore.c ecore_exe.c ecore_private.h 


Log Message:
make ecore module compilable on Windows(tm)

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore/ecore.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -3 -r1.16 -r1.17
--- ecore.c 3 Feb 2007 20:44:35 -   1.16
+++ ecore.c 5 Jul 2007 09:51:09 -   1.17
@@ -1,5 +1,7 @@
 #include 
+#ifndef WIN32
 #include 
+#endif /* WIN32 */
 #include "ecore_private.h"
 #include "Ecore.h"
 
===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore/ecore_exe.c,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -3 -r1.67 -r1.68
--- ecore_exe.c 27 Nov 2006 21:33:01 -  1.67
+++ ecore_exe.c 5 Jul 2007 09:51:09 -   1.68
@@ -1,5 +1,7 @@
 #include 
+#ifdef HAVE_SYS_WAIT_H
 #include 
+#endif /* HAVE_SYS_WAIT_H */
 #include "ecore_private.h"
 #include "Ecore.h"
 
===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore/ecore_private.h,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -3 -r1.42 -r1.43
--- ecore_private.h 29 Jul 2006 10:05:13 -  1.42
+++ ecore_private.h 5 Jul 2007 09:51:09 -   1.43
@@ -24,7 +24,7 @@
 #ifdef EAPI
 #undef EAPI
 #endif
-#ifdef WIN32
+#ifdef _MSC_VER
 # ifdef BUILDING_DLL
 #  define EAPI __declspec(dllexport)
 # else



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


E CVS: libs/ecore doursse

2007-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ecore

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


Modified Files:
Makefile.am 


Log Message:
create the shared lib for ecore on windows

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore/Makefile.am,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- Makefile.am 16 Feb 2007 23:49:55 -  1.11
+++ Makefile.am 5 Jul 2007 09:33:11 -   1.12
@@ -33,5 +33,5 @@
 ecore_value.c \
 ecore_private.h
 
-libecore_la_LIBADD = -lm @dlopen_libs@ @winsock_libs@
+libecore_la_LIBADD = -lm @dlopen_libs@ @winsock_libs@ @create_shared_lib@
 libecore_la_LDFLAGS = -version-info 1:0:0



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


E CVS: libs/ecore doursse

2007-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ecore

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


Modified Files:
Makefile.am 


Log Message:
create the shared lib for ecore_job and ecore_txt on windows

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_txt/Makefile.am,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- Makefile.am 10 Mar 2005 15:19:42 -  1.5
+++ Makefile.am 5 Jul 2007 09:29:27 -   1.6
@@ -6,6 +6,7 @@
 @iconv_cflags@
 
 libecore_txt_la_LDFLAGS = -version-info 1:0:0 \
[EMAIL PROTECTED]@ \
 -L$(top_builddir)/src/lib/ecore/.libs
 
 if BUILD_ECORE_TXT



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


E CVS: libs/ecore doursse

2007-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ecore

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


Modified Files:
Makefile.am 


Log Message:
create the shared lib for ecore_job and ecore_txt on windows

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_job/Makefile.am,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- Makefile.am 10 Mar 2005 15:19:41 -  1.6
+++ Makefile.am 5 Jul 2007 09:29:27 -   1.7
@@ -5,6 +5,7 @@
 -I$(top_builddir)/src/lib/ecore
 
 libecore_job_la_LDFLAGS = -version-info 1:0:0 \
[EMAIL PROTECTED]@ \
 -L$(top_builddir)/src/lib/ecore/.libs
 
 if BUILD_ECORE_JOB



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