[E-devel] Re: Ecore: configure still fails

2005-06-13 Thread Andreas 'GlaDiaC' Schneider
> Result from `evas-config --cflags` is not added to gcc command line.
What"s > wrong ??
>
> I'm waiting for your comments ;) !
>
> Best regards,
> Michel
>

There's a CFLAGS definition missing in configure.in

line ~506
AC_CHECK_HEADER(Evas_Engine_GL_X11.h,

should be
CFLAGS=$evas_cflags
AC_CHECK_HEADER(Evas_Engine_GL_X11.h,


Cheers,

 -- andreas


---
This SF.Net email is sponsored by: NEC IT Guy Games.  How far can you shotput
a projector? How fast can you ride your desk chair down the office luge track?
If you want to score the big prize, get to know the little guy.  
Play to win an NEC 61" plasma display: http://www.necitguy.com/?r=20
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Re: Ecore: configure still fails

2005-06-13 Thread Simon Poole

Andreas 'GlaDiaC' Schneider wrote:

There's a CFLAGS definition missing in configure.in

line ~506
AC_CHECK_HEADER(Evas_Engine_GL_X11.h,

should be
CFLAGS=$evas_cflags
AC_CHECK_HEADER(Evas_Engine_GL_X11.h,



You should change CFLAGS back after the various 
AC_CHECK_HEADER(Evas*.h,...) tests are through. e.g.:


PCFLAGS=$CFLAGS
CFLAGS=$evas_cflags
...
...
...
CFLAGS=$PCFLAGS

--
Simon Poole
www.appliancestudio.com




---
This SF.Net email is sponsored by: NEC IT Guy Games.  How far can you shotput
a projector? How fast can you ride your desk chair down the office luge track?
If you want to score the big prize, get to know the little guy.  
Play to win an NEC 61" plasma display: http://www.necitguy.com/?r=20

___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] [PATCH] ecore: /examples/ fails to build

2005-06-13 Thread Simon Poole
I still get a build problem on ecore/examples/.   The attached patches 
fix the problem.  The first patch is for CVS (patches Makefile.am), the 
second for anyone using the ecore-0.9.9.010 snapshot (patches Makefile.in)


Build trace of the failure is:

arm-9tdmi-linux-gnu-gcc -g -O2 -Wall -o .libs/con_client_example 
con_client_example.o  ../src/lib/ecore/.libs/libecore.so ../src/lib/ecore_con/.libs/libecore_con.so

creating con_client_example
arm-9tdmi-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include 
-I../src/lib/ecore -I../src/lib/ecore_config -I../src/lib/ecore_x 
-I../src/lib/ecore_con -g -O2 -Wall -c config_basic_example.c
/bin/sh ../libtool --mode=link arm-9tdmi-linux-gnu-gcc  -g -O2 -Wall  -o config_basic_example  config_basic_example.o ../src/lib/ecore/libecore.la ../src/lib/ecore_config/libecore_config.la 
arm-9tdmi-linux-gnu-gcc -g -O2 -Wall -o .libs/config_basic_example config_basic_example.o  ../src/lib/ecore/.libs/libecore.so ../src/lib/ecore_config/.libs/libecore_config.so

/tools.cross/arm-9tdmi-linux-gnu/bin/../lib/gcc-lib/arm-9tdmi-linux-gnu/3.3.4/../../../../arm-9tdmi-linux-gnu/bin/ld:
 warning: libecore_ipc.so.1, needed by 
../src/lib/ecore_config/.libs/libecore_config.so, not found (try using -rpath 
or -rpath-link)
../src/lib/ecore_config/.libs/libecore_config.so: undefined reference to 
`ecore_ipc_init'
../src/lib/ecore_config/.libs/libecore_config.so: undefined reference to 
`ecore_ipc_shutdown'
../src/lib/ecore_config/.libs/libecore_config.so: undefined reference to 
`ECORE_IPC_EVENT_CLIENT_ADD'
../src/lib/ecore_config/.libs/libecore_config.so: undefined reference to 
`ecore_ipc_client_send'
../src/lib/ecore_config/.libs/libecore_config.so: undefined reference to 
`ECORE_IPC_EVENT_CLIENT_DATA'
../src/lib/ecore_config/.libs/libecore_config.so: undefined reference to 
`ecore_ipc_server_add'
../src/lib/ecore_config/.libs/libecore_config.so: undefined reference to 
`ecore_ipc_client_server_get'
../src/lib/ecore_config/.libs/libecore_config.so: undefined reference to 
`ECORE_IPC_EVENT_CLIENT_DEL'
../src/lib/ecore_config/.libs/libecore_config.so: undefined reference to 
`ecore_ipc_server_del'
collect2: ld returned 1 exit status
make[6]: *** [config_basic_example] Error 1
make[6]: Leaving directory 
`/asl/thirdparty/packages/ecore/ecore-0.9.9.010/examples'
make[5]: *** [all-recursive] Error 1
make[5]: Leaving directory `/asl/thirdparty/packages/ecore/ecore-0.9.9.010'
make[4]: *** [all-recursive-am] Error 2
make[4]: Leaving directory `/asl/thirdparty/packages/ecore/ecore-0.9.9.010'
make[3]: *** [configure] Error 2


--
Simon Poole
www.appliancestudio.com
--- ecore-0.9.9.010.orig/examples/Makefile.am   2005-03-31 06:11:16.0 
+0100
+++ ecore-0.9.9.010/examples/Makefile.am2005-06-13 11:17:08.348323608 
+0100
@@ -54,7 +54,9 @@
 if BUILD_ECORE_CONFIG
 config_basic_example_SOURCES  = config_basic_example.c
 config_basic_example_LDADD= $(top_builddir)/src/lib/ecore/libecore.la \
-
$(top_builddir)/src/lib/ecore_config/libecore_config.la
+
$(top_builddir)/src/lib/ecore_config/libecore_config.la \
+
$(top_builddir)/src/lib/ecore_ipc/libecore_ipc.la \
+
$(top_builddir)/src/lib/ecore_con/libecore_con.la
 endif
 
 if BUILD_ECORE_X
--- ecore-0.9.9.010.orig/examples/Makefile.in   2005-06-10 04:55:38.0 
+0100
+++ ecore-0.9.9.010/examples/Makefile.in2005-06-13 11:17:20.401491248 
+0100
@@ -174,7 +174,7 @@
 @[EMAIL PROTECTED] = $(top_builddir)/src/lib/ecore/libecore.la 
$(top_builddir)/src/lib/ecore_con/libecore_con.la
 
 @[EMAIL PROTECTED] = config_basic_example.c
[EMAIL PROTECTED]@config_basic_example_LDADD = 
$(top_builddir)/src/lib/ecore/libecore.la 
$(top_builddir)/src/lib/ecore_config/libecore_config.la
[EMAIL PROTECTED]@config_basic_example_LDADD = 
$(top_builddir)/src/lib/ecore/libecore.la 
$(top_builddir)/src/lib/ecore_config/libecore_config.la 
$(top_builddir)/src/lib/ecore_ipc/libecore_ipc.la 
$(top_builddir)/src/lib/ecore_con/libecore_con.la
 
 @[EMAIL PROTECTED] = x_window_example.c
 @[EMAIL PROTECTED] = $(top_builddir)/src/lib/ecore/libecore.la 
$(top_builddir)/src/lib/ecore_txt/libecore_txt.la   
  $(top_builddir)/src/lib/ecore_job/libecore_job.la 
$(top_builddir)/src/lib/ecore_x/libecore_x.la


Re: [E-devel] [PATCH] ecore: /examples/ fails to build

2005-06-13 Thread The Rasterman
On Mon, 13 Jun 2005 11:37:28 +0100 Simon Poole <[EMAIL PROTECTED]>
(Bbabbled:
(B
(B> I still get a build problem on ecore/examples/.   The attached patches 
(B> fix the problem.  The first patch is for CVS (patches Makefile.am), the 
(B> second for anyone using the ecore-0.9.9.010 snapshot (patches Makefile.in)
(B
(Bsorry about that! fixed. :)
(B
(B
(B-- 
(B- Codito, ergo sum - "I code, therefore I am" --
(BThe Rasterman (Carsten Haitzler)[EMAIL PROTECTED]
$BMg9%B?(B  [EMAIL PROTECTED]
(BTokyo, Japan ($BEl5~(B $BF|K\(B)
(B
(B
(B---
(BThis SF.Net email is sponsored by: NEC IT Guy Games.  How far can you shotput
(Ba projector? How fast can you ride your desk chair down the office luge track?
(BIf you want to score the big prize, get to know the little guy.  
(BPlay to win an NEC 61" plasma display: http://www.necitguy.com/?r=20
(B___
(Benlightenment-devel mailing list
(Benlightenment-devel@lists.sourceforge.net
(Bhttps://lists.sourceforge.net/lists/listinfo/enlightenment-devel

[E-devel] Ecore libcurl wrapper

2005-06-13 Thread Simon Poole
I've done a cURL[1] wrapper for Ecore, which uses ecore's fd_handler 
support to perform asynchronous curl operations (in ecore's main_loop) 
with callbacks, making it trivial to use curl in ecore-based 
applications.  For those who don't know, cURL is an excellent 
HTTP/FTP/whatever library [2].


I'd like to contribute it, but I need to know where to put it.  My 
instinct is to make this a part of ecore (ecore_curl), which would only 
be included if you build with Ecore support.  It's a pretty lightweight 
wrapper (single source file, 180 lines).  Opinions?


I'm happy to discuss how it works and (try to) defend the way I've 
implemented it.


I've attached the source file directly from my app so you can get a 
sense.  I'm happy to detach it from my app and integrate it into Ecore, 
including doing the autotools magic, once I know where to put it!


[1] http://curl.haxx.se/libcurl/
[2] "libcurl is a free and easy-to-use client-side URL transfer library, 
supporting FTP, FTPS, HTTP, HTTPS, GOPHER, TELNET, DICT, FILE and LDAP. 
libcurl supports HTTPS certificates, HTTP POST, HTTP PUT, FTP uploading, 
HTTP form based upload, proxies, cookies, user+password authentication 
(Basic, Digest, NTLM, Negotiate, Kerberos4), file transfer resume, http 
proxy tunneling and more!"


--
Simon Poole
www.appliancestudio.com
#include "common.h"

static CURLM *curlm;
static int _ecurl_init_count = 0;

typedef struct _Ecurl_Job {
Ecore_Fd_Handler *fd_handler;
CURL *curl;
Ecurl_Callback completion_cb;
void *user_data;
} Ecurl_Job;
static Ecore_List *_job_list;

static int _running_curl_handles = 0;
static fd_set _current_fd_set;

static void
_ecurl_fd_prep_handler(void *data, Ecore_Fd_Handler *fd_handler)
{
fd_set read_set, write_set, exc_set;
int fd_max;
int fd;
Ecore_Fd_Handler_Flags flags;

signos_log_debug("_ecurl_fd_prep_handler\n");
FD_ZERO(&read_set);
FD_ZERO(&write_set);
FD_ZERO(&exc_set);

curl_multi_fdset(curlm, &read_set, &write_set, &exc_set, &fd_max);
flags = 0;
fd = ecore_main_fd_handler_fd_get(fd_handler);
if (FD_ISSET(fd, &read_set)) flags |= ECORE_FD_READ;
if (FD_ISSET(fd, &write_set)) flags |= ECORE_FD_WRITE;
if (FD_ISSET(fd, &exc_set)) flags |= ECORE_FD_ERROR;
ecore_main_fd_handler_active_set(fd_handler, flags);
}

static void
_ecurl_handle_completed_job(CURLMsg *curlmsg)
{
Ecurl_Job *job;
ecore_list_goto_first(_job_list);
while (job = (Ecurl_Job *)ecore_list_current(_job_list)) {
if (curlmsg->easy_handle == job->curl) {
// We have a match -- delete the job
signos_log_debug("CURL Job completed (fd %d)\n", 
ecore_main_fd_handler_fd_get(job->fd_handler));
ecore_main_fd_handler_del(job->fd_handler);
ecore_list_remove(_job_list);
FD_CLR(ecore_main_fd_handler_fd_get(job->fd_handler), 
&_current_fd_set);
if (job->completion_cb) 
job->completion_cb(curlmsg->data.result, job->user_data);
free(job);
// Goto next message
// TODO: curl_easy_cleanup()
break;
}
ecore_list_next(_job_list);
}
}

static int
_ecurl_fd_handler(void *data, Ecore_Fd_Handler *fd_handler)
{
Ecurl_Job *job;
int n_handles = _running_curl_handles;

signos_log_debug("_ecurl_fd_handler: (currently %d handles)\n", 
n_handles);
while (curl_multi_perform(curlm, &_running_curl_handles) == 
CURLM_CALL_MULTI_PERFORM);
signos_log_debug("_ecurl_fd_handler: (currently %d handles)\n", 
_running_curl_handles);
if (_running_curl_handles < n_handles) {
// A transfer must have completed
CURLMsg *curlmsg;
int n_remaining;

// Handle job completion messages
while ((curlmsg = curl_multi_info_read(curlm, &n_remaining)) != 
NULL) {
signos_log_debug("received CURLMsg [%d], %d 
remaining\n", curlmsg->msg, n_remaining);
if (curlmsg->msg != CURLMSG_DONE) continue;
_ecurl_handle_completed_job(curlmsg);
}
}
signos_log_debug("_ecurl_fd_handler: done\n");
}

int
ecurl_perform(CURL *curl, Ecurl_Callback completion_cb, void *user_data)
{
CURLMcode ret;
fd_set read_set, write_set, exc_set;
int fd_max;
int fd;
int flags;
Ecurl_Job *job;
Ecore_Fd_Handler *fd_handler;
int n_handles = _running_curl_handles;

signos_log_debug("_ecurl_perform\n");
job = malloc(sizeof(Ecurl_Job));
job->curl = curl;
job->completion_cb = completion_cb;
job->user_data = user_data;

curl_multi_add_

Re: [E-devel] Ecore_config command line tool

2005-06-13 Thread Simon Poole

(B>>one request - can you call it ecore_config? :) i just like namespacing all the
(B>>binaries as well as libs and everything else :)
(B>>
(B
(BHere's the patch renamed to ecore_config (generated against
(Becore-0.9.9.010).
(B
(B--
(BSimon Poole
(Bwww.appliancestudio.comdiff -urN ecore-0.9.9.010.orig/src/bin/ecore_config.c 
ecore-0.9.9.010/src/bin/ecore_config.c
--- ecore-0.9.9.010.orig/src/bin/ecore_config.c 1970-01-01 01:00:00.0 
+0100
+++ ecore-0.9.9.010/src/bin/ecore_config.c  2005-06-13 13:32:45.606272368 
+0100
@@ -0,0 +1,229 @@
+#include "config.h"
+#include "Ecore.h"
+
+#ifdef BUILD_ECORE_CONFIG
+#include "Ecore_Config.h"
+
+int
+set(const char *key, int ec_type, const char *value)
+{
+   int i;
+   float f;
+   
+   switch (ec_type) {
+   case PT_INT:
+   case PT_BLN:
+   i = atoi(value);
+   if (ecore_config_typed_set(key, &i, ec_type) != 
ECORE_CONFIG_ERR_SUCC) return -1;
+   break;
+   case PT_FLT:
+   f = atof(value);
+   if (ecore_config_typed_set(key, &f, ec_type) != 
ECORE_CONFIG_ERR_SUCC) return -1;
+   break;
+   case PT_STR:
+   case PT_RGB:
+   case PT_THM:
+   case PT_NIL:
+   if (ecore_config_typed_set(key, value, ec_type) != 
ECORE_CONFIG_ERR_SUCC) return -1;
+   break;
+   }
+   return 0;
+}
+
+int
+get(const char *key)
+{
+   Ecore_Config_Prop *e;
+
+   if (!(e = ecore_config_get(key))) {
+   fprintf(stderr, "No such property\n");
+   return -1;
+   }
+   
+   switch (e->type) {
+   case PT_NIL:
+   printf("\n");
+   break;
+   case PT_INT:
+   printf("%ld\n", ecore_config_int_get(key));
+   break;
+   case PT_BLN:
+   printf("%d\n", ecore_config_boolean_get(key));
+   break;
+   case PT_FLT:
+   printf("%lf\n", ecore_config_float_get(key));
+   break;
+   case PT_STR:
+   printf("%s\n", ecore_config_string_get(key));
+   break;
+   case PT_RGB:
+   printf("%s\n", ecore_config_argbstr_get(key));
+   break;
+   case PT_THM:
+   printf("%s\n", ecore_config_theme_get(key));
+   break;
+   default:
+   fprintf(stderr, "Property has unrecognised type");
+   return -1;
+   }
+   return 0;
+}
+
+int
+list(const char *file)
+{
+   fprintf(stderr, "Command not yet supported\n");
+   return -1;
+}
+
+int
+get_type(const char *key)
+{
+   Ecore_Config_Prop *e;
+   if (!(e = ecore_config_get(key))) {
+   fprintf(stderr, "No such property\n");
+   return -1;
+   }
+   
+   switch (e->type) {
+   case PT_NIL:
+   printf("nil\n");
+   break;
+   case PT_INT:
+   printf("int\n");
+   break;
+   case PT_BLN:
+   printf("bool\n");
+   break;
+   case PT_FLT:
+   printf("float\n");
+   break;
+   case PT_STR:
+   printf("string\n");
+   break;
+   case PT_RGB:
+   printf("rgb\n");
+   break;
+   case PT_THM:
+   printf("theme\n");
+   break;
+   default:
+   fprintf(stderr, "Property has unrecognised type");
+   return -1;
+   }
+   return 0;
+}
+
+int
+parse_type(const char *type)
+{
+   if (!strcmp("nil", type)) {
+   return PT_NIL;
+   } else if (!strcmp("int", type)) {
+   return PT_INT;
+   } else if (!strcmp("float", type)) {
+   return PT_FLT;
+   } else if (!strcmp("bool", type)) {
+   return PT_BLN;
+   } else if (!strcmp("str", type)) {
+   return PT_STR;
+   } else if (!strcmp("rgb", type)) {
+   return PT_RGB;
+   } else if (!strcmp("theme", type)) {
+   return PT_THM;
+   }
+   return -1;
+}
+
+void
+usage_and_exit(const char *prog, int ret, const char *msg)
+{
+   if (msg) fprintf(stderr, msg);
+   fprintf(stderr, "Usage: %s  {get|set|type|list} 
[args...]\n", prog);
+   fprintf(stderr, "LIST:   %s  list\n", prog);
+   fprintf(stderr, "GET:%s  get \n", prog);
+   fprintf(stderr, "GET TYPE:   %s  type \n", prog);
+   fprintf(stderr, "SET:%s  set  
{nil|int|float|bool|str|rgb|theme} \n", prog);
+   exit(ret);
+}
+
+int
+main(int argc, const char **argv)
+{
+   const char *prog, *file, *cmd, *key, *type, *value;
+   int ec_type = -1;
+   int ret = 0;
+   prog = file = cmd = key = type = value = NULL;
+   
+   prog = argv[0];
+   if (argc < 3) usage_and_exit(prog, 2, "Not enough arguments\n");
+
+   file = argv[1];
+   cmd = argv[2];
+
+   // Check for 

Re: [E-devel] elitaire - an efl based solitaire

2005-06-13 Thread Peter Wehrfritz
Daniel Kozlowski schrieb:

>Well i said this before but i don't think it made it out there is a
>small compile error on my computer when i attempted to make the program
>it was fixed by changing line 912 from  this 
>
>m = eli_card->eli->velocity * 0.02 / sqrt( pow( to_x - from_x, 2) +
>pow( to_y - from_y ,2));
>
>to this 
>
>m = eli_card->eli->velocity * 0.02 / sqrt( pow( to_x - from_x, 2.0) +
>pow( to_y - from_y ,2.0));
>  
>
thanks, I now found a very simple way to avoid this. A  x * x do the
same job like a pow( (double) x, 2.0).

By the way, I've got now a very little home page, where you can find the
latest version (0.0.2). It's now with autoconf and automake and a theme
selector.

Here's the page: http://www.mowem.de/elitaire/

peat


---
This SF.Net email is sponsored by: NEC IT Guy Games.  How far can you shotput
a projector? How fast can you ride your desk chair down the office luge track?
If you want to score the big prize, get to know the little guy.  
Play to win an NEC 61" plasma display: http://www.necitguy.com/?r=20
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] elitaire - an efl based solitaire

2005-06-13 Thread Nathan Ingersoll
To get this to build on OSX, I had to cast add a cast to (double) on
line 926 of elitaire_card.cpp

On 6/13/05, Peter Wehrfritz <[EMAIL PROTECTED]> wrote:
> Daniel Kozlowski schrieb:
> 
> >Well i said this before but i don't think it made it out there is a
> >small compile error on my computer when i attempted to make the program
> >it was fixed by changing line 912 from  this
> >
> >m = eli_card->eli->velocity * 0.02 / sqrt( pow( to_x - from_x, 2) +
> >pow( to_y - from_y ,2));
> >
> >to this
> >
> >m = eli_card->eli->velocity * 0.02 / sqrt( pow( to_x - from_x, 2.0) +
> >pow( to_y - from_y ,2.0));
> >
> >
> thanks, I now found a very simple way to avoid this. A  x * x do the
> same job like a pow( (double) x, 2.0).
> 
> By the way, I've got now a very little home page, where you can find the
> latest version (0.0.2). It's now with autoconf and automake and a theme
> selector.
> 
> Here's the page: http://www.mowem.de/elitaire/
> 
> peat
> 
> 
> ---
> This SF.Net email is sponsored by: NEC IT Guy Games.  How far can you shotput
> a projector? How fast can you ride your desk chair down the office luge track?
> If you want to score the big prize, get to know the little guy.
> Play to win an NEC 61" plasma display: http://www.necitguy.com/?r=20
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>


---
This SF.Net email is sponsored by: NEC IT Guy Games.  How far can you shotput
a projector? How fast can you ride your desk chair down the office luge track?
If you want to score the big prize, get to know the little guy.
Play to win an NEC 61" plasma display: http://www.necitguy.com/?r 
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Re: E CVS: libs/ewl rbdpngn

2005-06-13 Thread Stephen Horner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 06:57, Mon 13 Jun 05, enlightenment-cvs@lists.sourceforge.net wrote:
> From: enlightenment-cvs@lists.sourceforge.net
> To: enlightenment-cvs@lists.sourceforge.net
> Date: Mon, 13 Jun 2005 06:57:03 -0700
> Subject: E CVS: libs/ewl rbdpngn
> 
> Enlightenment CVS committal
> 
> Author  : rbdpngn
> Project : e17
> Module  : libs/ewl
> 
> Dir : e17/libs/ewl/src/lib
> 
> 
> Modified Files:
>   ewl_object.c 
> 
> 
> Log Message:
> Patch for cross-referencing the fill policy flags in the documentation from
> shorne.

lol, although my name Stephen Horner could easily be seen as the expanded
version of shorne, I have to clarify that I am not he, and he is not I @_@ . I
do believe I is voidengineer ;P So if there is any doxy_oops it is my fault :)

voidengineer

> 
> ===
> RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_object.c,v
> retrieving revision 1.3
> retrieving revision 1.4
> diff -u -3 -r1.3 -r1.4
> --- ewl_object.c  28 Mar 2005 07:04:28 -  1.3
> +++ ewl_object.c  13 Jun 2005 13:57:02 -  1.4
> @@ -1388,6 +1388,8 @@
>   * @param fill: the new fill policy for the object
>   * @return Returns no value.
>   * @brief Change the fill policy of the specified object
> + * @see ewl_object_fill_policy_get()
> + * @see #Ewl_Flags
>   *
>   * Stores the new fill policy value into the object for use when laying out
>   * the object.
> 
> 
> 
> 
> ---
> This SF.Net email is sponsored by: NEC IT Guy Games.  How far can you shotput
> a projector? How fast can you ride your desk chair down the office luge track?
> If you want to score the big prize, get to know the little guy.  
> Play to win an NEC 61" plasma display: http://www.necitguy.com/?r=20
> ___
> enlightenment-cvs mailing list
> enlightenment-cvs@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
> 

- -- 
<- 悟 Apó Mechanís Theós  --->
  .-.Stephen Horner void.engineer(at)unix.net
  /v\AIMbeepbeepkaah 
 // \\   MSNparse3rr0r(at)hotmail.com
/(   )\  PGP0xCDC2DD2B
 ^^-^^  <->
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFCrkuTRRkTWiD8QjIRApXoAJ9Y4oZN1bUwsioWUktbihQPMhqJkQCgzZGn
nCY1LdQdOLoVSjWCCY0OXBY=
=P6Wb
-END PGP SIGNATURE-


---
This SF.Net email is sponsored by: NEC IT Guy Games.  How far can you shotput
a projector? How fast can you ride your desk chair down the office luge track?
If you want to score the big prize, get to know the little guy.
Play to win an NEC 61" plasma display: http://www.necitguy.com/?r 
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Re: E CVS: libs/ewl rbdpngn

2005-06-13 Thread Nathan Ingersoll
Damn, that will teach me. Sorry about that.

On 6/13/05, Stephen Horner <[EMAIL PROTECTED]> wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
> 
> On 06:57, Mon 13 Jun 05, enlightenment-cvs@lists.sourceforge.net wrote:
> > From: enlightenment-cvs@lists.sourceforge.net
> > To: enlightenment-cvs@lists.sourceforge.net
> > Date: Mon, 13 Jun 2005 06:57:03 -0700
> > Subject: E CVS: libs/ewl rbdpngn
> >
> > Enlightenment CVS committal
> >
> > Author  : rbdpngn
> > Project : e17
> > Module  : libs/ewl
> >
> > Dir : e17/libs/ewl/src/lib
> >
> >
> > Modified Files:
> >   ewl_object.c
> >
> >
> > Log Message:
> > Patch for cross-referencing the fill policy flags in the documentation from
> > shorne.
> 
> lol, although my name Stephen Horner could easily be seen as the expanded
> version of shorne, I have to clarify that I am not he, and he is not I @_@ . I
> do believe I is voidengineer ;P So if there is any doxy_oops it is my fault :)
> 
> voidengineer
> 
> >
> > ===
> > RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_object.c,v
> > retrieving revision 1.3
> > retrieving revision 1.4
> > diff -u -3 -r1.3 -r1.4
> > --- ewl_object.c  28 Mar 2005 07:04:28 -  1.3
> > +++ ewl_object.c  13 Jun 2005 13:57:02 -  1.4
> > @@ -1388,6 +1388,8 @@
> >   * @param fill: the new fill policy for the object
> >   * @return Returns no value.
> >   * @brief Change the fill policy of the specified object
> > + * @see ewl_object_fill_policy_get()
> > + * @see #Ewl_Flags
> >   *
> >   * Stores the new fill policy value into the object for use when laying out
> >   * the object.
> >
> >
> >
> >
> > ---
> > This SF.Net email is sponsored by: NEC IT Guy Games.  How far can you 
> > shotput
> > a projector? How fast can you ride your desk chair down the office luge 
> > track?
> > If you want to score the big prize, get to know the little guy.
> > Play to win an NEC 61" plasma display: http://www.necitguy.com/?r=20
> > ___
> > enlightenment-cvs mailing list
> > enlightenment-cvs@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
> >
> 
> - --
> <- 悟 Apó Mechanís Theós  --->
>   .-.Stephen Horner void.engineer(at)unix.net
>   /v\AIMbeepbeepkaah
>  // \\   MSNparse3rr0r(at)hotmail.com
> /(   )\  PGP0xCDC2DD2B
>  ^^-^^  <->
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v1.4.1 (GNU/Linux)
> 
> iD8DBQFCrkuTRRkTWiD8QjIRApXoAJ9Y4oZN1bUwsioWUktbihQPMhqJkQCgzZGn
> nCY1LdQdOLoVSjWCCY0OXBY=
> =P6Wb
> -END PGP SIGNATURE-
> 
> 
> ---
> This SF.Net email is sponsored by: NEC IT Guy Games.  How far can you shotput
> a projector? How fast can you ride your desk chair down the office luge track?
> If you want to score the big prize, get to know the little guy.
> Play to win an NEC 61" plasma display: http://www.necitguy.com/?r
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
N?S^甸?X?"?jg??j??.?-?Z?#y??0}?q?㈥?歙悍^?!j*荩
??~'?抖??㈧?h笔+z?n()?[EMAIL PROTECTED](m??'y拳??oë