E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/support


Added Files:
en-body en-title 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl ningerso

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ningerso
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/bin/tests/label


Modified Files:
ewl_label.c 


Log Message:
Add basic unit tests for labels.

===
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/label/ewl_label.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- ewl_label.c 4 Jun 2007 18:46:34 -   1.2
+++ ewl_label.c 8 Nov 2007 07:02:59 -   1.3
@@ -5,11 +5,23 @@
 #include "ewl_label.h"
 
 #include 
+#include 
 
 static int counter = 0;
 static int create_test(Ewl_Container *win);
 static void cb_click(Ewl_Widget *w, void *ev, void *data);
 
+static int label_null_test_get(char *buf, int len);
+static int label_null_test_set_get(char *buf, int len);
+static int label_test_set_get(char *buf, int len);
+
+static Ewl_Unit_Test label_unit_tests[] = {
+   {"label null get", label_null_test_get, -1, NULL},
+   {"label null set/get", label_null_test_set_get, -1, NULL},
+   {"label set/get", label_test_set_get, -1, NULL},
+   {NULL, NULL, -1, NULL}
+   };
+
 void
 test_info(Ewl_Test *test)
 {
@@ -18,6 +30,7 @@
test->filename = __FILE__;
test->func = create_test;
test->type = EWL_TEST_TYPE_SIMPLE;
+   test->unit_tests = label_unit_tests;
 }
 
 static int
@@ -55,4 +68,65 @@
counter ++;
 }
 
+static int
+label_null_test_get(char *buf, int len)
+{
+   Ewl_Widget *label;
+   int ret = 0;
+
+   label = ewl_label_new();
+
+   if (ewl_label_text_get(EWL_LABEL(label)))
+   snprintf(buf, len, "text_get not NULL");
+   else
+   ret = 1;
+
+   ewl_widget_destroy(label);
+
+   return ret;
+}
+
+static int
+label_null_test_set_get(char *buf, int len)
+{
+   Ewl_Widget *label;
+   const char *val;
+   int ret = 0;
+
+   label = ewl_label_new();
+
+   ewl_label_text_set(EWL_LABEL(label), "some text");
+   ewl_label_text_set(EWL_LABEL(label), NULL);
+
+   val = ewl_label_text_get(EWL_LABEL(label));
+   if (val)
+   snprintf(buf, len, "text_set_get %s instead of NULL", val);
+   else
+   ret = 1;
 
+   ewl_widget_destroy(label);
+
+   return ret;
+}
+
+static int
+label_test_set_get(char *buf, int len)
+{
+   Ewl_Widget *label;
+   const char *val;
+   int ret = 0;
+
+   label = ewl_label_new();
+
+   ewl_label_text_set(EWL_LABEL(label), "some text");
+
+   val = ewl_label_text_get(EWL_LABEL(label));
+   if (strcmp(val, "some text"))
+   snprintf(buf, len, "text_get not NULL");
+   else
+   ret = 1;
+
+   ewl_widget_destroy(label);
+
+   return ret;
+}



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl ningerso

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ningerso
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/lib


Modified Files:
ewl_widget.c 


Log Message:
Allow NULL to be set for text parts.

===
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_widget.c,v
retrieving revision 1.144
retrieving revision 1.145
diff -u -3 -r1.144 -r1.145
--- ewl_widget.c23 Aug 2007 05:26:52 -  1.144
+++ ewl_widget.c8 Nov 2007 07:02:39 -   1.145
@@ -875,7 +875,6 @@
 
DENTER_FUNCTION(DLEVEL_STABLE);
DCHECK_PARAM_PTR("w", w);
-   DCHECK_PARAM_PTR("text", text);
DCHECK_TYPE("w", w, EWL_WIDGET_TYPE);
 
if (!w->theme_object)
@@ -947,7 +946,7 @@
 * Part key exists and the value is the same as the current value.
 */
if (match) {
-   if (!strcmp(text, match->value))
+   if (text && !strcmp(text, match->value))
DRETURN(DLEVEL_STABLE);
 
IF_FREE(match->value);
@@ -983,7 +982,7 @@
 * What should be the default if you enter NULL? A blank string?
 * Revert to the text specified in the Edje? Use blank for now.
 */
-   match->value = strdup(text ? text : "");
+   match->value = (text ? strdup(text) : NULL);
ewl_widget_appearance_part_text_apply(w, match->key, match->value);
 
DLEAVE_FUNCTION(DLEVEL_STABLE);



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/sponsors


Removed Files:
en-body en-title 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/about/people/devsmap


Removed Files:
en-body en-label en-title 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/contact


Added Files:
en-body en-title subs 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/news/show


Modified Files:
en-body 


Log Message:
- new structure and text for website

===
RCS file: /cvs/e/web/www/p/news/show/en-body,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- en-body 27 May 2007 12:54:52 -  1.1
+++ en-body 8 Nov 2007 06:47:44 -   1.2
@@ -13,4 +13,4 @@
 
 ?>
 
-Go 
back
+Back



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/download


Modified Files:
en-body en-title 
Removed Files:
subs 


Log Message:
- new structure and text for website

===
RCS file: /cvs/e/web/www/p/download/en-body,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- en-body 4 Jun 2007 10:59:34 -   1.3
+++ en-body 8 Nov 2007 06:47:42 -   1.4
@@ -1,24 +1,120 @@
 
-
-
-
-Enlightenment 0.17 & EFL
-
-The main line of development for new releases of Enlightenment is in the "E17"
-work. This code is only partly for the window manager, and mostly contains code
-for libraries and utilities that were written to support Enlightenment, but
-have grown to be much more. Please see  for
-more information, as well as 
-
-Enlightenment 0.16
-
-Older releases of Enlightenment (Enlightenment 0.16 series), Epplets and
-Imlib2 can be obtained here:
-
-Sourceforge
-
-Please remember to look  for information.
-
-
-
+ 
+  
+   
+Download Enlightenment DR16
+There are a few different ways to get Enlightenment depending on your
+requirements.
+
+The latest version of DR16 is 0.16.8.10, released on October 6th,
+2007. Packages for the current, and previous, releases of DR16, core
+themes, epplets, e16menuedit, e16keyedit, and imlib2 can be found on the
+http://sourceforge.net/project/showfiles.php?group_id=2";>SourceForge
+downlaod page
+
+DR16 is available on a number of different *NIX platforms. Please 
choose 
+from the list of available distributions the one that is right for you.
+
+
+ 
+   
+ 
+Distribution/Platform
+File
+Comments
+   
+
+ 
+Enlightenment Source Code TAR.GZ
+
+ http://prdownloads.sourceforge.net/enlightenment/e16-0.16.8.10.tar.gz?download";>e16-0.16.8.10.tar.gz
+
+ 
+   
+
+ 
+Source Package RPM
+
+ http://prdownloads.sourceforge.net/enlightenment/e16-0.16.8.10-1.fc6.src.rpm?download";>e16-0.16.8.10-1.fc6.src.rpm
+
+ 
+   
+
+ 
+Linux i386 Binary RPM
+
+ http://prdownloads.sourceforge.net/enlightenment/e16-0.16.8.10-1.fc6.i386.rpm?download";>e16-0.16.8.10-1.fc6.i386.rpm
+
+ 
+   
+
+ 
+Gentoo Linux
+
+ http://packages.gentoo.org/search/?sstring=enlightenment";>Emerge for X86, 
PPC, HP-PA and Sparc
+
+ 
+   
+
+   
+SUSE Linux (PackMan)
+http://packman.links2linux.de/index.php4?action=638";>E DR16.8
+ 
+   
+
+ 
+Debian GNU/Linux DEB
+
+ http://packages.debian.org/enlightenment";>Packages for 
'stable', 'testing' and 'unstable'
+
+ 
+   
+
+ 
+Solaris 9 (or higher) SPARC packages
+http://www.cuddletech.com/download";>E 
DR16.7.1 + All Requirements
+ 
+   
+
+ 
+AIX 4.3.3/5L RPMs
+
+ http://www-1.ibm.com/servers/aix/products/aixos/linux/download.html";>E 
DR16.5 + All Requirements from IBM
+
+ 
+   
+
+ 
+GNU Darwin
+http://gnu-darwin.sourceforge.net/";>E DR16.5 
+ All Requirements
+ 
+   
+
+  
+ 
+
+
+Download Enlightenment DR17 and the EFL
+While DR17 and the EFL are primarily available from CVS there are a few,
+unofficial, packages for various distros along with snapshot tarballs.
+If you wish to use CVS please see the  
+section for more information.
+
+Snapshot releases are available from 
+http://download.enlightenment.org";>download.enlightenment.org.
+
+Unoffical packages are availble for several platforms including:
+Debian, http://ubuntuforums.org/showthread.php?t=97199&highlight=E17+cvs";>Ubuntu,
+http://sps.nus.edu.sg/~didierbe";>Fedora, 
+http://wiki.archlinux.org/index.php/E17";>ArchLinux, and
+http://gentoo-wiki.com/HOWTO_emerge_e17";>Gentoo. There is
+also a port available in the FreeBSD ports collection.
+
+There are no guarentees if these packages will work as expected. If you 
experience
+any problems with DR17 or the EFL using the packages, please first refer 
to the
+packagers, not to the Enlightenment team.
+   
+  
+ 
 
+
===
RCS file: /cvs/e/web/www/p/download/en-title,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- en-title15 Apr 2007 11:32:20 -  1.1
+++ en-title8 Nov 2007 06:47:42 -   1.2
@@ -1 +1 @@
-Download
+Enlightenment Download



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping throu

E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/main5


Modified Files:
en-label page 


Log Message:
- new structure and text for website

===
RCS file: /cvs/e/web/www/p/main5/en-label,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- en-label24 Mar 2007 15:45:52 -  1.1
+++ en-label8 Nov 2007 06:47:43 -   1.2
@@ -1 +1 @@
-Documentation
+Support
===
RCS file: /cvs/e/web/www/p/main5/page,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- page24 Mar 2007 19:36:46 -  1.1
+++ page8 Nov 2007 06:47:43 -   1.2
@@ -1 +1 @@
-docs
+support



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/main1


Modified Files:
en-label 


Log Message:
- new structure and text for website

===
RCS file: /cvs/e/web/www/p/main1/en-label,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- en-label24 Mar 2007 15:45:51 -  1.1
+++ en-label8 Nov 2007 06:47:43 -   1.2
@@ -1 +1 @@
-Main
+Home



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/main2


Modified Files:
en-label page 


Log Message:
- new structure and text for website

===
RCS file: /cvs/e/web/www/p/main2/en-label,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- en-label24 Mar 2007 15:45:51 -  1.1
+++ en-label8 Nov 2007 06:47:43 -   1.2
@@ -1 +1 @@
-Download
+News
===
RCS file: /cvs/e/web/www/p/main2/page,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- page24 Mar 2007 15:45:51 -  1.1
+++ page8 Nov 2007 06:47:43 -   1.2
@@ -1 +1 @@
-download
+news



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/index


Modified Files:
en-body 


Log Message:
- new structure and text for website

===
RCS file: /cvs/e/web/www/p/index/en-body,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -3 -r1.12 -r1.13
--- en-body 17 Jun 2007 05:35:19 -  1.12
+++ en-body 8 Nov 2007 06:47:43 -   1.13
@@ -1,96 +1,41 @@
 
-
-
-What is Enlightenment?
-
-Enlightenment. What is Enlightenment?.Some people
-affectionately refer to Enlightenment as E because typing
-or saying the whole word is a bit of a mouthful. Early in its history, which 
began back in 1996, E was just a
-window manager for
-X11.
-
-Since then, E has now become much more. In the process of building the next 
generation of
-the window manager, we have created a suite of libraries for doing data
-storage and retrieval, scene-graph rendering with a canvas, theme
-encapsulation, compiling and demand-loading, event loop, inter-process
-communication, freedesktop.org
-specification handling, virtual machines, video codec abstractions, widget
-sets, and more.
-
-This is in addition to the window manager and utilities and apps. There is
-even a prototype media center that uses the same libraries that E is being
-built on, as a demonstration of how powerful the back-end is.
-
-We also do not only target desktops, but also work on old systems and
-embedded environments, with our libraries made to be lean and fast, so even
-the most limited of systems can enjoy some eye-candy.
-
+ 
+  
+   
+What is Enlightenment?
+
+ Enlightenment is a window manager. Enlightenment is a desktop shell.
+ Enlightenment is the building blocks to create beautiful applications.
+ Enlightenment, or simply e, is a group of 
people trying to make a
+ new generation of software.
+
 
-
-For more information about what we do please see our
-.
-
+
+ If you want to learn more about the history behind the Enlightenment
+ Project check out the  pages. For the casual
+ user there are various  resources
+ available. For anyone looking to help out with the project the  pages should give you a good idea where to start
+ looking.
+
+   
+  
 
-
-
-
-
-Currently  is
-under development with a TODO list that is being worked on for release.
-The base libraries it depends on
- are
-very mature and stable. There are other applications that use these too. E17
-itself is primarily available via CVS.
-
-But despite this, the stable release of
- is still alive
-and maintained. It is not dead and does undergo feature adds, fixes and
-improvements.
-
-
-
-
-
-
+  
+   
+
+ 
+ 
+
+   
+  
 
-
-
-News and Updates
-
-2007/04/22 - Website update
-
-We have undergone a complete rennovation of this website. We have added
-Forums, a
-Bug tracker, and a
-Wiki too for community
-documentation efforts. The main website,
-www.enlightenment.org also has
-been completely re-done, with all new content and layout, hopefully showing a
-more useful face to the world of our development efforts.
-
-
- 
-
-
-
-
+  
+   
+Enlightenment News
+
+   
+  
+ 
 
 
-
-
-
-
-Web CVS
-
-
-Get-E.org
-
-
-EliveCD
-
-
-Enlightenment - Français
-
-
-
-



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/main4


Modified Files:
en-label page 


Log Message:
- new structure and text for website

===
RCS file: /cvs/e/web/www/p/main4/en-label,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- en-label24 Mar 2007 15:45:51 -  1.1
+++ en-label8 Nov 2007 06:47:43 -   1.2
@@ -1 +1 @@
-News
+Download
===
RCS file: /cvs/e/web/www/p/main4/page,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- page24 Mar 2007 15:45:51 -  1.1
+++ page8 Nov 2007 06:47:43 -   1.2
@@ -1 +1 @@
-news
+download



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/news


Modified Files:
class.news.php en-body en-title latestnews.php 


Log Message:
- new structure and text for website

===
RCS file: /cvs/e/web/www/p/news/class.news.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- class.news.php  3 Aug 2007 21:17:54 -   1.4
+++ class.news.php  8 Nov 2007 06:47:44 -   1.5
@@ -129,7 +129,7 @@
   }
 
   private function _get_localtime($timestamp) {
-return strftime('%a %e %b %G  %I:%M %p', $timestamp);
+return strftime('%b %e, %G at %I:%M %p', $timestamp);
   }
 }
 
===
RCS file: /cvs/e/web/www/p/news/en-body,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- en-body 27 May 2007 12:54:51 -  1.4
+++ en-body 8 Nov 2007 06:47:44 -   1.5
@@ -1,4 +1,4 @@
-News
+Enlightenment News
 
 read_content($new)) !== NULL)
{
  echo "\n";
- echo "".$new['date']."\n";
  echo "".$new['title']."";
  echo "".$new['author']." - ".$new['date']."";
- echo "".$new['content']."\n";
+ echo "".$new['content']."\n";
  echo "\n";
}
 }
 
 if ($news->has_archives() == true)
 {
-   echo "more in the archive";
+   echo "News archives";
 }
 
 ?>
===
RCS file: /cvs/e/web/www/p/news/en-title,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- en-title24 Mar 2007 15:45:52 -  1.1
+++ en-title8 Nov 2007 06:47:44 -   1.2
@@ -1 +1 @@
-News
+Enlightenment - News
===
RCS file: /cvs/e/web/www/p/news/latestnews.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- latestnews.php  31 May 2007 00:03:25 -  1.4
+++ latestnews.php  8 Nov 2007 06:47:44 -   1.5
@@ -9,13 +9,11 @@
 {
if (($new = $news->read_content($new)) !== NULL)
{
- echo "".$new['title']."
 - ".$new['date']."";
- echo "".$new['content']."\n";
+ echo "".$new['title']."";
+ echo "" . $new['date'] . "";
+ echo "".$new['content']."\n";
}
-
-
-
 }
-echo "More news ... ";
+echo "more ... ";
 ?>
 



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/main8


Modified Files:
en-label 
Removed Files:
page 


Log Message:
- new structure and text for website

===
RCS file: /cvs/e/web/www/p/main8/en-label,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- en-label24 Mar 2007 15:45:52 -  1.1
+++ en-label8 Nov 2007 06:47:44 -   1.2
@@ -1 +1 @@
-Sponsors
+



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/main6


Modified Files:
en-label 
Added Files:
page 
Removed Files:
link 


Log Message:
- new structure and text for website

===
RCS file: /cvs/e/web/www/p/main6/en-label,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- en-label24 Mar 2007 15:45:52 -  1.1
+++ en-label8 Nov 2007 06:47:44 -   1.2
@@ -1 +1 @@
-Bugs
+Contribute



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/main7


Modified Files:
en-label 
Added Files:
page 
Removed Files:
link 


Log Message:
- new structure and text for website

===
RCS file: /cvs/e/web/www/p/main7/en-label,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- en-label24 Mar 2007 15:45:52 -  1.1
+++ en-label8 Nov 2007 06:47:44 -   1.2
@@ -1 +1 @@
-Forums
+Contact



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www


Modified Files:
style.css 


Log Message:
- new structure and text for website

===
RCS file: /cvs/e/web/www/style.css,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -3 -r1.14 -r1.15
--- style.css   13 Jun 2007 04:24:20 -  1.14
+++ style.css   8 Nov 2007 06:47:38 -   1.15
@@ -34,11 +34,13 @@
 }
 
 div.content {
-   margin: 0 40px 0 40px;
+   margin: 0 auto 0 auto;
+   width: 80%;
+   text-align: justify;
 }
 
 div.main {
-   text-align : left;
+   text-align : justify;
vertical-align : top;
font-family: "Bitstream Vera", "Vera", "Trebuchet MS", 
Trebuchet, Tahoma, sans-serif;
color  : #44;
@@ -159,10 +161,10 @@
font-family: "Bitstream Vera Mono", "Vera Mono", "Trebuchet MS 
Mono", "Trebuchet Mono", "Tahoma Mono", mono;
color  : #00;
font-size  : 0.9em;
-   border : 1px dotted #ee;
+   border : 1px dotted #bbb;
text-align : left;
vertical-align : middle;
-   padding: 2em;
+   padding: 5px;
overflow   : auto;
 }
 
@@ -397,24 +399,8 @@
 
 .post {
margin : 0 0 2.5em 40px;
-   border-left: 1px solid #DDD;
+   border-left: 1px solid #bbb;
padding-left   : 2ex;
-   position   : relative;
-}
-
-html>body .news-date{
-   left   : -11ex;
-}
-
-.news-date {
-   margin : 0;
-   text-align : right;
-   width  : 10ex;
-   position   : absolute;
-   left   : -13ex;
-   font-size  : 90%;
-   font-family: "Bitstream Vera", "Vera", "Trebuchet MS", 
Trebuchet, Tahoma, sans-serif;
-   color  : #88;
 }
 
 .news-title {
@@ -431,239 +417,19 @@
 }
 
 .news-content {
-   text-align : justify;
-}
-
-
-
-/* OLD CSS STUFF TO STEAL FROM */
-
-/*
-table.main {
-   border : 0;
-   cellpadding: 8;
-   cellspacing: 0;
-}
-
-td.bx1 { 
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, 
sizingMethod=scale src='i/b1.png'); }
-td.bx1[class] { background-image:url("i/b1.png"); }
-td.bx2 { 
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, 
sizingMethod=scale src='i/nav_top.png'); }
-td.bx2[class] { background-image:url("i/b2.png"); }
-td.bx3 { 
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, 
sizingMethod=scale src='i/nav_trt.png'); }
-td.bx3[class] { background-image:url("i/b3.png"); }
-td.bx4 { 
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, 
sizingMethod=scale src='i/nav_lef.png'); }
-td.bx4[class] { background-image:url("i/b4.png"); }
-td.bx5 {
-   background : #fff;
-   text-align : left;
-   vertical-align : middle;
-}
-td.bx5b {
-   background : #fff;
-   background-repeat  : no-repeat;
-   background-image   : url("i/card_bg2.png");
-   background-position: bottom right;
-   text-align : left;
-   vertical-align : middle;
-}
-td.bx6 { 
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, 
sizingMethod=scale src='i/nav_rig.png'); }
-td.bx6[class] { background-image:url("i/nav_rig.png"); }
-td.bx7 { 
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, 
sizingMethod=scale src='i/nav_blf.png'); }
-td.bx7[class] { background-image:url("i/nav_blf.png"); }
-td.bx8 { 
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, 
sizingMethod=scale src='i/nav_bot.png'); }
-td.bx8[class] { background-image:url("i/nav_bot.png"); }
-td.bx9 { 
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, 
sizingMethod=scale src='i/nav_brt.png'); }
-td.bx9[class] { background-image:url("i/nav_brt.png"); }
-
-td.nav {
-   align  : middle;
-   text-align : center;
-   vertical-align : top;
-}
-
-td.navtop, td.navbottom {
-   align : center;
-   text-align : center;
-   vertical-align : middle;
-}
-
-td.nav_img {
-   width  : 10;
-   text-align : center;
-   vertical-align : middle;
-}
-
-td.nav_text {
-   text-align : left;
-   vertical-align : middle;
-}
-
-td.xsm_menu_category {
-   text-align : left;
-   vertical-align : middle;
-   font-family: "Bitstream Vera", "Vera", "Trebuchet MS", 
Trebuchet, Tahoma, sans-serif;
-   color  : #ccc;
-   font-size  : 12px;
-   font-weight: bold;
-   white-space: no-wrap;
-}
-
-table.menu {
-   border 

E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p


Modified Files:
lang1 lang2 


Log Message:
- new structure and text for website

===
RCS file: /cvs/e/web/www/p/lang1,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- lang1   24 Mar 2007 15:45:50 -  1.1
+++ lang1   8 Nov 2007 06:47:38 -   1.2
@@ -1,2 +0,0 @@
-en
-de
===
RCS file: /cvs/e/web/www/p/lang2,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- lang2   24 Mar 2007 15:45:50 -  1.1
+++ lang2   8 Nov 2007 06:47:38 -   1.2
@@ -1,2 +0,0 @@
-fr
-jp



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/about


Modified Files:
en-body en-title subs 


Log Message:
- new structure and text for website

===
RCS file: /cvs/e/web/www/p/about/en-body,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- en-body 7 Oct 2007 13:20:29 -   1.7
+++ en-body 8 Nov 2007 06:47:38 -   1.8
@@ -1,33 +1,97 @@
 

-

-

-Welcome to the Enlightenment Project

-

- Support Enlightenment by donating to our http://www.enlightenment.org/donate";>server fund.

-We are dedicated to providing advanced graphical libraries, tools, and 
environments. Currently, the project is made up of three different components: 
Enlightenment DR16, The Enlightenment Foundation Libraries, and Enlightenment 
DR17. 

-While we are best known for the Enlightenment Window Manager itself there is a 
long history of providing advanced libraries and tools to support the window 
manager and other applications, such as Imlib, FNLib, and Imlib2, which extend 
far beyond the window manager itself in scope.

-Today, in development toward the DR17 Desktop Shell we have created an 
entirely new set of libraries and tools that provide more power and flexibility 
than any other group of graphical libraries available, which we refer to 
collectively as The Enlightenment Foundation Libraries. 

-http://enlightenment.org/i/rephorm-desktop.png";>http://enlightenment.org/i/tn2_rephorm-desktop.png"; class="shot" 
height="50" width="300" />  Enlightenment Window 
Manager

- Version 0.16 of the Enlightenment window manager was released in 2000, 
along with its dependencies Imlib and Fnlib, and remains in heavy usage today. 
While rumors of its death still circulate, DR16.8.10 was released on October 
6th, 2007, and it remains in development today with a long life still ahead of 
it.

-DR16 has been the choice of power users and artists due to its low overhead, 
highly graphical, widely theme-able, extremely configurable, yet unobtrusive 
interface. Nearly all functions of the window manager can be handled without 
mouse input, including application launching via 

-http://sourceforge.net/project/showfiles.php?group_id=2";>e16keyedit. 
It also remains highly portable, with ports avalible for Linux on all 
platforms, FreeBSD, IRIX, Solaris X86 and Sparc, HP-UX, AIX, OS/2, and more. 
  

- Imlib has lived a long life, still in heavy usage today, as one of the 
most popular image manipulation and rendering libs available. 

-Its development was taken over by the GNOME project and used as GNOMEs 
rendering engine until it was replaced with GdkPixbuf in GNOME 2.0. It's 
popularity surpasses just development in C thanks to bindings for several 
scripting languages including PERL, Python, and Ruby.   

-http://enlightenment.org/i/benr-desktop.png";>http://enlightenment.org/i/tn2_benr-desktop.png"; class="shot" height="50" 
width="300" />

-Enlightenment Foundation Libraries

- In developing DR17 it was made clear that we needed an entirely new set of 
libraries and tools. Raster had a bold vision of what was possible and where he 
wanted the next release to go, starting with Imlib2 and EVAS, and eventually 
growing into new libraries largely based on or around EVAS. 

-It became clear that the usefulness of these libraries and tools went far 
beyond the DR17 release itself, just as Imlib did in DR16. Thus the collective 
library back-end of DR17 was given the independent title: the Enlightenment 
Foundation Libraries, or EFL for short.   

- The EFL contains solutions for almost any graphical interface task, far 
beyond just rendering images. EVAS provides a highly optimized canvas library. 
Ecore provides a simple and modular abstraction interface and advanced event 
management including timers.

-Etox provides a complex text layout library complete with theme-able text 
stylization capabilities (previously Estyle). EDB provides a compact database 
format for intuitive and easy configuration management, including the storing 
of binaries. 

-EET provides an integrated and flexible container that ends the traditions of 
providing themes in tarballs. Edje provides a revolutionary library and tool 
set for completely abstracting application interfaces from their code, 
including a complex and flexible method of designing interfaces. 

-EWL provides a complete widget library built on all the other components of 
the EFL. And more!   http://enlightenment.org/i/trill-desktop.png";>http://enlightenment.org/i/tn2_trill-desktop.png"; class="shot" height="50" 
width="300" />

-Enlightenment DR17

- Development Release 17 of the Enlightenment window manager represents an 
evolution into the next generation of desktop environments: the desktop shell. 
DR17 will provide integration between files and your environment in a seamless 
manne

E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/about/e16


Modified Files:
en-body en-label en-title 


Log Message:
- new structure and text for website

===
RCS file: /cvs/e/web/www/p/about/e16/en-body,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- en-body 22 Apr 2007 18:03:51 -  1.3
+++ en-body 8 Nov 2007 06:47:39 -   1.4
@@ -1,13 +1,113 @@
 
-
-
+ 
+  
+   
+Enlightenment DR16
 
-Enlightenment DR16
+The Enlightenment Window Manager was first released in 1997 by Carsten 
"Rasterman" Haitzler
 
-The Enlightenment Window Manager was first released in 1997 by Carsten 
"Rasterman" Haitzler
-
- It's release revolutionized the face of desktops 
on UNIX platforms and beyond, featuring a more graphically stimulating 
enviroment than ever previously seen on a conventional desktop. Since that time 
the window manager has been emulated and has driven the graphical appeal we see 
on desktops everywhere. In 2000, the latest major release occured with the 
release of DR16.0, a release that remains in heavy usage today. In 2003 Kim 
"kwo" Woelders took over management of the DR16 codebase and released 
DR16.6, improving opon the window manager and modernizing its dependencies, and 
even now the DR16 window manager has a long life ahead of itself, even after 
the release of DR17.http://enlightenment.sourceforge.net/Enlightenment/DR-16/images/_images/spongebob.png";
 />http://enlightenment.sourceforge.net/Enlightenment/DR-16/images/_images/spongebob1.png";
 />http://enlightenmen
 t.sourceforge.net/Enlightenment/DR16/images/_images/spongebob1.png" 
target="_self" />http://enlightenment.sourceforge.net/Enlightenment/DR16/images/_images/spongebob1.jpg";
 target="_self">http://enlightenment.sourceforge.net/Enlightenment/DR16/images/_images/e16_1.jpg";
 class="shot" />The Enlightenment DR16 Window Manager is a 
robust, flexable, highly configurable, graphically rich yet unobtrusive desktop 
enviroment for the X11 windowing system. It is fully themable and easily 
configured. There are a wide range of configuration options to suite any taste. 
DR16 provides an innovate way of managing applications found no where else, 
allowing for not only virtual desktops, but also multiple desktops (a seperate 
set of virtual desktops). A unique snapshoting pager allows for easy management 
of application placement and even will zoom on on mouse-over of a window in the 
pager for easily locating applications. Support exi
 sts for up to 32 multiple desktops, and virtual desktops up to 8x8 in size! 
(Thats 2048 possible desktops!) Standard options such as focus settings and 
autoraise are extremely configurable to fit your individual tastes. Several 
diffrent types of move and resize effects exist, including Opaque, Technical, 
Box, Shaded, Semi-solid, and Translucent, depending on your preference and CPU 
requirements. "Remember" settings can be assigned to each window 
allowing it to be placed and configured just as you want on each startup of the 
window manager without having to edit any files. Windows can be individually 
configured to meet any desire, to change stacking payers, border styles, window 
size, grouping, tab skip, stickiness, and more. And EESH, the Enlightenment 
Shell, allows for complete remote control of the window manager and easy 
scripting.http://enlightenment.sourceforge.net/Enlightenment/DR-16/images/_images/shot4.png";
 />http://enlightenment.sourceforge.net/Enlightenment/DR16/images/_images/shot4.png";
 target="_self">http://enlightenment.sourceforge.net/Enlightenment/DR16/images/_images/e16_2.png";
 class="shot" />The menu system is flexable, providing easy 
access to applications, theme selection, documentation, settings, and 
background selection. DR16 uniquely allows background selection to be done from 
the main menu system using thumbnailed views of the background providing a 
quick and easy way to change wallpaper. In addition, desktop "FX" 
exist that can add a unique flare, including a ripple effect at the base of 
your desktop.  http://enlightenment.sourceforge.net/Enlightenment/DR-16/images/_images/shot_09-12-03_193147.png";
 />http://enlightenment.sourceforge.net/Enlightenment/DR-16/images/_images/shot_09-12-03_193147.jpg";
 />http://enlightenment.sourceforg
 e.net/Enlightenment/DR16/images/_images/shot_09-12-03_193147.jpg" 
target="_self">http://enlightenment.sourceforge.net/Enlightenment/DR16/images/_images/e16_3.jpg";
 class="shot" />A simple group of flat text files allow for 
easy editing of user appliation menus, including the ability to create 
hierarchical user menus to suite your various needs. At first startup DR16 will 
even scan for your KDE and GNOME menus to add an application menu for them. 
   http://enlightenment.sourceforge.net/Enlightenment/DR-16/images/_images/e16.6.jpg";
 />http://

E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/contribute


Added Files:
en-body en-title 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/about/libs


Removed Files:
en-body en-label en-title subs 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/download/e16


Removed Files:
en-body en-label en-title 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/about/people


Removed Files:
en-body en-label en-title subs 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/download/libs


Removed Files:
en-body en-label en-title 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/contact/devsmap


Added Files:
en-body en-label en-title 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/about/libs/efreet


Removed Files:
en-body en-label en-title 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/contact/usersmap


Added Files:
en-label link 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/about/libs/imlib2


Removed Files:
en-body en-label en-title 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/about/dev


Removed Files:
en-body en-label en-title 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/about/community


Removed Files:
en-body en-label en-title 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/about/sponsors


Added Files:
en-body en-label en-title 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/about/libs/etk


Removed Files:
en-body en-label en-title 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/download/dev


Removed Files:
en-body en-label en-title 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/about/libs/embryo


Removed Files:
en-body en-label en-title 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/about/people/usersmap


Removed Files:
en-body en-label en-title 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/about/libs/emotion


Removed Files:
en-body en-label en-title 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/about/libs/evas


Removed Files:
en-body en-label en-title 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/about/e17


Added Files:
en-body en-label en-title 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/about/libs/edbus


Removed Files:
en-body en-label en-title 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/about/libs/ewl


Removed Files:
en-body en-label en-title 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/about/libs/edje


Removed Files:
en-body en-label en-title 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/about/dev/d


Removed Files:
e17_about.png logo.png performance.png 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/about/libs/bindings


Removed Files:
en-body en-label en-title 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/about/libs/ecore


Removed Files:
en-body en-label en-title 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/about/efl


Added Files:
en-body en-label en-title 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/about/libs/eet


Removed Files:
en-body en-label en-title 


Log Message:
- new structure and text for website




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/about/e17




Log Message:
Directory /cvs/e/web/www/p/about/e17 added to the repository




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/about/sponsors




Log Message:
Directory /cvs/e/web/www/p/about/sponsors added to the repository




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/about/efl




Log Message:
Directory /cvs/e/web/www/p/about/efl added to the repository




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/contact




Log Message:
Directory /cvs/e/web/www/p/contact added to the repository




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/support




Log Message:
Directory /cvs/e/web/www/p/support added to the repository




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/contribute




Log Message:
Directory /cvs/e/web/www/p/contribute added to the repository




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/contact/usersmap




Log Message:
Directory /cvs/e/web/www/p/contact/usersmap added to the repository




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : web
Module  : www

Dir : web/www/p/contact/devsmap




Log Message:
Directory /cvs/e/web/www/p/contact/devsmap added to the repository




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl ningerso

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ningerso
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/bin/tests/button


Modified Files:
ewl_button.c 


Log Message:
Split up test cases into separate functions.
Clean up allocated widgets in each test case.

===
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/button/ewl_button.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- ewl_button.c8 Nov 2007 02:19:29 -   1.9
+++ ewl_button.c8 Nov 2007 06:02:12 -   1.10
@@ -29,7 +29,10 @@
 static int create_test(Ewl_Container *win);
 
 static int label_test_set_get(char *buf, int len);
-static int image_test_set_get(char *buf, int len);
+static int image_null_test_get(char *buf, int len);
+static int image_null_test_set_get(char *buf, int len);
+static int image_nonexist_relative_test_set_get(char *buf, int len);
+static int image_size_null_height_test_set_get(char *buf, int len);
 static int image_size_null_height_test_set_get(char *buf, int len);
 static int image_size_null_width_test_set_get(char *buf, int len);
 static int image_size_match_test_set_get(char *buf, int len);
@@ -38,7 +41,9 @@
 
 static Ewl_Unit_Test button_unit_tests[] = {
{"label set/get", label_test_set_get, -1, NULL},
-   {"image set/get", image_test_set_get, -1, NULL},
+   {"image null get", image_null_test_get, -1, NULL},
+   {"image null set/get", image_null_test_set_get, -1, NULL},
+   {"image nonexistent set/get", 
image_nonexist_relative_test_set_get, -1, NULL},
{"image size null height set/get", 
image_size_null_height_test_set_get, -1, NULL},
{"image size null width set/get", 
image_size_null_width_test_set_get, -1, NULL},
{"image size match set/get", image_size_match_test_set_get, -1, 
NULL},
@@ -227,11 +232,13 @@
else
ret = 1;
 
+   ewl_widget_destroy(button);
+
return ret;
 }
 
 static int
-image_test_set_get(char *buf, int len)
+image_null_test_get(char *buf, int len)
 {
Ewl_Widget *button;
int ret = 0;
@@ -243,17 +250,47 @@
else
ret = 1;
 
+   ewl_widget_destroy(button);
+
+   return ret;
+}
+
+static int
+image_null_test_set_get(char *buf, int len)
+{
+   Ewl_Widget *button;
+   const char *val;
+   int ret = 0;
+
+   button = ewl_button_new();
+
+   ewl_button_image_set(EWL_BUTTON(button), NULL, NULL);
+   val = ewl_button_image_get(EWL_BUTTON(button));
+   if (val)
+   snprintf(buf, len, "image_get %s when set to NULL", val);
+   else
+   ret = 1;
+
+   ewl_widget_destroy(button);
+
+   return ret;
+}
+
+static int
+image_nonexist_relative_test_set_get(char *buf, int len)
+{
+   Ewl_Widget *button;
+   int ret = 0;
+
+   button = ewl_button_new();
+
ewl_button_image_set(EWL_BUTTON(button), "my_image", NULL);
-   if (strcmp("my_image", ewl_button_image_get(EWL_BUTTON(button {
+   if (strcmp("my_image", ewl_button_image_get(EWL_BUTTON(button
snprintf(buf, len, "image_get dosen't match image_set");
-   ret = 0;
-   }
+   else
+   ret = 1;
 
-   ewl_button_image_set(EWL_BUTTON(button), NULL, NULL);
-   if (ewl_button_image_get(EWL_BUTTON(button))) {
-   snprintf(buf, len, "image_get not NULL when set to NULL");
-   ret = 0;
-   }
+   ewl_widget_destroy(button);
 
return ret;
 }
@@ -273,6 +310,8 @@
else
ret = 1;
 
+   ewl_widget_destroy(button);
+
return ret;
 }
 
@@ -291,6 +330,8 @@
else
ret = 1;
 
+   ewl_widget_destroy(button);
+
return ret;
 }
 
@@ -305,13 +346,13 @@
 
ewl_button_image_size_set(EWL_BUTTON(button), 32, 32);
ewl_button_image_size_get(EWL_BUTTON(button), &w, &h);
-   if (w != 32 || h != 32) {
+   if (w != 32 || h != 32)
snprintf(buf, len, "image_size_get width and height don't 
match");
-   ret = 0;
-   }
else
ret = 1;
 
+   ewl_widget_destroy(button);
+
return ret;
 }
 
@@ -325,13 +366,13 @@
button = ewl_button_new();
ewl_button_image_size_set(EWL_BUTTON(button), 30, 24);
ewl_button_image_size_get(EWL_BUTTON(button), &w, &h);
-   if (w != 30 || h != 24) {
+   if (w != 30 || h != 24)
snprintf(buf, len, "image_size_get width and height don't 
differ");
-   ret = 0;
-   }
else
ret = 1;
 
+   ewl_widget_destroy(button);
+
return ret;
 }
 
@@ -345,12 +386,12 @@
button = ewl_button_new();
ewl_button_image_size_set(EWL_BUTTON(button), INT_MAX, INT_MAX);
ewl_button_image_size_get(EWL_BUTTON(button), &w, &h);
-   if (w 

E CVS: slideshow englebass

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : slideshow

Dir : e_modules/slideshow


Modified Files:
autogen.sh 


Log Message:
needed for gettext

===
RCS file: /cvs/e/e_modules/slideshow/autogen.sh,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- autogen.sh  30 Mar 2007 20:44:32 -  1.6
+++ autogen.sh  8 Nov 2007 04:56:53 -   1.7
@@ -6,7 +6,7 @@
 touch README
 
 echo "Running autopoint..." ; autopoint -f || :
-echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS || exit 1
+echo "Running aclocal..." ; aclocal -I m4 $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize 
--automake) || exit 1



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: photo englebass

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : photo

Dir : e_modules/photo


Modified Files:
autogen.sh 


Log Message:
needed for gettext

===
RCS file: /cvs/e/e_modules/photo/autogen.sh,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- autogen.sh  27 May 2007 10:31:24 -  1.3
+++ autogen.sh  8 Nov 2007 04:56:53 -   1.4
@@ -10,7 +10,7 @@
po/Makefile
 
 echo "Running autopoint..." ; autopoint -f || :
-echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
+echo "Running aclocal..." ; aclocal -I m4 $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize 
--automake) || exit 1



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: snow englebass

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : snow

Dir : e_modules/snow


Modified Files:
autogen.sh 


Log Message:
needed for gettext

===
RCS file: /cvs/e/e_modules/snow/autogen.sh,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- autogen.sh  30 Mar 2007 20:48:21 -  1.3
+++ autogen.sh  8 Nov 2007 04:56:54 -   1.4
@@ -6,7 +6,7 @@
 touch README
 
 echo "Running autopoint..." ; autopoint -f || :
-echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS || exit 1
+echo "Running aclocal..." ; aclocal -I m4 $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize 
--automake) || exit 1



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: weather englebass

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : weather

Dir : e_modules/weather


Modified Files:
autogen.sh 


Log Message:
needed for gettext

===
RCS file: /cvs/e/e_modules/weather/autogen.sh,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- autogen.sh  30 Mar 2007 20:55:04 -  1.3
+++ autogen.sh  8 Nov 2007 04:56:54 -   1.4
@@ -6,7 +6,7 @@
 touch README
 
 echo "Running autopoint..." ; autopoint -f || :
-echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS || exit 1
+echo "Running aclocal..." ; aclocal -I m4 $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize 
--automake) || exit 1



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: rain englebass

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : rain

Dir : e_modules/rain


Modified Files:
autogen.sh 


Log Message:
needed for gettext

===
RCS file: /cvs/e/e_modules/rain/autogen.sh,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- autogen.sh  30 Mar 2007 20:36:29 -  1.5
+++ autogen.sh  8 Nov 2007 04:56:53 -   1.6
@@ -6,7 +6,7 @@
 touch README
 
 echo "Running autopoint..." ; autopoint -f || :
-echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS || exit 1
+echo "Running aclocal..." ; aclocal -I m4 $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize 
--automake) || exit 1



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: screenshot englebass

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : screenshot

Dir : e_modules/screenshot


Modified Files:
autogen.sh 


Log Message:
needed for gettext

===
RCS file: /cvs/e/e_modules/screenshot/autogen.sh,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- autogen.sh  30 Mar 2007 20:40:29 -  1.6
+++ autogen.sh  8 Nov 2007 04:56:53 -   1.7
@@ -6,7 +6,7 @@
 touch README
 
 echo "Running autopoint..." ; autopoint -f || :
-echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS || exit 1
+echo "Running aclocal..." ; aclocal -I m4 $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize 
--automake) || exit 1



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: taskbar englebass

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : taskbar

Dir : e_modules/taskbar


Modified Files:
autogen.sh 


Log Message:
needed for gettext

===
RCS file: /cvs/e/e_modules/taskbar/autogen.sh,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- autogen.sh  19 Apr 2007 00:32:46 -  1.4
+++ autogen.sh  8 Nov 2007 04:56:54 -   1.5
@@ -6,7 +6,7 @@
 touch README
 
 echo "Running autopoint..." ; autopoint -f || :
-echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS || exit 1
+echo "Running aclocal..." ; aclocal -I m4 $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize 
--automake) || exit 1



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: tclock englebass

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : tclock

Dir : e_modules/tclock


Modified Files:
autogen.sh 


Log Message:
needed for gettext

===
RCS file: /cvs/e/e_modules/tclock/autogen.sh,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- autogen.sh  29 Mar 2007 10:16:17 -  1.3
+++ autogen.sh  8 Nov 2007 04:56:54 -   1.4
@@ -6,7 +6,7 @@
 touch README
 
 echo "Running autopoint..." ; autopoint -f || :
-echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS || exit 1
+echo "Running aclocal..." ; aclocal -I m4 $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize 
--automake) || exit 1



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: uptime englebass

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : uptime

Dir : e_modules/uptime


Modified Files:
autogen.sh 


Log Message:
needed for gettext

===
RCS file: /cvs/e/e_modules/uptime/autogen.sh,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- autogen.sh  30 Mar 2007 20:51:30 -  1.3
+++ autogen.sh  8 Nov 2007 04:56:54 -   1.4
@@ -6,7 +6,7 @@
 touch README
 
 echo "Running autopoint..." ; autopoint -f || :
-echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS || exit 1
+echo "Running aclocal..." ; aclocal -I m4 $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize 
--automake) || exit 1



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: moon englebass

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : moon

Dir : e_modules/moon


Modified Files:
autogen.sh 


Log Message:
needed for gettext

===
RCS file: /cvs/e/e_modules/moon/autogen.sh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- autogen.sh  19 Apr 2007 00:32:46 -  1.2
+++ autogen.sh  8 Nov 2007 04:56:53 -   1.3
@@ -6,7 +6,7 @@
 touch README
 
 echo "Running autopoint..." ; autopoint -f || :
-echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
+echo "Running aclocal..." ; aclocal -I m4 $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize 
--automake) || exit 1



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mixer englebass

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : mixer

Dir : e_modules/mixer


Modified Files:
autogen.sh 


Log Message:
needed for gettext

===
RCS file: /cvs/e/e_modules/mixer/autogen.sh,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- autogen.sh  8 Nov 2007 04:45:41 -   1.4
+++ autogen.sh  8 Nov 2007 04:56:53 -   1.5
@@ -4,7 +4,7 @@
 rm -f aclocal.m4 ltmain.sh
 
 echo "Running autopoint..." ; autopoint -f || :
-echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
+echo "Running aclocal..." ; aclocal -I m4 $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize 
--automake) || exit 1



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mem englebass

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : mem

Dir : e_modules/mem


Modified Files:
autogen.sh 


Log Message:
needed for gettext

===
RCS file: /cvs/e/e_modules/mem/autogen.sh,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- autogen.sh  7 Nov 2007 21:19:45 -   1.4
+++ autogen.sh  8 Nov 2007 04:56:53 -   1.5
@@ -6,7 +6,7 @@
 touch README
 
 echo "Running autopoint..." ; autopoint -f || :
-echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
+echo "Running aclocal..." ; aclocal -I m4 $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize 
--automake) || exit 1



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: forecasts englebass

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : forecasts

Dir : e_modules/forecasts


Modified Files:
autogen.sh 


Log Message:
needed for gettext

===
RCS file: /cvs/e/e_modules/forecasts/autogen.sh,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- autogen.sh  7 Nov 2007 20:18:58 -   1.3
+++ autogen.sh  8 Nov 2007 04:56:52 -   1.4
@@ -6,7 +6,7 @@
 touch README
 
 echo "Running autopoint..." ; autopoint -f || :
-echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
+echo "Running aclocal..." ; aclocal -I m4 $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize 
--automake) || exit 1



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: net englebass

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : net

Dir : e_modules/net


Modified Files:
autogen.sh 


Log Message:
needed for gettext

===
RCS file: /cvs/e/e_modules/net/autogen.sh,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- autogen.sh  30 Mar 2007 21:20:34 -  1.5
+++ autogen.sh  8 Nov 2007 04:56:53 -   1.6
@@ -6,7 +6,7 @@
 touch README
 
 echo "Running autopoint..." ; autopoint -f || :
-echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
+echo "Running aclocal..." ; aclocal -I m4 $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize 
--automake) || exit 1



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: alarm englebass

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : alarm

Dir : e_modules/alarm


Modified Files:
autogen.sh 


Log Message:
needed for gettext

===
RCS file: /cvs/e/e_modules/alarm/autogen.sh,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- autogen.sh  7 Nov 2007 20:46:02 -   1.3
+++ autogen.sh  8 Nov 2007 04:56:52 -   1.4
@@ -6,7 +6,7 @@
 touch README
 
 echo "Running autopoint..." ; autopoint -f || :
-echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
+echo "Running aclocal..." ; aclocal -I m4 $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize 
--automake) || exit 1



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: language englebass

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : language

Dir : e_modules/language


Modified Files:
autogen.sh 


Log Message:
needed for gettext

===
RCS file: /cvs/e/e_modules/language/autogen.sh,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- autogen.sh  7 Nov 2007 20:27:41 -   1.5
+++ autogen.sh  8 Nov 2007 04:56:52 -   1.6
@@ -6,7 +6,7 @@
 touch README
 
 echo "Running autopoint..." ; autopoint -f || :
-echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
+echo "Running aclocal..." ; aclocal -I m4 $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize 
--automake) || exit 1



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mail englebass

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : mail

Dir : e_modules/mail


Modified Files:
autogen.sh 


Log Message:
needed for gettext

===
RCS file: /cvs/e/e_modules/mail/autogen.sh,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- autogen.sh  7 Nov 2007 18:36:43 -   1.4
+++ autogen.sh  8 Nov 2007 04:56:53 -   1.5
@@ -6,7 +6,7 @@
 touch README
 
 echo "Running autopoint..." ; autopoint -f || :
-echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
+echo "Running aclocal..." ; aclocal -I m4 $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize 
--automake) || exit 1



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: emu englebass

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : emu

Dir : e_modules/emu


Modified Files:
autogen.sh 


Log Message:
needed for gettext

===
RCS file: /cvs/e/e_modules/emu/autogen.sh,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- autogen.sh  19 Apr 2007 00:32:45 -  1.3
+++ autogen.sh  8 Nov 2007 04:56:52 -   1.4
@@ -6,7 +6,7 @@
 touch README
 
 echo "Running autopoint..." ; autopoint -f || :
-echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
+echo "Running aclocal..." ; aclocal -I m4 $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize 
--automake) || exit 1



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: flame englebass

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : flame

Dir : e_modules/flame


Modified Files:
autogen.sh 


Log Message:
needed for gettext

===
RCS file: /cvs/e/e_modules/flame/autogen.sh,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- autogen.sh  7 Nov 2007 18:07:44 -   1.4
+++ autogen.sh  8 Nov 2007 04:56:52 -   1.5
@@ -6,7 +6,7 @@
 touch README
 
 echo "Running autopoint..." ; autopoint -f || :
-echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
+echo "Running aclocal..." ; aclocal -I m4 $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize 
--automake) || exit 1



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: cpu englebass

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : cpu

Dir : e_modules/cpu


Modified Files:
autogen.sh 


Log Message:
needed for gettext

===
RCS file: /cvs/e/e_modules/cpu/autogen.sh,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- autogen.sh  7 Nov 2007 19:51:55 -   1.4
+++ autogen.sh  8 Nov 2007 04:56:52 -   1.5
@@ -4,7 +4,7 @@
 rm -f aclocal.m4 ltmain.sh
 
 echo "Running autopoint..." ; autopoint -f || :
-echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
+echo "Running aclocal..." ; aclocal -I m4 $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize 
--automake) || exit 1



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: wlan englebass

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : wlan

Dir : e_modules/wlan


Modified Files:
autogen.sh 


Log Message:
needed for gettext

===
RCS file: /cvs/e/e_modules/wlan/autogen.sh,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- autogen.sh  30 Mar 2007 21:09:31 -  1.3
+++ autogen.sh  8 Nov 2007 04:56:54 -   1.4
@@ -6,7 +6,7 @@
 touch README
 
 echo "Running autopoint..." ; autopoint -f || :
-echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS || exit 1
+echo "Running aclocal..." ; aclocal -I m4 $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize 
--automake) || exit 1



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mixer englebass

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : mixer

Dir : e_modules/mixer


Modified Files:
autogen.sh 


Log Message:
need this for gettext

===
RCS file: /cvs/e/e_modules/mixer/autogen.sh,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- autogen.sh  31 Mar 2007 22:14:42 -  1.3
+++ autogen.sh  8 Nov 2007 04:45:41 -   1.4
@@ -4,7 +4,7 @@
 rm -f aclocal.m4 ltmain.sh
 
 echo "Running autopoint..." ; autopoint -f || :
-echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS || exit 1
+echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize 
--automake) || exit 1



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mixer englebass

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : mixer

Dir : e_modules/mixer/po


Modified Files:
it.po sv.po 


Log Message:
need this for gettext




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: penguins davemds

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : davemds
Project : e_modules
Module  : penguins

Dir : e_modules/penguins


Modified Files:
autogen.sh e_mod_config.c e_mod_config.h e_mod_main.c 
e_mod_main.h 


Log Message:
 Convert configuration dialog to the new api

===
RCS file: /cvs/e/e_modules/penguins/autogen.sh,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- autogen.sh  20 Oct 2007 13:14:50 -  1.1
+++ autogen.sh  8 Nov 2007 04:18:22 -   1.2
@@ -6,7 +6,7 @@
 touch README
 
 echo "Running autopoint..." ; autopoint -f || :
-echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS || exit 1
+echo "Running aclocal..." ; aclocal -I m4 $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize 
--automake) || exit 1
===
RCS file: /cvs/e/e_modules/penguins/e_mod_config.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- e_mod_config.c  2 Nov 2007 12:48:00 -   1.2
+++ e_mod_config.c  8 Nov 2007 04:18:22 -   1.3
@@ -20,26 +20,30 @@
 static void _fill_data(Population *pop, E_Config_Dialog_Data *cfdata);
 static void _ilist_cb_selected(void *data);
 
-void
-_config_penguin_module(E_Container *con, Population *pop)
+EAPI E_Config_Dialog *
+e_int_config_penguins_module(E_Container *con, const char *params __UNUSED__)
 {
E_Config_Dialog *cfd;
E_Config_Dialog_View *v;
char buf[4096];
-   
-   v = E_NEW(E_Config_Dialog_View, 1);
+   Population *pop;
 
-   if (v)
- {
-v->create_cfdata = _create_data;
-v->free_cfdata = _free_data;
-v->basic.apply_cfdata = _basic_apply_data;
-v->basic.create_widgets = _basic_create_widgets;
-   
-   snprintf(buf, sizeof(buf), "%s/module.edj", 
e_module_dir_get(pop->module));
-cfd = e_config_dialog_new(con, D_("Penguins Module"), "Penguins", 
"_e_modules_penguins_config_dialog", buf, 0, v, pop);
-pop->config_dialog = cfd;
- }
+   pop = penguins_mod->data;
+   if (e_config_dialog_find("E", "_e_mod_penguins_config_dialog")) return NULL;
+   v = E_NEW(E_Config_Dialog_View, 1);
+   
+   v->create_cfdata = _create_data;
+   v->free_cfdata = _free_data;
+   v->basic.apply_cfdata = _basic_apply_data;
+   v->basic.create_widgets = _basic_create_widgets;
+
+   snprintf(buf, sizeof(buf), "%s/e-module-penguins.edj", 
e_module_dir_get(pop->module));
+   cfd = e_config_dialog_new(con,
+_("Population Settings"),
+"E", "_e_mod_penguins_config_dialog",
+buf, 0, v, pop);
+   pop->config_dialog = cfd;
+   return cfd;
 }
 
 static void
@@ -83,35 +87,28 @@
 
pop = cfd->data;
o = e_widget_list_add(evas, 0, 0);
-
-   of = e_widget_framelist_add(evas, D_("Population Settings"), 0);

ob = e_widget_label_add(evas, D_("Number of penguins:"));
-   e_widget_framelist_object_append(of, ob);
+   e_widget_list_object_append(o, ob, 1, 1, 0.5);
ob = e_widget_slider_add(evas, 1, 0, D_("%1.0f"), 1, 50, 1, 0, NULL, 
&(cfdata->penguins_count), 200);
-   e_widget_framelist_object_append(of, ob);
+   e_widget_list_object_append(o, ob, 1, 1, 0.5);

ob = e_widget_label_add(evas, D_("Zoom factor:"));
-   e_widget_framelist_object_append(of, ob);
+   e_widget_list_object_append(o, ob, 1, 1, 0.5);
ob = e_widget_slider_add(evas, 1, 0, D_("%1.1f X"), 0.2, 3, 0.2, 0, 
&(cfdata->zoom), NULL, 200);
-   e_widget_framelist_object_append(of, ob);
+   e_widget_list_object_append(o, ob, 1, 1, 0.5);

ob = e_widget_label_add(evas, D_("Transparency:"));
-   e_widget_framelist_object_append(of, ob);
+   e_widget_list_object_append(o, ob, 1, 1, 0.5);
ob = e_widget_slider_add(evas, 1, 0, D_("%1.0f"), 50, 255, 1, 0, NULL, 
&(cfdata->alpha), 200);
-   e_widget_framelist_object_append(of, ob);
-   
-   
-   
-   
+   e_widget_list_object_append(o, ob, 1, 1, 0.5);

//Lista
ob = e_widget_label_add(evas, D_("Select population:"));
-   e_widget_framelist_object_append(of, ob);
+   e_widget_list_object_append(o, ob, 1, 1, 0.5);
ol = e_widget_ilist_add(evas, 24, 24, &(cfdata->theme));
 
e_widget_ilist_clear(ol);
-   e_widget_ilist_go(ol);

Evas_List *l;
int count;
@@ -127,9 +124,8 @@
   if (name)
   {
  oi = edje_object_add(evas);
- e_util_edje_icon_set(oi, "enlightenment/shelf_position_left");
  edje_object_file_set(oi, theme, "icon");
- printf("TEMA: %s (%s)\n", name, cfdata->theme);
+ //printf("TEMA: %s (%s)\n", name, cfdata->theme);
  e_widget_ilist_append(ol, oi, name, 
_ilist_cb_selected, theme, theme);
  if (strcmp(theme, cfdata->theme) == 0)
@@ -142,8 +138,7 @@
}
  

E CVS: penguins davemds

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : davemds
Project : e_modules
Module  : penguins

Dir : e_modules/penguins/po


Modified Files:
it.po 


Log Message:
 Convert configuration dialog to the new api




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/lib


Modified Files:
ewl_button.c 


Log Message:
- fix up test case warnings

===
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_button.c,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -3 -r1.53 -r1.54
--- ewl_button.c23 Aug 2007 05:26:50 -  1.53
+++ ewl_button.c8 Nov 2007 02:21:09 -   1.54
@@ -219,7 +219,8 @@
DRETURN(DLEVEL_STABLE);
}
 
-   if (!b->image_object) {
+   if (!b->image_object)
+   {
Ewl_Container *redir;
 
/*
@@ -300,12 +301,17 @@
 void
 ewl_button_image_size_get(Ewl_Button *b, int *width, int *height)
 {
+   int w = 0, h = 0;
+
DENTER_FUNCTION(DLEVEL_STABLE);
DCHECK_PARAM_PTR("b", b);
DCHECK_TYPE("b", b, EWL_BUTTON_TYPE);
 
-   if (!b->image_object)
-   ewl_image_size_get(EWL_IMAGE(b->image_object), width, height);
+   if (b->image_object)
+   ewl_image_size_get(EWL_IMAGE(b->image_object), &w, &h);
+
+   if (width) *width = w;
+   if (height) *height = h;
 
DLEAVE_FUNCTION(DLEVEL_STABLE);
 }



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl dj2

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/bin/tests/button


Modified Files:
ewl_button.c 


Log Message:
- fix test case

===
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/button/ewl_button.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- ewl_button.c7 Nov 2007 23:48:58 -   1.8
+++ ewl_button.c8 Nov 2007 02:19:29 -   1.9
@@ -325,7 +325,7 @@
button = ewl_button_new();
ewl_button_image_size_set(EWL_BUTTON(button), 30, 24);
ewl_button_image_size_get(EWL_BUTTON(button), &w, &h);
-   if (w != 32 || h != 24) {
+   if (w != 30 || h != 24) {
snprintf(buf, len, "image_size_get width and height don't 
differ");
ret = 0;
}



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl ningerso

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : ningerso
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/bin/tests/button


Modified Files:
ewl_button.c 


Log Message:
Add button unit tests.
Failures on image size querying need to be addressed.

===
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/button/ewl_button.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- ewl_button.c23 Aug 2007 05:26:43 -  1.7
+++ ewl_button.c7 Nov 2007 23:48:58 -   1.8
@@ -6,6 +6,8 @@
 #include "ewl_radiobutton.h"
 #include "ewl_separator.h"
 #include 
+#include 
+#include 
 
 /**
  * @addtogroup Ewl_Button
@@ -26,6 +28,25 @@
 
 static int create_test(Ewl_Container *win);
 
+static int label_test_set_get(char *buf, int len);
+static int image_test_set_get(char *buf, int len);
+static int image_size_null_height_test_set_get(char *buf, int len);
+static int image_size_null_width_test_set_get(char *buf, int len);
+static int image_size_match_test_set_get(char *buf, int len);
+static int image_size_differ_test_set_get(char *buf, int len);
+static int image_size_max_int_test_set_get(char *buf, int len);
+
+static Ewl_Unit_Test button_unit_tests[] = {
+   {"label set/get", label_test_set_get, -1, NULL},
+   {"image set/get", image_test_set_get, -1, NULL},
+   {"image size null height set/get", 
image_size_null_height_test_set_get, -1, NULL},
+   {"image size null width set/get", 
image_size_null_width_test_set_get, -1, NULL},
+   {"image size match set/get", image_size_match_test_set_get, -1, 
NULL},
+   {"image size differ set/get", image_size_differ_test_set_get, 
-1, NULL},
+   {"image size max int set/get", image_size_max_int_test_set_get, 
-1, NULL},
+   {NULL, NULL, -1, NULL}
+   };
+
 void
 test_info(Ewl_Test *test)
 {
@@ -37,6 +58,7 @@
test->filename = __FILE__;
test->func = create_test;
test->type = EWL_TEST_TYPE_SIMPLE;
+   test->unit_tests = button_unit_tests;
 }
 
 static int
@@ -191,3 +213,144 @@
return 1;
 }
 
+static int
+label_test_set_get(char *buf, int len)
+{
+   Ewl_Widget *button;
+   int ret = 0;
+
+   button = ewl_button_new();
+
+   ewl_button_label_set(EWL_BUTTON(button), "my_label");
+   if (strcmp("my_label", ewl_button_label_get(EWL_BUTTON(button
+   snprintf(buf, len, "label_get dosen't match label_set");
+   else
+   ret = 1;
+
+   return ret;
+}
+
+static int
+image_test_set_get(char *buf, int len)
+{
+   Ewl_Widget *button;
+   int ret = 0;
+
+   button = ewl_button_new();
+
+   if (ewl_button_image_get(EWL_BUTTON(button)))
+   snprintf(buf, len, "image_get not NULL");
+   else
+   ret = 1;
+
+   ewl_button_image_set(EWL_BUTTON(button), "my_image", NULL);
+   if (strcmp("my_image", ewl_button_image_get(EWL_BUTTON(button {
+   snprintf(buf, len, "image_get dosen't match image_set");
+   ret = 0;
+   }
+
+   ewl_button_image_set(EWL_BUTTON(button), NULL, NULL);
+   if (ewl_button_image_get(EWL_BUTTON(button))) {
+   snprintf(buf, len, "image_get not NULL when set to NULL");
+   ret = 0;
+   }
+
+   return ret;
+}
+
+static int
+image_size_null_height_test_set_get(char *buf, int len)
+{
+   Ewl_Widget *button;
+   int w = 0;
+   int ret = 0;
+
+   button = ewl_button_new();
+
+   ewl_button_image_size_get(EWL_BUTTON(button), &w, NULL);
+   if (w != 0)
+   snprintf(buf, len, "image_size_get width not 0");
+   else
+   ret = 1;
+
+   return ret;
+}
+
+static int
+image_size_null_width_test_set_get(char *buf, int len)
+{
+   Ewl_Widget *button;
+   int h = 0;
+   int ret = 0;
+
+   button = ewl_button_new();
+
+   ewl_button_image_size_get(EWL_BUTTON(button), NULL, &h);
+   if (h != 0)
+   snprintf(buf, len, "image_size_get height not 0");
+   else
+   ret = 1;
+
+   return ret;
+}
+
+static int
+image_size_match_test_set_get(char *buf, int len)
+{
+   Ewl_Widget *button;
+   int w = 0, h = 0;
+   int ret = 0;
+
+   button = ewl_button_new();
+
+   ewl_button_image_size_set(EWL_BUTTON(button), 32, 32);
+   ewl_button_image_size_get(EWL_BUTTON(button), &w, &h);
+   if (w != 32 || h != 32) {
+   snprintf(buf, len, "image_size_get width and height don't 
match");
+   ret = 0;
+   }
+   else
+   ret = 1;
+
+   return ret;
+}
+
+static int
+image_size_differ_test_set_get(char *buf, int len)
+{
+   Ewl_Widget *button;
+   int w = 0, h = 0;
+   int ret = 0;
+
+   button = ewl_button_new();
+   ewl_button_image_size_set(EWL_BUTTON(button), 30, 24);
+   ewl_button_image

E CVS: libs/ecore raster

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore


Modified Files:
Makefile.am configure.in 


Log Message:


As requested -

debian--, gendoc++

===
RCS file: /cvs/e/e17/libs/ecore/Makefile.am,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -3 -r1.38 -r1.39
--- Makefile.am 26 Aug 2007 11:17:20 -  1.38
+++ Makefile.am 7 Nov 2007 22:56:04 -   1.39
@@ -9,7 +9,6 @@
   ecore_docs.tar.gz ecore.c \
   README \
   ecore.spec \
-  debian/changelog \
   ecore-con.pc \
   ecore-config.pc \
   ecore-desktop.pc \
@@ -44,24 +43,7 @@
 ecore-win32.pc.in \
 ecore-sdl.pc.in \
 ecore.spec.in ecore.spec \
-debian/changelog \
-debian/changelog.in \
-debian/control \
-debian/copyright \
-debian/ecore0-bin.install \
-debian/libecore0-con.install \
-debian/libecore0-config.install \
-debian/libecore0-desktop.install \
-debian/libecore0-dev.install \
-debian/libecore0-evas.install \
-debian/libecore0-fb.install \
-debian/libecore0-file.install \
-debian/libecore0-ipc.install \
-debian/libecore0-job.install \
-debian/libecore0-txt.install \
-debian/libecore0-x.install \
-debian/libecore0.install \
-debian/rules
+doc gendoc
 
 if BUILD_ECORE_CON
 pcon = ecore-con.pc
===
RCS file: /cvs/e/e17/libs/ecore/configure.in,v
retrieving revision 1.237
retrieving revision 1.238
diff -u -3 -r1.237 -r1.238
--- configure.in6 Nov 2007 06:35:46 -   1.237
+++ configure.in7 Nov 2007 22:56:04 -   1.238
@@ -764,7 +764,6 @@
 src/lib/ecore_win32/Makefile
 README
 ecore.spec
-debian/changelog
 ])
 
 echo



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/embryo raster

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/embryo

Dir : e17/libs/embryo


Modified Files:
Makefile.am configure.in 


Log Message:


As requested -

debian--, gendoc++

===
RCS file: /cvs/e/e17/libs/embryo/Makefile.am,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- Makefile.am 1 Jul 2007 17:37:02 -   1.11
+++ Makefile.am 7 Nov 2007 22:56:05 -   1.12
@@ -7,8 +7,7 @@
   embryo_docs.tar.gz embryo.c \
   README \
   embryo.pc \
-  embryo.spec \
-  debian/changelog
+  embryo.spec
 
 bin_SCRIPTS = 
 
@@ -17,14 +16,7 @@
 README.in README \
 embryo.pc.in \
 embryo.spec.in embryo.spec \
-debian/changelog \
-debian/changelog.in \
-debian/control \
-debian/copyright \
-debian/embryo0-bin.install \
-debian/libembryo0-dev.install \
-debian/libembryo0.install \
-debian/rules
+doc gendoc
 
 pkgconfigdir = $(libdir)/pkgconfig
 pkgconfig_DATA = embryo.pc
===
RCS file: /cvs/e/e17/libs/embryo/configure.in,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -3 -r1.60 -r1.61
--- configure.in4 Nov 2007 09:44:15 -   1.60
+++ configure.in7 Nov 2007 22:56:05 -   1.61
@@ -72,7 +72,6 @@
 src/bin/Makefile
 README
 embryo.spec
-debian/changelog
 ])
 
 



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/efreet raster

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/efreet

Dir : e17/libs/efreet


Modified Files:
Makefile.am configure.in 


Log Message:


As requested -

debian--, gendoc++

===
RCS file: /cvs/e/e17/libs/efreet/Makefile.am,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- Makefile.am 2 Jul 2007 22:01:44 -   1.6
+++ Makefile.am 7 Nov 2007 22:56:05 -   1.7
@@ -3,8 +3,7 @@
 MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess \
config.h.in config.sub configure install-sh \
ltconfig ltmain.sh missing mkinstalldirs \
-   stamp-h.in debian/changelog depcomp 
efreet_doxy_warnings.txt \
-   debian/changelog
+   stamp-h.in depcomp efreet_doxy_warnings.txt
 
 pkgconfigdir = $(libdir)/pkgconfig
 pkgconfig_DATA = efreet.pc efreet-mime.pc
===
RCS file: /cvs/e/e17/libs/efreet/configure.in,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -3 -r1.17 -r1.18
--- configure.in7 Nov 2007 05:42:07 -   1.17
+++ configure.in7 Nov 2007 22:56:05 -   1.18
@@ -76,6 +76,5 @@
 src/bin/data/Makefile
 src/bin/data/sub/Makefile
 src/bin/compare/Makefile
-debian/changelog
 ], []
 )



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/eet raster

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/eet

Dir : e17/libs/eet


Modified Files:
Makefile.am configure.in 


Log Message:


As requested -

debian--, gendoc++

===
RCS file: /cvs/e/e17/libs/eet/Makefile.am,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -3 -r1.31 -r1.32
--- Makefile.am 22 Mar 2007 17:07:46 -  1.31
+++ Makefile.am 7 Nov 2007 22:56:04 -   1.32
@@ -7,20 +7,14 @@
   eet_docs.tar.gz \
   README \
   eet.pc \
-  eet.spec \
-  debian/changelog
+  eet.spec
 
 EXTRA_DIST = AUTHORS COPYING COPYING-PLAIN eet.c.in \
 README.in README \
 eet.pc.in \
 eet.spec.in eet.spec \
-debian/changelog \
-debian/changelog.in \
-debian/control \
-debian/copyright \
-debian/libeet0-dev.install \
-debian/libeet0.install \
-debian/rules
+Doxyfile \
+doc gendoc
 
 pkgconfigdir = $(libdir)/pkgconfig
 pkgconfig_DATA = eet.pc
===
RCS file: /cvs/e/e17/libs/eet/configure.in,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -3 -r1.79 -r1.80
--- configure.in4 Nov 2007 09:10:49 -   1.79
+++ configure.in7 Nov 2007 22:56:04 -   1.80
@@ -97,7 +97,6 @@
 src/bin/Makefile
 README
 eet.spec
-debian/changelog
 ])
 
 



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/e_dbus raster

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/e_dbus

Dir : e17/libs/e_dbus


Modified Files:
configure.in 


Log Message:


As requested -

debian--, gendoc++

===
RCS file: /cvs/e/e17/libs/e_dbus/configure.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- configure.in7 Nov 2007 05:42:07 -   1.3
+++ configure.in7 Nov 2007 22:56:04 -   1.4
@@ -51,7 +51,6 @@
 src/bin/Makefile
 edbus.pc
 ehal.pc
-debian/changelog
 ])
 
 



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/edje raster

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/edje

Dir : e17/libs/edje


Modified Files:
Makefile.am configure.in 


Log Message:


As requested -

debian--, gendoc++

===
RCS file: /cvs/e/e17/libs/edje/Makefile.am,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -3 -r1.23 -r1.24
--- Makefile.am 4 Nov 2007 09:53:29 -   1.23
+++ Makefile.am 7 Nov 2007 22:56:04 -   1.24
@@ -4,7 +4,7 @@
config.h.in config.sub configure install-sh \
   ltconfig ltmain.sh missing mkinstalldirs \
   stamp-h.in edje_docs.tar edje_docs.tar.gz edje.c \
-  debian/changelog edje.spec depcomp compile
+  edje.spec depcomp compile
 
 ### this is all fine and great - but edje should not be going and installing
 ### data in another software's data dir - it's just wrong. not to mention this
@@ -17,12 +17,8 @@
 bin_SCRIPTS = 
 
 EXTRA_DIST = README AUTHORS COPYING COPYING-PLAIN edje.spec \
-   edje.spec.in edje.pc.in edje.c.in gendoc Doxyfile \
-   debian/changelog \
-   debian/changelog.in \
-   debian/control debian/rules debian/copyright \
-   debian/libedje0.install debian/edje0-bin.install \
-   debian/libedje0-dev.install
+   edje.spec.in edje.pc.in edje.c.in Doxyfile \
+   doc gendoc
 
 pkgconfigdir = $(libdir)/pkgconfig
 pkgconfig_DATA = edje.pc
===
RCS file: /cvs/e/e17/libs/edje/configure.in,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -3 -r1.90 -r1.91
--- configure.in7 Nov 2007 22:03:45 -   1.90
+++ configure.in7 Nov 2007 22:56:04 -   1.91
@@ -146,7 +146,6 @@
 src/Makefile
 src/lib/Makefile
 src/bin/Makefile
-debian/changelog
 ])
 
 



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e raster

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/e

Dir : e17/apps/e


Modified Files:
Makefile.am configure.in 


Log Message:


As requested -

debian--, gendoc++

===
RCS file: /cvs/e/e17/apps/e/Makefile.am,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -3 -r1.33 -r1.34
--- Makefile.am 27 Jan 2007 06:00:58 -  1.33
+++ Makefile.am 7 Nov 2007 22:56:01 -   1.34
@@ -3,21 +3,13 @@
 MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess \
config.h.in config.sub configure install-sh \
   ltconfig ltmain.sh missing mkinstalldirs \
-  stamp-h.in acconfig.h debian/changelog \
+  stamp-h.in acconfig.h \
   enlightenment.spec
 
 bin_SCRIPTS = enlightenment-config
 
 EXTRA_DIST = config.rpath  README AUTHORS COPYING COPYING-PLAIN \
- enlightenment.spec.in enlightenment.spec \
-debian/changelog \
-debian/changelog.in \
-debian/control \
-debian/copyright \
-debian/enlightenment.install \
-debian/enlightenment-dev.install \
-debian/enlightenment.docs \
-debian/rules
+ enlightenment.spec.in enlightenment.spec
 
 filesdir = $(datadir)/enlightenment/
 files_DATA = AUTHORS COPYING 
===
RCS file: /cvs/e/e17/apps/e/configure.in,v
retrieving revision 1.189
retrieving revision 1.190
diff -u -3 -r1.189 -r1.190
--- configure.in6 Nov 2007 18:37:52 -   1.189
+++ configure.in7 Nov 2007 22:56:01 -   1.190
@@ -357,7 +357,6 @@
 doc/Makefile
 po/Makefile.in
 enlightenment-config
-debian/changelog
 ],[
 chmod +x enlightenment-config
 ])



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/evas raster

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/evas

Dir : e17/libs/evas


Modified Files:
Makefile.am configure.in 


Log Message:


As requested -

debian--, gendoc++

===
RCS file: /cvs/e/e17/libs/evas/Makefile.am,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -3 -r1.47 -r1.48
--- Makefile.am 28 Oct 2007 14:11:56 -  1.47
+++ Makefile.am 7 Nov 2007 22:56:05 -   1.48
@@ -26,8 +26,7 @@
   evas-direct3d.pc \
   evas-software-sdl.pc \
   evas.pc \
-  evas.spec \
-  debian/changelog
+  evas.spec
 
 bin_SCRIPTS = 
 
@@ -54,33 +53,7 @@
 evas-software-sdl.pc \
 evas.pc \
 evas.spec.in evas.spec \
-debian/changelog \
-debian/changelog.in \
-debian/control \
-debian/copyright \
-debian/libevas0-all.install \
-debian/libevas0-dev.install \
-debian/libevas0-engine-buffer.install \
-debian/libevas0-engine-fb.install \
-debian/libevas0-engine-software-generic.install \
-debian/libevas0-engine-software-x11.install \
-debian/libevas0-engine-xrender.install \
-debian/libevas0-engines-all.install \
-debian/libevas0-loader-eet.install \
-debian/libevas0-loader-gif.install \
-debian/libevas0-loader-jpeg.install \
-debian/libevas0-loader-png.install \
-debian/libevas0-loader-svg.install \
-debian/libevas0-loader-tiff.install \
-debian/libevas0-loader-xpm.install \
-debian/libevas0-loaders-all.install \
-debian/libevas0-saver-eet.install \
-debian/libevas0-saver-jpeg.install \
-debian/libevas0-saver-png.install \
-debian/libevas0-saver-tiff.install \
-debian/libevas0-savers-all.install \
-debian/libevas0.install \
-debian/rules
+doc gendoc
 
 if BUILD_ENGINE_SOFTWARE_X11
 psoftwarex11 = evas-software-x11.pc
===
RCS file: /cvs/e/e17/libs/evas/configure.in,v
retrieving revision 1.242
retrieving revision 1.243
diff -u -3 -r1.242 -r1.243
--- configure.in7 Nov 2007 05:31:17 -   1.242
+++ configure.in7 Nov 2007 22:56:05 -   1.243
@@ -1449,7 +1449,6 @@
 src/lib/include/Makefile
 README
 evas.spec
-debian/changelog
 ])
 
 #



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e raster

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/e

Dir : e17/apps/e/po


Modified Files:
bg.po ca.po de.po eo.po fr.po hu.po it.po ja.po ko.po pt_BR.po 
ru.po sl.po zh_TW.po 


Log Message:


As requested -

debian--, gendoc++




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: language englebass

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : language

Dir : e_modules/language


Modified Files:
configure.in 


Log Message:
fix header check

===
RCS file: /cvs/e/e_modules/language/configure.in,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -3 -r1.19 -r1.20
--- configure.in7 Nov 2007 20:30:28 -   1.19
+++ configure.in7 Nov 2007 22:08:56 -   1.20
@@ -138,9 +138,14 @@
 
 #AC_CHECK_HEADERS(EXML.h,, AC_MSG_ERROR([Cannot find EXML.h. Make sure your 
CFLAGS environment variable contains include lines for the location of this 
file and EXML lib is installed]))
 
-AC_CHECK_HEADERS(X11/XKBlib.h,, AC_MSG_ERROR([Cannot find XKBlib.h. Make sure 
your CFLAGS environment variable contains include lines for the location of 
this file.]))
+AC_CHECK_HEADERS(X11/XKBlib.h, ,
+AC_MSG_ERROR([Cannot find XKBlib.h. Make sure your CFLAGS 
environment variable contains include lines for the location of this file.]))
 
-AC_CHECK_HEADERS(X11/extensions/XKBrules.h,, AC_MSG_ERROR([Cannot find 
XKBrules.h. Make sure your CFLAGS environment variable contains include lines 
for the location of this file.]))
+AC_CHECK_HEADERS(X11/extensions/XKBrules.h,, AC_MSG_ERROR([Cannot find 
XKBrules.h. Make sure your CFLAGS environment variable contains include lines 
for the location of this file.]),
+[
+   #include 
+   #include 
+])
 
 AC_OUTPUT([
 e_modules-language.spec



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: e kwo

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/scripts


Modified Files:
Makefile.am 


Log Message:
Autofoo cleanups, move to bindir, pkgdatadir and friends.

===
RCS file: /cvs/e/e16/e/scripts/Makefile.am,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -3 -r1.16 -r1.17
--- Makefile.am 9 Nov 2005 20:36:35 -   1.16
+++ Makefile.am 7 Nov 2007 22:05:18 -   1.17
@@ -1,5 +1,5 @@
+scriptdir = $(pkgdatadir)/scripts
 
-EXTRA_DIST = e_gen_menu e_cache_clean e_cache_query session.sh
 script_SCRIPTS = e_gen_menu e_cache_clean e_cache_query session.sh
 
-scriptdir = $(ENLIGHTENMENT_ROOT)/scripts
+EXTRA_DIST = $(script_SCRIPTS)



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: e kwo

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/lib


Modified Files:
Makefile.am 


Log Message:
Autofoo cleanups, move to bindir, pkgdatadir and friends.

===
RCS file: /cvs/e/e16/e/lib/Makefile.am,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- Makefile.am 6 Sep 2007 16:02:48 -   1.2
+++ Makefile.am 7 Nov 2007 22:05:18 -   1.3
@@ -1,8 +1,6 @@
-MAINTAINERCLEANFILES   = Makefile.in
+libe16dir = $(pkglibdir)
 
 if BUILD_ROOTHACKLIB
-
-libe16dir = $(libdir)/e16
 
 libe16_LTLIBRARIES = libhack.la
 



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: e kwo

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/misc


Modified Files:
Makefile.am 


Log Message:
Autofoo cleanups, move to bindir, pkgdatadir and friends.

===
RCS file: /cvs/e/e16/e/misc/Makefile.am,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- Makefile.am 5 Jun 2007 16:50:29 -   1.8
+++ Makefile.am 7 Nov 2007 22:05:18 -   1.9
@@ -6,7 +6,7 @@
 
 bin_SCRIPTS = starte16
 
-miscdir = $(ENLIGHTENMENT_ROOT)/misc
+miscdir = $(pkgdatadir)/misc
 misc_DATA = $(ICONS) $(DESKTOPS)
 misc_SCRIPTS = $(XCLIENTS)
 



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: e kwo

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/src


Modified Files:
Makefile.am actions.c misc.c 


Log Message:
Autofoo cleanups, move to bindir, pkgdatadir and friends.

===
RCS file: /cvs/e/e16/e/src/Makefile.am,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -3 -r1.94 -r1.95
--- Makefile.am 3 Nov 2007 11:57:31 -   1.94
+++ Makefile.am 7 Nov 2007 22:05:18 -   1.95
@@ -114,7 +114,11 @@
$(ECORE_CFLAGS) \
$(MODULE_CFLAGS) \
$(IMLIB2_CFLAGS) \
-   $(X_CFLAGS)
+   $(X_CFLAGS) \
+   -D LOCALEDIR=\"$(localedir)\" \
+   -D ENLIGHTENMENT_BIN=\"$(bindir)\" \
+   -D ENLIGHTENMENT_LIB=\"$(pkglibdir)\" \
+   -D ENLIGHTENMENT_ROOT=\"$(pkgdatadir)\"
 
 LDADD = \
$(LTLIBINTL)\
@@ -134,7 +138,7 @@
 
 e16_LDFLAGS = -export-dynamic
 
-libe16dir = $(libdir)/e16
+libe16dir = $(pkglibdir)
 
 libe16_LTLIBRARIES = $(LIBSND_ESD) $(LIBFNT_IFT) $(LIBFNT_XFT) $(LIBFNT_PANGO)
 
@@ -176,10 +180,3 @@
 
 endif
 
-install-data-local:
-   $(top_srcdir)/mkinstalldirs $(DESTDIR)$(ENLIGHTENMENT_ROOT)/themes
-
-uninstall-local:
-   for i in $(bin_PROGRAMS); do \
- rm -f $(exec_prefix)/bin/$$i; \
-   done
===
RCS file: /cvs/e/e16/e/src/actions.c,v
retrieving revision 1.217
retrieving revision 1.218
diff -u -3 -r1.217 -r1.218
--- actions.c   22 Sep 2007 10:21:17 -  1.217
+++ actions.c   7 Nov 2007 22:05:18 -   1.218
@@ -60,7 +60,7 @@
 
 #if USE_ROOTHACKLIB
if (Mode.wm.window)
-  Esetenv("LD_PRELOAD", ENLIGHTENMENT_LIB "/e16/libhack.so");
+  Esetenv("LD_PRELOAD", ENLIGHTENMENT_LIB "/libhack.so");
 #endif
 }
 
===
RCS file: /cvs/e/e16/e/src/misc.c,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -3 -r1.79 -r1.80
--- misc.c  12 Sep 2007 21:33:50 -  1.79
+++ misc.c  7 Nov 2007 22:05:18 -   1.80
@@ -332,8 +332,7 @@
charbuf[1024];
void   *h;
 
-   Esnprintf(buf, sizeof(buf), "%s/e16/lib%s_%s.so",
-ENLIGHTENMENT_LIB, lib, name);
+   Esnprintf(buf, sizeof(buf), "%s/lib%s_%s.so", ENLIGHTENMENT_LIB, lib, name);
if (EDebug(1))
   Eprintf("ModLoad %s\n", buf);
h = dlopen(buf, RTLD_NOW | RTLD_LOCAL);



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: e kwo

2007-11-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/config/pix


Modified Files:
Makefile.am 


Log Message:
Autofoo cleanups, move to bindir, pkgdatadir and friends.

===
RCS file: /cvs/e/e16/e/config/pix/Makefile.am,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- Makefile.am 6 Jan 2007 05:09:28 -   1.2
+++ Makefile.am 7 Nov 2007 22:05:17 -   1.3
@@ -1,4 +1,4 @@
-epixdir = $(ENLIGHTENMENT_ROOT)/config/pix
+epixdir = $(pkgdatadir)/config/pix
 
 epix_DATA = wait1.png wait2.png wait3.png wait4.png \
 wait5.png wait6.png wait7.png wait8.png \



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


  1   2   3   >