E CVS: libs/ecore raster

2006-05-12 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/ecore

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


Modified Files:
Ecore_X.h ecore_x_randr.c 


Log Message:


add xrandr rotation wrappers.

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_x/Ecore_X.h,v
retrieving revision 1.163
retrieving revision 1.164
diff -u -3 -r1.163 -r1.164
--- Ecore_X.h   9 Mar 2006 03:51:43 -   1.163
+++ Ecore_X.h   12 May 2006 07:24:34 -  1.164
@@ -72,47 +72,34 @@
 typedef enum _Ecore_X_Window_State {
 /** The window is iconified. */
 ECORE_X_WINDOW_STATE_ICONIFIED,
-
 /** The window is a modal dialog box. */
 ECORE_X_WINDOW_STATE_MODAL,
-
 /** The window manager should keep the window's position fixed
  * even if the virtual desktop scrolls. */
 ECORE_X_WINDOW_STATE_STICKY,
-
 /** The window has the maximum vertical size. */
 ECORE_X_WINDOW_STATE_MAXIMIZED_VERT,
-
 /** The window has the maximum horizontal size. */
 ECORE_X_WINDOW_STATE_MAXIMIZED_HORZ,
-
 /** The window is shaded. */
 ECORE_X_WINDOW_STATE_SHADED,
-
 /** The window should not be included in the taskbar. */
 ECORE_X_WINDOW_STATE_SKIP_TASKBAR,
-
 /** The window should not be included in the pager. */
 ECORE_X_WINDOW_STATE_SKIP_PAGER,
-
 /** The window is invisible (i.e. minimized/iconified) */
 ECORE_X_WINDOW_STATE_HIDDEN,
-
 /** The window should fill the entire screen and have no
  * window border/decorations */
 ECORE_X_WINDOW_STATE_FULLSCREEN,
-
 /* The following are not documented because they are not
  * intended for use in applications. */
 ECORE_X_WINDOW_STATE_ABOVE,
 ECORE_X_WINDOW_STATE_BELOW,
-
 /* FIXME: Documentation */
 ECORE_X_WINDOW_STATE_DEMANDS_ATTENTION,
-
 /* Unknown state */
 ECORE_X_WINDOW_STATE_UNKNOWN
-
 } Ecore_X_Window_State;
 
 typedef enum _Ecore_X_Window_State_Action {
@@ -129,6 +116,15 @@
ECORE_X_WINDOW_STACK_OPPOSITE = 4
 } Ecore_X_Window_Stack_Mode;
 
+typedef enum _Ecore_X_Randr_Rotation {   
+   ECORE_X_RANDR_ROT_0 = (1  0),
+   ECORE_X_RANDR_ROT_90 = (1  1),
+   ECORE_X_RANDR_ROT_180 = (1  2),
+   ECORE_X_RANDR_ROT_270 = (1  3),
+   ECORE_X_RANDR_FLIP_X = (1  4),
+   ECORE_X_RANDR_FLIP_Y = (1  5)
+} Ecore_X_Randr_Rotation;
+
 #define ECORE_X_SELECTION_TARGET_TARGETS TARGETS
 #define ECORE_X_SELECTION_TARGET_TEXT TEXT
 #define ECORE_X_SELECTION_TARGET_COMPOUND_TEXT COMPOUND_TEXT
@@ -1441,14 +1437,16 @@
int rate;
 };

-EAPI int  ecore_x_randr_events_select(Ecore_X_Window win, int 
on);
-EAPI Ecore_X_Screen_Size *ecore_x_randr_screen_sizes_get(Ecore_X_Window root, 
int *num);
-EAPI Ecore_X_Screen_Size  ecore_x_randr_current_screen_size_get(Ecore_X_Window 
root);
-EAPI int  ecore_x_randr_screen_size_set(Ecore_X_Window root,
-   Ecore_X_Screen_Size 
size);
-   
+EAPI int ecore_x_randr_events_select(Ecore_X_Window win, 
int on);
+EAPI Ecore_X_Randr_Rotation  ecore_x_randr_screen_rotations_get(Ecore_X_Window 
root);
+EAPI Ecore_X_Randr_Rotation  ecore_x_randr_screen_rotation_get(Ecore_X_Window 
root);
+EAPI voidecore_x_randr_screen_rotation_set(Ecore_X_Window 
root, Ecore_X_Randr_Rotation rot);
+EAPI Ecore_X_Screen_Size*ecore_x_randr_screen_sizes_get(Ecore_X_Window 
root, int *num);
+EAPI Ecore_X_Screen_Size 
ecore_x_randr_current_screen_size_get(Ecore_X_Window root);
+EAPI int ecore_x_randr_screen_size_set(Ecore_X_Window 
root, Ecore_X_Screen_Size size);
+
 EAPI Ecore_X_Screen_Refresh_Rate 
*ecore_x_randr_screen_refresh_rates_get(Ecore_X_Window root, int size_id, int 
*num);
-EAPI Ecore_X_Screen_Refresh_Rate 
ecore_x_randr_current_screen_refresh_rate_get(Ecore_X_Window root);
+EAPI Ecore_X_Screen_Refresh_Rate  
ecore_x_randr_current_screen_refresh_rate_get(Ecore_X_Window root);
 
 EAPI int ecore_x_randr_screen_refresh_rate_set(Ecore_X_Window root, 
Ecore_X_Screen_Size size, Ecore_X_Screen_Refresh_Rate rate);

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_x/ecore_x_randr.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- ecore_x_randr.c 28 Mar 2006 18:36:19 -  1.9
+++ ecore_x_randr.c 12 May 2006 07:24:34 -  1.10
@@ -18,6 +18,38 @@
 #endif
 }
 
+EAPI Ecore_X_Randr_Rotation
+ecore_x_randr_screen_rotations_get(Ecore_X_Window root)
+{
+   Rotation rot, crot;
+   
+   rot = XRRRotations(_ecore_x_disp, XRRRootToScreen(_ecore_x_disp, root), 
crot);
+   return rot;
+}
+
+EAPI Ecore_X_Randr_Rotation
+ecore_x_randr_screen_rotation_get(Ecore_X_Window root)
+{
+   Rotation rot, crot = 0;
+   
+   rot = XRRRotations(_ecore_x_disp, XRRRootToScreen(_ecore_x_disp, root), 
crot);
+   

E CVS: apps/e sndev

2006-05-12 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : sndev
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_int_config_keybindings.c 


Log Message:

-- nothing new.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_config_keybindings.c,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -3 -r1.22 -r1.23
--- e_int_config_keybindings.c  11 May 2006 14:09:10 -  1.22
+++ e_int_config_keybindings.c  12 May 2006 12:25:55 -  1.23
@@ -589,22 +589,6 @@
act-action_name, NULL, NULL, NULL);
   }
  }
-   /*for (l = cfdata-key_bindings; l; l = l-next)
- {
-   Evas_Object *ic;
-   E_Config_KeyBind *eckb;
-
-   eckb = l-data;
-   ic = edje_object_add(evas);
-   if (eckb  eckb-bk_list)
- e_util_edje_icon_set(ic, ILIST_ICON_WITH_KEYBIND);
-   else
- e_util_edje_icon_set(ic, ILIST_ICON_WITHOUT_KEYBIND);
-
-   e_widget_ilist_append(cfdata-gui.action_ilist, ic,
- 
_(actions_predefined_names[eckb-acn].action_name),
- NULL, NULL, NULL);
- }*/
e_widget_min_size_set(cfdata-gui.action_ilist, 250, 330);
e_widget_ilist_go(cfdata-gui.action_ilist);
   }
@@ -1062,8 +1046,8 @@
_e_keybinding_keybind_delete_keybinding(cfdata);
 
_e_keybinding_update_binding_list(cfdata);
-   e_widget_ilist_selected_set(cfdata-gui.binding_ilist, 
cfdata-current_act_selector);
e_widget_ilist_go(cfdata-gui.binding_ilist);
+   e_widget_ilist_selected_set(cfdata-gui.binding_ilist, 
cfdata-current_act_selector);
 
_e_keybinding_update_keybinding_button(cfdata);
_e_keybinding_update_add_delete_buttons(cfdata);
@@ -1220,8 +1204,8 @@
_e_keybinding_update_action_ilist_cur_selection_icon(cfdata);
_e_keybinding_update_binding_ilist_cur_selection_icon(cfdata);
 
-   e_widget_ilist_selected_set(cfdata-gui.binding_ilist, 
cfdata-current_act_selector);
e_widget_ilist_go(cfdata-gui.binding_ilist);
+   e_widget_ilist_selected_set(cfdata-gui.binding_ilist, 
cfdata-current_act_selector);
 }
 
 static void




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


E CVS: libs/ecore raster

2006-05-12 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/ecore

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


Modified Files:
ecore_x_randr.c 


Log Message:



#ifdef the randr support

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_x/ecore_x_randr.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- ecore_x_randr.c 12 May 2006 07:24:34 -  1.10
+++ ecore_x_randr.c 12 May 2006 12:28:06 -  1.11
@@ -21,24 +21,33 @@
 EAPI Ecore_X_Randr_Rotation
 ecore_x_randr_screen_rotations_get(Ecore_X_Window root)
 {
+#ifdef ECORE_XRANDR
Rotation rot, crot;

rot = XRRRotations(_ecore_x_disp, XRRRootToScreen(_ecore_x_disp, root), 
crot);
return rot;
+#else
+   return 0;
+#endif   
 }
 
 EAPI Ecore_X_Randr_Rotation
 ecore_x_randr_screen_rotation_get(Ecore_X_Window root)
 {
+#ifdef ECORE_XRANDR
Rotation rot, crot = 0;

rot = XRRRotations(_ecore_x_disp, XRRRootToScreen(_ecore_x_disp, root), 
crot);
return crot;
+#else
+   return 0;
+#endif   
 }
 
 EAPI void
 ecore_x_randr_screen_rotation_set(Ecore_X_Window root, Ecore_X_Randr_Rotation 
rot)
 {
+#ifdef ECORE_XRANDR
XRRScreenConfiguration *xrrcfg;
SizeID sizeid;
Rotation crot;
@@ -48,6 +57,7 @@
sizeid = XRRConfigCurrentConfiguration(xrrcfg, crot);
XRRSetScreenConfig(_ecore_x_disp, xrrcfg, root, sizeid, rot, CurrentTime);
XRRFreeScreenConfigInfo(xrrcfg);
+#endif   
 }
 
 EAPI Ecore_X_Screen_Size *




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


E CVS: apps/e raster

2006-05-12 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/e

Dir : e17/apps/e


Modified Files:
TODO 


Log Message:


debug for rotation stupport

===
RCS file: /cvs/e/e17/apps/e/TODO,v
retrieving revision 1.322
retrieving revision 1.323
diff -u -3 -r1.322 -r1.323
--- TODO10 May 2006 13:38:25 -  1.322
+++ TODO12 May 2006 12:29:44 -  1.323
@@ -60,6 +60,7 @@
   disabled)
 * shelf gui config is ugly and badly arranged
 * ibar should support creating and deleting bar dirs
+* shelves need a delete this shelf menu item
 ]]]
 
 [[[




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


E CVS: e kwo

2006-05-12 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/src


Modified Files:
E.h events.c handlers.c main.c session.c session.h 


Log Message:
Normally quit by exiting main event loop.

===
RCS file: /cvs/e/e16/e/src/E.h,v
retrieving revision 1.553
retrieving revision 1.554
diff -u -3 -r1.553 -r1.554
--- E.h 30 Apr 2006 13:23:01 -  1.553
+++ E.h 12 May 2006 13:10:16 -  1.554
@@ -496,6 +496,8 @@
   charexiting;
   charsave_ok;
   charcoredump;
+  int exit_mode;
+  char   *exit_param;
   int child_count;
   pid_t  *children;
   char   *machine_name;
===
RCS file: /cvs/e/e16/e/src/events.c,v
retrieving revision 1.122
retrieving revision 1.123
diff -u -3 -r1.122 -r1.123
--- events.c10 May 2006 19:37:47 -  1.122
+++ events.c12 May 2006 13:10:16 -  1.123
@@ -629,7 +629,7 @@
 
time1 = GetTime();
 
-   for (;;)
+   for (; !Mode.wm.exit_mode;)
  {
pfetch = 0;
count = EventsProcess(evq_ptr, evq_alloc, pfetch);
===
RCS file: /cvs/e/e16/e/src/handlers.c,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -3 -r1.53 -r1.54
--- handlers.c  19 Apr 2006 19:13:46 -  1.53
+++ handlers.c  12 May 2006 13:10:16 -  1.54
@@ -48,7 +48,7 @@
  case SIGQUIT:
  case SIGABRT:
  case SIGTERM:
-   SessionExit(EEXIT_ERROR, NULL);
+   SessionExit(EEXIT_EXIT, NULL);
break;
 
  case SIGPIPE:
===
RCS file: /cvs/e/e16/e/src/main.c,v
retrieving revision 1.147
retrieving revision 1.148
diff -u -3 -r1.147 -r1.148
--- main.c  29 Apr 2006 19:39:21 -  1.147
+++ main.c  12 May 2006 13:10:16 -  1.148
@@ -295,9 +295,9 @@
/* The primary event loop */
EventsMain();
 
-   /* Of course, we should NEVER get to this point */
+   SessionExit(EEXIT_QUIT, NULL);
 
-   return 1;
+   return 0;
 }
 
 void
@@ -320,8 +320,6 @@
XSelectInput(disp, VRoot.xwin, 0);
EDisplayClose();
  }
-
-   SignalsRestore();
 
if (Mode.wm.master)
  {
===
RCS file: /cvs/e/e16/e/src/session.c,v
retrieving revision 1.123
retrieving revision 1.124
diff -u -3 -r1.123 -r1.124
--- session.c   29 Apr 2006 19:39:21 -  1.123
+++ session.c   12 May 2006 13:10:16 -  1.124
@@ -594,7 +594,7 @@
else
 #endif /* HAVE_X11_SM_SMLIB_H */
  {
-   doSMExit(EEXIT_EXIT, NULL);
+   SessionExit(EEXIT_EXIT, NULL);
  }
 }
 
@@ -666,22 +666,44 @@
if (getpid() != Mode.wm.pid)
   return;
 
-   if (mode == EEXIT_LOGOUT)
+   if (EventDebug(EDBUG_TYPE_SESSION))
+  Eprintf(SessionExit: mode=%d(%d) prm=%s\n, mode, Mode.wm.exit_mode,
+ param);
+
+   if (Mode.wm.startup)
+  goto done;
+
+   switch (mode)
  {
-   if (Conf.session.enable_logout_dialog)
-  SessionLogoutConfirm();
-   else
-  SessionLogout();
+ default:
+   /* In event loop - Set exit mode */
+   Mode.wm.exit_mode = mode;
+   Mode.wm.exit_param = Estrdup(param);
return;
- }
 
-   if (Mode.wm.exiting++)
- {
+ case EEXIT_QUIT:
+   mode = Mode.wm.exit_mode;
+   param = Mode.wm.exit_param;
+   break;
+
+ case EEXIT_ERROR:
+   if (!Mode.wm.exiting)
+  break;
/* This may be possible during nested signal handling */
Eprintf(SessionExit already in progress ... now exiting\n);
exit(1);
+   break;
+
+ case EEXIT_LOGOUT:
+   if (Conf.session.enable_logout_dialog)
+  SessionLogoutConfirm();
+   else
+  SessionLogout();
+   return;
  }
 
+ done:
+   Mode.wm.exiting++;
doSMExit(mode, param);
 }
 
===
RCS file: /cvs/e/e16/e/src/session.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- session.h   19 Apr 2006 19:13:46 -  1.1
+++ session.h   12 May 2006 13:10:16 -  1.2
@@ -25,12 +25,13 @@
 #define _SESSION_H_
 
 /* session.c */
-#define EEXIT_EXIT  0
-#define EEXIT_ERROR 1
-#define EEXIT_LOGOUT2
-#define EEXIT_RESTART   3
-#define EEXIT_THEME 4
-#define EEXIT_EXEC  5
+#define EEXIT_QUIT  0
+#define EEXIT_EXIT  1
+#define EEXIT_ERROR 2
+#define EEXIT_LOGOUT3
+#define EEXIT_RESTART   4
+#define EEXIT_THEME 5
+#define EEXIT_EXEC  6
 
 #define ESESSION_INIT   0
 #define ESESSION_START  1




---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done 

E CVS: devian kiwi

2006-05-12 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kiwi
Project : e_modules
Module  : devian

Dir : e_modules/devian


Modified Files:
TODO 


Log Message:
Fix a segv in Rss, when mouse goes on a news, thanks Elftor for spotting it.
TODO changes and warning--

===
RCS file: /cvs/e/e_modules/devian/TODO,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- TODO2 May 2006 14:24:21 -   1.7
+++ TODO12 May 2006 14:30:04 -  1.8
@@ -370,6 +370,8 @@
 
  - More error popups
 
+ - Resize time in RSS
+ - Sort news by time and date
  - Rss News hiligh when url == null
  - ? Bug in the config ? When updating ?
 




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


E CVS: e kwo

2006-05-12 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/src


Modified Files:
file.c 


Log Message:
Fix potential configuration file corruption when running multihead.

===
RCS file: /cvs/e/e16/e/src/file.c,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -3 -r1.72 -r1.73
--- file.c  7 Jan 2006 07:20:58 -   1.72
+++ file.c  12 May 2006 13:40:52 -  1.73
@@ -43,12 +43,9 @@
 void
 Etmp(char *s)
 {
-   static unsigned long n_calls = 0;
+   static unsigned int n_calls = 0;
 
-   if (!n_calls)
-  n_calls = (unsigned long)time(NULL) + (unsigned long)getpid();
-   Esnprintf(s, 1024, %s/TMP_%lX, EDirUser(), n_calls);
-   n_calls++;
+   Esnprintf(s, 1024, %s/TMP_%d_%d, EDirUser(), getpid(), n_calls++);
 }
 
 void




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


E CVS: apps/e raster

2006-05-12 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/e

Dir : e17/apps/e


Modified Files:
TODO 


Log Message:


1. update gui exported config value comments and
2. update TODO

===
RCS file: /cvs/e/e17/apps/e/TODO,v
retrieving revision 1.323
retrieving revision 1.324
diff -u -3 -r1.323 -r1.324
--- TODO12 May 2006 12:29:44 -  1.323
+++ TODO12 May 2006 15:12:00 -  1.324
@@ -54,7 +54,6 @@
 * add setup/install wizard to seed eap files etc. etc.
 * support color classes
 * add clientinfo pane/popdown for borders
-* make xrandr support get rotation and store it
 * gui config dialogs for all config
 * make it possible to disable border buttons/actions (tell theme what is
   disabled)




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


E CVS: apps/e raster

2006-05-12 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_config.h 


Log Message:


1. update gui exported config value comments and
2. update TODO

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_config.h,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -3 -r1.96 -r1.97
--- e_config.h  12 May 2006 15:07:39 -  1.96
+++ e_config.h  12 May 2006 15:12:00 -  1.97
@@ -75,8 +75,8 @@
 {
int config_version;
int show_splash; //GUI
-   const char *desktop_default_background;
-   Evas_List  *desktop_backgrounds;
+   const char *desktop_default_background; // GUI
+   Evas_List  *desktop_backgrounds; // GUI
const char *desktop_default_name;
Evas_List  *desktop_names;
double  menus_scroll_speed; // GUI
@@ -107,24 +107,24 @@
int evas_engine_win;
int evas_engine_zone;
const char *language;
-   Evas_List  *modules;
-   Evas_List  *font_fallbacks;
-   Evas_List  *font_defaults;
-   Evas_List  *themes;
+   Evas_List  *modules; // GUI
+   Evas_List  *font_fallbacks; // GUI
+   Evas_List  *font_defaults; // GUI
+   Evas_List  *themes; // GUI
Evas_List  *mouse_bindings;
Evas_List  *key_bindings; // GUI
Evas_List  *signal_bindings;
Evas_List  *wheel_bindings;
-   Evas_List  *path_append_data;
-   Evas_List  *path_append_images;
-   Evas_List  *path_append_fonts;
-   Evas_List  *path_append_themes;
-   Evas_List  *path_append_init;
-   Evas_List  *path_append_icons;
-   Evas_List  *path_append_modules;
-   Evas_List  *path_append_backgrounds;
-   Evas_List  *path_append_input_methods;
-   Evas_List  *path_append_messages;
+   Evas_List  *path_append_data; // GUI
+   Evas_List  *path_append_images; // GUI
+   Evas_List  *path_append_fonts; // GUI
+   Evas_List  *path_append_themes; // GUI
+   Evas_List  *path_append_init; // GUI
+   Evas_List  *path_append_icons; // GUI
+   Evas_List  *path_append_modules; // GUI
+   Evas_List  *path_append_backgrounds; // GUI
+   Evas_List  *path_append_input_methods; // GUI
+   Evas_List  *path_append_messages; // GUI
int window_placement_policy; // GUI
int focus_policy; // GUI
int focus_setting; // GUI




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


E CVS: apps/entrance xcomputerman

2006-05-12 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : xcomputerman
Project : e17
Module  : apps/entrance

Dir : e17/apps/entrance/data/themes/taillights


Removed Files:
.cvsignore Makefile.am taillights.edc 


Log Message:
Removed Nebulous and Taillights themes from CVS. I'll make them available 
online.






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


E CVS: apps/entrance xcomputerman

2006-05-12 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : xcomputerman
Project : e17
Module  : apps/entrance

Dir : e17/apps/entrance/data/themes/Nebulous/images


Removed Files:
.cvsignore Makefile.am Nebulous_preview.png blackbox.png 
default.png e.png e_logo.png e_logo_bg.jpg failsafe.png 
gnome.png kde.png menu.png menu_bottom_center.png 
menu_bottom_left.png menu_bottom_right.png menu_top_center.png 
menu_top_left.png menu_top_right.png windowmaker.png 


Log Message:
Removed Nebulous and Taillights themes from CVS. I'll make them available 
online.






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


E CVS: apps/entrance xcomputerman

2006-05-12 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : xcomputerman
Project : e17
Module  : apps/entrance

Dir : e17/apps/entrance/data/themes/taillights/images


Removed Files:
.cvsignore Makefile.am bg.png border-bevel.png 
bottom_bar_image.png brushed_texture.png close_hi2.png 
close_wminormal.png close_wmnormal.png e.png e001.png e002.png 
e003.png e004.png e005.png e006.png e007.png e008.png e009.png 
e010.png e011.png e012.png e013.png e014.png e015.png e016.png 
e017.png e018.png e019.png e020.png e021.png e022.png e023.png 
e024.png e025.png e026.png e027.png e028.png e029.png e030.png 
e031.png e032.png e033.png e034.png e035.png e036.png e037.png 
e038.png e039.png e040.png e041.png e042.png e043.png e044.png 
e045.png e046.png e047.png e048.png e049.png e050.png e051.png 
e052.png e053.png e054.png e055.png e056.png e057.png e058.png 
e059.png e060.png e061.png e062.png e063.png e064.png e065.png 
e066.png e067.png e068.png e069.png e070.png e071.png e072.png 
e073.png e074.png e075.png e076.png e077.png e078.png e079.png 
e080.png e081.png e082.png e083.png e084.png e085.png e086.png 
e087.png e088.png e089.png e090.png e091.png e092.png e093.png 
e094.png e095.png e096.png e097.png e098.png e099.png e100.png 
e101.png e102.png e103.png e104.png e105.png e106.png e107.png 
e108.png e109.png e110.png e111.png e112.png e113.png e114.png 
e115.png e116.png e117.png e118.png e119.png e120.png 
entry-base.png entry.png entry_cursor.png entry_disabled.png 
entry_light_overlay.png images.edc lights.jpg 
menu_bg_small.png menu_border.png metalsphere.png 
power_button_1.png power_button_2.png power_button_3.png 
presence_border.xcf restart_button_1.png restart_button_2.png 
restart_button_3.png session_button_normal.png 
session_button_pressed.png shading.png system_chooser.png 
taillights_preview.png user_border.png 


Log Message:
Removed Nebulous and Taillights themes from CVS. I'll make them available 
online.






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


E CVS: apps/entrance xcomputerman

2006-05-12 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : xcomputerman
Project : e17
Module  : apps/entrance

Dir : e17/apps/entrance/data/themes/taillights/parts


Removed Files:
.cvsignore Makefile.am bg.edc confirmation_dialog.edc 
debug.edc entrance_session.edc error_string.edc 
login_animated_logo.edc login_area.edc power_button.edc 
preview_group.edc restart_button.edc session_group.edc 
session_list_area.edc user_group.edc user_list_area.edc 


Log Message:
Removed Nebulous and Taillights themes from CVS. I'll make them available 
online.






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


E CVS: apps/entrance xcomputerman

2006-05-12 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : xcomputerman
Project : e17
Module  : apps/entrance

Dir : e17/apps/entrance/data/themes/taillights/programs


Removed Files:
.cvsignore Makefile.am confirmation_dialog_programs.edc 
debug_programs.edc effects_programs.edc 
entrance_error_programs.edc error_string_programs.edc 
login_area_programs.edc power_button_programs.edc 
preview_group.edc restart_button_programs.edc 
session_group_programs.edc session_list_area_programs.edc 
session_save_dialog_programs.edc show.edc 
user_group_programs.edc user_list_area_programs.edc 


Log Message:
Removed Nebulous and Taillights themes from CVS. I'll make them available 
online.






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


E CVS: uptime e-taro

2006-05-12 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : e-taro
Project : e_modules
Module  : uptime

Dir : e_modules/uptime/po


Added Files:
bg.po 


Log Message:
uptime bg.po (Luchezar P. Petkov), and also do not install the .edj source 
files, just dist them





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


E CVS: uptime e-taro

2006-05-12 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : e-taro
Project : e_modules
Module  : uptime

Dir : e_modules/uptime


Modified Files:
Makefile.am configure.in 


Log Message:
uptime bg.po (Luchezar P. Petkov), and also do not install the .edj source 
files, just dist them

===
RCS file: /cvs/e/e_modules/uptime/Makefile.am,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- Makefile.am 9 Mar 2006 11:40:41 -   1.3
+++ Makefile.am 13 May 2006 01:52:20 -  1.4
@@ -8,13 +8,11 @@
 # data files for the module
 filesdir = $(datadir)
 
-EXTRA_DIST = $(files_DATA) uptime.png e_modules-uptime.spec 
e_modules-uptime.spec.in 
+EXTRA_DIST = $(files_DATA) uptime.png uptime.edc VeraMono.ttf 
e_modules-uptime.spec e_modules-uptime.spec.in 
 
 files_DATA = \
 module_icon.png \
-uptime.edj \
-uptime.edc \
-VeraMono.ttf
+uptime.edj
 
 # the module .so file
 INCLUDES = -I. \
===
RCS file: /cvs/e/e_modules/uptime/configure.in,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- configure.in9 Apr 2006 12:39:39 -   1.7
+++ configure.in13 May 2006 01:52:20 -  1.8
@@ -17,7 +17,7 @@
 AM_ENABLE_SHARED
 AM_PROG_LIBTOOL
 
-ALL_LINGUAS=fi it ja sv
+ALL_LINGUAS=bg fi it ja sv
 AC_SUBST(ALL_LINGUAS)
 
 AM_GNU_GETTEXT([external])




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


E CVS: cpu e-taro

2006-05-12 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : e-taro
Project : e_modules
Module  : cpu

Dir : e_modules/cpu


Modified Files:
Makefile.am configure.in 


Log Message:
cpu bg.po (Luchezar P. Petkov), and also do not install the .edj source files, 
just dist them

===
RCS file: /cvs/e/e_modules/cpu/Makefile.am,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- Makefile.am 9 Mar 2006 11:36:10 -   1.4
+++ Makefile.am 13 May 2006 02:00:54 -  1.5
@@ -5,16 +5,18 @@
 EDJE_CC = @edje_cc@
 EDJE_FLAGS = -v
 
-EXTRA_DIST = $(files_DATA) cpu.png e_modules-cpu.spec e_modules-cpu.spec.in 
+EXTRA_DIST = $(files_DATA) \
+cpu.edc \
+VeraMono.ttf \
+cpu.png \
+e_modules-cpu.spec e_modules-cpu.spec.in 
 
 # data files for the module
 filesdir = $(datadir)
 
 files_DATA = \
 module_icon.png \
-cpu.edj \
-cpu.edc \
-VeraMono.ttf
+cpu.edj
 
 # the module .so file
 INCLUDES = -I. \
===
RCS file: /cvs/e/e_modules/cpu/configure.in,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- configure.in9 Apr 2006 12:39:36 -   1.7
+++ configure.in13 May 2006 02:00:54 -  1.8
@@ -17,7 +17,7 @@
 AM_ENABLE_SHARED
 AM_PROG_LIBTOOL
 
-ALL_LINGUAS=fi it sv ja
+ALL_LINGUAS=bg fi it sv ja
 AC_SUBST(ALL_LINGUAS)
 
 AM_GNU_GETTEXT([external])




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


E CVS: apps/e e-taro

2006-05-12 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : e-taro
Project : e17
Module  : apps/e

Dir : e17/apps/e/po


Modified Files:
ja.po 


Log Message:
e17 ja.po update (Yasufumi Haga) - his ISP got blacklisted for spam, this po is 
from direct email :)

===
RCS file: /cvs/e/e17/apps/e/po/ja.po,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -3 -r1.28 -r1.29
--- ja.po   9 May 2006 14:38:35 -   1.28
+++ ja.po   13 May 2006 03:36:26 -  1.29
@@ -8,7 +8,7 @@
 msgstr 
 Project-Id-Version: PACKAGE VERSION\n
 Report-Msgid-Bugs-To: [EMAIL PROTECTED]
-POT-Creation-Date: 2006-05-08 11:06+0900\n
+POT-Creation-Date: 2006-05-12 20:22+0900\n
 PO-Revision-Date: 2006-05-08 16:30+0900\n
 Last-Translator: Yasufumi Haga [EMAIL PROTECTED]\n
 Language-Team: LANGUAGE [EMAIL PROTECTED]\n
@@ -52,18 +52,18 @@
 msgstr Enlightenment 
を終了しようとしています.brbr本当に終了しますか.
 
 #: src/bin/e_actions.c:1289 src/bin/e_fileman_smart.c:1000
-#: src/bin/e_int_config_display.c:160 src/bin/e_module.c:566
+#: src/bin/e_int_config_display.c:163 src/bin/e_module.c:566
 msgid Yes
 msgstr はい
 
 #: src/bin/e_actions.c:1291 src/bin/e_fileman_smart.c:1001
-#: src/bin/e_int_config_display.c:161 src/bin/e_module.c:567
+#: src/bin/e_int_config_display.c:164 src/bin/e_module.c:567
 msgid No
 msgstr いいえ
 
 #: src/bin/e_actions.c:1390 src/bin/e_actions.c:1584 src/bin/e_actions.c:1586
 #: src/bin/e_actions.c:1588 src/bin/e_actions.c:1590
-#: src/bin/e_int_config_keybindings.c:669
+#: src/bin/e_int_config_keybindings.c:682
 msgid Menu
 msgstr メニュー
 
@@ -86,7 +86,7 @@
 msgid Lower
 msgstr 下げる
 
-#: src/bin/e_actions.c:1407 src/bin/e_config_dialog.c:158
+#: src/bin/e_actions.c:1407 src/bin/e_config_dialog.c:160
 #: src/bin/e_configure.c:105 src/bin/e_int_border_menu.c:348
 msgid Close
 msgstr 閉じる
@@ -189,15 +189,15 @@
 msgstr 下のデスクトップへ移動する
 
 #: src/bin/e_actions.c:1483
-msgid Flip Desktop By…
+msgid Flip Desktop By...
 msgstr デスクトップを指定分移動する
 
 #: src/bin/e_actions.c:1488
-msgid Flip Desktop To…
+msgid Flip Desktop To...
 msgstr 指定のデスクトップへ移動する
 
 #: src/bin/e_actions.c:1493
-msgid Flip Desktop Linearly…
+msgid Flip Desktop Linearly...
 msgstr デスクトップを順に移動する
 
 #: src/bin/e_actions.c:1498
@@ -249,8 +249,8 @@
 msgstr デスクトップ 11 に切り替える
 
 #: src/bin/e_actions.c:1522
-msgid Switch To Desktop…
-msgstr 指定のデスクトップへ切り替える
+msgid Switch To Desktop...
+msgstr 指定のデスクトップに切り替える
 
 #: src/bin/e_actions.c:1546 src/bin/e_actions.c:1548 src/bin/e_actions.c:1551
 #: src/bin/e_actions.c:1555 src/bin/e_actions.c:1557 src/bin/e_actions.c:1559
@@ -270,7 +270,7 @@
 msgstr 前のデスクトップへ
 
 #: src/bin/e_actions.c:1551
-msgid By Desktop #…
+msgid By Desktop #...
 msgstr 指定分のデスクトップを移動
 
 #: src/bin/e_actions.c:1555
@@ -322,7 +322,7 @@
 msgstr デスクトップ 11 へ
 
 #: src/bin/e_actions.c:1579
-msgid To Desktop…
+msgid To Desktop...
 msgstr 指定のデスクトップへ
 
 #: src/bin/e_actions.c:1584
@@ -338,7 +338,7 @@
 msgstr クライアントメニューを表示する
 
 #: src/bin/e_actions.c:1590
-msgid Show Menu…
+msgid Show Menu...
 msgstr 指定のメニューを表示する
 
 #: src/bin/e_actions.c:1597
@@ -387,7 +387,7 @@
 
 #: src/bin/e_apps.c:444 src/bin/e_fileman_file.c:312
 #: src/bin/e_fileman_file.c:363 src/bin/e_fileman_mime.c:393
-#: src/bin/e_utils.c:229 src/bin/e_zone.c:627
+#: src/bin/e_utils.c:229 src/bin/e_zone.c:628
 msgid Run Error
 msgstr 実行エラー
 
@@ -410,14 +410,14 @@
 Enlightenment 
で以下のアプリケーションが実行できませんでした.brbr%
 sbrbr起動に失敗しました.
 
-#: src/bin/e_apps.c:2020 src/bin/e_config_dialog.c:149 src/bin/e_error.c:196
+#: src/bin/e_apps.c:2020 src/bin/e_config_dialog.c:151 src/bin/e_error.c:196
 #: src/bin/e_error.c:205 src/bin/e_file_dialog.c:66
 #: src/bin/e_fileman_smart.c:907 src/bin/e_int_border_remember.c:246
 #: src/bin/e_int_border_remember.c:326 src/bin/e_int_border_remember.c:368
 #: src/bin/e_int_config_background_import.c:202 src/bin/e_module.c:417
-#: src/bin/e_utils.c:524 src/modules/battery/e_mod_main.c:282
-#: src/modules/cpufreq/e_mod_main.c:310 src/modules/cpufreq/e_mod_main.c:337
-#: src/modules/cpufreq/e_mod_main.c:356 src/modules/ibar/e_mod_main.c:1054
+#: src/bin/e_utils.c:524 src/modules/battery/e_mod_main.c:303
+#: src/modules/cpufreq/e_mod_main.c:331 src/modules/cpufreq/e_mod_main.c:358
+#: src/modules/cpufreq/e_mod_main.c:377 src/modules/ibar/e_mod_main.c:1165
 msgid OK
 msgstr 了解
 
@@ -546,19 +546,19 @@
 brこれではまずいので, 
念のためデフォルトの設定に置き換えました.brご不便を
 おかけしますが, 

E CVS: apps/entrance xcomputerman

2006-05-12 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : xcomputerman
Project : e17
Module  : apps/entrance

Dir : e17/apps/entrance/src/client


Modified Files:
main.c 


Log Message:
Fix build, session evas layer

===
RCS file: /cvs/e/e17/apps/entrance/src/client/main.c,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -3 -r1.77 -r1.78
--- main.c  12 May 2006 22:21:35 -  1.77
+++ main.c  13 May 2006 05:29:22 -  1.78
@@ -912,7 +912,7 @@
 o = esmart_text_entry_new(evas);
 evas_object_move(o, x, y);
 evas_object_resize(o, w, h);
-evas_object_layer_set(o, 1);
+evas_object_layer_set(o, 2);
 esmart_text_entry_max_chars_set(o, 32);
 esmart_text_entry_is_password_set(o, i);
 evas_object_name_set(o, entries[i]);




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