E CVS: apps/e raster

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_order.c 


Log Message:


come back to me my ibar!!! come back! show me your icons honey!

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_order.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- e_order.c   25 Mar 2007 13:12:23 -  1.9
+++ e_order.c   30 Mar 2007 12:14:32 -  1.10
@@ -140,14 +140,16 @@
 _e_order_read(E_Order *eo)
 {
FILE *f;
+   char *dir;
 
eo-desktops = evas_list_free(eo-desktops);
if (!eo-path) return;
 
+   dir = ecore_file_get_dir(eo-path);
f = fopen(eo-path, rb);
if (f)
  {
-   char buf[4096];
+   char buf[4096], buf2[PATH_MAX];
 
while (fgets(buf, sizeof(buf), f))
  {
@@ -164,13 +166,29 @@
  if (len  0)
{
   Efreet_Desktop *desktop;
-  desktop = efreet_util_desktop_file_id_find(buf);
+  
+  desktop = NULL;
+  if ((dir)  (buf[0] != '/'))
+{
+   snprintf(buf2, sizeof(buf2), %s/%s, dir, buf);
+   desktop = efreet_desktop_get(buf2);
+}
+  if (!desktop)
+{
+   snprintf(buf2, sizeof(buf2), 
+%s/.e/e/applications/all/%s,
+e_user_homedir_get(), buf);
+   desktop = efreet_desktop_get(buf2);
+}
+  if (!desktop)
+desktop = efreet_util_desktop_file_id_find(buf);
   if (desktop) eo-desktops = 
evas_list_append(eo-desktops, desktop);
}
   }
  }
fclose(f);
  }
+   if (dir) free(dir);
 }
 
 static void



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


E CVS: test raster

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : test

Dir : e17/test/orig/evas


Modified Files:
Makefile 


Log Message:


fix inotify stuff.. bad bad bad.

===
RCS file: /cvs/e/e17/test/orig/evas/Makefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- Makefile14 Feb 2007 04:41:32 -  1.2
+++ Makefile30 Mar 2007 12:24:19 -  1.3
@@ -77,11 +77,11 @@
$(CC) $(LIBS) $(LDFLAGS) $(evas_directfb_window_test_OBJS) -lm  -o $@
 
 ## dead engine - useless
-evas_cairo_x11_test_SRCS = evas_test_main.c evas_software_qtopia_main.cpp
+evas_cairo_x11_test_SRCS = evas_test_main.c evas_cairo_x11_main.c
 evas_cairo_x11_test_OBJS = $(evas_cairo_x11_test_SRCS:.c=.o)
 evas_cairo_x11_test: $(evas_cairo_x11_test_OBJS)
$(RM) $@
-   $(CC) $(LIBS) $(LDFLAGS) $(evas_cairo_x11_test_OBJS) -lm  -o $@
+   $(CC) $(LIBS) $(LDFLAGS) $(evas_cairo_x11_test_OBJS) -lm 
-L/usr/X11R6/lib -L/usr/X11R7/lib -L/usr/xorg/lib -lX11 -lXext -o $@
 
 
 



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


E CVS: libs/ecore raster

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore


Modified Files:
configure.in 


Log Message:


fix inotify stuff.. bad bad bad.

===
RCS file: /cvs/e/e17/libs/ecore/configure.in,v
retrieving revision 1.181
retrieving revision 1.182
diff -u -3 -r1.181 -r1.182
--- configure.in24 Mar 2007 10:41:31 -  1.181
+++ configure.in30 Mar 2007 12:24:19 -  1.182
@@ -802,18 +802,33 @@
   dnl in asm/unistd.h and IN_MOVE_SELF was added to linux/inotify.h
   dnl so with this check you need a very new kernel and kernel-headers!
   if test x$use_inotify = xyes; then
+AC_CHECK_LIB(c, inotify_init, [
 AC_TRY_COMPILE(
   [
 #include asm/unistd.h
 #include linux/inotify.h
   ],
-  [ int a = __NR_inotify_init; int b = IN_MOVE_SELF; ],
+  [ int a = IN_MOVE_SELF; void *f = inotify_init(); ],
   [
 AC_DEFINE(HAVE_INOTIFY, 1, [ File monitoring with Inotify ])
   ], [
-use_inotify=no
+AC_TRY_COMPILE(
+  [
+#include sys/inotify.h
+  ],
+  [ int a = IN_MOVE_SELF; void *f = inotify_nit(); ],
+  [
+AC_DEFINE(HAVE_INOTIFY, 1, [ File monitoring with Inotify ])
+AC_DEFINE(HAVE_SYS_INOTIFY, 1, [ File monitoring with Inotify - 
sys/inotify.h ])
+  ], [
+use_inotify=no
+  ]
+   )
   ]
 )
+],[
+  use_inotify=no
+])
   fi
   
   #AC_MSG_CHECKING(whether FAM is to be used for filemonitoring)



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


E CVS: apps/e rephorm

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : rephorm
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_main.c 


Log Message:
don't add e's dirs to efreet's search path. .desktops should be in 
$XDG_DATA_HOME/applications and icons should be in $XDG_DATA_HOME/icons now

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_main.c,v
retrieving revision 1.211
retrieving revision 1.212
diff -u -3 -r1.211 -r1.212
--- e_main.c26 Mar 2007 21:19:53 -  1.211
+++ e_main.c30 Mar 2007 13:48:23 -  1.212
@@ -70,7 +70,6 @@
char *s;
struct sigaction action;
double t, tstart;
-   Ecore_List *list;
 
 #ifdef TS_DO
t0 = t1 = t2 = ecore_time_get();   
@@ -434,15 +433,6 @@
TS(efreet done);
 
TS(efreet paths);
-   /* TODO: The list manipulation should be done in efreet */
-   list = efreet_data_dirs_get();
-   if (list)
- {
-snprintf(buf, sizeof(buf), %s/data, e_prefix_data_get());
-ecore_list_prepend(list, (void *)ecore_string_instance(buf));
-snprintf(buf, sizeof(buf), %s/.e/e, e_user_homedir_get());
-ecore_list_prepend(list, (void *)ecore_string_instance(buf));
- }
efreet_icon_extension_add(.edj);
TS(efreet paths done);
 



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


E CVS: libs/ecore tilman

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : tilman
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore


Modified Files:
configure.in 


Log Message:
removed the pthread stuff - it's not used anymore

===
RCS file: /cvs/e/e17/libs/ecore/configure.in,v
retrieving revision 1.182
retrieving revision 1.183
diff -u -3 -r1.182 -r1.183
--- configure.in30 Mar 2007 12:24:19 -  1.182
+++ configure.in30 Mar 2007 19:38:17 -  1.183
@@ -945,44 +945,6 @@
 AC_SUBST(ecore_desktop_cflags)
 AC_SUBST(ecore_desktop_libs)
 
-AC_ARG_ENABLE(pthreads,
-  [  --disable-pthreadsdisable building with pthread support],
-  [
-if test x$enableval = xyes; then
-  pthreads=yes
-else
-  pthreads=no
-fi
-  ]
-)
-
-if test x$pthreads = xyes ; then
-AC_CHECK_HEADERS(pthread.h,pthread_header_ok=yes, pthread_header_ok=no)
-   if test $pthread_header_ok = yes; then
-  AC_CHECK_LIB(pthread, main, PTHREAD_LIBS=-lpthread, 
PTHREAD_LIBS=error)
-  if test $PTHREAD_LIBS = error; then
- AC_CHECK_LIB(c_r, main, PTHREAD_LIBS=-pthread, pthread_lib_ok=no)
-  fi
-   fi
-   if test $pthread_header_ok = no -o $pthread_lib_ok = no; then
-  HAVE_PTHREADS=0
-   else
-  HAVE_PTHREADS=1
-   fi
-   if test $PTHREAD_LIBS = -pthread; then
-  LIBS=$LIBS $PTHREAD_LIBS
-   else
-  PTHREAD_CFLAGS=-D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS
-  LIBS=$LIBS $PTHREAD_LIBS
-   fi
-else
-   HAVE_PTHREADS=0
-   PTHREAD_LIBS=
-fi
-
-AC_SUBST(PTHREAD_LIBS)
-AC_SUBST(HAVE_PTHREADS)
-
 AC_CHECK_LIB(dl, dlopen, dlopen_libs=-ldl)
 AC_SUBST(dlopen_libs)
 



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


E CVS: libs/ecore tilman

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : tilman
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore


Modified Files:
configure.in 


Log Message:
ugh, don't define HAVE_POLL just if  is set. we check for it later.

===
RCS file: /cvs/e/e17/libs/ecore/configure.in,v
retrieving revision 1.183
retrieving revision 1.184
diff -u -3 -r1.183 -r1.184
--- configure.in30 Mar 2007 19:38:17 -  1.183
+++ configure.in30 Mar 2007 19:47:46 -  1.184
@@ -776,7 +776,6 @@
 if test x$want_ecore_file = xyes; then
   ecore_file_libs=-lecore_file
   have_ecore_file=yes
-  AC_DEFINE(HAVE_POLL, 1, [ File monitoring with polling ])
 fi
 
 if test x$have_ecore_file = xyes; then



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


E CVS: apps/entrance mej

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : mej
Project : e17
Module  : apps/entrance

Dir : e17/apps/entrance


Modified Files:
configure.in 


Log Message:
Fri Mar 30 16:06:47 2007Michael Jennings (mej)

Patch from Glen Larsen [EMAIL PROTECTED] to force sysconfdir expansion.
--

===
RCS file: /cvs/e/e17/apps/entrance/configure.in,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -3 -r1.68 -r1.69
--- configure.in22 Mar 2007 02:17:28 -  1.68
+++ configure.in30 Mar 2007 20:06:49 -  1.69
@@ -34,7 +34,8 @@
 fi
 test $localstatedir = '${prefix}/var'  localstatedir=/var/run/${PACKAGE}
 
-AC_DEFINE_UNQUOTED(PACKAGE_CFG_DIR, ${sysconfdir}, [Config data directory])
+AC_EXPAND_DIR(PACKAGE_CFG_DIR, $sysconfdir)
+AC_DEFINE_UNQUOTED(PACKAGE_CFG_DIR, $PACKAGE_CFG_DIR, [Config data 
directory])
 AC_DEFINE_UNQUOTED(PACKAGE_STATE_DIR, ${localstatedir}, [State data 
directory])
 
 dnl Set PACKAGE_SOURCE_DIR in config.h.



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


E CVS: flame devilhorns

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : flame

Dir : e_modules/flame


Modified Files:
ABOUT-NLS Makefile.am autogen.sh e_mod_config.c e_mod_main.c 
Removed Files:
module.desktop.in 


Log Message:
Flame module converted to new desktop files.

===
RCS file: /cvs/e/e_modules/flame/ABOUT-NLS,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ABOUT-NLS   1 Apr 2006 19:35:59 -   1.1
+++ ABOUT-NLS   30 Mar 2007 20:21:43 -  1.2
@@ -1,8 +1,8 @@
 Notes on the Free Translation Project
 *
 
-   Free software is going international!  The Free Translation Project
-is a way to get maintainers of free software, translators, and users all
+Free software is going international!  The Free Translation Project is
+a way to get maintainers of free software, translators, and users all
 together, so that will gradually become able to speak many languages.
 A few packages already provide translations for their messages.
 
@@ -25,7 +25,7 @@
 Quick configuration advice
 ==
 
-   If you want to exploit the full power of internationalization, you
+If you want to exploit the full power of internationalization, you
 should configure it using
 
  ./configure --with-included-gettext
@@ -48,10 +48,10 @@
 INSTALL Matters
 ===
 
-   Some packages are localizable when properly installed; the
-programs they contain can be made to speak your own native language.
-Most such packages use GNU `gettext'.  Other packages have their own
-ways to internationalization, predating GNU `gettext'.
+Some packages are localizable when properly installed; the programs
+they contain can be made to speak your own native language.  Most such
+packages use GNU `gettext'.  Other packages have their own ways to
+internationalization, predating GNU `gettext'.
 
By default, this package will be installed to allow translation of
 messages.  It will automatically detect whether the system already
@@ -98,7 +98,7 @@
 Using This Package
 ==
 
-   As a user, if your language has been installed for this package, you
+As a user, if your language has been installed for this package, you
 only have to set the `LANG' environment variable to the appropriate
 `LL_CC' combination.  Here `LL' is an ISO 639 two-letter language code,
 and `CC' is an ISO 3166 two-letter country code.  For example, let's
@@ -131,6 +131,13 @@
 read translations in German than English for when Swedish is not
 available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'.
 
+   Special advice for Norwegian users: The language code for Norwegian
+bokma*l changed from `no' to `nb' recently (in 2003).  During the
+transition period, while some message catalogs for this language are
+installed under `nb' and some older ones under `no', it's recommended
+for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer and
+older translations are used.
+
In the `LANGUAGE' environment variable, but not in the `LANG'
 environment variable, `LL_CC' combinations can be abbreviated as `LL'
 to denote the language's main dialect.  For example, `de' is equivalent
@@ -140,7 +147,7 @@
 Translating Teams
 =
 
-   For the Free Translation Project to be a success, we need interested
+For the Free Translation Project to be a success, we need interested
 people who like their own language and write it well, and who are also
 able to synergize with other translators speaking the same language.
 Each translation team has its own mailing list.  The up-to-date list of
@@ -170,16 +177,559 @@
 Available Packages
 ==
 
-   Languages are not equally supported in all packages.  The following
-matrix shows the current state of internationalization, as of April
-2005.  The matrix shows, in regard of each package, for which languages
+Languages are not equally supported in all packages.  The following
+matrix shows the current state of internationalization, as of January
+2004.  The matrix shows, in regard of each package, for which languages
 PO files have been submitted to translation coordination, with a
 translation percentage of at least 50%.
 
- Ready PO filesen fr ja de bg es fi pl pt ru
- +---+
- enlightenment   | [] [] [] [] [] [] [] [] [] [] |
-
+ Ready PO files   af am ar az be bg bs ca cs da de el en en_GB eo es
+++
+ a2ps   | [] [] [] []|
+ aegis  |   ()   |
+ ant-phone  |   ()   |
+ anubis ||
+ ap-utils   |

E CVS: flame devilhorns

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : flame

Dir : e_modules/flame


Modified Files:
configure.in 


Log Message:
Module.desktop.in is not needed, remove from configure.in

===
RCS file: /cvs/e/e_modules/flame/configure.in,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- configure.in17 Sep 2006 14:19:51 -  1.11
+++ configure.in30 Mar 2007 20:28:14 -  1.12
@@ -149,7 +149,6 @@
 AC_OUTPUT([
 Makefile
 e_modules-flame.spec
-module.desktop
 po/Makefile
 ],[
 ])



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


E CVS: flame devilhorns

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : flame

Dir : e_modules/flame


Removed Files:
module.edj 


Log Message:
Remove old module.edj




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


E CVS: mem devilhorns

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : mem

Dir : e_modules/mem


Added Files:
module.desktop 


Log Message:
and add the actual module.desktop




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


E CVS: rain devilhorns

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : rain

Dir : e_modules/rain


Modified Files:
ABOUT-NLS Makefile.am autogen.sh configure.in 
Added Files:
e-module-rain.edj 
Removed Files:
module.desktop.in module.edj 


Log Message:
Rain module converted to new desktop files.

===
RCS file: /cvs/e/e_modules/rain/ABOUT-NLS,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ABOUT-NLS   5 Feb 2006 14:29:59 -   1.1
+++ ABOUT-NLS   30 Mar 2007 20:36:29 -  1.2
@@ -1,8 +1,8 @@
 Notes on the Free Translation Project
 *
 
-   Free software is going international!  The Free Translation Project
-is a way to get maintainers of free software, translators, and users all
+Free software is going international!  The Free Translation Project is
+a way to get maintainers of free software, translators, and users all
 together, so that will gradually become able to speak many languages.
 A few packages already provide translations for their messages.
 
@@ -25,7 +25,7 @@
 Quick configuration advice
 ==
 
-   If you want to exploit the full power of internationalization, you
+If you want to exploit the full power of internationalization, you
 should configure it using
 
  ./configure --with-included-gettext
@@ -48,10 +48,10 @@
 INSTALL Matters
 ===
 
-   Some packages are localizable when properly installed; the
-programs they contain can be made to speak your own native language.
-Most such packages use GNU `gettext'.  Other packages have their own
-ways to internationalization, predating GNU `gettext'.
+Some packages are localizable when properly installed; the programs
+they contain can be made to speak your own native language.  Most such
+packages use GNU `gettext'.  Other packages have their own ways to
+internationalization, predating GNU `gettext'.
 
By default, this package will be installed to allow translation of
 messages.  It will automatically detect whether the system already
@@ -98,7 +98,7 @@
 Using This Package
 ==
 
-   As a user, if your language has been installed for this package, you
+As a user, if your language has been installed for this package, you
 only have to set the `LANG' environment variable to the appropriate
 `LL_CC' combination.  Here `LL' is an ISO 639 two-letter language code,
 and `CC' is an ISO 3166 two-letter country code.  For example, let's
@@ -131,6 +131,13 @@
 read translations in German than English for when Swedish is not
 available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'.
 
+   Special advice for Norwegian users: The language code for Norwegian
+bokma*l changed from `no' to `nb' recently (in 2003).  During the
+transition period, while some message catalogs for this language are
+installed under `nb' and some older ones under `no', it's recommended
+for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer and
+older translations are used.
+
In the `LANGUAGE' environment variable, but not in the `LANG'
 environment variable, `LL_CC' combinations can be abbreviated as `LL'
 to denote the language's main dialect.  For example, `de' is equivalent
@@ -140,7 +147,7 @@
 Translating Teams
 =
 
-   For the Free Translation Project to be a success, we need interested
+For the Free Translation Project to be a success, we need interested
 people who like their own language and write it well, and who are also
 able to synergize with other translators speaking the same language.
 Each translation team has its own mailing list.  The up-to-date list of
@@ -170,16 +177,559 @@
 Available Packages
 ==
 
-   Languages are not equally supported in all packages.  The following
-matrix shows the current state of internationalization, as of April
-2005.  The matrix shows, in regard of each package, for which languages
+Languages are not equally supported in all packages.  The following
+matrix shows the current state of internationalization, as of January
+2004.  The matrix shows, in regard of each package, for which languages
 PO files have been submitted to translation coordination, with a
 translation percentage of at least 50%.
 
- Ready PO filesen fr ja de bg es fi pl pt ru
- +---+
- enlightenment   | [] [] [] [] [] [] [] [] [] [] |
-
+ Ready PO files   af am ar az be bg bs ca cs da de el en en_GB eo es
+++
+ a2ps   | [] [] [] []|
+ aegis  |   ()   |
+ ant-phone  |   ()   |
+ anubis ||
+ ap-utils

E CVS: screenshot devilhorns

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : screenshot

Dir : e_modules/screenshot


Modified Files:
ABOUT-NLS Makefile.am autogen.sh configure.in e_mod_main.c 
Added Files:
e-module-screenshot.edj 
Removed Files:
module.desktop.in module.edj 


Log Message:
Screenshot converted to new desktop stuff.

===
RCS file: /cvs/e/e_modules/screenshot/ABOUT-NLS,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ABOUT-NLS   30 Jan 2006 18:12:48 -  1.1
+++ ABOUT-NLS   30 Mar 2007 20:40:29 -  1.2
@@ -1,8 +1,8 @@
 Notes on the Free Translation Project
 *
 
-   Free software is going international!  The Free Translation Project
-is a way to get maintainers of free software, translators, and users all
+Free software is going international!  The Free Translation Project is
+a way to get maintainers of free software, translators, and users all
 together, so that will gradually become able to speak many languages.
 A few packages already provide translations for their messages.
 
@@ -25,7 +25,7 @@
 Quick configuration advice
 ==
 
-   If you want to exploit the full power of internationalization, you
+If you want to exploit the full power of internationalization, you
 should configure it using
 
  ./configure --with-included-gettext
@@ -48,10 +48,10 @@
 INSTALL Matters
 ===
 
-   Some packages are localizable when properly installed; the
-programs they contain can be made to speak your own native language.
-Most such packages use GNU `gettext'.  Other packages have their own
-ways to internationalization, predating GNU `gettext'.
+Some packages are localizable when properly installed; the programs
+they contain can be made to speak your own native language.  Most such
+packages use GNU `gettext'.  Other packages have their own ways to
+internationalization, predating GNU `gettext'.
 
By default, this package will be installed to allow translation of
 messages.  It will automatically detect whether the system already
@@ -98,7 +98,7 @@
 Using This Package
 ==
 
-   As a user, if your language has been installed for this package, you
+As a user, if your language has been installed for this package, you
 only have to set the `LANG' environment variable to the appropriate
 `LL_CC' combination.  Here `LL' is an ISO 639 two-letter language code,
 and `CC' is an ISO 3166 two-letter country code.  For example, let's
@@ -131,6 +131,13 @@
 read translations in German than English for when Swedish is not
 available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'.
 
+   Special advice for Norwegian users: The language code for Norwegian
+bokma*l changed from `no' to `nb' recently (in 2003).  During the
+transition period, while some message catalogs for this language are
+installed under `nb' and some older ones under `no', it's recommended
+for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer and
+older translations are used.
+
In the `LANGUAGE' environment variable, but not in the `LANG'
 environment variable, `LL_CC' combinations can be abbreviated as `LL'
 to denote the language's main dialect.  For example, `de' is equivalent
@@ -140,7 +147,7 @@
 Translating Teams
 =
 
-   For the Free Translation Project to be a success, we need interested
+For the Free Translation Project to be a success, we need interested
 people who like their own language and write it well, and who are also
 able to synergize with other translators speaking the same language.
 Each translation team has its own mailing list.  The up-to-date list of
@@ -170,16 +177,559 @@
 Available Packages
 ==
 
-   Languages are not equally supported in all packages.  The following
-matrix shows the current state of internationalization, as of April
-2005.  The matrix shows, in regard of each package, for which languages
+Languages are not equally supported in all packages.  The following
+matrix shows the current state of internationalization, as of January
+2004.  The matrix shows, in regard of each package, for which languages
 PO files have been submitted to translation coordination, with a
 translation percentage of at least 50%.
 
- Ready PO filesen fr ja de bg es fi pl pt ru
- +---+
- enlightenment   | [] [] [] [] [] [] [] [] [] [] |
-
+ Ready PO files   af am ar az be bg bs ca cs da de el en en_GB eo es
+++
+ a2ps   | [] [] [] []|
+ aegis  |   ()   |
+ ant-phone  |   ()   |
+ anubis |

E CVS: slideshow devilhorns

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : slideshow

Dir : e_modules/slideshow


Modified Files:
ABOUT-NLS Makefile.am autogen.sh configure.in e_mod_main.c 
Added Files:
e-module-slideshow.edj 
Removed Files:
module.desktop.in module.edj 


Log Message:
Slideshow converted to new desktop files.

===
RCS file: /cvs/e/e_modules/slideshow/ABOUT-NLS,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ABOUT-NLS   30 Jan 2006 18:11:41 -  1.1
+++ ABOUT-NLS   30 Mar 2007 20:44:32 -  1.2
@@ -1,8 +1,8 @@
 Notes on the Free Translation Project
 *
 
-   Free software is going international!  The Free Translation Project
-is a way to get maintainers of free software, translators, and users all
+Free software is going international!  The Free Translation Project is
+a way to get maintainers of free software, translators, and users all
 together, so that will gradually become able to speak many languages.
 A few packages already provide translations for their messages.
 
@@ -25,7 +25,7 @@
 Quick configuration advice
 ==
 
-   If you want to exploit the full power of internationalization, you
+If you want to exploit the full power of internationalization, you
 should configure it using
 
  ./configure --with-included-gettext
@@ -48,10 +48,10 @@
 INSTALL Matters
 ===
 
-   Some packages are localizable when properly installed; the
-programs they contain can be made to speak your own native language.
-Most such packages use GNU `gettext'.  Other packages have their own
-ways to internationalization, predating GNU `gettext'.
+Some packages are localizable when properly installed; the programs
+they contain can be made to speak your own native language.  Most such
+packages use GNU `gettext'.  Other packages have their own ways to
+internationalization, predating GNU `gettext'.
 
By default, this package will be installed to allow translation of
 messages.  It will automatically detect whether the system already
@@ -98,7 +98,7 @@
 Using This Package
 ==
 
-   As a user, if your language has been installed for this package, you
+As a user, if your language has been installed for this package, you
 only have to set the `LANG' environment variable to the appropriate
 `LL_CC' combination.  Here `LL' is an ISO 639 two-letter language code,
 and `CC' is an ISO 3166 two-letter country code.  For example, let's
@@ -131,6 +131,13 @@
 read translations in German than English for when Swedish is not
 available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'.
 
+   Special advice for Norwegian users: The language code for Norwegian
+bokma*l changed from `no' to `nb' recently (in 2003).  During the
+transition period, while some message catalogs for this language are
+installed under `nb' and some older ones under `no', it's recommended
+for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer and
+older translations are used.
+
In the `LANGUAGE' environment variable, but not in the `LANG'
 environment variable, `LL_CC' combinations can be abbreviated as `LL'
 to denote the language's main dialect.  For example, `de' is equivalent
@@ -140,7 +147,7 @@
 Translating Teams
 =
 
-   For the Free Translation Project to be a success, we need interested
+For the Free Translation Project to be a success, we need interested
 people who like their own language and write it well, and who are also
 able to synergize with other translators speaking the same language.
 Each translation team has its own mailing list.  The up-to-date list of
@@ -170,16 +177,559 @@
 Available Packages
 ==
 
-   Languages are not equally supported in all packages.  The following
-matrix shows the current state of internationalization, as of April
-2005.  The matrix shows, in regard of each package, for which languages
+Languages are not equally supported in all packages.  The following
+matrix shows the current state of internationalization, as of January
+2004.  The matrix shows, in regard of each package, for which languages
 PO files have been submitted to translation coordination, with a
 translation percentage of at least 50%.
 
- Ready PO filesen fr ja de bg es fi pl pt ru
- +---+
- enlightenment   | [] [] [] [] [] [] [] [] [] [] |
-
+ Ready PO files   af am ar az be bg bs ca cs da de el en en_GB eo es
+++
+ a2ps   | [] [] [] []|
+ aegis  |   ()   |
+ ant-phone  |   ()   |
+ anubis | 

E CVS: snow devilhorns

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : snow

Dir : e_modules/snow


Modified Files:
ABOUT-NLS Makefile.am autogen.sh configure.in 
Added Files:
e-module-snow.edj 
Removed Files:
module.desktop.in module.edj 


Log Message:
Snow module converted to new desktop files.

===
RCS file: /cvs/e/e_modules/snow/ABOUT-NLS,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ABOUT-NLS   5 Feb 2006 14:29:59 -   1.1
+++ ABOUT-NLS   30 Mar 2007 20:48:21 -  1.2
@@ -1,8 +1,8 @@
 Notes on the Free Translation Project
 *
 
-   Free software is going international!  The Free Translation Project
-is a way to get maintainers of free software, translators, and users all
+Free software is going international!  The Free Translation Project is
+a way to get maintainers of free software, translators, and users all
 together, so that will gradually become able to speak many languages.
 A few packages already provide translations for their messages.
 
@@ -25,7 +25,7 @@
 Quick configuration advice
 ==
 
-   If you want to exploit the full power of internationalization, you
+If you want to exploit the full power of internationalization, you
 should configure it using
 
  ./configure --with-included-gettext
@@ -48,10 +48,10 @@
 INSTALL Matters
 ===
 
-   Some packages are localizable when properly installed; the
-programs they contain can be made to speak your own native language.
-Most such packages use GNU `gettext'.  Other packages have their own
-ways to internationalization, predating GNU `gettext'.
+Some packages are localizable when properly installed; the programs
+they contain can be made to speak your own native language.  Most such
+packages use GNU `gettext'.  Other packages have their own ways to
+internationalization, predating GNU `gettext'.
 
By default, this package will be installed to allow translation of
 messages.  It will automatically detect whether the system already
@@ -98,7 +98,7 @@
 Using This Package
 ==
 
-   As a user, if your language has been installed for this package, you
+As a user, if your language has been installed for this package, you
 only have to set the `LANG' environment variable to the appropriate
 `LL_CC' combination.  Here `LL' is an ISO 639 two-letter language code,
 and `CC' is an ISO 3166 two-letter country code.  For example, let's
@@ -131,6 +131,13 @@
 read translations in German than English for when Swedish is not
 available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'.
 
+   Special advice for Norwegian users: The language code for Norwegian
+bokma*l changed from `no' to `nb' recently (in 2003).  During the
+transition period, while some message catalogs for this language are
+installed under `nb' and some older ones under `no', it's recommended
+for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer and
+older translations are used.
+
In the `LANGUAGE' environment variable, but not in the `LANG'
 environment variable, `LL_CC' combinations can be abbreviated as `LL'
 to denote the language's main dialect.  For example, `de' is equivalent
@@ -140,7 +147,7 @@
 Translating Teams
 =
 
-   For the Free Translation Project to be a success, we need interested
+For the Free Translation Project to be a success, we need interested
 people who like their own language and write it well, and who are also
 able to synergize with other translators speaking the same language.
 Each translation team has its own mailing list.  The up-to-date list of
@@ -170,16 +177,559 @@
 Available Packages
 ==
 
-   Languages are not equally supported in all packages.  The following
-matrix shows the current state of internationalization, as of April
-2005.  The matrix shows, in regard of each package, for which languages
+Languages are not equally supported in all packages.  The following
+matrix shows the current state of internationalization, as of January
+2004.  The matrix shows, in regard of each package, for which languages
 PO files have been submitted to translation coordination, with a
 translation percentage of at least 50%.
 
- Ready PO filesen fr ja de bg es fi pl pt ru
- +---+
- enlightenment   | [] [] [] [] [] [] [] [] [] [] |
-
+ Ready PO files   af am ar az be bg bs ca cs da de el en en_GB eo es
+++
+ a2ps   | [] [] [] []|
+ aegis  |   ()   |
+ ant-phone  |   ()   |
+ anubis ||
+ ap-utils

E CVS: uptime devilhorns

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : uptime

Dir : e_modules/uptime


Modified Files:
ABOUT-NLS Makefile.am autogen.sh configure.in 
Added Files:
e-module-uptime.edj 
Removed Files:
module.desktop.in module.edj 


Log Message:
Uptime module converted to new desktop files.

===
RCS file: /cvs/e/e_modules/uptime/ABOUT-NLS,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ABOUT-NLS   9 Mar 2006 11:40:41 -   1.1
+++ ABOUT-NLS   30 Mar 2007 20:51:30 -  1.2
@@ -1,8 +1,8 @@
 Notes on the Free Translation Project
 *
 
-   Free software is going international!  The Free Translation Project
-is a way to get maintainers of free software, translators, and users all
+Free software is going international!  The Free Translation Project is
+a way to get maintainers of free software, translators, and users all
 together, so that will gradually become able to speak many languages.
 A few packages already provide translations for their messages.
 
@@ -25,7 +25,7 @@
 Quick configuration advice
 ==
 
-   If you want to exploit the full power of internationalization, you
+If you want to exploit the full power of internationalization, you
 should configure it using
 
  ./configure --with-included-gettext
@@ -48,10 +48,10 @@
 INSTALL Matters
 ===
 
-   Some packages are localizable when properly installed; the
-programs they contain can be made to speak your own native language.
-Most such packages use GNU `gettext'.  Other packages have their own
-ways to internationalization, predating GNU `gettext'.
+Some packages are localizable when properly installed; the programs
+they contain can be made to speak your own native language.  Most such
+packages use GNU `gettext'.  Other packages have their own ways to
+internationalization, predating GNU `gettext'.
 
By default, this package will be installed to allow translation of
 messages.  It will automatically detect whether the system already
@@ -98,7 +98,7 @@
 Using This Package
 ==
 
-   As a user, if your language has been installed for this package, you
+As a user, if your language has been installed for this package, you
 only have to set the `LANG' environment variable to the appropriate
 `LL_CC' combination.  Here `LL' is an ISO 639 two-letter language code,
 and `CC' is an ISO 3166 two-letter country code.  For example, let's
@@ -131,6 +131,13 @@
 read translations in German than English for when Swedish is not
 available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'.
 
+   Special advice for Norwegian users: The language code for Norwegian
+bokma*l changed from `no' to `nb' recently (in 2003).  During the
+transition period, while some message catalogs for this language are
+installed under `nb' and some older ones under `no', it's recommended
+for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer and
+older translations are used.
+
In the `LANGUAGE' environment variable, but not in the `LANG'
 environment variable, `LL_CC' combinations can be abbreviated as `LL'
 to denote the language's main dialect.  For example, `de' is equivalent
@@ -140,7 +147,7 @@
 Translating Teams
 =
 
-   For the Free Translation Project to be a success, we need interested
+For the Free Translation Project to be a success, we need interested
 people who like their own language and write it well, and who are also
 able to synergize with other translators speaking the same language.
 Each translation team has its own mailing list.  The up-to-date list of
@@ -170,16 +177,559 @@
 Available Packages
 ==
 
-   Languages are not equally supported in all packages.  The following
-matrix shows the current state of internationalization, as of April
-2005.  The matrix shows, in regard of each package, for which languages
+Languages are not equally supported in all packages.  The following
+matrix shows the current state of internationalization, as of January
+2004.  The matrix shows, in regard of each package, for which languages
 PO files have been submitted to translation coordination, with a
 translation percentage of at least 50%.
 
- Ready PO filesen fr ja de bg es fi pl pt ru
- +---+
- enlightenment   | [] [] [] [] [] [] [] [] [] [] |
-
+ Ready PO files   af am ar az be bg bs ca cs da de el en en_GB eo es
+++
+ a2ps   | [] [] [] []|
+ aegis  |   ()   |
+ ant-phone  |   ()   |
+ anubis ||
+ 

E CVS: weather devilhorns

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : weather

Dir : e_modules/weather


Modified Files:
ABOUT-NLS Makefile.am autogen.sh configure.in e_mod_main.c 
Added Files:
e-module-weather.edj 
Removed Files:
module.desktop.in module.edj 


Log Message:
Weather module converted to new desktop spec.

===
RCS file: /cvs/e/e_modules/weather/ABOUT-NLS,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ABOUT-NLS   19 Mar 2006 15:09:16 -  1.1
+++ ABOUT-NLS   30 Mar 2007 20:55:04 -  1.2
@@ -1,8 +1,8 @@
 Notes on the Free Translation Project
 *
 
-   Free software is going international!  The Free Translation Project
-is a way to get maintainers of free software, translators, and users all
+Free software is going international!  The Free Translation Project is
+a way to get maintainers of free software, translators, and users all
 together, so that will gradually become able to speak many languages.
 A few packages already provide translations for their messages.
 
@@ -25,7 +25,7 @@
 Quick configuration advice
 ==
 
-   If you want to exploit the full power of internationalization, you
+If you want to exploit the full power of internationalization, you
 should configure it using
 
  ./configure --with-included-gettext
@@ -48,10 +48,10 @@
 INSTALL Matters
 ===
 
-   Some packages are localizable when properly installed; the
-programs they contain can be made to speak your own native language.
-Most such packages use GNU `gettext'.  Other packages have their own
-ways to internationalization, predating GNU `gettext'.
+Some packages are localizable when properly installed; the programs
+they contain can be made to speak your own native language.  Most such
+packages use GNU `gettext'.  Other packages have their own ways to
+internationalization, predating GNU `gettext'.
 
By default, this package will be installed to allow translation of
 messages.  It will automatically detect whether the system already
@@ -98,7 +98,7 @@
 Using This Package
 ==
 
-   As a user, if your language has been installed for this package, you
+As a user, if your language has been installed for this package, you
 only have to set the `LANG' environment variable to the appropriate
 `LL_CC' combination.  Here `LL' is an ISO 639 two-letter language code,
 and `CC' is an ISO 3166 two-letter country code.  For example, let's
@@ -131,6 +131,13 @@
 read translations in German than English for when Swedish is not
 available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'.
 
+   Special advice for Norwegian users: The language code for Norwegian
+bokma*l changed from `no' to `nb' recently (in 2003).  During the
+transition period, while some message catalogs for this language are
+installed under `nb' and some older ones under `no', it's recommended
+for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer and
+older translations are used.
+
In the `LANGUAGE' environment variable, but not in the `LANG'
 environment variable, `LL_CC' combinations can be abbreviated as `LL'
 to denote the language's main dialect.  For example, `de' is equivalent
@@ -140,7 +147,7 @@
 Translating Teams
 =
 
-   For the Free Translation Project to be a success, we need interested
+For the Free Translation Project to be a success, we need interested
 people who like their own language and write it well, and who are also
 able to synergize with other translators speaking the same language.
 Each translation team has its own mailing list.  The up-to-date list of
@@ -170,16 +177,559 @@
 Available Packages
 ==
 
-   Languages are not equally supported in all packages.  The following
-matrix shows the current state of internationalization, as of April
-2005.  The matrix shows, in regard of each package, for which languages
+Languages are not equally supported in all packages.  The following
+matrix shows the current state of internationalization, as of January
+2004.  The matrix shows, in regard of each package, for which languages
 PO files have been submitted to translation coordination, with a
 translation percentage of at least 50%.
 
- Ready PO filesen fr ja de bg es fi pl pt ru
- +---+
- enlightenment   | [] [] [] [] [] [] [] [] [] [] |
-
+ Ready PO files   af am ar az be bg bs ca cs da de el en en_GB eo es
+++
+ a2ps   | [] [] [] []|
+ aegis  |   ()   |
+ ant-phone  |   ()   |
+ anubis | 

E CVS: winselector devilhorns

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : winselector

Dir : e_modules/winselector


Modified Files:
Makefile.am configure.in e_mod_main.c 
Added Files:
e-module-winselector.edj 
Removed Files:
module.desktop.in module.edj 


Log Message:
Winselector converted to new desktop files.

===
RCS file: /cvs/e/e_modules/winselector/Makefile.am,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- Makefile.am 8 Nov 2006 15:36:05 -   1.5
+++ Makefile.am 30 Mar 2007 21:00:24 -  1.6
@@ -10,7 +10,7 @@
 
 files_DATA = module_icon.png \
module.desktop \
-   module.edj \
+   e-module-winselector.edj \
winselector.edj
 
 EXTRA_DIST = $(files_DATA) \
===
RCS file: /cvs/e/e_modules/winselector/configure.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- configure.in4 Feb 2007 12:31:09 -   1.3
+++ configure.in30 Mar 2007 21:00:24 -  1.4
@@ -130,7 +130,6 @@
 
 AC_OUTPUT([
 Makefile
-module.desktop
 e_modules-winselector.spec
 ],[
 ])
===
RCS file: /cvs/e/e_modules/winselector/e_mod_main.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -3 -r1.12 -r1.13
--- e_mod_main.c15 Mar 2007 13:37:50 -  1.12
+++ e_mod_main.c30 Mar 2007 21:00:24 -  1.13
@@ -127,7 +127,7 @@
   char buf[4096];
 
   o = edje_object_add (evas);
-  snprintf (buf, sizeof (buf), %s/module.edj,
+  snprintf (buf, sizeof (buf), %s/e-module-winselector.edj,
e_module_dir_get (winsel_module));
   edje_object_file_set (o, buf, icon);
   return o;



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


E CVS: flame devilhorns

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : flame

Dir : e_modules/flame


Added Files:
module.desktop 


Log Message:
Actually add the module.desktop too.




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


E CVS: rain devilhorns

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : rain

Dir : e_modules/rain


Added Files:
module.desktop 


Log Message:
And actually add the new module.desktop




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


E CVS: screenshot devilhorns

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : screenshot

Dir : e_modules/screenshot


Added Files:
module.desktop 


Log Message:
Add the module.desktop file.




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


E CVS: slideshow devilhorns

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : slideshow

Dir : e_modules/slideshow


Added Files:
module.desktop 


Log Message:
Actually add the module.desktop file.




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


E CVS: snow devilhorns

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : snow

Dir : e_modules/snow


Added Files:
module.desktop 


Log Message:
Actually add the module.desktop file.




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


E CVS: uptime devilhorns

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : uptime

Dir : e_modules/uptime


Added Files:
module.desktop 


Log Message:
And again add the module.desktop file.




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


E CVS: weather devilhorns

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : weather

Dir : e_modules/weather


Added Files:
module.desktop 


Log Message:
Add missing module.desktop file.




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


E CVS: wlan devilhorns

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : wlan

Dir : e_modules/wlan


Modified Files:
ABOUT-NLS Makefile.am autogen.sh configure.in e_mod_main.c 
Added Files:
e-module-wlan.edj module.desktop 
Removed Files:
module.desktop.in module.edj 


Log Message:
And convert wlan module to new desktop stuff.

===
RCS file: /cvs/e/e_modules/wlan/ABOUT-NLS,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ABOUT-NLS   9 Mar 2006 11:42:09 -   1.1
+++ ABOUT-NLS   30 Mar 2007 21:09:31 -  1.2
@@ -1,8 +1,8 @@
 Notes on the Free Translation Project
 *
 
-   Free software is going international!  The Free Translation Project
-is a way to get maintainers of free software, translators, and users all
+Free software is going international!  The Free Translation Project is
+a way to get maintainers of free software, translators, and users all
 together, so that will gradually become able to speak many languages.
 A few packages already provide translations for their messages.
 
@@ -25,7 +25,7 @@
 Quick configuration advice
 ==
 
-   If you want to exploit the full power of internationalization, you
+If you want to exploit the full power of internationalization, you
 should configure it using
 
  ./configure --with-included-gettext
@@ -48,10 +48,10 @@
 INSTALL Matters
 ===
 
-   Some packages are localizable when properly installed; the
-programs they contain can be made to speak your own native language.
-Most such packages use GNU `gettext'.  Other packages have their own
-ways to internationalization, predating GNU `gettext'.
+Some packages are localizable when properly installed; the programs
+they contain can be made to speak your own native language.  Most such
+packages use GNU `gettext'.  Other packages have their own ways to
+internationalization, predating GNU `gettext'.
 
By default, this package will be installed to allow translation of
 messages.  It will automatically detect whether the system already
@@ -98,7 +98,7 @@
 Using This Package
 ==
 
-   As a user, if your language has been installed for this package, you
+As a user, if your language has been installed for this package, you
 only have to set the `LANG' environment variable to the appropriate
 `LL_CC' combination.  Here `LL' is an ISO 639 two-letter language code,
 and `CC' is an ISO 3166 two-letter country code.  For example, let's
@@ -131,6 +131,13 @@
 read translations in German than English for when Swedish is not
 available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'.
 
+   Special advice for Norwegian users: The language code for Norwegian
+bokma*l changed from `no' to `nb' recently (in 2003).  During the
+transition period, while some message catalogs for this language are
+installed under `nb' and some older ones under `no', it's recommended
+for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer and
+older translations are used.
+
In the `LANGUAGE' environment variable, but not in the `LANG'
 environment variable, `LL_CC' combinations can be abbreviated as `LL'
 to denote the language's main dialect.  For example, `de' is equivalent
@@ -140,7 +147,7 @@
 Translating Teams
 =
 
-   For the Free Translation Project to be a success, we need interested
+For the Free Translation Project to be a success, we need interested
 people who like their own language and write it well, and who are also
 able to synergize with other translators speaking the same language.
 Each translation team has its own mailing list.  The up-to-date list of
@@ -170,16 +177,559 @@
 Available Packages
 ==
 
-   Languages are not equally supported in all packages.  The following
-matrix shows the current state of internationalization, as of April
-2005.  The matrix shows, in regard of each package, for which languages
+Languages are not equally supported in all packages.  The following
+matrix shows the current state of internationalization, as of January
+2004.  The matrix shows, in regard of each package, for which languages
 PO files have been submitted to translation coordination, with a
 translation percentage of at least 50%.
 
- Ready PO filesen fr ja de bg es fi pl pt ru
- +---+
- enlightenment   | [] [] [] [] [] [] [] [] [] [] |
-
+ Ready PO files   af am ar az be bg bs ca cs da de el en en_GB eo es
+++
+ a2ps   | [] [] [] []|
+ aegis  |   ()   |
+ ant-phone  |   ()   |
+ anubis |  

E CVS: cpu devilhorns

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : cpu

Dir : e_modules/cpu


Modified Files:
Makefile.am configure.in e_mod_main.c 
Added Files:
e-module-cpu.edj module.desktop 
Removed Files:
module.desktop.in module.edj 


Log Message:
Convert cpu module to new desktop stuff.

===
RCS file: /cvs/e/e_modules/cpu/Makefile.am,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -3 -r1.16 -r1.17
--- Makefile.am 8 Nov 2006 12:43:17 -   1.16
+++ Makefile.am 30 Mar 2007 21:14:54 -  1.17
@@ -7,15 +7,13 @@
 
 files_DATA = \
 module.desktop \
-module.edj \
+e-module-cpu.edj \
 cpu.edj
 
 EXTRA_DIST = $(files_DATA) \
 cpu.edc \
 VeraMono.ttf \
 cpu.png \
-module.desktop \
-module.edj \
 e_modules-cpu.spec
 
 # data files for the module
===
RCS file: /cvs/e/e_modules/cpu/configure.in,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -3 -r1.16 -r1.17
--- configure.in20 Sep 2006 19:02:15 -  1.16
+++ configure.in30 Mar 2007 21:14:54 -  1.17
@@ -142,7 +142,6 @@
 
 AC_OUTPUT([
 Makefile
-module.desktop
 e_modules-cpu.spec
 ],[
 ])
===
RCS file: /cvs/e/e_modules/cpu/e_mod_main.c,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -3 -r1.35 -r1.36
--- e_mod_main.c7 Feb 2007 16:50:16 -   1.35
+++ e_mod_main.c30 Mar 2007 21:14:54 -  1.36
@@ -141,7 +141,7 @@
 
if (!cpu_conf-module) return NULL;

-   snprintf(buf, sizeof(buf), %s/module.edj, 
+   snprintf(buf, sizeof(buf), %s/e-module-cpu.edj, 
e_module_dir_get(cpu_conf-module));

o = edje_object_add(evas);



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


E CVS: net devilhorns

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : net

Dir : e_modules/net


Modified Files:
ABOUT-NLS Makefile.am autogen.sh configure.in 
Added Files:
e-module-net.edj module.desktop 
Removed Files:
module.desktop.in module.edc 


Log Message:
Convert net module to new desktop file.

===
RCS file: /cvs/e/e_modules/net/ABOUT-NLS,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ABOUT-NLS   9 Mar 2006 11:39:09 -   1.1
+++ ABOUT-NLS   30 Mar 2007 21:20:34 -  1.2
@@ -1,8 +1,8 @@
 Notes on the Free Translation Project
 *
 
-   Free software is going international!  The Free Translation Project
-is a way to get maintainers of free software, translators, and users all
+Free software is going international!  The Free Translation Project is
+a way to get maintainers of free software, translators, and users all
 together, so that will gradually become able to speak many languages.
 A few packages already provide translations for their messages.
 
@@ -25,7 +25,7 @@
 Quick configuration advice
 ==
 
-   If you want to exploit the full power of internationalization, you
+If you want to exploit the full power of internationalization, you
 should configure it using
 
  ./configure --with-included-gettext
@@ -48,10 +48,10 @@
 INSTALL Matters
 ===
 
-   Some packages are localizable when properly installed; the
-programs they contain can be made to speak your own native language.
-Most such packages use GNU `gettext'.  Other packages have their own
-ways to internationalization, predating GNU `gettext'.
+Some packages are localizable when properly installed; the programs
+they contain can be made to speak your own native language.  Most such
+packages use GNU `gettext'.  Other packages have their own ways to
+internationalization, predating GNU `gettext'.
 
By default, this package will be installed to allow translation of
 messages.  It will automatically detect whether the system already
@@ -98,7 +98,7 @@
 Using This Package
 ==
 
-   As a user, if your language has been installed for this package, you
+As a user, if your language has been installed for this package, you
 only have to set the `LANG' environment variable to the appropriate
 `LL_CC' combination.  Here `LL' is an ISO 639 two-letter language code,
 and `CC' is an ISO 3166 two-letter country code.  For example, let's
@@ -131,6 +131,13 @@
 read translations in German than English for when Swedish is not
 available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'.
 
+   Special advice for Norwegian users: The language code for Norwegian
+bokma*l changed from `no' to `nb' recently (in 2003).  During the
+transition period, while some message catalogs for this language are
+installed under `nb' and some older ones under `no', it's recommended
+for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer and
+older translations are used.
+
In the `LANGUAGE' environment variable, but not in the `LANG'
 environment variable, `LL_CC' combinations can be abbreviated as `LL'
 to denote the language's main dialect.  For example, `de' is equivalent
@@ -140,7 +147,7 @@
 Translating Teams
 =
 
-   For the Free Translation Project to be a success, we need interested
+For the Free Translation Project to be a success, we need interested
 people who like their own language and write it well, and who are also
 able to synergize with other translators speaking the same language.
 Each translation team has its own mailing list.  The up-to-date list of
@@ -170,16 +177,559 @@
 Available Packages
 ==
 
-   Languages are not equally supported in all packages.  The following
-matrix shows the current state of internationalization, as of April
-2005.  The matrix shows, in regard of each package, for which languages
+Languages are not equally supported in all packages.  The following
+matrix shows the current state of internationalization, as of January
+2004.  The matrix shows, in regard of each package, for which languages
 PO files have been submitted to translation coordination, with a
 translation percentage of at least 50%.
 
- Ready PO filesen fr ja de bg es fi pl pt ru
- +---+
- enlightenment   | [] [] [] [] [] [] [] [] [] [] |
-
+ Ready PO files   af am ar az be bg bs ca cs da de el en en_GB eo es
+++
+ a2ps   | [] [] [] []|
+ aegis  |   ()   |
+ ant-phone  |   ()   |
+ anubis ||
+ 

E CVS: libs/efreet raster

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/efreet

Dir : e17/libs/efreet/src/lib


Modified Files:
efreet_icon.c efreet_icon.h 


Log Message:


add the ability to have more dirs to search for icons between ~/.icons and
the system icon paths

===
RCS file: /cvs/e/e17/libs/efreet/src/lib/efreet_icon.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- efreet_icon.c   27 Mar 2007 16:54:54 -  1.6
+++ efreet_icon.c   31 Mar 2007 01:16:15 -  1.7
@@ -8,6 +8,7 @@
 static Ecore_Hash *efreet_icon_dirs_cached = NULL;
 static Ecore_Hash *efreet_icon_themes = NULL; 
 Ecore_List *efreet_icon_extensions = NULL;
+static Ecore_List *efreet_extra_icon_dirs = NULL;
 
 static Efreet_Icon *efreet_icon_find_helper(Efreet_Icon_Theme *theme, 
 const char *cache_key,
@@ -88,6 +89,7 @@
 efreet_icon_themes = ecore_hash_new(NULL, NULL);
 ecore_hash_set_free_value(efreet_icon_themes, 
 ECORE_FREE_CB(efreet_icon_theme_free));
+   efreet_extra_icon_dirs = ecore_list_new();
 }
 
 return 1;
@@ -106,6 +108,7 @@
 IF_FREE_LIST(efreet_icon_extensions);
 IF_FREE_HASH(efreet_icon_themes);
 IF_FREE_HASH(efreet_icon_dirs_cached);
+IF_FREE_LIST(efreet_extra_icon_dirs);
 
 ecore_shutdown();
 }
@@ -142,6 +145,20 @@
 }
 
 /**
+ * @return Returns a list of strings that are paths to other icon directories
+ * @brief Gets the list of all extra directories to look for icons. These
+ * directories are used to look for icons after looking in the user icon dir
+ * and before looking in standard system directories. The order of search is
+ * from first to last directory in this list. the strings in the list should
+ * be created with ecore_string_instance().
+ */
+Ecore_List *
+efreet_icon_extra_list_get(void)
+{
+   return efreet_extra_icon_dirs;
+}
+
+/**
  * @return Returns a list of Efreet_Icon structs for all the non-hidden icon
  * themes 
  * @brief Retrieves all of the non-hidden icon themes available on the system. 
@@ -507,6 +524,12 @@
 const char *dir;
 char path[PATH_MAX];
 
+ecore_list_goto_first(efreet_extra_icon_dirs);
+while ((dir = ecore_list_next(efreet_extra_icon_dirs)))
+   {
+   icon = efreet_icon_fallback_dir_scan(dir, icon_name);
+   if (icon) return icon;
+   }
 xdg_dirs = efreet_data_dirs_get();
 ecore_list_goto_first(xdg_dirs);
 while ((dir = ecore_list_next(xdg_dirs)))
===
RCS file: /cvs/e/e17/libs/efreet/src/lib/efreet_icon.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- efreet_icon.h   3 Feb 2007 13:05:30 -   1.1
+++ efreet_icon.h   31 Mar 2007 01:16:15 -  1.2
@@ -162,6 +162,7 @@
 const char*efreet_icon_dir_get(void);
 void   efreet_icon_extension_add(const char *ext);
 
+Ecore_List*efreet_icon_extra_list_get(void);
 Ecore_List*efreet_icon_theme_list_get(void);
 Efreet_Icon_Theme *efreet_icon_theme_find(const char *theme_name);
 Efreet_Icon   *efreet_icon_find(const char *theme_name, const char *icon, 



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


E CVS: apps/e raster

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_main.c 


Log Message:


add icon dirs

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_main.c,v
retrieving revision 1.212
retrieving revision 1.213
diff -u -3 -r1.212 -r1.213
--- e_main.c30 Mar 2007 13:48:23 -  1.212
+++ e_main.c31 Mar 2007 01:16:28 -  1.213
@@ -433,6 +433,18 @@
TS(efreet done);
 
TS(efreet paths);
+ {
+   Ecore_List *list;
+   
+   list = efreet_icon_extra_list_get();
+   if (list)
+ {
+snprintf(buf, sizeof(buf), %s/.e/e/icons, e_user_homedir_get());
+ecore_list_prepend(list, (void *)ecore_string_instance(buf));
+snprintf(buf, sizeof(buf), %s/data/icons, e_prefix_data_get());
+ecore_list_prepend(list, (void *)ecore_string_instance(buf));
+ }
+ }
efreet_icon_extension_add(.edj);
TS(efreet paths done);
 



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


E CVS: apps/e raster

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_border.c 


Log Message:


use efreets new event for desk list change

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_border.c,v
retrieving revision 1.577
retrieving revision 1.578
diff -u -3 -r1.577 -r1.578
--- e_border.c  25 Mar 2007 17:29:51 -  1.577
+++ e_border.c  31 Mar 2007 01:59:42 -  1.578
@@ -44,6 +44,7 @@
 static int _e_border_cb_window_move_resize_request(void *data, int ev_type, 
void *ev);
 static int _e_border_cb_desktop_change(void *data, int ev_type, void *ev);
 static int _e_border_cb_sync_alarm(void *data, int ev_type, void *ev);
+static int _e_border_cb_util_desktop_list_change(void *data, int ev_type, void 
*ev);
 
 static int  _e_border_cb_pointer_warp(void *data, int ev_type, void *ev);
 static void _e_border_cb_signal_bind(void *data, Evas_Object *obj, const char 
*emission, const char *source);
@@ -165,10 +166,13 @@
handlers = evas_list_append(handlers, 
ecore_event_handler_add(ECORE_X_EVENT_WINDOW_MOVE_RESIZE_REQUEST, 
_e_border_cb_window_move_resize_request, NULL));
handlers = evas_list_append(handlers, 
ecore_event_handler_add(ECORE_X_EVENT_DESKTOP_CHANGE, 
_e_border_cb_desktop_change, NULL));
handlers = evas_list_append(handlers, 
ecore_event_handler_add(ECORE_X_EVENT_SYNC_ALARM, _e_border_cb_sync_alarm, 
NULL));
+
ecore_x_passive_grab_replay_func_set(_e_border_cb_grab_replay, NULL);
 
handlers = evas_list_append(handlers, 
ecore_event_handler_add(E_EVENT_POINTER_WARP, _e_border_cb_pointer_warp, NULL));
 
+   handlers = evas_list_append(handlers, 
ecore_event_handler_add(EFREET_EVENT_UTIL_DESKTOP_LIST_CHANGE, 
_e_border_cb_util_desktop_list_change, NULL));
+   
 #if 0
e_app_change_callback_add(_e_border_app_change, NULL);
 #endif
@@ -4280,6 +4284,22 @@
if (bd-client.netwm.sync.wait = 0)
  _e_border_resize_handle(bd);
return 1;
+}
+
+static int
+_e_border_cb_util_desktop_list_change(void *data, int ev_type, void *ev)
+{
+   Evas_List *l;
+   
+   /* mark all borders for desktop/icon updates */
+   for (l = borders; l; l = l-next)
+ {
+   E_Border *bd;
+
+   bd = l-data;
+   bd-changes.icon = 1;
+   bd-changed = 1;
+ }
 }
 
 /* FIXME:



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


E CVS: libs/efreet dj2

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : e17
Module  : libs/efreet

Dir : e17/libs/efreet/src/lib


Modified Files:
efreet_icon.c 


Log Message:
- formatting

===
RCS file: /cvs/e/e17/libs/efreet/src/lib/efreet_icon.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- efreet_icon.c   31 Mar 2007 01:16:15 -  1.7
+++ efreet_icon.c   31 Mar 2007 03:20:53 -  1.8
@@ -89,7 +89,7 @@
 efreet_icon_themes = ecore_hash_new(NULL, NULL);
 ecore_hash_set_free_value(efreet_icon_themes, 
 ECORE_FREE_CB(efreet_icon_theme_free));
-   efreet_extra_icon_dirs = ecore_list_new();
+efreet_extra_icon_dirs = ecore_list_new();
 }
 
 return 1;
@@ -155,7 +155,7 @@
 Ecore_List *
 efreet_icon_extra_list_get(void)
 {
-   return efreet_extra_icon_dirs;
+return efreet_extra_icon_dirs;
 }
 
 /**
@@ -526,10 +526,11 @@
 
 ecore_list_goto_first(efreet_extra_icon_dirs);
 while ((dir = ecore_list_next(efreet_extra_icon_dirs)))
-   {
-   icon = efreet_icon_fallback_dir_scan(dir, icon_name);
-   if (icon) return icon;
-   }
+{
+icon = efreet_icon_fallback_dir_scan(dir, icon_name);
+if (icon) return icon;
+}
+
 xdg_dirs = efreet_data_dirs_get();
 ecore_list_goto_first(xdg_dirs);
 while ((dir = ecore_list_next(xdg_dirs)))



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


E CVS: www raster

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : web
Module  : www

Dir : web/www/site


Modified Files:
site.php 


Log Message:


1. make site a bit thinner - 800px wide now works (should).
2. ul for subs now.

===
RCS file: /cvs/e/web/www/site/site.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- site.php27 Mar 2007 02:42:38 -  1.4
+++ site.php31 Mar 2007 03:26:27 -  1.5
@@ -91,10 +91,11 @@
   function nav_subs() {
   global $page;
   global $lang;
+  $item = 0;
   if (file_exists(p/$page/subs)) {
  $handle = fopen(p/$page/subs, r);
  if ($handle) {
- print(table border=0 cellpadding=0 cellspacing=4pxtr\n);
+ print(ul class='navul'\n);
  while (!feof($handle)) {
  $fl = fgets($handle, 4096);
  $fl = str_replace(\n, , $fl);
@@ -109,18 +110,22 @@
  if ($h == ) {
$h = p.php?p=$page/$fll=$lang;
   }
- print(td class='nav'a class='nav' 
href='$h'$l/a/td\n);
+ if ($item  0) print(|\n);
+ print(li class='navul'a class='navul' 
href='$h'$l/a/li\n);
+ $item++;
  }
  else if (file_exists(p/$page/$fl/en-label)) {
  $l = read_var(p/$page/$fl/en-label);
  if ($h == ) {
$h = p.php?p=$page/$fll=$lang;
   }
- print(td class='nav'a class='nav' 
href='$h'$l/a/td\n);
+ if ($item  0) print(|\n);
+ print(li class='navul'a class='navul' 
href='$h'$l/a/li\n);
+ $item++;
  }
  }
  }
- print(/tr/tablehr);
+ print(/ulhr);
  }
   }
   }



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


E CVS: www raster

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : web
Module  : www

Dir : web/www


Modified Files:
p.php style.css 


Log Message:


1. make site a bit thinner - 800px wide now works (should).
2. ul for subs now.

===
RCS file: /cvs/e/web/www/p.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- p.php   27 Mar 2007 02:42:38 -  1.3
+++ p.php   31 Mar 2007 03:26:27 -  1.4
@@ -28,8 +28,9 @@
 img src=i/_.gif width=4 height=4
   ?php show_langs(p/lang1); ?
 /td
-td class=tl width=612 height=250 valign=bottom align=center
- img src=i/_.gif width=612 height=1?php nav_subs(); ?
+td class=tl width=600 height=250
+ img src=i/_.gif width=600 height=1br
+ ?php nav_subs(); ?
 /td
 td class=t  width=50% valign=top align=right
  table width=100px height=100px border=0 cellpadding=0 cellspacing=0
===
RCS file: /cvs/e/web/www/style.css,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- style.css   27 Mar 2007 12:21:06 -  1.4
+++ style.css   31 Mar 2007 03:26:27 -  1.5
@@ -17,6 +17,13 @@
 //td.tl { 
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, 
sizingMethod=scale src='i/tl.png'); }
 td.tl { background-image:url(i/tl.gif); }
 td.tl[class] { background-image:url(i/tl.png); }
+td.tl {
+   align  : middle;
+   text-align : center;
+   vertical-align : bottom;
+   width  : 600px;
+   height : 250px;
+}
 
 div.main {
margin : 1em;
@@ -160,19 +167,6 @@
 td.rnav { background-image:url(i/n.gif); }
 td.rnav[class] { background-image:url(i/n.png); }
 
-td.nav {
-   align  : middle;
-   text-align : center;
-   vertical-align : middle;
-   width  : 100px;
-   font-family: Bitstream Vera, Vera, Trebuchet MS, 
Trebuchet, Tahoma, sans-serif;
-   color  : #22;
-   font-size  : 9px;
-   font-weight: bold;
-   white-space: no-wrap;
-   display: block;
-}
-
 a.nav:link {
color  : #88;
text-decoration: none;
@@ -197,6 +191,38 @@
display: block;
 }
 
+li.navul, ul.navul {
+   font-family: Bitstream Vera, Vera, Trebuchet MS, 
Trebuchet, Tahoma, sans-serif;
+   color  : #22;
+   font-size  : 9px;
+   font-weight: bold;
+//   white-space: no-wrap;
+//   text-transform : none;
+//   list-style-type: none;
+   list-style : none;
+   display: inline;
+}
+
+a.navul:link {
+   color  : #88;
+   text-decoration: none;
+}
+
+a.navul:visited {
+   color  : #88;
+   text-decoration: none;
+}
+
+a.navul:active {
+   color  : #00;
+   text-decoration: none;
+}
+
+a.navul:hover {
+   color  : #44;
+   text-decoration: none;
+}
+
 
 
 
@@ -212,6 +238,7 @@
 
 // OLD CSS STUFF TO STEAL FROM
 
+/*
 table.main {
border : 0;
cellpadding: 8;
@@ -439,3 +466,4 @@
padding: 0px;
margin : 2px;
 }
+*/



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


E CVS: apps/e raster

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_fm.c 


Log Message:


fix fileman favorites

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_fm.c,v
retrieving revision 1.139
retrieving revision 1.140
diff -u -3 -r1.139 -r1.140
--- e_fm.c  25 Mar 2007 17:23:49 -  1.139
+++ e_fm.c  31 Mar 2007 04:55:38 -  1.140
@@ -5459,10 +5459,10 @@
fprintf(f, 
[Desktop Entry]\n
Encoding=UTF-8\n
-   Name=Desktop\n
-   Type=Removable\n
+   Type=Link\n
+   X-Enlightenment-Type: Removable\n
Name=%s\n
-   X-Enlightenment-IconClass=%s\n
+   Icon=%s\n
Comment=%s\n
URL=file:/%s
,



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


E CVS: apps/e raster

2007-03-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/e

Dir : e17/apps/e/data/other


Modified Files:
efm_favorites.tar.gz 


Log Message:


fix fileman favorites

===
RCS file: /cvs/e/e17/apps/e/data/other/efm_favorites.tar.gz,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
Binary files /tmp/cvs96oyN0 and /tmp/cvsMi5re4 differ



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