E CVS: proto codewarrior

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : codewarrior
Project : e17
Module  : proto

Dir : e17/proto/exhibit


Modified Files:
AUTHORS configure.in 


Log Message:
add Friedrich's fullscreen code, implement Chady's -f flag and bump up version

===
RCS file: /cvs/e/e17/proto/exhibit/AUTHORS,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- AUTHORS 10 Aug 2006 17:05:48 -  1.5
+++ AUTHORS 14 Dec 2006 12:07:46 -  1.6
@@ -3,6 +3,7 @@
 Hisham 'CodeWarrior' Mardambey [EMAIL PROTECTED]
 Martin 'balony' Sarajervi [EMAIL PROTECTED]
 Simon 'MoOm' Treny [EMAIL PROTECTED]
+Friedrich 'phriedrich' Preuß [EMAIL PROTECTED]
 
 Thanks:
 ===
===
RCS file: /cvs/e/e17/proto/exhibit/configure.in,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- configure.in29 Jul 2006 19:50:04 -  1.9
+++ configure.in14 Dec 2006 12:07:46 -  1.10
@@ -9,7 +9,7 @@
 AC_CANONICAL_HOST
 AC_CANONICAL_TARGET
 
-AM_INIT_AUTOMAKE(exhibit, 0.0.1)
+AM_INIT_AUTOMAKE(exhibit, 0.1.0)
 
 AC_PREREQ(2.52)
 



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


E CVS: englebass codewarrior

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : codewarrior
Project : devs
Module  : englebass

Dir : devs/englebass




Log Message:
Directory /cvs/e/devs/englebass added to the repository




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


E CVS: englebass codewarrior

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : codewarrior
Project : devs
Module  : englebass

Dir : devs/englebass


Added Files:
id_dsa.pub info.txt 


Log Message:
guess who's back!! (=




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


E CVS: apps/e englebass

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

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


Modified Files:
e_mod_config.c 


Log Message:
Always need to check if therms is valid.

===
RCS file: /cvs/e/e17/apps/e/src/modules/temperature/e_mod_config.c,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -3 -r1.24 -r1.25
--- e_mod_config.c  21 Oct 2006 02:32:14 -  1.24
+++ e_mod_config.c  14 Dec 2006 15:04:15 -  1.25
@@ -119,19 +119,25 @@
else if (!strcmp(temperature_config-sensor_name, temp3)) 
  cfdata-sensor = 2;
  }
-   cfdata-acpizone= 0;
+   cfdata-acpizone = 0;
if (temperature_config-acpi_sel)
  {
therms = ecore_file_ls(/proc/acpi/thermal_zone);
-   char *tzone;
-   int n = 0;
-   while ((tzone = ecore_list_next(therms)))
- {
-  if (!strcmp(temperature_config-acpi_sel, tzone))
-cfdata-acpizone = n;
-  else n++;
+   if (therms)
+{
+   char *tzone;
+   int n = 0;
+   while ((tzone = ecore_list_next(therms)))
+ {
+if (!strcmp(temperature_config-acpi_sel, tzone))
+  {
+ cfdata-acpizone = n;
+ break;
+  }
+else n++;
+ }
+   ecore_list_destroy(therms);
 }
-   ecore_list_destroy(therms);
  }
 }
 
@@ -290,45 +296,36 @@
if (!f)
  {
 therms = ecore_file_ls(/sys/bus/i2c/devices);
-if (therms)
+if ((therms)  (!ecore_list_is_empty(therms)))
   {
- if (!ecore_list_is_empty(therms))
-   {
-  of = e_widget_framelist_add(evas, _(Sensors), 0);
-  rg = e_widget_radio_group_new((cfdata-sensor));
-  ob = e_widget_radio_add(evas, _(Temp 1), 0, rg);
-  e_widget_framelist_object_append(of, ob);
-  ob = e_widget_radio_add(evas, _(Temp 2), 1, rg);
-  e_widget_framelist_object_append(of, ob);
-  ob = e_widget_radio_add(evas, _(Temp 3), 2, rg);
-  e_widget_framelist_object_append(of, ob);   
-  e_widget_list_object_append(o, of, 1, 1, 0.5);
-   }
- ecore_list_destroy(therms);
- therms = NULL;
+ of = e_widget_framelist_add(evas, _(Sensors), 0);
+ rg = e_widget_radio_group_new((cfdata-sensor));
+ ob = e_widget_radio_add(evas, _(Temp 1), 0, rg);
+ e_widget_framelist_object_append(of, ob);
+ ob = e_widget_radio_add(evas, _(Temp 2), 1, rg);
+ e_widget_framelist_object_append(of, ob);
+ ob = e_widget_radio_add(evas, _(Temp 3), 2, rg);
+ e_widget_framelist_object_append(of, ob);   
+ e_widget_list_object_append(o, of, 1, 1, 0.5);
   }
+if (therms) ecore_list_destroy(therms);
  }
  }
else
  {
-   if (!ecore_list_is_empty(therms))
+   of = e_widget_framelist_add(evas, _(ACPI Temperature), 0);
+   rg = e_widget_radio_group_new((cfdata-acpizone));
+   char *tzone;
+   int n = 0;
+   while ((tzone = ecore_list_next(therms)))
  {
-of = e_widget_framelist_add(evas, _(ACPI Temperature), 0);
-rg = e_widget_radio_group_new((cfdata-acpizone));
-char *tzone;
-int n = 0;
-while ((tzone = ecore_list_next(therms)))
-  {
- ob = e_widget_radio_add(evas, _(tzone), n, rg);
- e_widget_framelist_object_append(of, ob);
- n++;
-  }
-e_widget_list_object_append(o, of, 1, 1, 0.5);
-ecore_list_destroy(therms);
-therms = NULL;
+ob = e_widget_radio_add(evas, _(tzone), n, rg);
+e_widget_framelist_object_append(of, ob);
+n++;
  }
+   e_widget_list_object_append(o, of, 1, 1, 0.5);
+   ecore_list_destroy(therms);
  }
-   if (therms) ecore_list_destroy(therms);
 #endif
 
of = e_widget_framelist_add(evas, _(Check Interval), 0);
@@ -381,6 +378,10 @@
 static int
 _advanced_apply_data(E_Config_Dialog *cfd, E_Config_Dialog_Data *cfdata) 
 {
+   int n = 0;
+   Ecore_List *therms;
+   char *tzone;
+
if (cfdata-unit_method != temperature_config-units)
  {
if (cfdata-unit_method == 0)
@@ -419,20 +420,20 @@
if (temperature_config-acpi_sel)
  evas_stringshare_del(temperature_config-acpi_sel);
temperature_config-acpi_sel = NULL;
-   int n = 0;
-   Ecore_List *therms;
-   char *tzone;
therms = ecore_file_ls(/proc/acpi/thermal_zone);
-   if ((therms) || !ecore_list_is_empty(therms))
+   

E CVS: apps/e englebass

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

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


Modified Files:
e_mod_main.c 


Log Message:
Don't set a default ACPI temperature sensor.
Use the first available temperature sensor if none is set.

===
RCS file: /cvs/e/e17/apps/e/src/modules/temperature/e_mod_main.c,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -3 -r1.71 -r1.72
--- e_mod_main.c21 Oct 2006 02:32:14 -  1.71
+++ e_mod_main.c14 Dec 2006 15:07:47 -  1.72
@@ -269,14 +269,15 @@
  }
else
  {
-   char *name;
+   const char *name;
 
-   ret = 1;
-   while ((name = ecore_list_next(therms)))
+   ret = 0;
+   name = temperature_config-acpi_sel;
+   if (!name) name = ecore_list_next(therms);
+   if (name)
  {
 char *p, *q;
 FILE *f;
-name = temperature_config-acpi_sel;
 snprintf(buf, sizeof(buf), 
/proc/acpi/thermal_zone/%s/temperature, name);
 f = fopen(buf, rb);
 if (f)
@@ -284,16 +285,15 @@
  fgets(buf, sizeof(buf), f); buf[sizeof(buf) - 1] = 0;
  fclose(f);
  p = strchr(buf, ':');
- if (!p)
+ if (p)
{
-  ret = 0;
-  continue;
+  p++;
+  while (*p == ' ') p++;
+  q = strchr(p, ' ');
+  if (q) *q = 0;
+  temp = atoi(p);
+  ret = 1;
}
- p++;
- while (*p == ' ') p++;
- q = strchr(p, ' ');
- if (q) *q = 0;
- temp = atoi(p);
   }
  }
ecore_list_destroy(therms);
@@ -414,7 +414,7 @@
temperature_config-high = 80;
temperature_config-sensor_name = evas_stringshare_add(temp1);
temperature_config-units = CELCIUS;
-   temperature_config-acpi_sel = evas_stringshare_add(TZ1);
+   temperature_config-acpi_sel = NULL;
  }
E_CONFIG_LIMIT(temperature_config-poll_time, 0.5, 1000.0);
E_CONFIG_LIMIT(temperature_config-low, 0, 100);



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


E CVS: apps/e englebass

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_apps.c 


Log Message:
Remove unused variables.
hash callback func should return 1 if the whole hash is to be checked.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_apps.c,v
retrieving revision 1.246
retrieving revision 1.247
diff -u -3 -r1.246 -r1.247
--- e_apps.c10 Dec 2006 09:27:33 -  1.246
+++ e_apps.c14 Dec 2006 15:28:27 -  1.247
@@ -50,7 +50,6 @@
double   begin, pass;
 };
 
-static Evas_Bool _e_apps_hash_cb_init  (Evas_Hash *hash, const char *key, 
void *data, void *fdata);
 static int   _e_apps_hash_idler_cb (void *data);
 static void  _e_app_free   (E_App *a);
 static E_App *_e_app_subapp_file_find  (E_App *a, const char *file);
@@ -199,8 +198,6 @@
 #if IDLE_ICONS
 if ((!a-idle_icon)  (a-icon_type == E_APP_ICON_UNKNOWN))
   {
- int theme_match = 0;
-
  a-idle_icon = 1;
  _e_app_icon_type(a);
   }
@@ -1266,6 +1263,7 @@
winner-ok = (*count);
  }
free(count);
+   return 1;
 }
 #endif
 
@@ -1273,8 +1271,8 @@
 EAPI E_App *
 e_app_border_find(E_Border *bd)
 {
-   Evas_List *l, *l_match = NULL;
-   int ok, match = 0;
+   Evas_List *l;
+   int ok;
E_App *a = NULL, *a_match = NULL, *clever_match = NULL;
char *title;
double begin, time, clever_time = 0.0;
@@ -1781,9 +1779,7 @@
 EAPI void
 e_app_fields_fill(E_App *a, const char *path)
 {
-   char *str, *v;
const char *lang;
-   int size;

/* get our current language */
lang = e_intl_language_alias_get();
@@ -1892,7 +1888,7 @@
 e_app_fields_save(E_App *a)
 {
char buf[PATH_MAX];
-   const char *lang, *ext = NULL;
+   const char *ext = NULL;
int new_eap = 0;
 
E_OBJECT_CHECK(a);
@@ -1982,7 +1978,6 @@
 _e_app_fields_save_others(E_App *a)
 {
Evas_List *l;
-   char buf[PATH_MAX];
 
for (l = a-references; l; l = l-next)
  {



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


E CVS: apps/e englebass

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_theme.c 


Log Message:
Remove unused variable.
Don't abuse pointers.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_theme.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -3 -r1.26 -r1.27
--- e_theme.c   21 Oct 2006 10:28:01 -  1.26
+++ e_theme.c   14 Dec 2006 15:32:38 -  1.27
@@ -244,12 +244,17 @@
 }
   if (coll) edje_file_collection_list_free(coll);
}
- ok = evas_hash_find(res-quickfind, group);
  /* save in the group cache hash */
- if (ok)
-   group_cache = evas_hash_add(group_cache, buf, res);
+ if (evas_hash_find(res-quickfind, group))
+   {
+  group_cache = evas_hash_add(group_cache, buf, res);
+  ok = 1;
+   }
  else
-   group_cache = evas_hash_add(group_cache, buf, (void *)1);
+   {
+  group_cache = evas_hash_add(group_cache, buf, (void *)1);
+  ok = 0;
+   }
   }
 else if (tres == (void *)1) /* special pointer 1 == not there */
   ok = 0;
@@ -274,7 +279,6 @@
 e_theme_file_set(const char *category, const char *file)
 {
E_Theme_Result *res;
-   char buf[4096];
 
if (group_cache)
  {



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


E CVS: apps/e englebass

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_remember.c 


Log Message:
Remove unused variables.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_remember.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -3 -r1.20 -r1.21
--- e_remember.c31 Oct 2006 11:18:34 -  1.20
+++ e_remember.c14 Dec 2006 15:34:01 -  1.21
@@ -403,9 +403,7 @@
 #endif
 #if REMEMBER_HIERARCHY
Evas_List *l;
-   E_Remember *best_rem;
-   int best_score = 0;
-   
+
/* This search method finds the best possible match available and is
 * based on the fact that the list is sorted, with those remembers
 * with the most possible matches at the start of the list. This
@@ -415,7 +413,6 @@
  {
 E_Remember *rem;
 const char *title = ;
-int score = 0;
 
 rem = l-data;
 if (check_usable  !e_remember_usable_get(rem))



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


E CVS: apps/e englebass

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_int_config_keybindings.c e_int_config_mousebindings.c 


Log Message:
Remove unused variables.
Fix assignment, should be a test.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_config_keybindings.c,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -3 -r1.45 -r1.46
--- e_int_config_keybindings.c  11 Dec 2006 10:19:46 -  1.45
+++ e_int_config_keybindings.c  14 Dec 2006 15:36:09 -  1.46
@@ -644,9 +644,6 @@
 _update_action_list(E_Config_Dialog_Data *cfdata)
 {
E_Config_Binding_Key *bi;
-   E_Action_Group *actg;
-   E_Action_Description *actd;
-   Evas_List *l, *l2;
int j = -1, i, n;
const char *action, *params;
 
@@ -996,7 +993,6 @@
 static int
 _grab_key_down_cb(void *data, int type, void *event)
 {
-   E_Config_Binding_Key *bi;
E_Config_Dialog_Data *cfdata;
Ecore_X_Event_Key_Down *ev;
 
===
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_config_mousebindings.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- e_int_config_mousebindings.c10 Dec 2006 15:35:13 -  1.11
+++ e_int_config_mousebindings.c14 Dec 2006 15:36:09 -  1.12
@@ -708,9 +708,6 @@
 {
E_Config_Binding_Mouse *eb;
E_Config_Binding_Wheel *bw;
-   E_Action_Group *actg;
-   E_Action_Description *actd;
-   Evas_List *l, *l2;
const char *action, *params;
int j = -1, i, n;
 
@@ -933,7 +930,7 @@
action = eb-action;
params = eb-params;
  }
-   else if (cfdata-locals.cur[0] = 'w')
+   else if (cfdata-locals.cur[0] == 'w')
  {
sscanf(cfdata-locals.cur, w%d, b);
bw = evas_list_nth(cfdata-binding.wheel, b);



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


E CVS: apps/e englebass

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_int_config_display.c e_int_config_fonts.c 


Log Message:
Remove unused variables.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_config_display.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -3 -r1.29 -r1.30
--- e_int_config_display.c  27 Nov 2006 15:56:58 -  1.29
+++ e_int_config_display.c  14 Dec 2006 15:37:35 -  1.30
@@ -316,7 +316,6 @@
 _basic_apply_data(E_Config_Dialog *cfd, E_Config_Dialog_Data *cfdata) 
 {
const char *sel_res, *sel_rate;
-   int i, n, k, rr;
Ecore_X_Screen_Size size;
Ecore_X_Screen_Refresh_Rate rate;
E_Manager *man;
@@ -419,8 +418,6 @@
else
  {
Evas_List *l;
-   Ecore_X_Screen_Refresh_Rate c_rate;
-   Ecore_X_Screen_Size c_size;
 
cfdata-orig_size = ecore_x_randr_current_screen_size_get(man-root);
cfdata-orig_rate = 
ecore_x_randr_current_screen_refresh_rate_get(man-root);
@@ -550,8 +547,6 @@
 _load_rates(E_Config_Dialog_Data *cfdata)
 {
int r, k = 0, sel = 0;
-   Ecore_X_Screen_Refresh_Rate rt;
-   Ecore_X_Screen_Refresh_Rate *rts;
char buf[16];
Evas_List *l;
 
===
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_config_fonts.c,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -3 -r1.30 -r1.31
--- e_int_config_fonts.c27 Nov 2006 15:39:34 -  1.30
+++ e_int_config_fonts.c14 Dec 2006 15:37:35 -  1.31
@@ -282,8 +282,7 @@
 _basic_create_widgets(E_Config_Dialog *cfd, Evas *evas, E_Config_Dialog_Data 
*cfdata)
 {
Evas_Object *o, *of, *ob, *ot, *ott;
-   Evas_List *next, *fonts, *l = NULL;
-   int option_enable;
+   Evas_List *fonts, *l = NULL;
 
cfdata-cur_index = -1;
cfdata-evas = evas;



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


E CVS: apps/e englebass

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_int_config_color_classes.c e_int_config_mime.c 
e_int_config_mime_edit.c 


Log Message:
Remove unused variables.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_config_color_classes.c,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -3 -r1.25 -r1.26
--- e_int_config_color_classes.c27 Nov 2006 15:35:25 -  1.25
+++ e_int_config_color_classes.c14 Dec 2006 15:39:00 -  1.26
@@ -407,8 +407,7 @@
 {
Evas_Object *o, *of, *ob, *ot;
E_Radio_Group *rg;
-   Evas_List *l;
-  
+
o = e_widget_list_add(evas, 0, 0);
ot = e_widget_table_add(evas, 0);

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_config_mime.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -3 -r1.19 -r1.20
--- e_int_config_mime.c 28 Nov 2006 11:08:44 -  1.19
+++ e_int_config_mime.c 14 Dec 2006 15:39:00 -  1.20
@@ -182,7 +182,7 @@
 _basic_create(E_Config_Dialog *cfd, Evas *evas, E_Config_Dialog_Data *cfdata) 
 {
Evas_Object *o, *of, *ol;
-   Evas_Object *ot, *ob;
+   Evas_Object *ob;

o = e_widget_list_add(evas, 0, 1);
of  = e_widget_framelist_add(evas, _(Categories), 0);
@@ -542,7 +542,6 @@
Evas_List *l;
E_Config_Dialog_Data *cfdata;
E_Config_Mime_Icon *mi = NULL;
-   E_Config_Dialog *edit_dlg;
char *m;
int found = 0;

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_config_mime_edit.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- e_int_config_mime_edit.c28 Nov 2006 11:08:44 -  1.13
+++ e_int_config_mime_edit.c14 Dec 2006 15:39:00 -  1.14
@@ -290,7 +290,6 @@
Evas *evas;
E_Config_Dialog_Data *cfdata;
Evas_Object *icon = NULL;
-   const char *tmp;
char buf[4096];

cfdata = data;



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


E CVS: apps/e englebass

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_exehist.c 


Log Message:
Add return value.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_exehist.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- e_exehist.c 29 Oct 2006 09:04:26 -  1.7
+++ e_exehist.c 14 Dec 2006 15:39:26 -  1.8
@@ -226,7 +226,7 @@

if (!mime) return NULL;
_e_exehist_load();
-   if (!_e_exehist) return;
+   if (!_e_exehist) return NULL;
for (l = _e_exehist-mimes; l; l = l-next)
  {
ei = l-data;



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


E CVS: apps/e englebass

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_int_border_prop.c e_int_config_shelf.c 


Log Message:
Remove unused variables.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_border_prop.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- e_int_border_prop.c 30 Nov 2006 18:01:29 -  1.11
+++ e_int_border_prop.c 14 Dec 2006 15:40:19 -  1.12
@@ -67,8 +67,6 @@
 e_int_border_prop(E_Border *bd) 
 {
E_Dialog *dia;
-   Evas_Object *o, *ob;
-   Evas_Coord w, h;
 
if (bd-border_prop_dialog) return;

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_config_shelf.c,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -3 -r1.28 -r1.29
--- e_int_config_shelf.c27 Nov 2006 16:35:30 -  1.28
+++ e_int_config_shelf.c14 Dec 2006 15:40:19 -  1.29
@@ -272,8 +272,7 @@
 _cb_dialog_yes(void *data) 
 {
Shelf_Del_Confirm_Data *d;
-   E_Shelf *es;
-   
+
d = data;
if (!data) return;
 



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


E CVS: apps/e englebass

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_fm_prop.h 


Log Message:
Correct header define.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_fm_prop.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- e_fm_prop.h 4 Dec 2006 12:14:17 -   1.1
+++ e_fm_prop.h 14 Dec 2006 15:44:47 -  1.2
@@ -3,8 +3,8 @@
  */
 #ifdef E_TYPEDEFS
 #else
-#ifndef E_INT_CONFIG_FOCUS_H
-#define E_INT_CONFIG_FOCUS_H
+#ifndef E_FM_PROP_H
+#define E_FM_PROP_H
 
 EAPI E_Config_Dialog *e_fm_prop_file(E_Container *con, E_Fm2_Icon_Info *fi);
 



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


E CVS: apps/e englebass

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_fwin.c e_int_config_wallpaper.c e_widget_color_well.c 


Log Message:
Remove unused variables.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_fwin.c,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -3 -r1.24 -r1.25
--- e_fwin.c19 Nov 2006 03:43:18 -  1.24
+++ e_fwin.c14 Dec 2006 15:46:58 -  1.25
@@ -709,7 +709,7 @@
 */
if (evas_list_count(mlist) = 1)
  {
-char pcwd[4096], buf[4096], *cmd;
+char pcwd[4096], *cmd;
 Ecore_List *files_list = NULL, *cmds = NULL;
   
 need_dia = 1;
===
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_config_wallpaper.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -3 -r1.26 -r1.27
--- e_int_config_wallpaper.c1 Dec 2006 17:26:11 -   1.26
+++ e_int_config_wallpaper.c14 Dec 2006 15:46:58 -  1.27
@@ -350,7 +350,6 @@
 static void
 _fill_data(E_Config_Dialog_Data *cfdata)
 {
-   Evas_List *l;
char path[4096];
E_Config_Wallpaper *cw;
const E_Config_Desktop_Background *cfbg;
===
RCS file: /cvs/e/e17/apps/e/src/bin/e_widget_color_well.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- e_widget_color_well.c   14 Oct 2006 05:04:01 -  1.13
+++ e_widget_color_well.c   14 Dec 2006 15:46:58 -  1.14
@@ -125,7 +125,6 @@
 e_widget_color_well_add(Evas *evas, E_Color *color, int show_color_dialog)
 {
Evas_Object *obj, *o;
-   Evas_Coord mw, mh;
E_Widget_Data *wd;
E_Win *win;
 



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


E CVS: apps/e englebass

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_filereg.c 


Log Message:
Add return value.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_filereg.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- e_filereg.c 17 Oct 2006 12:29:00 -  1.1
+++ e_filereg.c 14 Dec 2006 15:48:10 -  1.2
@@ -42,6 +42,7 @@
  }
 
_e_filereg = evas_list_free(_e_filereg);
+   return 1;
 }
 
 EAPI int



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


E CVS: apps/e englebass

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_fm.c 


Log Message:
Remove unused variables.
Add cast for printf.
char - const char

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_fm.c,v
retrieving revision 1.117
retrieving revision 1.118
diff -u -3 -r1.117 -r1.118
--- e_fm.c  9 Dec 2006 04:46:37 -   1.117
+++ e_fm.c  14 Dec 2006 15:55:35 -  1.118
@@ -159,8 +159,8 @@
 struct _E_Fm2_Action
 {
E_Fm2_Action_Type  type;
-   char  *file;
-   char  *file2;
+   const char*file;
+   const char*file2;
intflags;
 };
 
@@ -187,8 +187,8 @@
 };
 
 static const char *_e_fm2_dev_path_map(const char *dev, const char *path);
-static void _e_fm2_file_add(Evas_Object *obj, char *file, int unique, char 
*file_rel, int after);
-static void _e_fm2_file_del(Evas_Object *obj, char *file);
+static void _e_fm2_file_add(Evas_Object *obj, const char *file, int unique, 
const char *file_rel, int after);
+static void _e_fm2_file_del(Evas_Object *obj, const char *file);
 static void _e_fm2_scan_start(Evas_Object *obj);
 static void _e_fm2_scan_stop(Evas_Object *obj);
 static void _e_fm2_queue_process(Evas_Object *obj); 
@@ -200,7 +200,7 @@
 static void _e_fm2_regions_eval(Evas_Object *obj);
 static void _e_fm2_config_free(E_Fm2_Config *cfg);
 
-static E_Fm2_Icon *_e_fm2_icon_new(E_Fm2_Smart_Data *sd, char *file);
+static E_Fm2_Icon *_e_fm2_icon_new(E_Fm2_Smart_Data *sd, const char *file);
 static void _e_fm2_icon_unfill(E_Fm2_Icon *ic);
 static int _e_fm2_icon_fill(E_Fm2_Icon *ic);
 static void _e_fm2_icon_free(E_Fm2_Icon *ic);
@@ -294,8 +294,8 @@
 static void _e_fm2_file_delete_no_cb(void *data, E_Dialog *dialog);
 static void _e_fm2_refresh_job_cb(void *data);
 
-static void _e_fm2_live_file_add(Evas_Object *obj, char *file, char *file_rel, 
int after);
-static void _e_fm2_live_file_del(Evas_Object *obj, char *file);
+static void _e_fm2_live_file_add(Evas_Object *obj, const char *file, const 
char *file_rel, int after);
+static void _e_fm2_live_file_del(Evas_Object *obj, const char *file);
 static void _e_fm2_live_file_changed(Evas_Object *obj, char *file);
 static void _e_fm2_live_process_begin(Evas_Object *obj);
 static void _e_fm2_live_process_end(Evas_Object *obj);
@@ -992,7 +992,7 @@
 }
 
 static void
-_e_fm2_file_add(Evas_Object *obj, char *file, int unique, char *file_rel, int 
after)
+_e_fm2_file_add(Evas_Object *obj, const char *file, int unique, const char 
*file_rel, int after)
 {
E_Fm2_Smart_Data *sd;
E_Fm2_Icon *ic, *ic2;
@@ -1070,7 +1070,7 @@
 }
 
 static void
-_e_fm2_file_del(Evas_Object *obj, char *file)
+_e_fm2_file_del(Evas_Object *obj, const char *file)
 {
E_Fm2_Smart_Data *sd;
E_Fm2_Icon *ic;
@@ -1629,7 +1629,7 @@
 /**/
 
 static E_Fm2_Icon *
-_e_fm2_icon_new(E_Fm2_Smart_Data *sd, char *file)
+_e_fm2_icon_new(E_Fm2_Smart_Data *sd, const char *file)
 {
E_Fm2_Icon *ic;

@@ -3025,12 +3025,9 @@
 {
E_Fm2_Smart_Data *sd;
E_Event_Dnd_Drop *ev;
-   E_Fm2_Icon *ic;
Evas_List *fsel, *l, *ll;
-   int i, refresh = 0;
char buf[4096], *fl, *d;
-   FILE *f;
-   
+
sd = data;
if (!type) return;
if (strcmp(type, text/uri-list)) return;
@@ -3125,7 +3122,7 @@
  /* move the file into the subdir */
  snprintf(buf, sizeof(buf), %s/%s/%s,
   sd-realpath, sd-drop_icon-info.file, 
ecore_file_get_file(ll-data));
- printf(mv %s %s\n, ll-data, buf);
+ printf(mv %s %s\n, (char *)ll-data, buf);
  e_fm2_fop_move_add(sd-obj,
 ll-data, buf,
 NULL, 0, 0);
@@ -3211,7 +3208,7 @@
/* move the file into the subdir */
snprintf(buf, sizeof(buf), %s/%s,
 sd-realpath, 
ecore_file_get_file(ll-data));
-   printf(mv %s %s\n, ll-data, buf);
+   printf(mv %s %s\n, (char *)ll-data, buf);
e_fm2_fop_move_add(sd-obj,
   ll-data, buf,
   NULL, 0, 1);
@@ -3359,10 +3356,8 @@
 _e_fm2_cb_icon_mouse_down(void *data, Evas *e, Evas_Object *obj, void 
*event_info)
 {
Evas_Event_Mouse_Down *ev;
-   E_Fm2_Icon *ic, *ic2;
-   int multi_sel = 0, range_sel = 0, seen = 0;
-   Evas_List *l;
-   
+   E_Fm2_Icon *ic;
+
ic = data;
ev = event_info;
if ((ev-button == 1)  (ev-flags  EVAS_BUTTON_DOUBLE_CLICK))
@@ -4941,8 +4936,7 @@
E_Fm2_Icon *ic;
E_Manager *man;
E_Container *con;
-   char text[PATH_MAX + 256];
-   
+ 
ic = data;
if (ic-entry_dialog) return;

@@ -5013,8 +5007,6 @@
 static void
 

E CVS: apps/e devilhorns

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_bindings.c 


Log Message:
Add missing traps for numlock state when executing bindings.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_bindings.c,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -3 -r1.33 -r1.34
--- e_bindings.c23 Aug 2006 00:34:33 -  1.33
+++ e_bindings.c14 Dec 2006 17:52:51 -  1.34
@@ -368,6 +368,7 @@
 if (bind-mod  E_BINDING_MODIFIER_CTRL) mod |= 
ECORE_X_MODIFIER_CTRL;
 if (bind-mod  E_BINDING_MODIFIER_ALT) mod |= 
ECORE_X_MODIFIER_ALT;
 if (bind-mod  E_BINDING_MODIFIER_WIN) mod |= 
ECORE_X_MODIFIER_WIN;
+if (bind-mod  ECORE_X_LOCK_NUM) mod |= ECORE_X_LOCK_NUM;
 ecore_x_window_key_grab(win, bind-key,
 mod, bind-any_mod);
  }
@@ -393,6 +394,7 @@
 if (bind-mod  E_BINDING_MODIFIER_CTRL) mod |= 
ECORE_X_MODIFIER_CTRL;
 if (bind-mod  E_BINDING_MODIFIER_ALT) mod |= 
ECORE_X_MODIFIER_ALT;
 if (bind-mod  E_BINDING_MODIFIER_WIN) mod |= 
ECORE_X_MODIFIER_WIN;
+if (bind-mod  ECORE_X_LOCK_NUM) mod |= ECORE_X_LOCK_NUM;
 ecore_x_window_key_ungrab(win, bind-key,
   mod, bind-any_mod);
  }
@@ -409,6 +411,7 @@
if (ev-modifiers  ECORE_X_MODIFIER_CTRL) mod |= E_BINDING_MODIFIER_CTRL;
if (ev-modifiers  ECORE_X_MODIFIER_ALT) mod |= E_BINDING_MODIFIER_ALT;
if (ev-modifiers  ECORE_X_MODIFIER_WIN) mod |= E_BINDING_MODIFIER_WIN;
+   if (ev-modifiers  ECORE_X_LOCK_NUM) mod |= ECORE_X_LOCK_NUM;
for (l = key_bindings; l; l = l-next)
  {
E_Binding_Key *bind;
@@ -447,6 +450,7 @@
if (ev-modifiers  ECORE_X_MODIFIER_CTRL) mod |= E_BINDING_MODIFIER_CTRL;
if (ev-modifiers  ECORE_X_MODIFIER_ALT) mod |= E_BINDING_MODIFIER_ALT;
if (ev-modifiers  ECORE_X_MODIFIER_WIN) mod |= E_BINDING_MODIFIER_WIN;
+   if (ev-modifiers  ECORE_X_LOCK_NUM) mod |= ECORE_X_LOCK_NUM;
for (l = key_bindings; l; l = l-next)
  {
E_Binding_Key *bind;



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


E CVS: apps/e englebass

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_int_config_desk.c 


Log Message:
Return 1 on successful apply

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_config_desk.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- e_int_config_desk.c 15 Nov 2006 11:50:06 -  1.3
+++ e_int_config_desk.c 14 Dec 2006 19:25:19 -  1.4
@@ -127,6 +127,7 @@
e_bg_update();
 
e_config_save_queue();
+   return 1;
 }
 
 static Evas_Object *



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


E CVS: apps/e englebass

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_start_main.c 


Log Message:
Add missing header.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_start_main.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- e_start_main.c  5 Nov 2006 05:57:47 -   1.11
+++ e_start_main.c  14 Dec 2006 19:26:29 -  1.12
@@ -5,6 +5,7 @@
 #include string.h
 #include dlfcn.h
 #include sys/types.h
+#include sys/wait.h
 #include sys/stat.h
 #include sys/utsname.h
 #include fcntl.h



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


E CVS: apps/e englebass

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_sys_main.c 


Log Message:
Add missing header.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_sys_main.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- e_sys_main.c28 Sep 2006 06:35:43 -  1.6
+++ e_sys_main.c14 Dec 2006 19:27:46 -  1.7
@@ -11,6 +11,7 @@
 #include pwd.h
 #include grp.h
 #include fnmatch.h
+#include ctype.h
 #ifdef HAVE_ALLOCA_H
 #include alloca.h
 #endif



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


E CVS: apps/e englebass

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_fm_prop.c e_widget_desk_preview.c 


Log Message:
Remove unused variables.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_fm_prop.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- e_fm_prop.c 9 Dec 2006 06:28:25 -   1.3
+++ e_fm_prop.c 14 Dec 2006 19:28:36 -  1.4
@@ -101,7 +101,6 @@
 static void
 _fill_data(E_Config_Dialog_Data *cfdata, E_Fm2_Icon_Info *fi)
 {
-   char buf[4096];
struct passwd *pw;

cfdata-fi = fi;
===
RCS file: /cvs/e/e17/apps/e/src/bin/e_widget_desk_preview.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- e_widget_desk_preview.c 27 Nov 2006 12:58:46 -  1.10
+++ e_widget_desk_preview.c 14 Dec 2006 19:28:36 -  1.11
@@ -124,7 +124,6 @@
 _e_wid_reconfigure(E_Widget_Data *wd)
 {
Evas_List *l, *delete = NULL;
-   Evas_Object *o;
int x, y;
int aw, ah; /* available */
int mw, mh; /* min size for each desk */
@@ -218,7 +217,6 @@
 {
Evas_Object *obj, *o;
E_Widget_Data *wd;
-   Evas_Coord iw, ih;
E_Zone *zone;
 
obj = e_widget_add(evas);



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


E CVS: apps/e englebass

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_zone.c e_zone.h 


Log Message:
char - const char

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_zone.c,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -3 -r1.105 -r1.106
--- e_zone.c29 Oct 2006 10:29:45 -  1.105
+++ e_zone.c14 Dec 2006 19:29:24 -  1.106
@@ -596,7 +596,7 @@
 }
 
 EAPI int
-e_zone_exec(E_Zone *zone, char *exe)
+e_zone_exec(E_Zone *zone, const char *exe)
 {
int ret = 0;
char *p1, *p2;
===
RCS file: /cvs/e/e17/apps/e/src/bin/e_zone.h,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -3 -r1.37 -r1.38
--- e_zone.h21 Jul 2006 00:46:40 -  1.37
+++ e_zone.h14 Dec 2006 19:29:24 -  1.38
@@ -90,7 +90,7 @@
 EAPI void   e_zone_flip_win_disable(void);
 EAPI void   e_zone_flip_win_restore(void);
 
-EAPI inte_zone_exec(E_Zone *zone, char *exe);
+EAPI inte_zone_exec(E_Zone *zone, const char *exe);
 EAPI inte_zone_app_exec(E_Zone *zone, E_App *a);
 
 extern EAPI int E_EVENT_ZONE_DESK_COUNT_SET;



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


E CVS: apps/e englebass

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

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


Modified Files:
e_mod_main.c 


Log Message:
Remove unused variables.

===
RCS file: /cvs/e/e17/apps/e/src/modules/ibar/e_mod_main.c,v
retrieving revision 1.160
retrieving revision 1.161
diff -u -3 -r1.160 -r1.161
--- e_mod_main.c2 Dec 2006 10:15:32 -   1.160
+++ e_mod_main.c14 Dec 2006 19:31:48 -  1.161
@@ -1095,7 +1095,6 @@
 * the simplest. */
if (inst-gcc-autoscroll  ic)
  {
-Evas_Coord ix, iy, iw, ih;
 double ax,ay;
 
 e_box_align_get(inst-gcc-o_box, ax, ay);
@@ -1175,11 +1174,7 @@
 {
E_Event_Dnd_Move *ev;
Instance *inst;
-   IBar_Icon *ic;
-   Evas_Coord xx, yy;
-   int x, y;
-   int wx, wy;
-   
+
ev = event_info;
inst = data;
 
@@ -1325,7 +1320,6 @@
   e_app_files_list_append(fl, inst-ibar-apps);
  }
  }
-   clean:
evas_object_del(inst-ibar-o_drop);
inst-ibar-o_drop = NULL;
evas_object_del(inst-ibar-o_drop_over);



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


E CVS: apps/e englebass

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

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


Modified Files:
freqset.c 


Log Message:
Declare function.
Make internal function static.
Remove unused variables.
Formatting.

===
RCS file: /cvs/e/e17/apps/e/src/modules/cpufreq/freqset.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- freqset.c   3 Sep 2006 08:51:32 -   1.4
+++ freqset.c   14 Dec 2006 19:36:59 -  1.5
@@ -1,3 +1,6 @@
+/*
+ * vim:ts=8:sw=3:sts=8:noexpandtab:cino=5n-3f0^-2{2
+ */
 #include stdio.h
 #include stdlib.h
 #include sys/types.h
@@ -9,12 +12,11 @@
 #include sys/sysctl.h
 #endif
 
+static int sys_cpu_setall(const char *control, const char *value);
+
 int
 main(int argc, char *argv[])
 {
-   int new_frequency = 0;
-   FILE *f;
-   
if (argc != 3)
  {
 fprintf(stderr, Invalid command. Syntax:\n);
@@ -53,7 +55,7 @@
 #else   
if (!strcmp(argv[1], frequency))
  {
-   if(sys_cpu_setall(scaling_setspeed, argv[2]) == 0)
+   if (sys_cpu_setall(scaling_setspeed, argv[2]) == 0)
   {
  fprintf(stderr, Unable to open frequency interface for 
writing.\n);
  return 1;
@@ -63,7 +65,7 @@
  }
else if (!strcmp(argv[1], governor))
  {
-   if(sys_cpu_setall(scaling_governor, argv[2]) == 0)
+   if (sys_cpu_setall(scaling_governor, argv[2]) == 0)
   {
  fprintf(stderr, Unable to open governor interface for 
writing.\n);
  return 1;
@@ -81,22 +83,25 @@
seteuid(-1);
 }
 
-int sys_cpu_setall(const char *control, const char *value)
+static int
+sys_cpu_setall(const char *control, const char *value)
 {
-   int num = 0;
-   charfilename[4096];
-   FILE*f;
-   
-   while(1){
-   snprintf(filename, sizeof(filename), 
/sys/devices/system/cpu/cpu%i/cpufreq/%s, num, control);
-   f = fopen(filename, w);
-   
-   if(!f){
-   return(num);
-   }
-   fprintf(f, %s\n, value);
-   fclose(f);
-   num++;
-   }
-   return -1;
+   int num = 0;
+   charfilename[4096];
+   FILE*f;
+
+   while (1)
+ {
+   snprintf(filename, sizeof(filename), 
/sys/devices/system/cpu/cpu%i/cpufreq/%s, num, control);
+   f = fopen(filename, w);
+
+   if (!f)
+ {
+return(num);
+ }
+   fprintf(f, %s\n, value);
+   fclose(f);
+   num++;
+ }
+   return -1;
 }



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


E CVS: apps/e englebass

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

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


Modified Files:
e_mod_main.c 


Log Message:
Remove unused variables.

===
RCS file: /cvs/e/e17/apps/e/src/modules/ibox/e_mod_main.c,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -3 -r1.75 -r1.76
--- e_mod_main.c30 Nov 2006 18:07:50 -  1.75
+++ e_mod_main.c14 Dec 2006 19:37:51 -  1.76
@@ -883,10 +883,7 @@
E_Event_Dnd_Enter *ev;
Instance *inst;
Evas_Object *o, *o2;
-   IBox_Icon *ic;
-   Evas_Coord xx, yy;
-   int x, y;
-   
+
ev = event_info;
inst = data;
o = edje_object_add(evas_object_evas_get(inst-ibox-o_box));
@@ -912,10 +909,7 @@
 {
E_Event_Dnd_Move *ev;
Instance *inst;
-   IBox_Icon *ic;
-   Evas_Coord xx, yy;
-   int x, y;
-   
+
ev = event_info;
inst = data;
_ibox_drop_position_update(inst, ev-x, ev-y);



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


E CVS: apps/e englebass

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_int_config_apps.c e_int_config_desklock.c 
e_int_config_wallpaper_gradient.c e_shelf.c 


Log Message:
Remove undefined functions.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_config_apps.c,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -3 -r1.52 -r1.53
--- e_int_config_apps.c 2 Dec 2006 00:31:11 -   1.52
+++ e_int_config_apps.c 14 Dec 2006 19:42:21 -  1.53
@@ -14,7 +14,6 @@
 
 static void *_create_data(E_Config_Dialog *cfd);
 static void _free_data(E_Config_Dialog *cfd, E_Config_Dialog_Data *cfdata);
-static int _basic_apply_data(E_Config_Dialog *cfd, E_Config_Dialog_Data 
*cfdata);
 static Evas_Object *_basic_create_widgets(E_Config_Dialog *cfd, Evas *evas, 
E_Config_Dialog_Data *cfdata);
 static void _move_file_up_in_order(const char *order, const char *file);
 static void _move_file_down_in_order(const char *order, const char *file);
===
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_config_desklock.c,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -3 -r1.42 -r1.43
--- e_int_config_desklock.c 4 Nov 2006 12:53:34 -   1.42
+++ e_int_config_desklock.c 14 Dec 2006 19:42:21 -  1.43
@@ -29,8 +29,6 @@
 
/**/
 
 static int  _e_desklock_zone_num_get(void);
-static void _load_bgs(E_Config_Dialog_Data *cfdata);
-static void _ibg_list_cb_bg_selected(void *data);
 
 static void _e_desklock_cb_show_passwd(void *data, Evas_Object *obj);
 static void _e_desklock_cb_lb_show_change(void *data, Evas_Object *obj);
===
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_config_wallpaper_gradient.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -3 -r1.17 -r1.18
--- e_int_config_wallpaper_gradient.c   14 Oct 2006 05:16:00 -  1.17
+++ e_int_config_wallpaper_gradient.c   14 Dec 2006 19:42:21 -  1.18
@@ -52,8 +52,6 @@
 static void _import_cb_ok(void *data, E_Dialog *dia);
 static void _import_config_save(Import *import);
 static void _import_cb_dia_del(void *obj);
-static void _preview_widget_grad_resize(void *data, Evas_Object *obj,
-   Evas_Coord w, Evas_Coord h);
 static Evas_Object *_preview_widget_add(Evas *evas);
 static void _import_cb_on_change(void *data, Evas_Object *obj);
 static void _import_cb_color_swap(void *data, void *data2);
===
RCS file: /cvs/e/e17/apps/e/src/bin/e_shelf.c,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -3 -r1.43 -r1.44
--- e_shelf.c   30 Oct 2006 10:42:23 -  1.43
+++ e_shelf.c   14 Dec 2006 19:42:21 -  1.44
@@ -12,7 +12,6 @@
 static void _e_shelf_cb_menu_edit(void *data, E_Menu *m, E_Menu_Item *mi);
 static void _e_shelf_cb_menu_contents(void *data, E_Menu *m, E_Menu_Item *mi);
 static void _e_shelf_cb_confirm_dialog_yes(void *data);
-static void _e_shelf_cb_confirm_dialog_no(void *data);
 static void _e_shelf_cb_menu_delete(void *data, E_Menu *m, E_Menu_Item *mi);
 static void _e_shelf_menu_append(E_Shelf *es, E_Menu *mn);
 static void _e_shelf_cb_menu_items_append(void *data, E_Menu *mn);



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


E CVS: apps/e raster

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_bindings.c e_int_config_keybindings.c 


Log Message:


numlock binding... WRONG. see comments.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_bindings.c,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -3 -r1.34 -r1.35
--- e_bindings.c14 Dec 2006 17:52:51 -  1.34
+++ e_bindings.c14 Dec 2006 23:38:33 -  1.35
@@ -368,7 +368,9 @@
 if (bind-mod  E_BINDING_MODIFIER_CTRL) mod |= 
ECORE_X_MODIFIER_CTRL;
 if (bind-mod  E_BINDING_MODIFIER_ALT) mod |= 
ECORE_X_MODIFIER_ALT;
 if (bind-mod  E_BINDING_MODIFIER_WIN) mod |= 
ECORE_X_MODIFIER_WIN;
+/* see comment in e_bindings on numlock
 if (bind-mod  ECORE_X_LOCK_NUM) mod |= ECORE_X_LOCK_NUM;
+ */
 ecore_x_window_key_grab(win, bind-key,
 mod, bind-any_mod);
  }
@@ -394,7 +396,9 @@
 if (bind-mod  E_BINDING_MODIFIER_CTRL) mod |= 
ECORE_X_MODIFIER_CTRL;
 if (bind-mod  E_BINDING_MODIFIER_ALT) mod |= 
ECORE_X_MODIFIER_ALT;
 if (bind-mod  E_BINDING_MODIFIER_WIN) mod |= 
ECORE_X_MODIFIER_WIN;
+/* see comment in e_bindings on numlock
 if (bind-mod  ECORE_X_LOCK_NUM) mod |= ECORE_X_LOCK_NUM;
+ */
 ecore_x_window_key_ungrab(win, bind-key,
   mod, bind-any_mod);
  }
@@ -411,7 +415,22 @@
if (ev-modifiers  ECORE_X_MODIFIER_CTRL) mod |= E_BINDING_MODIFIER_CTRL;
if (ev-modifiers  ECORE_X_MODIFIER_ALT) mod |= E_BINDING_MODIFIER_ALT;
if (ev-modifiers  ECORE_X_MODIFIER_WIN) mod |= E_BINDING_MODIFIER_WIN;
+   /* FIXME: there is a good reason numlock was ignored. sometimes people
+* have it on, sometimes they don't, and often they have no idea. wy
+* back in E 0.1-0.13 or so days this caused issues thus numlock,
+* scrollock and capslock are not usable modifiers.
+* 
+* if we REALLY want to be able to use numlock we need to add more binding
+* flags and config that says REALLY pay attention to numlock for this
+* binding field in the binding (like there is a any_mod flag - we need a
+* num_lock_respect field)
+* 
+* also it should be an E_BINDING_MODIFIER_LOCK_NUM as the ecore lock flag
+* may vary from system to system as different xservers may have differing
+* modifier masks for numlock (it is queried at startup).
+* 
if (ev-modifiers  ECORE_X_LOCK_NUM) mod |= ECORE_X_LOCK_NUM;
+*/
for (l = key_bindings; l; l = l-next)
  {
E_Binding_Key *bind;
@@ -450,7 +469,9 @@
if (ev-modifiers  ECORE_X_MODIFIER_CTRL) mod |= E_BINDING_MODIFIER_CTRL;
if (ev-modifiers  ECORE_X_MODIFIER_ALT) mod |= E_BINDING_MODIFIER_ALT;
if (ev-modifiers  ECORE_X_MODIFIER_WIN) mod |= E_BINDING_MODIFIER_WIN;
+   /* see comment in e_bindings on numlock
if (ev-modifiers  ECORE_X_LOCK_NUM) mod |= ECORE_X_LOCK_NUM;
+*/
for (l = key_bindings; l; l = l-next)
  {
E_Binding_Key *bind;
===
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_config_keybindings.c,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -3 -r1.46 -r1.47
--- e_int_config_keybindings.c  14 Dec 2006 15:36:09 -  1.46
+++ e_int_config_keybindings.c  14 Dec 2006 23:38:33 -  1.47
@@ -1037,9 +1037,10 @@
   mod |= E_BINDING_MODIFIER_ALT;
 if (ev-modifiers  ECORE_X_MODIFIER_WIN)
   mod |= E_BINDING_MODIFIER_WIN;
+/* see comment in e_bindings on numlock
 if (ev-modifiers  ECORE_X_LOCK_NUM) 
   mod |= ECORE_X_LOCK_NUM;
-
+ */
 if (cfdata-locals.add)
   {
  found = 0;
@@ -1315,11 +1316,13 @@
free(l);
  }
 
+   /* see comment in e_bindings on numlock
if (bi-modifiers  ECORE_X_LOCK_NUM) 
  {
if (b[0]) strcat(b,  );
strcat(b, _(OFF));
  }
+   */

if (!b[0]) return strdup(TEXT_NONE_ACTION_KEY);
return strdup(b);



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


E CVS: libs/ewl ningerso

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ningerso
Project : e17
Module  : libs/ewl

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


Modified Files:
Makefile.am 


Log Message:
Provide libtool version information for loading modules, this won't make much
difference until a release is made.

===
RCS file: /cvs/e/e17/libs/ewl/src/engines/evas_xrender_x11/Makefile.am,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- Makefile.am 30 Aug 2006 02:21:48 -  1.2
+++ Makefile.am 15 Dec 2006 02:48:24 -  1.3
@@ -19,7 +19,7 @@
ewl_engine_evas_xrender_x11.c
 
 evas_xrender_x11_la_LIBADD = $(top_builddir)/src/lib/libewl.la
-evas_xrender_x11_la_LDFLAGS = -module -avoid-version \
+evas_xrender_x11_la_LDFLAGS = -module -version-info 
@INTERFACE_CURRENT@:@INTERFACE_REVISION@:@INTERFACE_AGE@ \
-L$(top_builddir)/src/lib \
-L$(top_builddir)/src/lib/.libs
 evas_xrender_x11_la_DEPENDENCIES =



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


E CVS: libs/ewl ningerso

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ningerso
Project : e17
Module  : libs/ewl

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


Modified Files:
Makefile.am 


Log Message:
Provide libtool version information for loading modules, this won't make much
difference until a release is made.

===
RCS file: /cvs/e/e17/libs/ewl/src/engines/x11/Makefile.am,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- Makefile.am 22 Jun 2006 01:12:28 -  1.2
+++ Makefile.am 15 Dec 2006 02:48:24 -  1.3
@@ -19,7 +19,7 @@
ewl_engine_x11.c
 
 x11_la_LIBADD = $(top_builddir)/src/lib/libewl.la
-x11_la_LDFLAGS = -module -avoid-version \
+x11_la_LDFLAGS = -module -version-info 
@INTERFACE_CURRENT@:@INTERFACE_REVISION@:@INTERFACE_AGE@ \
-L$(top_builddir)/src/lib \
-L$(top_builddir)/src/lib/.libs
 x11_la_DEPENDENCIES =



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


E CVS: libs/ewl ningerso

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ningerso
Project : e17
Module  : libs/ewl

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


Modified Files:
Makefile.am 


Log Message:
Provide libtool version information for loading modules, this won't make much
difference until a release is made.

===
RCS file: /cvs/e/e17/libs/ewl/src/engines/evas/Makefile.am,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makefile.am 11 Jul 2006 01:10:48 -  1.1
+++ Makefile.am 15 Dec 2006 02:48:23 -  1.2
@@ -19,7 +19,7 @@
ewl_engine_evas.c
 
 evas_la_LIBADD = $(top_builddir)/src/lib/libewl.la
-evas_la_LDFLAGS = -module -avoid-version \
+evas_la_LDFLAGS = -module -version-info 
@INTERFACE_CURRENT@:@INTERFACE_REVISION@:@INTERFACE_AGE@ \
-L$(top_builddir)/src/lib \
-L$(top_builddir)/src/lib/.libs
 evas_la_DEPENDENCIES =



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


E CVS: libs/ewl ningerso

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ningerso
Project : e17
Module  : libs/ewl

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


Modified Files:
Makefile.am 


Log Message:
Provide libtool version information for loading modules, this won't make much
difference until a release is made.

===
RCS file: /cvs/e/e17/libs/ewl/src/engines/evas_fb/Makefile.am,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- Makefile.am 22 Jun 2006 01:12:27 -  1.2
+++ Makefile.am 15 Dec 2006 02:48:24 -  1.3
@@ -19,7 +19,7 @@
ewl_engine_evas_fb.c
 
 evas_fb_la_LIBADD = $(top_builddir)/src/lib/libewl.la
-evas_fb_la_LDFLAGS = -module -avoid-version \
+evas_fb_la_LDFLAGS = -module -version-info 
@INTERFACE_CURRENT@:@INTERFACE_REVISION@:@INTERFACE_AGE@ \
-L$(top_builddir)/src/lib \
-L$(top_builddir)/src/lib/.libs
 evas_fb_la_DEPENDENCIES =



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


E CVS: libs/ewl ningerso

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ningerso
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl


Modified Files:
configure.in 


Log Message:
Provide libtool version information for loading modules, this won't make much
difference until a release is made.

===
RCS file: /cvs/e/e17/libs/ewl/configure.in,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -3 -r1.91 -r1.92
--- configure.in18 Nov 2006 06:15:56 -  1.91
+++ configure.in15 Dec 2006 02:48:23 -  1.92
@@ -242,6 +242,19 @@
 CFLAGS=$EPSILON_CFLAGS $CFLAGS
 
 ###
+# Define these at the bottom as they are not release versions, but API
+# revisions numbers.
+INTERFACE_CURRENT=1
+INTERFACE_REVISION=0
+INTERFACE_AGE=0
+
+AC_SUBST(INTERFACE_CURRENT)
+AC_SUBST(INTERFACE_REVISION)
+AC_SUBST(INTERFACE_AGE)
+
+AC_DEFINE_UNQUOTED(INTERFACE_CURRENT, $INTERFACE_CURRENT, [Interface current 
version number])
+AC_DEFINE_UNQUOTED(INTERFACE_REVISION, $INTERFACE_REVISION, [Interface 
revision number])
+AC_DEFINE_UNQUOTED(INTERFACE_AGE, $INTERFACE_AGE, [Interface age number])
 
 CFLAGS=$PCFLAGS
 



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


E CVS: libs/ewl ningerso

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ningerso
Project : e17
Module  : libs/ewl

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


Modified Files:
Makefile.am 


Log Message:
Provide libtool version information for loading modules, this won't make much
difference until a release is made.

===
RCS file: /cvs/e/e17/libs/ewl/src/engines/evas_software_x11/Makefile.am,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- Makefile.am 22 Jun 2006 01:12:28 -  1.2
+++ Makefile.am 15 Dec 2006 02:48:24 -  1.3
@@ -19,7 +19,7 @@
ewl_engine_evas_software_x11.c
 
 evas_software_x11_la_LIBADD = $(top_builddir)/src/lib/libewl.la
-evas_software_x11_la_LDFLAGS = -module -avoid-version \
+evas_software_x11_la_LDFLAGS = -module -version-info 
@INTERFACE_CURRENT@:@INTERFACE_REVISION@:@INTERFACE_AGE@ \
-L$(top_builddir)/src/lib \
-L$(top_builddir)/src/lib/.libs
 evas_software_x11_la_DEPENDENCIES =



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


E CVS: libs/ewl ningerso

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ningerso
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/lib


Modified Files:
Makefile.am ewl_engines.c 


Log Message:
Provide libtool version information for loading modules, this won't make much
difference until a release is made.

===
RCS file: /cvs/e/e17/libs/ewl/src/lib/Makefile.am,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -3 -r1.43 -r1.44
--- Makefile.am 30 Nov 2006 19:35:46 -  1.43
+++ Makefile.am 15 Dec 2006 02:48:23 -  1.44
@@ -184,4 +184,4 @@
 installed_headers_DATA = $(EWLHEADERS)
 
 libewl_la_LIBADD = @EDJE_LIBS@ @ECORE_LIBS@ @EVAS_LIBS@ @EMOTION_LIBS@ 
@EPSILON_LIBS@ -lm
-libewl_la_LDFLAGS = -version-info 1:0:0
+libewl_la_LDFLAGS = -version-info 
@INTERFACE_CURRENT@:@INTERFACE_REVISION@:@INTERFACE_AGE@
===
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_engines.c,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -3 -r1.27 -r1.28
--- ewl_engines.c   12 Dec 2006 15:53:35 -  1.27
+++ ewl_engines.c   15 Dec 2006 02:48:23 -  1.28
@@ -125,13 +125,21 @@
if (engine)
DRETURN_PTR(engine, DLEVEL_STABLE);
 
-   snprintf(filename, sizeof(filename), %s/ewl/%s/%s.so,
+   snprintf(filename, sizeof(filename), %s/ewl/%s/%s.so.%s,
PACKAGE_LIB_DIR, 
-   EWL_ENGINE_DIR, name);
+   EWL_ENGINE_DIR, name,
+   INTERFACE_CURRENT);
if (!ecore_file_exists(filename))
{
-   DWARNING(Given engine name dosen't exist.);
-   DRETURN_PTR(NULL, DLEVEL_STABLE);
+   snprintf(filename, sizeof(filename), %s/ewl/%s/%s.%s.so,
+   PACKAGE_LIB_DIR,
+   EWL_ENGINE_DIR, name,
+   INTERFACE_CURRENT);
+   if (!ecore_file_exists(filename))
+   {
+   DWARNING(Given engine name dosen't exist.);
+   DRETURN_PTR(NULL, DLEVEL_STABLE);
+   }
}
 
handle = dlopen(filename, RTLD_LAZY | RTLD_GLOBAL);



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


E CVS: libs/ewl ningerso

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ningerso
Project : e17
Module  : libs/ewl

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


Modified Files:
Makefile.am 


Log Message:
Provide libtool version information for loading modules, this won't make much
difference until a release is made.

===
RCS file: /cvs/e/e17/libs/ewl/src/engines/evas_buffer/Makefile.am,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makefile.am 30 Sep 2006 20:53:30 -  1.1
+++ Makefile.am 15 Dec 2006 02:48:24 -  1.2
@@ -19,7 +19,7 @@
ewl_engine_evas_buffer.c
 
 evas_buffer_la_LIBADD = $(top_builddir)/src/lib/libewl.la
-evas_buffer_la_LDFLAGS = -module -avoid-version \
+evas_buffer_la_LDFLAGS = -module -version-info 
@INTERFACE_CURRENT@:@INTERFACE_REVISION@:@INTERFACE_AGE@ \
-L$(top_builddir)/src/lib \
-L$(top_builddir)/src/lib/.libs
 evas_buffer_la_DEPENDENCIES =



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


E CVS: libs/ewl ningerso

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ningerso
Project : e17
Module  : libs/ewl

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


Modified Files:
Makefile.am 


Log Message:
Provide libtool version information for loading modules, this won't make much
difference until a release is made.

===
RCS file: /cvs/e/e17/libs/ewl/src/engines/evas_gl_x11/Makefile.am,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- Makefile.am 22 Jun 2006 01:12:27 -  1.2
+++ Makefile.am 15 Dec 2006 02:48:24 -  1.3
@@ -19,7 +19,7 @@
ewl_engine_evas_gl_x11.c
 
 evas_gl_x11_la_LIBADD = $(top_builddir)/src/lib/libewl.la
-evas_gl_x11_la_LDFLAGS = -module -avoid-version \
+evas_gl_x11_la_LDFLAGS = -module -version-info 
@INTERFACE_CURRENT@:@INTERFACE_REVISION@:@INTERFACE_AGE@ \
-L$(top_builddir)/src/lib \
-L$(top_builddir)/src/lib/.libs
 evas_gl_x11_la_DEPENDENCIES =



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


E CVS: slideshow devilhorns

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : slideshow

Dir : e_modules/slideshow


Modified Files:
e_mod_main.c e_mod_config.c 


Log Message:
Patch from Zachary Goldberg (zgold) for xinerama support.

===
RCS file: /cvs/e/e_modules/slideshow/e_mod_main.c,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -3 -r1.39 -r1.40
--- e_mod_main.c10 Dec 2006 01:00:07 -  1.39
+++ e_mod_main.c15 Dec 2006 03:02:40 -  1.40
@@ -536,6 +536,7 @@
E_Container *con;
E_Desk *d;
E_Zone *z;
+   int i;
char buf[4096];
 
inst = data;
@@ -561,7 +562,17 @@
  }
e_bg_default_set(buf);
  }
-   
+   else if (ci-all_desks == 2)
+ {
+   con = e_container_current_get(e_manager_current_get());
+z = e_zone_current_get(con);
+for (i = 0; i  (z-desk_x_count * z-desk_y_count); i++)
+  {
+e_bg_del(con-num, z-num, z-desks[i]-x, z-desks[i]-y);
+e_bg_add(con-num, z-num, z-desks[i]-x, z-desks[i]-y, buf);   
 
+ } 
+ }   
+
e_bg_update();
 }
 
===
RCS file: /cvs/e/e_modules/slideshow/e_mod_config.c,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -3 -r1.30 -r1.31
--- e_mod_config.c  10 Dec 2006 01:00:07 -  1.30
+++ e_mod_config.c  15 Dec 2006 03:02:40 -  1.31
@@ -111,6 +111,11 @@
e_widget_framelist_object_append (of, ob);
ob = e_widget_radio_add(evas, _(Set wallpaper on current desktop), 0, rg);
e_widget_framelist_object_append (of, ob);
+   if(ecore_x_xinerama_screen_count_get()  1)
+ {
+   ob = e_widget_radio_add(evas, _(Set wallpaper on current monitor 
(Xinerama support)), 2, rg);
+   e_widget_framelist_object_append (of, ob);
+ }
e_widget_list_object_append (o, of, 1, 1, 0.5);
 
return o;
@@ -135,8 +140,7 @@
  ci-dir = evas_stringshare_add (cfdata-dir);
else
  {
-   snprintf (buf, sizeof (buf), %s/.e/e/backgrounds,
- e_user_homedir_get ());
+   snprintf (buf, sizeof (buf), %s/.e/e/backgrounds, e_user_homedir_get 
());
ci-dir = evas_stringshare_add (buf);
  }
 



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


E CVS: apps/e titan

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : titan
Project : e17
Module  : apps/e

Dir : e17/apps/e/data/themes/images


Added Files:
e17_preview_bg.png e17_preview_bg_over.png 


Log Message:
Fix up the preview a little bit.




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


E CVS: apps/e titan

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : titan
Project : e17
Module  : apps/e

Dir : e17/apps/e/data/themes


Modified Files:
default_preview.edc 


Log Message:
Fix up the preview a little bit.

===
RCS file: /cvs/e/e17/apps/e/data/themes/default_preview.edc,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- default_preview.edc 1 Oct 2006 12:05:33 -   1.4
+++ default_preview.edc 15 Dec 2006 03:28:03 -  1.5
@@ -1,6 +1,6 @@
 images {
-   image: e17_ibar_bg_v.png COMP;
-   image: e17_ibar_over_v.png COMP;
+   image: e17_preview_bg.png COMP;
+   image: e17_preview_bg_over.png COMP;
 }
 
 group {
@@ -20,7 +20,7 @@
   offset: 2 2;
}
image {
-  normal: e17_ibar_bg_v.png;
+  normal: e17_preview_bg.png;
   border: 7 7 7 7;
}
fill {
@@ -65,13 +65,15 @@
state:default 0.0;
rel1 {
   to:   bg;
+  offset:   2 1;
}
rel2 {
   to:   bg;
+  offset:   -3 -2;
}
image {
-  normal: e17_ibar_over_v.png;
-  border: 13 13 13 13;
+  normal: e17_preview_bg_over.png;
+  border: 5 5 5 6;
middle: 0;
}
 fill {



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


E CVS: apps/e devilhorns

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_config.c e_config.h e_int_config_winlist.c e_ipc_handlers.h 
e_ipc_handlers_list.h e_winlist.c 


Log Message:
Patch from Eric 'Ravenlock' Schuele [EMAIL PROTECTED] to provide winlist 
config
options that allow showing/hiding iconified apps from other desks/screens in
the winlist.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_config.c,v
retrieving revision 1.215
retrieving revision 1.216
diff -u -3 -r1.215 -r1.216
--- e_config.c  13 Nov 2006 07:26:14 -  1.215
+++ e_config.c  15 Dec 2006 05:03:07 -  1.216
@@ -397,6 +397,8 @@
E_CONFIG_VAL(D, T, winlist_scroll_animate, INT); /**/
E_CONFIG_VAL(D, T, winlist_scroll_speed, DOUBLE); /**/
E_CONFIG_VAL(D, T, winlist_list_show_iconified, INT); /**/
+   E_CONFIG_VAL(D, T, winlist_list_show_other_desk_iconified, INT); /**/
+   E_CONFIG_VAL(D, T, winlist_list_show_other_screen_iconified, INT); /**/
E_CONFIG_VAL(D, T, winlist_list_show_other_desk_windows, INT); /**/
E_CONFIG_VAL(D, T, winlist_list_show_other_screen_windows, INT); /**/
E_CONFIG_VAL(D, T, winlist_list_uncover_while_selecting, INT); /**/
@@ -601,6 +603,8 @@
e_config-winlist_scroll_animate = 1;
e_config-winlist_scroll_speed = 0.1;
e_config-winlist_list_show_iconified = 1;
+   e_config-winlist_list_show_other_desk_iconified = 1;
+   e_config-winlist_list_show_other_screen_iconified = 0;
e_config-winlist_list_show_other_desk_windows = 0;
e_config-winlist_list_show_other_screen_windows = 0;
e_config-winlist_list_uncover_while_selecting = 0;
@@ -1314,6 +1318,8 @@
E_CONFIG_LIMIT(e_config-winlist_scroll_animate, 0, 1);
E_CONFIG_LIMIT(e_config-winlist_scroll_speed, 0.0, 1.0);
E_CONFIG_LIMIT(e_config-winlist_list_show_iconified, 0, 1);
+   E_CONFIG_LIMIT(e_config-winlist_list_show_other_desk_iconified, 0, 1);
+   E_CONFIG_LIMIT(e_config-winlist_list_show_other_screen_iconified, 0, 1);
E_CONFIG_LIMIT(e_config-winlist_list_show_other_desk_windows, 0, 1);
E_CONFIG_LIMIT(e_config-winlist_list_show_other_screen_windows, 0, 1);
E_CONFIG_LIMIT(e_config-winlist_list_uncover_while_selecting, 0, 1);
===
RCS file: /cvs/e/e17/apps/e/src/bin/e_config.h,v
retrieving revision 1.131
retrieving revision 1.132
diff -u -3 -r1.131 -r1.132
--- e_config.h  15 Nov 2006 11:40:27 -  1.131
+++ e_config.h  15 Dec 2006 05:03:08 -  1.132
@@ -51,7 +51,7 @@
 /* increment this whenever a new set of config values are added but the users
  * config doesn't need top be wiped - simply new values need to be put in
  */
-#define E_CONFIG_FILE_GENERATION 0x0103
+#define E_CONFIG_FILE_GENERATION 0x0104
 #define E_CONFIG_FILE_VERSION((E_CONFIG_FILE_EPOCH  16) | 
E_CONFIG_FILE_GENERATION)
 
 #define E_EVAS_ENGINE_DEFAULT  0
@@ -148,6 +148,8 @@
int winlist_scroll_animate; // GUI
double  winlist_scroll_speed; // GUI
int winlist_list_show_iconified; // GUI
+   int winlist_list_show_other_desk_iconified; // GUI
+   int winlist_list_show_other_screen_iconified; // GUI
int winlist_list_show_other_desk_windows; // GUI
int winlist_list_show_other_screen_windows; // GUI
int winlist_list_uncover_while_selecting; // GUI
===
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_config_winlist.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- e_int_config_winlist.c  8 Oct 2006 08:04:18 -   1.11
+++ e_int_config_winlist.c  15 Dec 2006 05:03:09 -  1.12
@@ -13,6 +13,8 @@
int warp_at_end;
int scroll_animate;
int list_show_iconified;
+   int list_show_other_desk_iconified;
+   int list_show_other_screen_iconified;
int list_show_other_desk_windows;
int list_show_other_screen_windows;
int list_uncover_while_selecting;
@@ -65,6 +67,8 @@
cfdata-scroll_animate = e_config-winlist_scroll_animate;
cfdata-scroll_speed = e_config-winlist_scroll_speed;
cfdata-list_show_iconified = e_config-winlist_list_show_iconified;
+   cfdata-list_show_other_desk_iconified = 
e_config-winlist_list_show_other_desk_iconified;
+   cfdata-list_show_other_screen_iconified = 
e_config-winlist_list_show_other_screen_iconified;
cfdata-list_show_other_desk_windows = 
e_config-winlist_list_show_other_desk_windows;
cfdata-list_show_other_screen_windows = 
e_config-winlist_list_show_other_screen_windows;
cfdata-list_uncover_while_selecting = 
e_config-winlist_list_uncover_while_selecting;
@@ -101,6 +105,8 @@
 _basic_apply_data(E_Config_Dialog *cfd, E_Config_Dialog_Data *cfdata) 
 {
e_config-winlist_list_show_iconified = cfdata-list_show_iconified;
+   

E CVS: apps/e devilhorns

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e


Modified Files:
TODO 


Log Message:
Added a nice to have for the temp module.

===
RCS file: /cvs/e/e17/apps/e/TODO,v
retrieving revision 1.521
retrieving revision 1.522
diff -u -3 -r1.521 -r1.522
--- TODO2 Dec 2006 10:56:20 -   1.521
+++ TODO15 Dec 2006 05:19:54 -  1.522
@@ -119,6 +119,8 @@
   that overlay the screen
 * pager should be able to be configured to control more than the current zone
   (select which zone they control)
+* temperature module should allow a different sensor to be monitored
+  per-instance
 * icons for all config panel items
 * icons for most mime types
 ]]]



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


E CVS: libs/ecore rephorm

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : rephorm
Project : e17
Module  : libs/ecore

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


Modified Files:
ecore_desktop.c 


Log Message:

the first clause implies the others

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_desktop/ecore_desktop.c,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -3 -r1.68 -r1.69
--- ecore_desktop.c 13 Nov 2006 14:35:37 -  1.68
+++ ecore_desktop.c 15 Dec 2006 05:33:24 -  1.69
@@ -113,7 +113,7 @@
   {
  *c++ = '\0';
  /* Strip preceeding blanks.  Note that \n is treated 
differently from the other white space. */
- while (((*c == ' ') || (*c == '\t'))  (*c != '\n')  (*c 
!= '\0'))
+ while ((*c == ' ') || (*c == '\t'))
 c++;
  value = c;
  /* Find end. */



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


E CVS: libs/ecore rephorm

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : rephorm
Project : e17
Module  : libs/ecore

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


Modified Files:
ecore_desktop.c 


Log Message:
more unneeded logic

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_desktop/ecore_desktop.c,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -3 -r1.69 -r1.70
--- ecore_desktop.c 15 Dec 2006 05:33:24 -  1.69
+++ ecore_desktop.c 15 Dec 2006 05:44:18 -  1.70
@@ -74,7 +74,7 @@
 
c = buffer;
/* Strip preceeding blanks.  Note that \n is treated differently from 
the other white space. */
-while (((*c == ' ') || (*c == '\t'))  (*c != '\n')  (*c != '\0'))
+while ((*c == ' ') || (*c == '\t'))
c++;
/* Skip blank lines and comments */
if ((*c == '\0') || (*c == '\n') || (*c == '#')) continue;



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


E CVS: libs/ewl ningerso

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ningerso
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/lib


Modified Files:
ewl_container.c ewl_embed.c 


Log Message:
Faster child widget lookup by moving visible check earlier in process.
Repeat lookup after callbacks for mouse down so that setting focused and last
clicked widget will reference valid widgets.

===
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_container.c,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -3 -r1.51 -r1.52
--- ewl_container.c 6 Nov 2006 16:12:20 -   1.51
+++ ewl_container.c 15 Dec 2006 06:29:58 -  1.52
@@ -701,18 +701,18 @@
 * Search through the children to find an intersecting child.
 */
while ((child = ecore_dlist_next(EWL_CONTAINER(widget)-children))) {
-   if (x = (CURRENT_X(child) - INSET_LEFT(child))
+   if (VISIBLE(child)  !DISABLED(child)
+x = (CURRENT_X(child) - INSET_LEFT(child))
 y = (CURRENT_Y(child) - INSET_TOP(child))
 (CURRENT_X(child) + CURRENT_W(child) +
INSET_RIGHT(child)) = x
 (CURRENT_Y(child) + CURRENT_H(child) +
INSET_BOTTOM(child)) = y) {
-   if (child-toplayered  VISIBLE(child)) {
+   if (child-toplayered) {
found = child;
break;
}
-   if ((!found || LAYER(found) = LAYER(child))
-VISIBLE(child))
+   if ((!found || LAYER(found) = LAYER(child)))
found = child;
}
}
===
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_embed.c,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -3 -r1.100 -r1.101
--- ewl_embed.c 12 Dec 2006 15:53:35 -  1.100
+++ ewl_embed.c 15 Dec 2006 06:29:58 -  1.101
@@ -584,6 +584,28 @@
}
}
 
+   /*
+* Refetch the widget at these coords to determine if last.clicked and
+* focus needs updating.
+*/
+   widget = ewl_container_child_at_recursive_get(EWL_CONTAINER(embed), x, 
y);
+   if (!widget)
+   widget = EWL_WIDGET(embed);
+
+   /*
+* Repeat the lookup process to ensure that the callbacks didn't cause a
+* change in the returned widget by destroying or hiding the previous
+* result.
+*/
+   temp = widget;
+   while (temp  temp-parent  ewl_widget_internal_is(temp))
+   temp = temp-parent;
+
+   if (temp != embed-last.clicked) {
+   embed-last.clicked = temp;
+   ewl_embed_focused_widget_set(embed, temp);
+   }
+
DLEAVE_FUNCTION(DLEVEL_STABLE);
 }
 



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


E CVS: libs/ewl ningerso

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ningerso
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl


Modified Files:
configure.in 


Log Message:
Increment version number following the DND drag code commit.

===
RCS file: /cvs/e/e17/libs/ewl/configure.in,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -3 -r1.92 -r1.93
--- configure.in15 Dec 2006 02:48:23 -  1.92
+++ configure.in15 Dec 2006 06:39:46 -  1.93
@@ -3,7 +3,7 @@
 AC_INIT(configure.in)
 AC_CANONICAL_BUILD
 AC_CANONICAL_HOST
-AM_INIT_AUTOMAKE(ewl, 0.5.0.007)
+AM_INIT_AUTOMAKE(ewl, 0.5.1.007)
 AM_CONFIG_HEADER(ewl-config.h)
 
 AC_ISC_POSIX



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


E CVS: libs/ewl ningerso

2006-12-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ningerso
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl


Modified Files:
ChangeLog 


Log Message:
Update changelog with latest version increase information.

===
RCS file: /cvs/e/e17/libs/ewl/ChangeLog,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -3 -r1.58 -r1.59
--- ChangeLog   29 Sep 2006 20:32:23 -  1.58
+++ ChangeLog   15 Dec 2006 07:05:44 -  1.59
@@ -1,3 +1,20 @@
+Fri Dec 15 00:40:00 2006 Nathan Ingersoll [EMAIL PROTECTED]
+   * Version 0.5.1:
+ - Addition of popup abstraction
+ - Stock icon abstraction
+ - Bug fixes for mouse interaction
+ - DND drag support
+ - Text widget performance improvements
+ - Abstraction of shared MVC selection code
+ - Support for alternate text on icons
+ - Theme structure reorganization
+ - Expanded documentation
+ - New memory buffer rendering engine
+ - ARGB Cursor support
+ - Improved test module build structure
+ - Updated RPM and debian packaging
+ - Need to do these fake releases more often
+
 Fri Sep 29 01:28:00 2006 Nathan Ingersoll [EMAIL PROTECTED]
* Version 0.5.0 includes a large number of bug fixes as well as:
  - extensive documentation



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