[E-devel] [PATCH] Patch for password (showing the last character of password)

2010-12-16 Thread WooHyun Jung
Hello ~ all. Shilpa Onkar Singh (in India) made a patch for the password. After adapting enveloped patches, please export ELM_PASSWORD_SHOW_LAST_CHARACTER=1. Then the last charcter of password will be shown. (You can check this with "Entry Scrolled" in elementary_test) Thanks. Index: src/lib

Re: [E-devel] E SVN: discomfitor trunk/ecore/src/lib/ecore_con

2010-12-16 Thread The Rasterman
On Thu, 16 Dec 2010 08:50:07 +0100 (CET) Vincent Torri said: > > > On Thu, 16 Dec 2010, Sebastian Dransfeld wrote: > > > Hi, > > > > This shouldn't be there. It is the users responisbility to pass the > > right name. Otherwise you need to add ftp://, imap:// etc. ad infinitum. > > and the doc

[E-devel] [PATCH] elm box: extended mode added

2010-12-16 Thread Myungjae Lee
Hello, all. This is a patch for extended mode box. When we insert objects into the horizontal mode box, the width of the box increases according to the sum of items' min size without any limitation. In a special case, such as typing recipients in the iphone email application, objects in the box n

Re: [E-devel] how to do ecore_con_url POSTs?

2010-12-16 Thread The Rasterman
On Wed, 15 Dec 2010 01:34:33 -0200 Raphael Kubo da Costa said: > (CURLOPT_POSTFIELDS already implies CURLOPT_POST) > > libcurl does the following when parsing CURLOPT_POST: > > if(va_arg(param, long)) { > data->set.httpreq = HTTPREQ_POST; > data->set.opt_no_body = FALSE; /* this

Re: [E-devel] E SVN: discomfitor IN trunk/PROTO/azy: . src/tests src/tests/identi.ca

2010-12-16 Thread Mike Blumenkrantz
On Thu, 16 Dec 2010 01:11:50 -0800 "Enlightenment SVN" wrote: > Log: > add new test suite demonstrating azy_client_get (HTTP GET) through > identi.ca's json api > > Author: discomfitor > Date: 2010-12-16 01:11:49 -0800 (Thu, 16 Dec 2010) > New Revision: 55591 > Trac: http:

Re: [E-devel] [PATCH] elm widget: make show_region_set function call all region show functions set by parents

2010-12-16 Thread The Rasterman
On Wed, 15 Dec 2010 17:33:45 +0900 Myungjae Lee said: yup. you're right! in svn it is! tnx! > Because the previous mail is not good to read, I'm sending it again. > Please check this instead of the previous one. > > Thanks. > > > -Original Message- > > Hello, all. > > I'm trying to

Re: [E-devel] [PATCH] elm box: extended mode added

2010-12-16 Thread Gustavo Sverzut Barbieri
On Thu, Dec 16, 2010 at 5:55 AM, Myungjae Lee wrote: > Hello, all. > > This is a patch for extended mode box. > > When we insert objects into the horizontal mode box, the width of the box > increases according to the sum of items' min size without any limitation. In > a special case, such as typin

Re: [E-devel] how to do ecore_con_url POSTs?

2010-12-16 Thread Raphael Kubo da Costa
On Thursday 16 December 2010 06:34:29 Carsten Haitzler wrote: > On Wed, 15 Dec 2010 01:34:33 -0200 Raphael Kubo da Costa > > > Quoting libcurl's documentation for curl_easy_setopt: > > If you want to do a zero-byte POST, you need to set > > CURLOPT_POSTFIELDSIZE explicitly to zero, as simp

[E-devel] [Patch] embryo documentation fix

2010-12-16 Thread Daniel Juyung Seo
Dear all, I made a patch for embryo documentation. The name of Small programming language was renamed to Pawn. http://www.compuphase.com/small.htm I modified embryo documentation according to that change. Anybody can apply this to upstream? Thank you T_UNIX for the tip. Daniel Juyung Seo (SeoZ)

Re: [E-devel] keyboard input problem

2010-12-16 Thread Massimo Maiurana
David Seikel, il 16/12/2010 05:55, ha scritto: > I'm using sloppy focus. "Refocus last window on desktop switch" is > turned on, as is "Revert focus when it is lost". it happens even with "mouse focus" and with every combination of the two options above. > Quite often, but randomly, the switchi

[E-devel] Alignment trap on armv5tel

2010-12-16 Thread Pierre Cassimans
Hi, As told on IRC, when i run elementary_test, I get plenty of Alignment trap errors in dmesg. It also takes 3 minutes to start it up on an HP Ipaq h2200. I tried to debug the problem with gdb, and this is what I got. If not enough info please ask me for more. I'm ready to learn how to really gi

Re: [E-devel] E SVN: cedric trunk/ecore/src/lib/ecore_con

2010-12-16 Thread Sebastian Dransfeld
On 12/16/2010 02:16 PM, Enlightenment SVN wrote: > Log: > * ecore: SPANK ! SPANK ! SPANK ! > > The value of errno is only know when the result of a syscall > tell you to look at it. And don't set errno, that's a bad idea ! > > > Author: cedric > Date: 2010-12-16 05:1

[E-devel] [Patch] elm_genlist multi-touch smart callbacks added

2010-12-16 Thread Jeonghyun Yun
Dear all, I added 6 multi-touch smart callbacks in elm_genlist, please refer to below. "multi,sweep,left" - Genlist has been multi-touch swept left. "multi,sweep,right" - Genlist has been multi-touch swept right. "multi,sweep,top" - Genlist has been multi-touch swept top. "multi,sweep,bottom" - G

Re: [E-devel] E SVN: cedric trunk/ecore/src/lib/ecore_con

2010-12-16 Thread Mike McCormack
On 12/17/2010 05:41 AM, Sebastian Dransfeld wrote: >>num = read(svr->fd, buf, sizeof(buf)); >> -if ((num> 0) || (errno == EAGAIN)) >> +if ((num>= 0) || (errno == EAGAIN)) >> lost_server = EINA_FALSE; > > Sure this is right? a ret 0 an errno != EAGAIN is p

Re: [E-devel] how to do ecore_con_url POSTs?

2010-12-16 Thread The Rasterman
On Thu, 16 Dec 2010 12:15:26 -0200 Raphael Kubo da Costa said: > On Thursday 16 December 2010 06:34:29 Carsten Haitzler wrote: > > On Wed, 15 Dec 2010 01:34:33 -0200 Raphael Kubo da Costa > > > > > Quoting libcurl's documentation for curl_easy_setopt: > > > If you want to do a zero-byte POST

Re: [E-devel] Alignment trap on armv5tel

2010-12-16 Thread The Rasterman
On Thu, 16 Dec 2010 20:29:58 +0100 Pierre Cassimans said: huh? that looks like this is doing unaligned stuff: params->y = TO_INT(ADD(want_y, MUL(SUB(want_h, FROM_INT(params->h)), desc->align.y))); so we have: TO_INT ADD MUL SUB FROM_IN

[E-devel] Enlightenment web site - please review

2010-12-16 Thread Jesse Charbneau
Hello, I’ve been working off list with Gustavo, and we’d like to get some feedback on the design thats been worked out. http://e-www.thecharbneaus.com/p.php?p=about&l=en http://e-www.thecharbneaus.com/p.php?p=download&l=en http://e-www.thecharbneaus.com/p.php?p=support&l=en http://e-www.thechar

Re: [E-devel] [Patch] elm_genlist multi-touch smart callbacks added

2010-12-16 Thread Daniel Juyung Seo
Dear Yun, How about renaming some callbacks? "multi,sweep,top" => "multi,sweep,up" "multi,sweep,bottom" => "multi,sweep,down" Multi touch event cares only for the touch behavior not the callback's behavior. And I'm not sure it is ok to use the word 'sweep'. Anybody please suggest a good name for

Re: [E-devel] Enlightenment web site - please review

2010-12-16 Thread Vincent Torri
On Fri, 17 Dec 2010, Jesse Charbneau wrote: > Hello, > I?ve been working off list with Gustavo, and we?d like to get some feedback > on the design thats been worked out. > > http://e-www.thecharbneaus.com/p.php?p=about&l=en > http://e-www.thecharbneaus.com/p.php?p=download&l=en > http://e-www.

Re: [E-devel] Enlightenment web site - please review

2010-12-16 Thread Vincent Torri
On Fri, 17 Dec 2010, Vincent Torri wrote: > > > On Fri, 17 Dec 2010, Jesse Charbneau wrote: > >> Hello, >> I?ve been working off list with Gustavo, and we?d like to get some feedback >> on the design thats been worked out. >> >> http://e-www.thecharbneaus.com/p.php?p=about&l=en >> http://e-www