E CVS: libs/evas doursse

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/evas

Dir : e17/libs/evas/src/modules/loaders/tiff


Modified Files:
evas_image_load_tiff.c 


Log Message:
don't free a pointer that is not allocated. Clean messages

===
RCS file: /cvs/e/e17/libs/evas/src/modules/loaders/tiff/evas_image_load_tiff.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- evas_image_load_tiff.c  23 Apr 2006 15:38:23 -  1.2
+++ evas_image_load_tiff.c  28 May 2006 06:22:10 -  1.3
@@ -145,13 +145,13 @@
if (!tif)
   return 0;
 
-   strcpy(txt, Cannot be processed by libtiff);
+   strcpy(txt, Evas Tiff loader: cannot be processed by libtiff);
if (!TIFFRGBAImageOK(tif, txt))
  {
 TIFFClose(tif);
 return 0;
  }
-   strcpy(txt, Cannot begin reading tiff);
+   strcpy(txt, Evas Tiff loader: cannot begin reading tiff);
if (!TIFFRGBAImageBegin( tiff_image, tif, 0, txt))
  {
 TIFFClose(tif);
@@ -213,13 +213,13 @@
if (!tif)
   return 0;
 
-   strcpy(txt, Cannot be processed by libtiff);
+   strcpy(txt, Evas Tiff loader: cannot be processed by libtiff);
if (!TIFFRGBAImageOK(tif, txt))
  {
 TIFFClose(tif);
 return 0;
  }
-   strcpy(txt, Cannot begin reading tiff);
+   strcpy(txt, Evas Tiff loader: cannot begin reading tiff);
if (!TIFFRGBAImageBegin((TIFFRGBAImage *)  rgba_image, tif, 0, txt))
  {
 TIFFClose(tif);
@@ -256,9 +256,7 @@
 
if (!rast)
  {
-fprintf(stderr, imlib2-tiffloader: Out of memory\n);
-
-_TIFFfree(rast);
+fprintf(stderr, Evas Tiff loader: out of memory\n);
 
 TIFFRGBAImageEnd((TIFFRGBAImage *)  rgba_image);
 TIFFClose(tif);
@@ -268,7 +266,7 @@
 
if (rgba_image.rgba.put.any == NULL)
  {
-fprintf(stderr, imlib2-tiffloader: No put function);
+fprintf(stderr, Evas Tiff loader: no put function);
 
evas_common_image_surface_free(im-image);
 _TIFFfree(rast);




---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: e kwo

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/src


Modified Files:
cursors.c 


Log Message:
Add some sanity checking for pixmap cursors.

===
RCS file: /cvs/e/e16/e/src/cursors.c,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -3 -r1.34 -r1.35
--- cursors.c   14 May 2006 16:01:17 -  1.34
+++ cursors.c   28 May 2006 09:12:33 -  1.35
@@ -69,22 +69,30 @@
XReadBitmapFile(disp, VRoot.xwin, msk, w, h, mask, xh, yh);
XReadBitmapFile(disp, VRoot.xwin, img, w, h, pmap, xh, yh);
XQueryBestCursor(disp, VRoot.xwin, w, h, ww, hh);
-   if ((w  ww) || (h  hh))
+   curs = None;
+   if ((w = ww)  (h = hh)  (pmap))
  {
-EFreePixmap(pmap);
-EFreePixmap(mask);
-Efree(img);
-return NULL;
+EAllocColor(VRoot.cmap, fg);
+EAllocColor(VRoot.cmap, bg);
+if (xh  0 || xh = (int)w)
+   xh = (int)w / 2;
+if (yh  0 || yh = (int)h)
+   yh = (int)h / 2;
+curs = XCreatePixmapCursor(disp, pmap, mask, fg, bg, xh, yh);
  }
 
-   EAllocColor(VRoot.cmap, fg);
-   EAllocColor(VRoot.cmap, bg);
+   if (!curs)
+  Eprintf(*** Failed to create cursor \%s\ from %s,%s\n,
+  name, img, msk);
 
-   curs = 0;
-   curs = XCreatePixmapCursor(disp, pmap, mask, fg, bg, xh, yh);
-   EFreePixmap(pmap);
-   EFreePixmap(mask);
+   if (pmap)
+  EFreePixmap(pmap);
+   if (mask)
+  EFreePixmap(mask);
Efree(img);
+
+   if (!curs)
+  return NULL;
  }
else
  {




---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: e kwo

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/src


Modified Files:
events.c 


Log Message:
Event debug cleanups.

===
RCS file: /cvs/e/e16/e/src/events.c,v
retrieving revision 1.123
retrieving revision 1.124
diff -u -3 -r1.123 -r1.124
--- events.c12 May 2006 13:10:16 -  1.123
+++ events.c28 May 2006 09:25:58 -  1.124
@@ -851,10 +851,11 @@
 void
 EventShow(const XEvent * ev)
 {
-   unsigned long   ser = ev-xany.serial;
-   Window  win = ev-xany.window;
-   const char *name = EventName(ev-type);
-   char   *txt;
+   char   *txt, buf[64];
+
+   Esnprintf(buf, sizeof(buf), %#08lx %cEV-%s ev=%#lx,
+ev-xany.serial, (ev-xany.send_event) ? '*' : ' ',
+EventName(ev-type), ev-xany.window);
 
switch (ev-type)
  {
@@ -863,39 +864,34 @@
goto case_common;
  case ButtonPress:
  case ButtonRelease:
-   Eprintf(%#08lx EV-%s win=%#lx sub=%#lx state=%#x button=%#x\n, ser,
-   name, win, ev-xbutton.subwindow, ev-xbutton.state,
-   ev-xbutton.button);
+   Eprintf(%s sub=%#lx state=%#x button=%#x\n, buf,
+   ev-xbutton.subwindow, ev-xbutton.state, ev-xbutton.button);
break;
  case MotionNotify:
-   Eprintf(%#08lx EV-%s win=%#lx sub=%#lx\n, ser, name, win,
-   ev-xcrossing.subwindow);
+   Eprintf(%s sub=%#lx\n, buf, ev-xcrossing.subwindow);
break;
  case EnterNotify:
  case LeaveNotify:
-   Eprintf
-  (%#08lx EV-%s win=%#lx sub=%#lx m=%s d=%s sscreen=%d focus=%d\n,
-   ser, name, win, ev-xcrossing.subwindow,
-   EventNotifyModeName(ev-xcrossing.mode),
-   EventNotifyDetailName(ev-xcrossing.detail),
-   ev-xcrossing.same_screen, ev-xcrossing.focus);
+   Eprintf(%s sub=%#lx m=%s d=%s sscreen=%d focus=%d\n, buf,
+   ev-xcrossing.subwindow,
+   EventNotifyModeName(ev-xcrossing.mode),
+   EventNotifyDetailName(ev-xcrossing.detail),
+   ev-xcrossing.same_screen, ev-xcrossing.focus);
break;
  case FocusIn:
  case FocusOut:
-   Eprintf(%#08lx EV-%s win=%#lx m=%s d=%s\n, ser, name, win,
-   EventNotifyModeName(ev-xfocus.mode),
+   Eprintf(%s m=%s d=%s\n, buf, EventNotifyModeName(ev-xfocus.mode),
EventNotifyDetailName(ev-xfocus.detail));
break;
  case KeymapNotify:
  case Expose:
  case GraphicsExpose:
-   Eprintf(%#08lx EV-%s: win=%#lx %d+%d %dx%d\n, ser, name, win,
+   Eprintf(%sx %d+%d %dx%d\n, buf,
ev-xexpose.x, ev-xexpose.y,
ev-xexpose.width, ev-xexpose.height);
break;
  case VisibilityNotify:
-   Eprintf(%#08lx EV-%s win=%#lx state=%d\n, ser, name, win,
-   ev-xvisibility.state);
+   Eprintf(%s state=%d\n, buf, ev-xvisibility.state);
break;
  case CreateNotify:
  case DestroyNotify:
@@ -906,45 +902,41 @@
  case EX_EVENT_UNMAP_GONE:
  case EX_EVENT_MAP_GONE:
  case EX_EVENT_MAPREQUEST_GONE:
-   Eprintf(%#08lx EV-%s ev=%#lx win=%#lx\n, ser, name, win,
-   ev-xcreatewindow.window);
+   Eprintf(%s win=%#lx\n, buf, ev-xcreatewindow.window);
break;
  case ReparentNotify:
  case EX_EVENT_REPARENT_GONE:
-   Eprintf(%#08lx EV-%s ev=%#lx win=%#lx parent=%#lx %d+%d\n, ser, name,
-   win, ev-xreparent.window, ev-xreparent.parent,
+   Eprintf(%s win=%#lx parent=%#lx %d+%d\n, buf,
+   ev-xreparent.window, ev-xreparent.parent,
ev-xreparent.x, ev-xreparent.y);
break;
  case ConfigureNotify:
-   Eprintf
-  (%#08lx EV-%s: ev=%#lx, win=%#lx %d+%d %dx%d bw=%d above=%#lx\n,
-   ser, name, win, ev-xconfigure.window, ev-xconfigure.x,
-   ev-xconfigure.y, ev-xconfigure.width, ev-xconfigure.height,
-   ev-xconfigure.border_width, ev-xconfigure.above);
+   Eprintf(%s win=%#lx %d+%d %dx%d bw=%d above=%#lx\n, buf,
+   ev-xconfigure.window, ev-xconfigure.x,
+   ev-xconfigure.y, ev-xconfigure.width, ev-xconfigure.height,
+   ev-xconfigure.border_width, ev-xconfigure.above);
break;
  case ConfigureRequest:
-   Eprintf
-  (%#08lx EV-%s: ev=%#lx win=%#lx m=%#lx %d+%d %dx%d bw=%d above=%#lx 
stk=%d\n,
-   ser, name, win, ev-xconfigurerequest.window,
-   ev-xconfigurerequest.value_mask, ev-xconfigurerequest.x,
-   ev-xconfigurerequest.y, ev-xconfigurerequest.width,
-   ev-xconfigurerequest.height, ev-xconfigurerequest.border_width,
-   ev-xconfigurerequest.above, ev-xconfigurerequest.detail);
+   Eprintf(%s win=%#lx m=%#lx %d+%d %dx%d bw=%d above=%#lx stk=%d\n,
+   buf, ev-xconfigurerequest.window,
+   

E CVS: e kwo

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/src


Modified Files:
ewins.h finders.c ipc.c 


Log Message:
IPC window operation tweaks:
- Enable targeting multiple windows (wildcard in name spec).
- Enable non-group operations.

===
RCS file: /cvs/e/e16/e/src/ewins.h,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -3 -r1.52 -r1.53
--- ewins.h 21 May 2006 12:09:14 -  1.52
+++ ewins.h 28 May 2006 09:54:39 -  1.53
@@ -387,7 +387,6 @@
 EWin   *EwinFindByFrame(Window win);
 EWin   *EwinFindByClient(Window win);
 EWin   *EwinFindByChildren(Window win);
-EWin   *EwinFindByString(const char *win, int type);
 EWin  **EwinListTransients(const EWin * ewin, int *num, int group);
 EWin  **EwinListTransientFor(const EWin * ewin, int *num);
 
===
RCS file: /cvs/e/e16/e/src/finders.c,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -3 -r1.49 -r1.50
--- finders.c   29 Apr 2006 19:39:21 -  1.49
+++ finders.c   28 May 2006 09:54:39 -  1.50
@@ -96,52 +96,6 @@
return NULL;
 }
 
-EWin   *
-EwinFindByString(const char *match, int type)
-{
-   EWin   *ewin = NULL;
-   EWin   *const *ewins;
-   int i, num, len;
-   charewinid[FILEPATH_LEN_MAX];
-   const char *name;
-
-   len = strlen(match);
-   if (len = 0)
-  goto done;
-
-   ewins = EwinListGetAll(num);
-   if (ewins == NULL)
-  goto done;
-
-   for (i = 0; i  num; i++)
- {
-   if (type == '+')
- {
-/* Match start of window ID */
-sprintf(ewinid, %x, (unsigned)_EwinGetClientXwin(ewins[i]));
-if (strncmp(ewinid, match, len))
-   continue;
- }
-   else if (type == '=')
- {
-/* Match name (substring) */
-name = ewins[i]-icccm.wm_name;
-if (!name)
-   continue;
-if (!strstr(name, match))
-   continue;
- }
-   else
-  goto done;
-
-   ewin = ewins[i];
-   break;
- }
-
- done:
-   return ewin;
-}
-
 EWin  **
 ListWinGroupMembersForEwin(const EWin * ewin, int action, char nogroup,
   int *pnum)
===
RCS file: /cvs/e/e16/e/src/ipc.c,v
retrieving revision 1.268
retrieving revision 1.269
diff -u -3 -r1.268 -r1.269
--- ipc.c   13 May 2006 09:47:13 -  1.268
+++ ipc.c   28 May 2006 09:54:39 -  1.269
@@ -79,28 +79,132 @@
bufsiz += len;
 }
 
-static EWin*
-IpcFindEwin(const char *windowid)
+static EWin   **
+IpcFindEwins(const char *match, int *pnum, int *pflags)
 {
-   unsigned intwin;
+   EWin   *ewin, **lst;
+   EWin   *const *ewins;
+   int type;
+   int i, num, len, nfound, match_one, flags;
+
+   if (pnum)
+  *pnum = 0;
+
+   if (!match || !match[0])
+  return NULL;
+
+   ewin = NULL;
+   flags = 0;
+
+   if (!strcmp(match, *) || !strcmp(match, =) || !strcmp(match, current))
+ {
+   ewin = GetContextEwin();
+   if (match[0] == '=')
+  flags = 1;   /* Nogroup */
+   goto do_one;
+ }
+
+   if (isdigit(match[0]))
+ {
+   unsigned intwin;
 
-   if (!strcmp(windowid, *) || !strcmp(windowid, %)
-   || !strcmp(windowid, current))
-  return GetContextEwin();
+   sscanf(match, %x, win);
+   ewin = EwinFindByChildren(win);
+   goto do_one;
+ }
 
-   if (isdigit(windowid[0]))
+   match_one = 1;
+   if (!strcmp(match, all))
+ {
+   type = 'a';
+   match_one = 0;
+   flags = 1;  /* Nogroup */
+ }
+   else if (match[0] == '=')
  {
-   sscanf(windowid, %x, win);
-   return EwinFindByChildren(win);
+   type = 's';
+   match++;
+   flags = 1;  /* Nogroup */
+ }
+   else if (strchr(match, '*'))
+ {
+   type = 'w';
+   match_one = 0;
+   flags = 1;  /* Nogroup */
+ }
+   else
+ {
+   type = 's';
+ }
+
+   len = strlen(match);
+   if (len = 0)
+  return NULL;
+
+   ewins = EwinListGetAll(num);
+   if (!ewins)
+  return NULL;
+
+   nfound = 0;
+   lst = NULL;
+   for (i = 0; i  num; i++)
+ {
+   ewin = ewins[i];
+
+   if (type == 'a')/* All */
+ {
+ }
+   else if (type == 'w')   /* Wildcard */
+ {
+if (!matchregexp(match, ewin-icccm.wm_name))
+   continue;
+ }
+   else/* Match name (substring) */
+ {
+const char *name;
+
+name = ewin-icccm.wm_name;
+if (!name)
+

E CVS: e kwo

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/src


Modified Files:
moveresize.c 


Log Message:
Fix non-group move by pointer.

===
RCS file: /cvs/e/e16/e/src/moveresize.c,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -3 -r1.69 -r1.70
--- moveresize.c3 May 2006 20:52:15 -   1.69
+++ moveresize.c28 May 2006 10:12:25 -  1.70
@@ -38,6 +38,7 @@
int win_x, win_y, win_w, win_h;
int swapcoord_x, swapcoord_y;
int resize_detail;
+   charnogroup;
 } Mode_mr;
 
 void
@@ -71,6 +72,7 @@
   return 0;
 
Mode_mr.ewin = ewin;
+   Mode_mr.nogroup = nogroup;
 
SoundPlay(SOUND_MOVE_START);
 
@@ -134,7 +136,7 @@
 
ewin-state.show_coords = 0;
 
-   gwins = ListWinGroupMembersForEwin(ewin, GROUP_ACTION_MOVE, Mode.nogroup
+   gwins = ListWinGroupMembersForEwin(ewin, GROUP_ACTION_MOVE, Mode_mr.nogroup
  || Mode.move.swap, num);
 
if (Mode.mode == MODE_MOVE)
@@ -171,7 +173,6 @@
 
  done:
Mode.mode = MODE_NONE;
-   Mode.nogroup = 0;
Mode.move.swap = 0;
Mode.place.doing_manual = 0;
 
@@ -201,9 +202,8 @@
/* If non opaque undraw our boxes */
if (Mode_mr.mode  0)
  {
-   lst =
-  ListWinGroupMembersForEwin(ewin, GROUP_ACTION_MOVE, Mode.nogroup,
- num);
+   lst = ListWinGroupMembersForEwin(ewin, GROUP_ACTION_MOVE,
+Mode_mr.nogroup, num);
for (i = 0; i  num; i++)
  {
 ewin = lst[i];
@@ -244,8 +244,8 @@
dy = Mode.events.y - Mode_mr.win_y - EoGetY(EoGetDesk(ewin)) - 
ewin-shape_y;
 
/* Redraw any windows that were in move mode */
-   lst =
-  ListWinGroupMembersForEwin(ewin, GROUP_ACTION_MOVE, Mode.nogroup, num);
+   lst = ListWinGroupMembersForEwin(ewin, GROUP_ACTION_MOVE,
+   Mode_mr.nogroup, num);
for (i = 0; i  num; i++)
  {
ewin = lst[i];
@@ -441,7 +441,7 @@
EdgeCheckMotion(Mode.events.x, Mode.events.y);
 
gwins = ListWinGroupMembersForEwin(ewin, GROUP_ACTION_MOVE,
- Mode.nogroup || Mode.move.swap, num);
+ Mode_mr.nogroup || Mode.move.swap, num);
 
if (Mode.mode == MODE_MOVE_PENDING)
  {




---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: e kwo

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/config


Modified Files:
bindings.cfg 


Log Message:
Fix non-group move by pointer.

===
RCS file: /cvs/e/e16/e/config/bindings.cfg,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- bindings.cfg30 Mar 2006 21:30:50 -  1.9
+++ bindings.cfg28 May 2006 10:12:25 -  1.10
@@ -35,7 +35,7 @@
 # window, raise it or something 
 Aclass BUTTONBINDINGS normal
 MouseDown   A  1 wop * mo ptr
-MouseDown   AS 1 wop * swapmove
+MouseDown   AS 1 wop = mo ptr
 MouseDouble A  1 wop * shade
 MouseDown   A  2 wop * sz ptr
 MouseDouble A  2 wop * th available




---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: e kwo

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/src


Modified Files:
backgrounds.c 


Log Message:
Add background transparency compatibility mode option to configuration dialog.

===
RCS file: /cvs/e/e16/e/src/backgrounds.c,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -3 -r1.75 -r1.76
--- backgrounds.c   14 May 2006 16:01:17 -  1.75
+++ backgrounds.c   28 May 2006 11:09:46 -  1.76
@@ -1454,6 +1454,7 @@
 static int  tmp_bg_yperc;
 static char tmp_hiq;
 static char tmp_userbg;
+static char tmp_root_hint;
 static int  tmp_bg_timeout;
 
 static void BG_RedrawView(void);
@@ -1476,6 +1477,7 @@
Conf.backgrounds.timeout = tmp_bg_timeout;
Conf.backgrounds.hiquality = tmp_hiq;
Conf.backgrounds.user = tmp_userbg;
+   Conf.hints.set_xroot_info_on_root_window = tmp_root_hint;
 
ESetColor((tmp_bg-bg_solid), tmp_bg_r, tmp_bg_g, tmp_bg_b);
tmp_bg-bg_tile = tmp_bg_tile;
@@ -2014,6 +2016,7 @@
 
tmp_hiq = Conf.backgrounds.hiquality;
tmp_userbg = Conf.backgrounds.user;
+   tmp_root_hint = Conf.hints.set_xroot_info_on_root_window;
tmp_bg_timeout = Conf.backgrounds.timeout;
 
d = bg_sel_dialog = DialogCreate(CONFIGURE_BG);
@@ -2256,6 +2259,15 @@
DialogItemSetColSpan(di, 3);
DialogItemSetAlign(di, 512, 512);
BG_DialogSetFileName(bg_filename);
+
+   di = DialogAddItem(table, DITEM_SEPARATOR);
+   DialogItemSetColSpan(di, 3);
+
+   di = DialogAddItem(table, DITEM_CHECKBUTTON);
+   DialogItemSetColSpan(di, 3);
+   DialogItemSetText(di,
+_(Enable background transparency compatibility mode));
+   DialogItemCheckButtonSetPtr(di, tmp_root_hint);
 
DialogAddFooter(d, DLG_OAC, CB_ConfigureBG);
 




---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e sndev

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : sndev
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_int_gadcon_config.c 


Log Message:

oooppps. NULL check was not performed = strange items in the list :)

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_gadcon_config.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- e_int_gadcon_config.c   21 May 2006 11:20:30 -  1.10
+++ e_int_gadcon_config.c   28 May 2006 11:28:14 -  1.11
@@ -422,9 +422,9 @@
 if (cc-func.icon) 
   icon = cc-func.icon(evas);
  }
-   e_widget_ilist_append(oi, icon, label,
- _cb_select_client_instance,
- cfdata, (char *)cf_gcc-name);
+   if (label)
+  e_widget_ilist_append(oi, icon, label, _cb_select_client_instance,
+cfdata, (char *)cf_gcc-name);
  }
 
e_widget_ilist_go(oi);




---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: e kwo

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/src


Modified Files:
backgrounds.c backgrounds.h desktops.c pager.c setup.c 


Log Message:
Fix some incorrect window attribute propagation. Cleanups.

===
RCS file: /cvs/e/e16/e/src/backgrounds.c,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -3 -r1.76 -r1.77
--- backgrounds.c   28 May 2006 11:09:46 -  1.76
+++ backgrounds.c   28 May 2006 11:51:41 -  1.77
@@ -492,8 +492,7 @@
 }
 
 static  Pixmap
-BackgroundCreatePixmap(Drawable draw, unsigned int w, unsigned int h,
-  unsigned int depth)
+BackgroundCreatePixmap(Win win, unsigned int w, unsigned int h)
 {
Pixmap  pmap;
 
@@ -501,11 +500,11 @@
 * Stupid hack to avoid that a new root pixmap has the same ID as the now
 * invalid one from a previous session.
 */
-   pmap = EXCreatePixmap(draw, w, h, depth);
-   if (draw == VRoot.xwin  pmap == Mode.root.ext_pmap)
+   pmap = ECreatePixmap(win, w, h, 0);
+   if (win == RRoot.win  pmap == Mode.root.ext_pmap)
  {
EFreePixmap(pmap);
-   pmap = EXCreatePixmap(draw, w, h, depth);
+   pmap = ECreatePixmap(win, w, h, 0);
Mode.root.ext_pmap = None;
Mode.root.ext_pmap_valid = 0;
  }
@@ -513,7 +512,7 @@
 }
 
 void
-BackgroundRealize(Background * bg, Drawable draw, unsigned int rw,
+BackgroundRealize(Background * bg, Win win, Drawable draw, unsigned int rw,
  unsigned int rh, int is_win, Pixmap * ppmap,
  unsigned long *ppixel)
 {
@@ -573,6 +572,9 @@
  }
 #endif
 
+   if (!draw)
+  draw = WinGetXwin(win);
+
hasbg = bg-bg.im != NULL;
hasfg = bg-top.im != NULL;
 
@@ -612,8 +614,8 @@
((w == rw  h == rh) || (bg-bg_tile  !TransparencyEnabled(
  {
/* Window, no fg, no offset, and scale to 100%, or tiled, no trans */
-   pmap = BackgroundCreatePixmap(draw, w, h, VRoot.depth);
-   EImageRenderOnDrawable(bg-bg.im, NULL, pmap, 0, 0, w, h, 0);
+   pmap = BackgroundCreatePixmap(win, w, h);
+   EImageRenderOnDrawable(bg-bg.im, win, pmap, 0, 0, w, h, 0);
 
 #if 0  /* FIXME - Remove? */
if (x == 0  y == 0)   /* Hmmm. Always true. */
@@ -635,7 +637,7 @@
 
/* The rest that require some more work */
if (is_win)
-  pmap = BackgroundCreatePixmap(draw, rw, rh, VRoot.depth);
+  pmap = BackgroundCreatePixmap(win, rw, rh);
else
   pmap = draw;
 
@@ -679,7 +681,7 @@
EImageBlend(im, bg-top.im, 1, 0, 0, ww, hh, x, y, w, h, 0, 0);
  }
 
-   EImageRenderOnDrawable(im, NULL, pmap, 0, 0, rw, rh, 0);
+   EImageRenderOnDrawable(im, win, pmap, 0, 0, rw, rh, 0);
if (im != bg-bg.im)
   EImageFree(im);
 
@@ -694,10 +696,10 @@
 }
 
 void
-BackgroundApplyPmap(Background * bg, Drawable draw,
+BackgroundApplyPmap(Background * bg, Win win, Drawable draw,
unsigned int w, unsigned int h)
 {
-   BackgroundRealize(bg, draw, w, h, 0, NULL, NULL);
+   BackgroundRealize(bg, win, draw, w, h, 0, NULL, NULL);
 }
 
 static void
@@ -710,7 +712,7 @@
if (!EGetGeometry(win, NULL, NULL, NULL, w, h, NULL, NULL))
   return;
 
-   BackgroundRealize(bg, Xwin(win), w, h, 1, pmap, pixel);
+   BackgroundRealize(bg, win, None, w, h, 1, pmap, pixel);
if (pmap != None)
  {
ESetWindowBackgroundPixmap(win, pmap);
@@ -736,7 +738,7 @@
if (bg-pmap)
   pmap = bg-pmap;
else
-  BackgroundRealize(bg, Xwin(win), w, h, 1, pmap, pixel);
+  BackgroundRealize(bg, win, None, w, h, 1, pmap, pixel);
 
bg-pmap = pmap;
if (pmap != None)
@@ -949,7 +951,7 @@
 
/* Create new cached bg mini image */
pmap = ECreatePixmap(VRoot.win, 64, 48, 0);
-   BackgroundApplyPmap(bg, pmap, 64, 48);
+   BackgroundApplyPmap(bg, VRoot.win, pmap, 64, 48);
im = EImageGrabDrawable(pmap, None, 0, 0, 64, 48, 0);
EImageSave(im, s);
EFreePixmap(pmap);
@@ -1524,7 +1526,7 @@
if (val == 1)
  {
ESetWindowBackgroundPixmap(win, pmap);
-   BackgroundApplyPmap(tmp_bg, pmap, w, h);
+   BackgroundApplyPmap(tmp_bg, win, pmap, w, h);
  }
else
  {
@@ -1539,7 +1541,7 @@
  tmp_bg-top.yjust, tmp_bg-top.xperc,
  tmp_bg-top.yperc);
 
-   BackgroundApplyPmap(bg, pmap, w, h);
+   BackgroundApplyPmap(bg, win, pmap, w, h);
BackgroundDestroy(bg);
  }
EClearWindow(win);
===
RCS file: /cvs/e/e16/e/src/backgrounds.h,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- backgrounds.h   29 Apr 2006 19:39:20 -  1.11
+++ backgrounds.h   28 May 2006 11:51:41 -  1.12
@@ -30,11 +30,11 @@
 char   *BackgroundGetUniqueString(const Background * bg);
 void

E CVS: proto moom

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : moom
Project : e17
Module  : proto

Dir : e17/proto/etk/doc/pages


Added Files:
object_hierarchy.h 


Log Message:
Documentation:
--
- Etk_Object.c/h
- Add a page with the object hierarchy of Etk






---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: proto moom

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : moom
Project : e17
Module  : proto

Dir : e17/proto/etk/src/lib


Modified Files:
etk_notebook.h etk_object.c etk_object.h etk_types.h 


Log Message:
Documentation:
--
- Etk_Object.c/h
- Add a page with the object hierarchy of Etk


===
RCS file: /cvs/e/e17/proto/etk/src/lib/etk_notebook.h,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -3 -r1.12 -r1.13
--- etk_notebook.h  25 May 2006 21:07:00 -  1.12
+++ etk_notebook.h  28 May 2006 14:16:32 -  1.13
@@ -9,6 +9,7 @@
 /** TODO/FIXME list:
  * - Improve the default theme of the tabs
  * - Make the tab bar swallowable
+ * - Focus the first widget of the page when the current page is changed
  */
 
 /**
===
RCS file: /cvs/e/e17/proto/etk/src/lib/etk_object.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -3 -r1.20 -r1.21
--- etk_object.c25 May 2006 21:07:00 -  1.20
+++ etk_object.c28 May 2006 14:16:32 -  1.21
@@ -60,11 +60,13 @@
 }
 
 /**
- * @brief Creates a new object and call the constructors then set the 
properties, according to the type of the object
+ * @brief Creates a new object: it calls the corresponding constructors (from 
the constructor of the base class to the
+ * constructor of the more derived class) and then sets the values of the 
given properties
  * @param object_type the type of the object to create
- * @param first_property the name of the first property value
- * @param ... the value of the first argument, followed by any number of 
name/argument-value pairs, terminated with NULL
- * @return Returns the new Etk_Object of type object_type
+ * @param first_property the name of the first property to set
+ * @param ... the value of the first property, followed by any number of 
property-name/property-value pairs,
+ * terminated with NULL
+ * @return Returns the new Etk_Object of type @a object_type
  */
 Etk_Object *etk_object_new(Etk_Type *object_type, const char *first_property, 
...)
 {
@@ -82,11 +84,13 @@
 }
 
 /**
- * @brief Creates a new object and call the constructors then set the 
properties, according to the type of the object
+ * @brief Creates a new object: it calls the corresponding constructors (from 
the constructor of the base class to the
+ * constructor of the more derived class) and then sets the values of the 
given properties
  * @param object_type the type of the object to create
- * @param first_property the name of the first property value
- * @param args the value of the first argument, followed by any number of 
name/argument-value pairs, terminated with NULL
- * @return Returns the new Etk_Object of type object_type
+ * @param first_property the name of the first property to set
+ * @param args the value of the first property, followed by any number of 
property-name/property-value pairs,
+ * terminated with NULL
+ * @return Returns the new Etk_Object of type @a object_type
  */
 Etk_Object *etk_object_new_valist(Etk_Type *object_type, const char 
*first_property, va_list args)
 {
@@ -109,7 +113,8 @@
 }
 
 /**
- * @brief Destroys the object: emits the destroyed signal, sets the weak 
pointers to NULL, calls the destructors and frees the object
+ * @brief Destroys the object: if first emits the destroyed signal, sets the 
weak pointers to NULL and then
+ * calls the destructors (from the destructor of the more derived class to the 
destructor of the ultimate base class)
  * @param object the object to destroy
  */
 void etk_object_destroy(Etk_Object *object)
@@ -124,7 +129,7 @@
 }
 
 /**
- * @brief Destroys all the created objects
+ * @brief Destroys all the created objects. You do not need to call it 
manually, etk_shutdown() calls it automatically
  */
 void etk_object_destroy_all_objects()
 {
@@ -133,11 +138,12 @@
 }
 
 /**
- * @brief Checks if @a object can be cast to  @a type @n
- * If it can't be, we display a message in the console but we return it anyway 
(should we?)
+ * @brief Checks if @a object can be cast to @a type.
+ * If @a object doesn't inherit from @a type, a warning is displayed in the 
console but the object is returned anyway.
  * @param object the object to cast
- * @param type the which we cast the object to
+ * @param type the type to which we cast the object
  * @return Returns the object
+ * @note You usually do not need to call this function, use specific macros 
instead (ETK_WIDGET() for example)
  */
 Etk_Object *etk_object_check_cast(Etk_Object *object, Etk_Type *type)
 {
@@ -152,22 +158,23 @@
 
 /**
  * @brief Gets the type of the object
- * @param object the object whose type is returned
- * @return Returns the type of the object @a object (NULL on failure)
+ * @param object an object
+ * @return Returns the type of @a object (NULL on failure)
  */
 Etk_Type *etk_object_object_type_get(Etk_Object *object)
 {
if 

E CVS: proto moom

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : moom
Project : e17
Module  : proto

Dir : e17/proto/etk/doc


Modified Files:
head.html 


Log Message:
Documentation:
--
- Etk_Object.c/h
- Add a page with the object hierarchy of Etk


===
RCS file: /cvs/e/e17/proto/etk/doc/head.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- head.html   25 May 2006 21:06:59 -  1.3
+++ head.html   28 May 2006 14:16:32 -  1.4
@@ -27,11 +27,11 @@
 td class='nav_img'img src='nav/item.png' width=10 height=10 alt='' 
border=0/td
 td class='nav_text'a class=qindex href='index.html'Main Page/a/td
 td class='nav_img'img src='nav/item.png' width=10 height=10 alt='' 
border=0/td
-td class='nav_text'a class=qindex href='modules.html'Widgets/a/td
+td class='nav_text'a class=qindex href='Object_Hierarchy.html'Object 
Hierarchy/a/td
 td class='nav_img'img src='nav/item.png' width=10 height=10 alt='' 
border=0/td
-td class='nav_text'a class=qindex href='annotated.html'Data 
Structures/a/td
+td class='nav_text'a class=qindex href='classes.html'Data 
Structures/a/td
 td class='nav_img'img src='nav/item.png' width=10 height=10 alt='' 
border=0/td
-td class='nav_text'a class=qindex href='classes.html'Index/a/td
+td class='nav_text'a class=qindex href='pages.html'Related 
Pages/a/td
   /tr/table/td
   td width=16img src=nav/etk_mini.png width=16 height=16 alt=Etk 
border=0/td
 




---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: proto moom

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : moom
Project : e17
Module  : proto

Dir : e17/proto/etk


Modified Files:
Doxyfile 


Log Message:
Documentation:
--
- Etk_Object.c/h
- Add a page with the object hierarchy of Etk


===
RCS file: /cvs/e/e17/proto/etk/Doxyfile,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- Doxyfile25 May 2006 21:06:58 -  1.4
+++ Doxyfile28 May 2006 14:16:32 -  1.5
@@ -1,7 +1,7 @@
 PROJECT_NAME   = Etk
 PROJECT_NUMBER =
 OUTPUT_DIRECTORY   = doc
-INPUT  = ./src/lib
+INPUT  = ./src/lib ./doc/pages
 IMAGE_PATH = doc/img
 OUTPUT_LANGUAGE= English
 GENERATE_HTML  = YES
@@ -52,7 +52,7 @@
 GENERATE_BUGLIST   = YES
 GENERATE_DEPRECATEDLIST= YES
 ALIASES= widget=b[Widget]/b
-ALIASES= object=b[Object]/b
+ALIASES   += object=b[Object]/b
 ALIASES   += [EMAIL PROTECTED] For more informations, see the 
documention page of the corresponding module (link above or in the 
i\Widgets\/i page)
 ALIASES   += prop_name=- @b
 ALIASES   += prop_type=   - ttType:/tt




---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: proto moom

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : moom
Project : e17
Module  : proto

Dir : e17/proto/etk/src/lib


Modified Files:
etk_object.c 


Log Message:
* Make Etk compile again


===
RCS file: /cvs/e/e17/proto/etk/src/lib/etk_object.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -3 -r1.21 -r1.22
--- etk_object.c28 May 2006 14:16:32 -  1.21
+++ etk_object.c28 May 2006 15:09:05 -  1.22
@@ -601,7 +601,7 @@
while (object-after_signal_callbacks_list)
{
   etk_signal_callback_del(object-after_signal_callbacks_list-data);
-  object-after_signal_callbacks_list = 
evas_list_remove_list(object-after_signal_callbacks_list
+  object-after_signal_callbacks_list = 
evas_list_remove_list(object-after_signal_callbacks_list,
  object-after_signal_callbacks_list);
}





---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: net e-taro

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : e-taro
Project : e_modules
Module  : net

Dir : e_modules/net/po


Modified Files:
ja.po 


Log Message:
module ja.po updates (Yasufumi Haga)

===
RCS file: /cvs/e/e_modules/net/po/ja.po,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ja.po   10 Mar 2006 15:11:20 -  1.1
+++ ja.po   28 May 2006 15:19:31 -  1.2
@@ -8,8 +8,8 @@
 msgstr 
 Project-Id-Version: Net\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2006-03-10 12:24+0900\n
-PO-Revision-Date: 2006-03-10 18:42+0900\n
+POT-Creation-Date: 2006-05-28 19:42+0900\n
+PO-Revision-Date: 2006-05-28 22:42+0900\n
 Last-Translator: Yasufumi Haga [EMAIL PROTECTED]\n
 Language-Team: LANGUAGE [EMAIL PROTECTED]\n
 MIME-Version: 1.0\n
@@ -20,30 +20,45 @@
 msgid Net Configuration
 msgstr net の設定
 
-#: e_mod_config.c:114
+#: e_mod_config.c:115
 msgid General Settings
 msgstr 一般の設定
 
-#: e_mod_config.c:115
-msgid Show Text
-msgstr 数値を表示する
-
 #: e_mod_config.c:117
-msgid Show Graph
-msgstr グラフを表示する
+msgid Always Show Text
+msgstr 常に表示する
 
-#: e_mod_config.c:121
+#: e_mod_config.c:119
+msgid Show Text On Mouse Over
+msgstr マウスが乗れば表示する
+
+#: e_mod_config.c:123
 msgid Device Settings
 msgstr デバイスの設定
 
-#: e_mod_config.c:133
+#: e_mod_config.c:135
 msgid Check Interval:
 msgstr 監視間隔
 
-#: e_mod_main.c:97
+#: e_mod_config.c:141
+msgid Max MTU:
+msgstr 最大 MTU:
+
+#: e_mod_main.c:105
+msgid Net
+msgstr 
+
+#: e_mod_main.c:152
+msgid Configuration
+msgstr 設定
+
+#: e_mod_main.c:361
 msgid Enlightenment Network Monitor Module
 msgstr Enlightenment ネットワーク監視モジュール
 
-#: e_mod_main.c:98
+#: e_mod_main.c:361
 msgid This module is used to monitor a network device.
 msgstr 
これはネットワークデバイスを監視するためのモジュールです.
+
+#~ msgid Show Graph
+#~ msgstr グラフを表示する




---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: moon e-taro

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : e-taro
Project : e_modules
Module  : moon

Dir : e_modules/moon/po


Modified Files:
ja.po 


Log Message:
module ja.po updates (Yasufumi Haga)

===
RCS file: /cvs/e/e_modules/moon/po/ja.po,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -3 -r1.1.1.1 -r1.2
--- ja.po   14 May 2006 02:24:55 -  1.1.1.1
+++ ja.po   28 May 2006 15:19:31 -  1.2
@@ -7,85 +7,96 @@
 msgstr 
 Project-Id-Version: PACKAGE VERSION\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2006-02-21 01:05+0900\n
-PO-Revision-Date: 2006-01-29 22:45+0900\n
+POT-Creation-Date: 2006-05-28 19:36+0900\n
+PO-Revision-Date: 2006-05-28 23:14+0900\n
 Last-Translator: David [EMAIL PROTECTED]\n
 Language-Team: none\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
 
-#: moon-0.1.0/src/e_mod_config.c:146 src/e_mod_config.c:146
+#: src/e_mod_config.c:97
 msgid Moon Configuration
 msgstr 月モジュールの設定
 
-#: moon-0.1.0/src/e_mod_config.c:203 src/e_mod_config.c:203
+#: src/e_mod_config.c:153
 msgid Display Settings
 msgstr 表示設定
 
-#: moon-0.1.0/src/e_mod_config.c:204 src/e_mod_config.c:204
-msgid Show Border
-msgstr ボーダーを表示する
-
-#: moon-0.1.0/src/e_mod_config.c:206 src/e_mod_config.c:206
+#: src/e_mod_config.c:154
 msgid Animated Clouds
 msgstr 雲を表示する
 
-#: moon-0.1.0/src/e_mod_config.c:210 src/e_mod_config.c:210
+#: src/e_mod_config.c:158
 msgid Moon Phase Value
-msgstr 月の満ち欠け状態値
+msgstr 月の満ち欠け
 
-#: moon-0.1.0/src/e_mod_config.c:212 src/e_mod_config.c:212
+#: src/e_mod_config.c:160
 msgid Show always
 msgstr 常に表示する
 
-#: moon-0.1.0/src/e_mod_config.c:214 src/e_mod_config.c:214
+#: src/e_mod_config.c:162
 msgid Show on mouse over
-msgstr マウスがあると表示する
+msgstr マウスが乗れば表示する
 
-#: moon-0.1.0/src/e_mod_config.c:216 src/e_mod_config.c:216
+#: src/e_mod_config.c:164
 msgid Never show
 msgstr 表示しない
 
-#: moon-0.1.0/src/e_mod_main.c:86 src/e_mod_main.c:85
+#: src/e_mod_config.c:168
+msgid Description
+msgstr 月の満ち欠けを名前で表示
+
+#: src/e_mod_config.c:171
+msgid Numerical
+msgstr 月の満ち欠けを数値で表示
+
+#: src/e_mod_main.c:136
 msgid Moon Clock Module
 msgstr 月の相モジュール
 
-#: moon-0.1.0/src/e_mod_main.c:87 src/e_mod_main.c:88
+#: src/e_mod_main.c:139
 msgid Display current phase of the moon ala e16 E-MoonClock
-msgstr 月の満ち欠け状態を表示するモジュール
+msgstr 月の満ち欠けを表示するモジュール
 
-#: src/e_mod_main.c:478
+#: src/e_mod_main.c:227
+msgid Moon
+msgstr 
+
+#: src/e_mod_main.c:505
 msgid New Moon
 msgstr 新月
 
-#: src/e_mod_main.c:479
+#: src/e_mod_main.c:507
 msgid Waxing Crescent
 msgstr 三日月
 
-#: src/e_mod_main.c:480
+#: src/e_mod_main.c:509
 msgid First Quarter
 msgstr 上弦
 
-#: src/e_mod_main.c:481
+#: src/e_mod_main.c:511
 msgid Waxing Gibbous
 msgstr 凸月
 
-#: src/e_mod_main.c:482
+#: src/e_mod_main.c:513
 msgid Full Moon
 msgstr 満月
 
-#: src/e_mod_main.c:483
+#: src/e_mod_main.c:515
 msgid Waning Gibbous
 msgstr 欠月
 
-#: src/e_mod_main.c:484
+#: src/e_mod_main.c:517
 msgid Last Quarter
 msgstr 下弦
 
-#: src/e_mod_main.c:485
+#: src/e_mod_main.c:519
 msgid Waning Crescent
 msgstr 衰月
+
+#~ msgid Show Border
+#~ msgstr ボーダーを表示する
 
 #~ msgid Moon Phase Calculation Interval
 #~ msgstr 月の満ち欠け状態の計算間隔




---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mem e-taro

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : e-taro
Project : e_modules
Module  : mem

Dir : e_modules/mem/po


Modified Files:
ja.po 


Log Message:
module ja.po updates (Yasufumi Haga)

===
RCS file: /cvs/e/e_modules/mem/po/ja.po,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ja.po   10 Mar 2006 15:11:20 -  1.1
+++ ja.po   28 May 2006 15:19:31 -  1.2
@@ -8,50 +8,61 @@
 msgstr 
 Project-Id-Version: Mem\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2006-03-10 12:23+0900\n
-PO-Revision-Date: 2006-03-10 18:34+0900\n
+POT-Creation-Date: 2006-05-28 19:34+0900\n
+PO-Revision-Date: 2006-05-28 22:31+0900\n
 Last-Translator: Yasufumi Haga [EMAIL PROTECTED]\n
 Language-Team: LANGUAGE [EMAIL PROTECTED]\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
 
-#: e_mod_config.c:37
+#: e_mod_config.c:36
 msgid Mem Configuration
 msgstr mem の設定
 
-#: e_mod_config.c:83
-msgid Mem Settings
-msgstr 設定内容
+#: e_mod_config.c:80
+msgid General Settings
+msgstr 一般の設定
+
+#: e_mod_config.c:82
+msgid Always Show Text
+msgstr 常に表示する
 
 #: e_mod_config.c:84
-msgid Show Text
-msgstr 数値を表示する
+msgid Show Text On Mouse Over
+msgstr マウスが乗れば表示する
 
 #: e_mod_config.c:86
 msgid Show Text As Percent
 msgstr 百分率で表示する
 
 #: e_mod_config.c:88
-msgid Show Graph
-msgstr グラフを表示する
-
-#: e_mod_config.c:90
 msgid Ignore Buffers
 msgstr バッファは無視する
 
-#: e_mod_config.c:92
+#: e_mod_config.c:90
 msgid Ignore Cached
 msgstr キャッシュは無視する
 
-#: e_mod_config.c:94
+#: e_mod_config.c:92
 msgid Check Interval:
 msgstr 監視間隔
 
-#: e_mod_main.c:93
+#: e_mod_main.c:101
+msgid Mem
+msgstr 
+
+#: e_mod_main.c:148
+msgid Configuration
+msgstr 設定
+
+#: e_mod_main.c:361
 msgid Enlightenment Mem Monitor Module
 msgstr Enlightenment メモリ監視モジュール
 
-#: e_mod_main.c:94
+#: e_mod_main.c:362
 msgid This module is used to monitor memory.
 msgstr これはメモリを監視するためのモジュールです.
+
+#~ msgid Show Graph
+#~ msgstr グラフを表示する




---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: screenshot e-taro

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : e-taro
Project : e_modules
Module  : screenshot

Dir : e_modules/screenshot/po


Modified Files:
ja.po 


Log Message:
module ja.po updates (Yasufumi Haga)

===
RCS file: /cvs/e/e_modules/screenshot/po/ja.po,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- ja.po   22 May 2006 13:26:31 -  1.3
+++ ja.po   28 May 2006 15:19:31 -  1.4
@@ -8,97 +8,117 @@
 msgstr 
 Project-Id-Version: PACKAGE VERSION\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2006-05-21 22:16+0900\n
-PO-Revision-Date: 2006-03-02 23:55+0900\n
+POT-Creation-Date: 2006-05-28 19:52+0900\n
+PO-Revision-Date: 2006-05-28 22:53+0900\n
 Last-Translator: Yasufumi Haga [EMAIL PROTECTED]\n
 Language-Team: LANGUAGE [EMAIL PROTECTED]\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
 
-#: e_mod_config.c:57
+#: e_mod_config.c:59
 msgid Screenshot Configuration
 msgstr スクリーンショット設定
 
-#: e_mod_config.c:123 e_mod_config.c:219
+#: e_mod_config.c:123 e_mod_config.c:213
+msgid General Settings
+msgstr 一般の設定
+
+#: e_mod_config.c:129 e_mod_config.c:219
 msgid Use Import
 msgstr import を使って撮る
 
-#: e_mod_config.c:125 e_mod_config.c:221
+#: e_mod_config.c:131 e_mod_config.c:221
 msgid Use Scrot
 msgstr scrot を使って撮る
 
-#: e_mod_config.c:133 e_mod_config.c:229
+#: e_mod_config.c:139 e_mod_config.c:229
 msgid Delay Time:
 msgstr セルフタイマー
 
-#: e_mod_config.c:140 e_mod_config.c:236
+#: e_mod_config.c:141 e_mod_config.c:231
+#, c-format
+msgid %1.0f seconds
+msgstr %1.0f 秒
+
+#: e_mod_config.c:145 e_mod_config.c:242
 msgid File Settings
 msgstr 保存方法
 
-#: e_mod_config.c:142 e_mod_config.c:238
+#: e_mod_config.c:146 e_mod_config.c:243
 msgid Save Directory:
 msgstr 保存先のディレクトリ
 
-#: e_mod_config.c:146 e_mod_config.c:242
-msgid Filename (minus extension):
-msgstr 保存するファイル名 (拡張子は除く)
-
-#: e_mod_config.c:251
-msgid Import Options
-msgstr import のオプション
+#: e_mod_config.c:150 e_mod_config.c:247
+msgid Filename:
+msgstr ファイル名:
+
+#: e_mod_config.c:235
+msgid Image Viewer Settings
+msgstr ビューアの設定
+
+#: e_mod_config.c:236
+msgid Launch Image Viewer After Screenshot
+msgstr 撮影後ビューアを起動する
+
+#: e_mod_config.c:256
+msgid Import Settings
+msgstr import の設定
 
-#: e_mod_config.c:252 e_mod_config.c:269
+#: e_mod_config.c:257 e_mod_config.c:274
 msgid Include Image Border
 msgstr ボーダーを含める
 
-#: e_mod_config.c:254
+#: e_mod_config.c:259
 msgid Use Image Dithering
 msgstr ディザリングを使う
 
-#: e_mod_config.c:256
+#: e_mod_config.c:261
 msgid Include Window Manager Frame
 msgstr ウィンドウマネージャのフレームを含める
 
-#: e_mod_config.c:258
+#: e_mod_config.c:263
 msgid Choose Window To Grab
 msgstr 選択したウィンドウだけを取り込む
 
-#: e_mod_config.c:260
+#: e_mod_config.c:265
 msgid Silent
 msgstr メッセージは表示しない
 
-#: e_mod_config.c:262
+#: e_mod_config.c:267
 msgid Trim Edges
 msgstr 縁を取り除く
 
-#: e_mod_config.c:268
-msgid Scrot Options
-msgstr scrot のオプション
+#: e_mod_config.c:273
+msgid Scrot Settings
+msgstr scrot の設定
 
-#: e_mod_config.c:271
+#: e_mod_config.c:276
 msgid Generate Thumbnail
 msgstr サムネイルを作成する
 
-#: e_mod_main.c:130
+#: e_mod_main.c:126
 msgid Screenshot
 msgstr 
 
-#: e_mod_main.c:165
+#: e_mod_main.c:160
 msgid Configuration
 msgstr 設定
 
-#: e_mod_main.c:408 e_mod_main.c:460
+#: e_mod_main.c:419 e_mod_main.c:471
 msgid Enlightenment Screenshot Module
 msgstr Enlightenment screenshot モジュール
 
-#: e_mod_main.c:409
+#: e_mod_main.c:419
 msgid This module is used to take screenshots
 msgstr 
このモジュールはスクリーンショットを撮るためのモジュールです.
 
-#: e_mod_main.c:461
-msgid Please Choose A Program To Use For Taking Screenshots.
-msgstr 
スクリーンショットを撮るために使用するプログラムを決めて下さい.
+#: e_mod_main.c:472
+msgid Please install either ImageMagick or Scrot for taking screenshots.
+msgstr スクリーンショットを撮影する場合は ImageMagick か 
Scrot をインストールして下さい.
+
+#~ msgid Filename (minus extension):
+#~ msgstr 保存するファイル名 (拡張子は除く)
 
 #~ msgid Example: screenshot%d = screenshot1, screenshot2, etc...
 #~ msgstr ファイル名の例: screenshot%d = screenshot1, screenshot2, 
等...




---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more

E CVS: apps/e e-taro

2006-05-28 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)

===
RCS file: /cvs/e/e17/apps/e/po/ja.po,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -3 -r1.30 -r1.31
--- ja.po   22 May 2006 13:39:28 -  1.30
+++ ja.po   28 May 2006 15:28:53 -  1.31
@@ -8,7 +8,7 @@
 msgstr 
 Project-Id-Version: PACKAGE VERSION\n
 Report-Msgid-Bugs-To: [EMAIL PROTECTED]
-POT-Creation-Date: 2006-05-21 21:12+0900\n
+POT-Creation-Date: 2006-05-28 17:25+0900\n
 PO-Revision-Date: 2006-05-22 10:30+0900\n
 Last-Translator: Yasufumi Haga [EMAIL PROTECTED]\n
 Language-Team: LANGUAGE [EMAIL PROTECTED]\n
@@ -53,17 +53,19 @@
 
 #: src/bin/e_actions.c:1358 src/bin/e_fileman_smart.c:1000
 #: src/bin/e_int_config_display.c:167 src/bin/e_module.c:566
+#: src/bin/e_confirm_dialog.c:61
 msgid Yes
 msgstr はい
 
 #: src/bin/e_actions.c:1360 src/bin/e_fileman_smart.c:1001
 #: src/bin/e_int_config_display.c:168 src/bin/e_module.c:567
+#: src/bin/e_confirm_dialog.c:62
 msgid No
 msgstr いいえ
 
 #: src/bin/e_actions.c:1461 src/bin/e_actions.c:1672 src/bin/e_actions.c:1674
 #: src/bin/e_actions.c:1676 src/bin/e_actions.c:1678
-#: src/bin/e_int_config_keybindings.c:666
+#: src/bin/e_int_config_keybindings.c:668
 msgid Menu
 msgstr メニュー
 
@@ -582,24 +584,23 @@
 msgid Desktop %i, %i
 msgstr デスクトップ %i, %i
 
-#: src/bin/e_config.c:1798
+#: src/bin/e_config.c:1801
 msgid Configuration Upgraded
 msgstr 設定をアップグレードしました
 
-#: src/bin/e_config.c:1813
+#: src/bin/e_config.c:1816
 #, c-format
 msgid 
 An error occured while saving Enlightenment'sbrconfiguration to disk. The 
 error could not bebrdeterimined.brbrThe file where the error occured 
 was:br%sbrbrThis file has been deleted to avoid corrupt data.br
 msgstr 
-Enlightenment 
の設定をディスクに保存している時にエラーが発生しました.br
-しかしどういうエラーかは分かりません.brbr
-エラー発生時に処理していたファイルは以下のとおりです.br
-%sbrbr
-壊れたデータが使われないように, 
このファイルは削除されました.
+Enlightenment 
の設定をディスクに保存している時にエラーが発生しました.brしか
+しどういうエラーかは分かりません.brbrエラー発生時に処理していたファイルは
+以下のとおりです.br%sbrbr壊れたデータが使われないように,
 このファイルは
+削除されました.
 
-#: src/bin/e_config.c:1824
+#: src/bin/e_config.c:1827
 #, c-format
 msgid 
 Enlightenment's configuration files are too bigbrfor the file system they 
@@ -608,14 +609,13 @@
 brbrThe file where the error occured was:br%sbrbrThis file has 
 been deleted to avoid corrupt data.br
 msgstr 
-Enlightenment の設定ファイルが大きすぎて, 
このファイルシステムには
-保存できません.br設定ファイルは極めて小さいものですから,
 このエラー
-は異様です. 
ホームディレクトリに関する設定を確認して下さい.brbr
-エラー発生時に処理していたファイルは次のとおりです.br
-%sbrbr
-壊れたデータが使われないように, 
このファイルは削除されました.
+Enlightenment の設定ファイルが大きすぎて, 
このファイルシステムには保存できま
+せん.br設定ファイルは極めて小さいものですから, 
このエラーは異様です. ホーム
+ディレクトリに関する設定を確認して下さい.brbrエラー発生時に処理していた
+ファイルは次のとおりです.br%sbrbr壊れたデータが使われないように,
 この
+ファイルは削除されました.
 
-#: src/bin/e_config.c:1837
+#: src/bin/e_config.c:1840
 #, c-format
 msgid 
 An output error occured when writing the configurationbrfiles for 
@@ -623,13 +623,12 @@
 replacement.brbrThe file where the error occured was:br%sbrbrThis 
 file has been deleted to avoid corrupt data.br
 msgstr 
-Enlightenment 
用の設定ファイルを書き出す際にエラーが発生しました.br
-使用中のディスクに問題があります. 
ディスクを交換する必要があると思います.brbr
-エラー発生時に処理していたファイルは次のとおりです.br
-%sbrbr
-壊れたデータが使われないように, 
このファイルは削除されました.
+Enlightenment 
用の設定ファイルを書き出す際にエラーが発生しました.br使用中の
+ディスクに問題があります. 
ディスクを交換する必要があると思います.brbrエ
+ラー発生時に処理していたファイルは次のとおりです.br%sbrbr壊れたデータが
+使われないように, このファイルは削除されました.
 
-#: src/bin/e_config.c:1848
+#: 

E CVS: tclock e-taro

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : e-taro
Project : e_modules
Module  : tclock

Dir : e_modules/tclock/po


Added Files:
bg.po 


Log Message:
module bg.po updates (Luchezar P. Petkov)





---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=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-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : e-taro
Project : e_modules
Module  : cpu

Dir : e_modules/cpu/po


Modified Files:
bg.po 


Log Message:
module bg.po updates (Luchezar P. Petkov)

===
RCS file: /cvs/e/e_modules/cpu/po/bg.po,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- bg.po   13 May 2006 02:00:54 -  1.1
+++ bg.po   28 May 2006 15:38:42 -  1.2
@@ -7,12 +7,12 @@
 Project-Id-Version: cpu 0.0.1\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2006-04-08 16:50+0300\n
-PO-Revision-Date: 2006-04-08 17:26+0300\n
+PO-Revision-Date: 2006-05-28 17:46+0300\n
 Last-Translator:  [EMAIL PROTECTED]\n
 Language-Team: Bulgarian [EMAIL PROTECTED]\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
-Content-Transfer-Encoding: 8bit\n
+Content-Transfer-Encoding: 8bit
 
 #: e_mod_config.c:34
 msgid Cpu Configuration
@@ -24,11 +24,11 @@
 
 #: e_mod_config.c:78
 msgid Show Text
-msgstr Показва текст
+msgstr Показва графика
 
 #: e_mod_config.c:80
 msgid Show Graph
-msgstr Показва диаграма
+msgstr Показва графика
 
 #: e_mod_config.c:83
 msgid Check Interval:
@@ -36,9 +36,9 @@
 
 #: e_mod_main.c:96
 msgid Enlightenment Cpu Monitor Module
-msgstr Модул за мониторинг на процесора към 
Enlightenment
+msgstr Модул за наблюдение на процесора към 
Enlightenment
 
 #: e_mod_main.c:97
 msgid This module is used to monitor a cpu.
-msgstr Този модул се използва за мониторинг 
на процесора.
+msgstr Този модул се използва за наблюдение 
на процесора.
 




---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: calendar e-taro

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : e-taro
Project : e_modules
Module  : calendar

Dir : e_modules/calendar/po


Modified Files:
bg.po 


Log Message:
module bg.po updates (Luchezar P. Petkov)

===
RCS file: /cvs/e/e_modules/calendar/po/bg.po,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- bg.po   13 May 2006 01:46:31 -  1.1
+++ bg.po   28 May 2006 15:38:42 -  1.2
@@ -7,12 +7,12 @@
 Project-Id-Version: calendar 0.0.4\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2006-04-09 01:45+0300\n
-PO-Revision-Date: 2006-04-09 01:46+0300\n
+PO-Revision-Date: 2006-05-28 17:28+0300\n
 Last-Translator:  [EMAIL PROTECTED]\n
 Language-Team: Bulgarian [EMAIL PROTECTED]\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
-Content-Transfer-Encoding: 8bit\n
+Content-Transfer-Encoding: 8bit
 
 #: src/add_event_dialog.c:74 src/add_todo_dialog.c:73
 msgid Font Editor
@@ -294,35 +294,35 @@
 
 #: src/otherfonts_editor.c:289 src/otherfonts_editor.c:381
 msgid R Out:
-msgstr 
+msgstr Ч контур:
 
 #: src/otherfonts_editor.c:296 src/otherfonts_editor.c:389
 msgid B Out:
-msgstr 
+msgstr С контур:
 
 #: src/otherfonts_editor.c:303 src/otherfonts_editor.c:397
 msgid G Out:
-msgstr 
+msgstr З контур:
 
 #: src/otherfonts_editor.c:310 src/otherfonts_editor.c:405
 msgid A Out:
-msgstr 
+msgstr П контур:
 
 #: src/otherfonts_editor.c:317 src/otherfonts_editor.c:413
 msgid R Shad:
-msgstr 
+msgstr Ч сянка:
 
 #: src/otherfonts_editor.c:324 src/otherfonts_editor.c:421
 msgid B Shad:
-msgstr 
+msgstr С сянка:
 
 #: src/otherfonts_editor.c:331 src/otherfonts_editor.c:429
 msgid G Shad:
-msgstr 
+msgstr З сянка:
 
 #: src/otherfonts_editor.c:338 src/otherfonts_editor.c:437
 msgid A Shad:
-msgstr 
+msgstr П сянка:
 
 #: src/today_editor.c:113 src/today_editor.c:267
 msgid Today
@@ -334,35 +334,35 @@
 
 #: src/today_editor.c:340 src/weekday_editor.c:326 src/weekend_editor.c:324
 msgid R Outline:
-msgstr 
+msgstr Ч контур:
 
 #: src/today_editor.c:348 src/weekday_editor.c:333 src/weekend_editor.c:331
 msgid B Outline:
-msgstr 
+msgstr С контур:
 
 #: src/today_editor.c:356 src/weekday_editor.c:340 src/weekend_editor.c:338
 msgid G Outline:
-msgstr 
+msgstr З контур:
 
 #: src/today_editor.c:364 src/weekday_editor.c:347 src/weekend_editor.c:345
 msgid A Outline:
-msgstr 
+msgstr П контур:
 
 #: src/today_editor.c:372 src/weekday_editor.c:354 src/weekend_editor.c:352
 msgid R Shadow:
-msgstr 
+msgstr Ч сянка:
 
 #: src/today_editor.c:380 src/weekday_editor.c:361 src/weekend_editor.c:359
 msgid B Shadow:
-msgstr 
+msgstr С сянка:
 
 #: src/today_editor.c:388 src/weekday_editor.c:368 src/weekend_editor.c:366
 msgid G Shadow:
-msgstr 
+msgstr З сянка:
 
 #: src/today_editor.c:396 src/weekday_editor.c:375 src/weekend_editor.c:373
 msgid A Shadow:
-msgstr 
+msgstr П сянка:
 
 #: src/weekday_editor.c:120 src/weekday_editor.c:264
 msgid Weekday




---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: tclock e-taro

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : e-taro
Project : e_modules
Module  : tclock

Dir : e_modules/tclock


Modified Files:
configure.in 


Log Message:
module bg.po updates (Luchezar P. Petkov)

===
RCS file: /cvs/e/e_modules/tclock/configure.in,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -3 -r1.12 -r1.13
--- configure.in21 May 2006 04:01:33 -  1.12
+++ configure.in28 May 2006 15:38:42 -  1.13
@@ -17,7 +17,7 @@
 AM_ENABLE_SHARED
 AM_PROG_LIBTOOL
 
-ALL_LINGUAS=fi it ja ru sv
+ALL_LINGUAS=bg fi it ja ru sv
 AC_SUBST(ALL_LINGUAS)
 
 AM_GNU_GETTEXT([external])




---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: proto moom

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : moom
Project : e17
Module  : proto

Dir : e17/proto/etk/doc/img/widgets


Added Files:
paned.png 


Log Message:
Some work on Etk_Paned:
 - *API BREAK* etk_paned_add1/add2() -- etk_paned_child1/child2_set. It breaks 
almost all the Etk apps!
 - Implementation of the container method children_get()
 - Fix a bug affecting the visibility of the separator
 - Documentation and formatting






---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: proto moom

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : moom
Project : e17
Module  : proto

Dir : e17/proto/etk/src/lib


Modified Files:
etk_filechooser_widget.c etk_paned.c etk_paned.h etk_types.h 


Log Message:
Some work on Etk_Paned:
 - *API BREAK* etk_paned_add1/add2() -- etk_paned_child1/child2_set. It breaks 
almost all the Etk apps!
 - Implementation of the container method children_get()
 - Fix a bug affecting the visibility of the separator
 - Documentation and formatting


===
RCS file: /cvs/e/e17/proto/etk/src/lib/etk_filechooser_widget.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- etk_filechooser_widget.c12 May 2006 19:13:39 -  1.11
+++ etk_filechooser_widget.c28 May 2006 15:56:06 -  1.12
@@ -353,13 +353,13 @@
etk_widget_visibility_locked_set(fcw-hpaned, ETK_TRUE);

vpaned = etk_vpaned_new();
-   etk_paned_add1(ETK_PANED(fcw-hpaned), vpaned, ETK_FALSE);
+   etk_paned_child1_set(ETK_PANED(fcw-hpaned), vpaned, ETK_FALSE);
etk_widget_show(vpaned);
etk_widget_visibility_locked_set(vpaned, ETK_TRUE);

fcw-places_tree = etk_tree_new();
etk_widget_size_request_set(fcw-places_tree, 180, 180);
-   etk_paned_add1(ETK_PANED(vpaned), fcw-places_tree, ETK_TRUE);
+   etk_paned_child1_set(ETK_PANED(vpaned), fcw-places_tree, ETK_TRUE);
fcw-places_col = etk_tree_col_new(ETK_TREE(fcw-places_tree), _(Places), 
etk_tree_model_icon_text_new(ETK_TREE(fcw-places_tree), ETK_TREE_FROM_EDJE), 
120);
etk_tree_build(ETK_TREE(fcw-places_tree));
etk_widget_show(fcw-places_tree);
@@ -368,7 +368,7 @@

fcw-fav_tree = etk_tree_new();
etk_widget_size_request_set(fcw-fav_tree, 180, 180);
-   etk_paned_add2(ETK_PANED(vpaned), fcw-fav_tree, ETK_TRUE);
+   etk_paned_child2_set(ETK_PANED(vpaned), fcw-fav_tree, ETK_TRUE);
fcw-fav_col = etk_tree_col_new(ETK_TREE(fcw-fav_tree), _(Favorites), 
etk_tree_model_icon_text_new(ETK_TREE(fcw-fav_tree), ETK_TREE_FROM_EDJE), 120);
etk_tree_build(ETK_TREE(fcw-fav_tree));
etk_widget_show(fcw-fav_tree);
@@ -377,7 +377,7 @@

fcw-files_tree = etk_tree_new();
etk_widget_size_request_set(fcw-files_tree, 400, 120);
-   etk_paned_add2(ETK_PANED(fcw-hpaned), fcw-files_tree, ETK_TRUE);
+   etk_paned_child2_set(ETK_PANED(fcw-hpaned), fcw-files_tree, ETK_TRUE);
fcw-files_name_col = etk_tree_col_new(ETK_TREE(fcw-files_tree), 
_(Filename), etk_tree_model_icon_text_new(ETK_TREE(fcw-files_tree), 
ETK_TREE_FROM_EDJE), 100);
etk_tree_col_expand_set(fcw-files_name_col, ETK_TRUE);
fcw-files_date_col = etk_tree_col_new(ETK_TREE(fcw-files_tree), 
_(Date), etk_tree_model_text_new(ETK_TREE(fcw-files_tree)), 60);
===
RCS file: /cvs/e/e17/proto/etk/src/lib/etk_paned.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- etk_paned.c 7 Apr 2006 15:36:11 -   1.8
+++ etk_paned.c 28 May 2006 15:56:06 -  1.9
@@ -1,6 +1,7 @@
 /** @file etk_paned.c */
 #include etk_paned.h
 #include stdlib.h
+#include Evas.h
 #include etk_separator.h
 #include etk_utils.h
 #include etk_signal.h
@@ -12,7 +13,7 @@
  * @{
  */
 
-enum _Etk_Paned_Property_Id
+enum Etk_Paned_Property_Id
 {
ETK_PANED_POSITION_PROPERTY
 };
@@ -20,8 +21,8 @@
 static void _etk_paned_constructor(Etk_Paned *paned);
 static void _etk_hpaned_constructor(Etk_HPaned *hpaned);
 static void _etk_vpaned_constructor(Etk_VPaned *vpaned);
-static void _etk_hpaned_size_request(Etk_Widget *widget, Etk_Size 
*size_requisition);
-static void _etk_vpaned_size_request(Etk_Widget *widget, Etk_Size 
*size_requisition);
+static void _etk_hpaned_size_request(Etk_Widget *widget, Etk_Size *size);
+static void _etk_vpaned_size_request(Etk_Widget *widget, Etk_Size *size);
 static void _etk_hpaned_size_allocate(Etk_Widget *widget, Etk_Geometry 
geometry);
 static void _etk_vpaned_size_allocate(Etk_Widget *widget, Etk_Geometry 
geometry);
 static void _etk_paned_child_add(Etk_Container *container, Etk_Widget *widget);
@@ -45,7 +46,7 @@
 
 /**
  * @brief Gets the type of an Etk_Paned
- * @return Returns the type on an Etk_Paned
+ * @return Returns the type of an Etk_Paned
  */
 Etk_Type *etk_paned_type_get()
 {
@@ -53,9 +54,11 @@
 
if (!paned_type)
{
-  paned_type = etk_type_new(Etk_Paned, ETK_CONTAINER_TYPE, 
sizeof(Etk_Paned), ETK_CONSTRUCTOR(_etk_paned_constructor), NULL);
+  paned_type = etk_type_new(Etk_Paned, ETK_CONTAINER_TYPE, 
sizeof(Etk_Paned),
+ ETK_CONSTRUCTOR(_etk_paned_constructor), NULL);
   
-  etk_type_property_add(paned_type, position, 
ETK_PANED_POSITION_PROPERTY, ETK_PROPERTY_INT, ETK_PROPERTY_READABLE_WRITABLE,  
etk_property_value_int(0));
+  etk_type_property_add(paned_type, position, 
ETK_PANED_POSITION_PROPERTY,
+ ETK_PROPERTY_INT, ETK_PROPERTY_READABLE_WRITABLE,  
etk_property_value_int(0));
}
 
return 

E CVS: proto moom

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : moom
Project : e17
Module  : proto

Dir : e17/proto/etk/src/bin


Modified Files:
etk_paned_test.c 


Log Message:
Some work on Etk_Paned:
 - *API BREAK* etk_paned_add1/add2() -- etk_paned_child1/child2_set. It breaks 
almost all the Etk apps!
 - Implementation of the container method children_get()
 - Fix a bug affecting the visibility of the separator
 - Documentation and formatting


===
RCS file: /cvs/e/e17/proto/etk/src/bin/etk_paned_test.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- etk_paned_test.c15 Jan 2006 11:07:16 -  1.4
+++ etk_paned_test.c28 May 2006 15:56:06 -  1.5
@@ -30,19 +30,19 @@
etk_box_pack_start(ETK_BOX(vbox), vpaned, ETK_TRUE, ETK_TRUE, 0);
 
hpaned = etk_hpaned_new();
-   etk_paned_add1(ETK_PANED(vpaned), hpaned, ETK_FALSE);
+   etk_paned_child1_set(ETK_PANED(vpaned), hpaned, ETK_FALSE);
 
label = etk_label_new(_(HPaned Child 1));
etk_label_alignment_set(ETK_LABEL(label), 0.5, 0.5);
-   etk_paned_add1(ETK_PANED(hpaned), label, ETK_TRUE);
+   etk_paned_child1_set(ETK_PANED(hpaned), label, ETK_TRUE);

label = etk_label_new(_(HPaned Child 2));
etk_label_alignment_set(ETK_LABEL(label), 0.5, 0.5);
-   etk_paned_add2(ETK_PANED(hpaned), label, ETK_FALSE);
+   etk_paned_child2_set(ETK_PANED(hpaned), label, ETK_FALSE);

label = etk_label_new(_(VPaned Child 2));
etk_label_alignment_set(ETK_LABEL(label), 0.5, 0.5);
-   etk_paned_add2(ETK_PANED(vpaned), label, ETK_TRUE);
+   etk_paned_child2_set(ETK_PANED(vpaned), label, ETK_TRUE);

hseparator = etk_hseparator_new();
etk_box_pack_start(ETK_BOX(vbox), hseparator, ETK_FALSE, ETK_FALSE, 6);




---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl pfritz

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : pfritz
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/lib


Modified Files:
ewl_media.c ewl_media.h 


Log Message:
make the video in ewl_media visible again

===
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_media.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -3 -r1.21 -r1.22
--- ewl_media.c 28 May 2006 02:39:56 -  1.21
+++ ewl_media.c 28 May 2006 17:09:06 -  1.22
@@ -61,6 +61,8 @@
 
ewl_callback_append(w, EWL_CALLBACK_REALIZE, ewl_media_realize_cb,
NULL);
+   ewl_callback_append(w, EWL_CALLBACK_REVEAL, ewl_media_reveal_cb,
+   NULL);
ewl_callback_append(w, EWL_CALLBACK_UNREALIZE, ewl_media_unrealize_cb,
NULL);
ewl_callback_append(w, EWL_CALLBACK_CONFIGURE, ewl_media_configure_cb,
@@ -496,17 +498,41 @@
ewl_media_size_update(m);
}
 #endif
-
-   evas_object_smart_member_add(m-video, w-smart_object);
-   if (w-fx_clip_box) {
-   evas_object_clip_set(m-video, w-fx_clip_box);
-   evas_object_stack_below(m-video, w-fx_clip_box);
-   }
-
/*
 * Now set the media and display it.
 */
evas_object_show(m-video);
+
+   DLEAVE_FUNCTION(DLEVEL_STABLE);
+}
+
+/**
+ * @internal
+ * @param w: The widget to work with
+ * @param ev_data: UNUSED
+ * @param user_data: UNUSED
+ * @return Returns no value
+ * @brief The reveal callback
+ */
+void
+ewl_media_reveal_cb(Ewl_Widget *w, void *ev_data __UNUSED__,
+   void *user_data __UNUSED__)
+{
+   Ewl_Media *m;
+
+   DENTER_FUNCTION(DLEVEL_STABLE);
+   DCHECK_PARAM_PTR(w, w);
+   DCHECK_TYPE(w, w, EWL_WIDGET_TYPE);
+
+   m = EWL_MEDIA(w);
+
+   if (m-video) {
+   evas_object_smart_member_add(m-video, w-smart_object);
+   if (w-fx_clip_box) {
+   evas_object_clip_set(m-video, w-fx_clip_box);
+   evas_object_stack_above(m-video, w-fx_clip_box);
+   }
+   }
 
DLEAVE_FUNCTION(DLEVEL_STABLE);
 }
===
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_media.h,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- ewl_media.h 20 Apr 2006 02:58:01 -  1.13
+++ ewl_media.h 28 May 2006 17:09:06 -  1.14
@@ -79,6 +79,7 @@
  * Internally used callbacks, override at your own risk.
  */
 void ewl_media_realize_cb(Ewl_Widget *w, void *ev_data, void *user_data);
+void ewl_media_reveal_cb(Ewl_Widget *w, void *ev_data, void *user_data);
 void ewl_media_unrealize_cb(Ewl_Widget *w, void *ev_data, void *user_data);
 void ewl_media_configure_cb(Ewl_Widget *w, void *ev_data, void *user_data);
 




---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl dj2

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl


Modified Files:
TODO 


Log Message:
- fixed

===
RCS file: /cvs/e/e17/libs/ewl/TODO,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -3 -r1.99 -r1.100
--- TODO28 May 2006 02:39:56 -  1.99
+++ TODO28 May 2006 18:59:42 -  1.100
@@ -76,9 +76,6 @@
 
 - Ewl_Text:: need to fill in the condense function
 
-- Ewl_Media:: The layer for the video seems incorrect as it dosen't show up
- correctly. The audio plays, but the video isn't visible.
-
 
   Ewl_Icon
  - Need to add the constrain stuff in like iconbox does at the moment.




---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/evas mej

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : mej
Project : e17
Module  : libs/evas

Dir : e17/libs/evas


Modified Files:
evas.spec.in 


Log Message:
Sun May 28 15:35:14 2006Michael Jennings (mej)

Re-disable edb stuff.  We'll see what happens.
--

===
RCS file: /cvs/e/e17/libs/evas/evas.spec.in,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -3 -r1.20 -r1.21
--- evas.spec.in27 May 2006 18:34:46 -  1.20
+++ evas.spec.in28 May 2006 20:33:40 -  1.21
@@ -15,6 +15,8 @@
 %endif
 
 ## disabled features
+%bcond_withmodule_loader_edb
+%bcond_withmodule_saver_edb
 %bcond_withmodule_engine_directfb
 %bcond_withmodule_engine_gl_x11
 %bcond_withmodule_engine_software_qtopia
@@ -25,8 +27,6 @@
 %bcond_without module_engine_software_x11
 %bcond_without module_engine_buffer
 %bcond_without module_engine_fb
-%bcond_without module_loader_edb
-%bcond_without module_saver_edb
 %bcond_without module_loader_png
 %bcond_without module_saver_png
 %bcond_without module_loader_jpeg




---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: engage mej

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : mej
Project : misc
Module  : engage

Dir : misc/engage


Modified Files:
engage.spec 


Log Message:
Sun May 28 15:38:01 2006Michael Jennings (mej)

Let ewl-devel pull in emotion-devel.
--

===
RCS file: /cvs/e/misc/engage/engage.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- engage.spec 28 May 2006 05:36:59 -  1.3
+++ engage.spec 28 May 2006 20:36:25 -  1.4
@@ -1,7 +1,7 @@
 Summary: engage
 Name: engage
 Version: 0.0.9
-Release: 1.%(date '+%Y%m%d')
+Release: 1.20060528
 License: BSD
 Group: Applications/Multimedia
 URL: http://www.enlightenment.org/
@@ -12,7 +12,7 @@
 #BuildSuggests: xorg-x11-devel
 BuildRequires: libjpeg-devel XFree86-devel
 BuildRequires: evas-devel edje-devel imlib2-devel ecore-devel esmart-devel
-BuildRequires: ewl-devel emotion-devel enlightenment-devel
+BuildRequires: ewl-devel enlightenment-devel
 BuildRoot: %{_tmppath}/%{name}-%{version}-root
 
 %description




---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: engage mej

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : mej
Project : misc
Module  : engage

Dir : misc/engage


Modified Files:
engage.spec 


Log Message:
Sun May 28 15:40:54 2006Michael Jennings (mej)

Oops.
--

===
RCS file: /cvs/e/misc/engage/engage.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- engage.spec 28 May 2006 20:36:25 -  1.4
+++ engage.spec 28 May 2006 20:39:18 -  1.5
@@ -1,7 +1,7 @@
 Summary: engage
 Name: engage
 Version: 0.0.9
-Release: 1.20060528
+Release: 1.%(date '+%Y%m%d')
 License: BSD
 Group: Applications/Multimedia
 URL: http://www.enlightenment.org/




---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=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-28 Thread Enlightenment CVS
Enlightenment CVS committal

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

Dir : e17/apps/e/po


Modified Files:
bg.po 


Log Message:
e17 bg.po update (Luchezar P. Petkov)

===
RCS file: /cvs/e/e17/apps/e/po/bg.po,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- bg.po   16 May 2006 07:32:36 -  1.10
+++ bg.po   28 May 2006 22:00:34 -  1.11
@@ -8,7 +8,7 @@
 Project-Id-Version: PACKAGE VERSION\n
 Report-Msgid-Bugs-To: [EMAIL PROTECTED]
 POT-Creation-Date: 2006-05-14 16:23+0300\n
-PO-Revision-Date: 2006-05-15 10:44+0300\n
+PO-Revision-Date: 2006-05-28 18:46+0300\n
 Last-Translator: Viktor Kojouharov [EMAIL PROTECTED]\n
 Language-Team: English [EMAIL PROTECTED]\n
 MIME-Version: 1.0\n
@@ -26,7 +26,6 @@
 msgstr Enlightenment
 
 #: src/bin/e_about.c:56
-#, fuzzy
 msgid 
 Copyright copy; 1999-2006, by the Enlightenment Development Team.brbrWe 
 hope you enjoy using this software as much as we enjoyed writing it.
@@ -37,13 +36,12 @@
 is not stable. Many features are incomplete or even non-existant yet and may 
 have many bugs. You have been hilightWARNED!/hilight
 msgstr 
-Авторски права copy; 1999-2005, Екип за 
разработка на Enlightenment.
-brbrНадяваме се, че ви харесва програмата, 
колкото на нас ни хареса да я 
-пишем.brbrПрограмата се предлага без 
никаква гаранция. Програмата се 
-обуславя на лицензионните условия, 
описани в файловете COPYING и COPYING-
+copy Всички права запазени; 1999-2006, Екипът  на 
Enlightenment.
+brbrНадяваме се, че използването на 
средата ще ви хареса колкото на нас ни 
харесва да я 
+пишем.brbrТози софтуер се предлага без 
никаква гаранция.
+Обуславя се на лицензионните условия, 
описани в файловете COPYING и COPYING-
 PLAIN, които са инсталирани на вашата 
система. brbrEnlightenment е под 
-hilightСИЛНА РАЗРАБОТКА/hilight и не е 
стабилна. Много от екстрите са 
-непълниили още не съществуват, и има много 
грешки. Бяхте 
+hilightУСИЛЕНА РАЗРАБОТКА/hilight и не е 
стабилна среда. Много от възможностите й не 
са готови или все още не съществуват, и има 
много грешки. Бяхте 
 hilightПРЕДУПРЕДЕНИ!/hilight
 
 #: src/bin/e_about.c:81
@@ -493,14 +491,14 @@
 msgstr %s е прекъсната от сигнал Uninterruptable Kill
 
 #: src/bin/e_apps_error.c:101
-#, fuzzy, c-format
+#, c-format
 msgid %s was interrupted by a Segmentation Fault
-msgstr %s е прекъсната от Segmentation Fault
+msgstr %s е прекъсната от сигнал Segmentation Fault
 
 #: src/bin/e_apps_error.c:104
-#, fuzzy, c-format
+#, c-format
 msgid %s was interrupted by a Broken Pipe
-msgstr %s е прекъсната от Broken Pipe
+msgstr %s е прекъсната от сигнал Broken Pipe
 
 #: src/bin/e_apps_error.c:108
 #, c-format
@@ -616,7 +614,7 @@
 
 #: src/bin/e_configure.c:68 src/bin/e_int_config_background.c:295
 msgid Theme
-msgstr Теми
+msgstr Тема
 
 #: src/bin/e_configure.c:69
 msgid Fonts
@@ -636,7 +634,7 @@
 
 #: src/bin/e_configure.c:77
 msgid Extensions
-msgstr Модули
+msgstr Разширения
 
 #: src/bin/e_configure.c:78 src/bin/e_int_config_modules.c:239
 msgid Modules
@@ -652,7 +650,7 @@
 
 #: src/bin/e_configure.c:83
 msgid Screen Lock
-msgstr Заключване
+msgstr Заключване на екрана
 
 #: src/bin/e_configure.c:85
 msgid Behavior
@@ -684,7 +682,7 @@
 
 #: src/bin/e_configure.c:95
 msgid Startup
-msgstr Начало
+msgstr Настройки при зареждане
 
 #: src/bin/e_configure.c:96
 msgid Window List
@@ -734,7 +732,7 @@
 
 #: src/bin/e_eap_editor.c:85
 msgid Eap Editor
-msgstr Eap редактор
+msgstr Редактрор на Eap файлове
 
 #: src/bin/e_eap_editor.c:240
 msgid Icon
@@ -749,9 +747,8 @@
 msgstr Име на програмата
 
 #: src/bin/e_eap_editor.c:278
-#, fuzzy
 msgid Executable
-msgstr Изпълнимо
+msgstr Изпълним файл
 
 #: src/bin/e_eap_editor.c:304 src/bin/e_fileman_smart.c:1217
 msgid General
@@ -799,7 +796,7 @@
 
 #: src/bin/e_eap_editor.c:375
 msgid Startup Notify
-msgstr Пусково известие
+msgstr Известие при стартиране
 
 #: src/bin/e_eap_editor.c:378
 msgid Wait Exit
@@ -815,7 +812,7 @@
 
 #: src/bin/e_file_dialog.c:53
 msgid Home
-msgstr Дом
+msgstr 

E CVS: net devilhorns

2006-05-28 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : net

Dir : e_modules/net


Modified Files:
e_mod_main.c 


Log Message:
Combination patch from sndev, modified to handle the old variables
per-instance rather than per Net structure.

Removed the first_time variable as it wasn't being used anywhere.

===
RCS file: /cvs/e/e_modules/net/e_mod_main.c,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -3 -r1.31 -r1.32
--- e_mod_main.c25 May 2006 15:54:55 -  1.31
+++ e_mod_main.c29 May 2006 01:48:43 -  1.32
@@ -11,6 +11,8 @@
Evas_Object *net_obj;
Net *net;
Ecore_Timer *check_timer;
+   unsigned long old_in;
+   unsigned long old_out;
 };
 
 struct _Net
@@ -444,9 +446,6 @@
FILE *stat;
char dev[64];
char buf[256];
-   static unsigned long old_in = 0;
-   static unsigned long old_out = 0;
-   static int first_time = 1;
unsigned long in = 0;
unsigned long out = 0;
unsigned long dummy = 0;
@@ -492,21 +491,15 @@
if (!found)
   return 1;
 
-   bytes_in = in - old_in;
-   bytes_out = out - old_out;
+   bytes_in = in - inst-old_in;
+   bytes_out = out - inst-old_out;
if (bytes_in  0)
   bytes_in = 0;
if (bytes_out  0)
   bytes_out = 0;
 
-   old_in = in;
-   old_out = out;
-
-   if (first_time)
- {
-first_time = 0;
-return 1;
- }
+   inst-old_in = in;
+   inst-old_out = out;
 
if (bytes_in = 0)
   edje_object_part_text_set(inst-net_obj, rx_label, Rx: 0 B);




---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs