[E-devel] Re: E CVS: apps/e onefang

2006-03-10 Thread The Rasterman
On Fri, 10 Mar 2006 08:35:12 -0800 enlightenment-cvs@lists.sourceforge.net
babbled:

 Enlightenment CVS committal
 
 Author  : onefang
 Project : e17
 Module  : apps/e
 
 Dir : e17/apps/e/src/bin
 
 
 Modified Files:
   e_config.c 
 
 
 Log Message:
 This was originally Ctrl-Alt-r, but Ctrl-r conflicts with other apps.  I 
 think raster changed it by mistake.

yeah. that was boo boo. oops - sorry. :)

 ===
 RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_config.c,v
 retrieving revision 1.153
 retrieving revision 1.154
 diff -u -3 -r1.153 -r1.154
 --- e_config.c10 Mar 2006 05:48:46 -  1.153
 +++ e_config.c10 Mar 2006 16:35:12 -  1.154
 @@ -782,7 +782,7 @@
   E_BINDING_MODIFIER_CTRL, 0,
   window_maximized_toggle, horizontal);
   CFG_KEYBIND(E_BINDING_CONTEXT_ANY, r,
 - E_BINDING_MODIFIER_CTRL, 0,
 + E_BINDING_MODIFIER_CTRL | E_BINDING_MODIFIER_ALT, 0,
   window_shaded_toggle, NULL);
   CFG_KEYBIND(E_BINDING_CONTEXT_ANY, Left,
   E_BINDING_MODIFIER_CTRL, 0,
 
 
 
 
 ---
 This SF.Net email is sponsored by xPML, a groundbreaking scripting language
 that extends applications into web and mobile media. Attend the live webcast
 and join the prime developer group breaking into this new coding territory!
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
 ___
 enlightenment-cvs mailing list
 enlightenment-cvs@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
 


-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)[EMAIL PROTECTED]
裸好多
Tokyo, Japan (東京 日本)


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Re: E CVS: apps/e onefang

2006-01-25 Thread David Seikel
On Wed, 25 Jan 2006 03:22:42 -0800
enlightenment-cvs@lists.sourceforge.net wrote:

 Enlightenment CVS committal
 
 Author  : onefang
 Project : e17
 Module  : apps/e
 
 Dir : e17/apps/e/src/bin
 
 
 Modified Files:
   e_apps_error.c 
 
 
 Log Message:
 Dammit raster, I'm trying to cut down the amount of over processing
 being done on these strings.

You care about wringing the last bit of performance out of graphics
raster, but I care about doing the same with string handling when it
applies to potentially large lumps of text.

One thing I was trying to do was to avoid a lot of processing and
reprocessing of these strings, but everybody kept yelling at me to just
do what you just did.  No one but me seems to care that exe's could
throw huge amounts of text at us.

Yes, exe exit doesn't happen often, yes we will be able to limit the
output processed once I implement the limit code, and maybe this is all
a waste of my time to try to get it down to some sort of sane amount of
end to end string massaging from exe to error dialog.  I still don't
see any point to continually scanning and massaging text when it isn't
needed.  In this case, there is way too much unneeded string massaging
for my liking.

Feel free to wipe out the tlist shit, guess I won't be learning
anything about evas and edje for the moment.  I'll leave apps/e and
return to my ecore_exe and emu TODO lists.  There's some excess string
manipulation in ecore_exe I can probably get rid of now, and some more
excess string manipulation to add in support of the start/end limits.

/rant


pgpbMmEs9eAOc.pgp
Description: PGP signature


Re: [E-devel] Re: E CVS: apps/e onefang

2006-01-25 Thread The Rasterman
On Wed, 25 Jan 2006 22:01:10 +1000 David Seikel [EMAIL PROTECTED] babbled:

 On Wed, 25 Jan 2006 03:22:42 -0800
 enlightenment-cvs@lists.sourceforge.net wrote:
 
  Enlightenment CVS committal
  
  Author  : onefang
  Project : e17
  Module  : apps/e
  
  Dir : e17/apps/e/src/bin
  
  
  Modified Files:
  e_apps_error.c 
  
  
  Log Message:
  Dammit raster, I'm trying to cut down the amount of over processing
  being done on these strings.
 
 You care about wringing the last bit of performance out of graphics
 raster, but I care about doing the same with string handling when it
 applies to potentially large lumps of text.
 
 One thing I was trying to do was to avoid a lot of processing and
 reprocessing of these strings, but everybody kept yelling at me to just
 do what you just did.  No one but me seems to care that exe's could
 throw huge amounts of text at us.

well - technically.. you dont have to parse the text at ALL except for count
newlines and/or bytes then stop. there is yet another bit of code that converts
the plaintext to markup - then this is parsed in turn into nodes etc. etc. :)
the reason i dont lok at this as that important is its not a core routine in
an inner loop - its done ONCE in a blue moon when an app goes awry - and the
idea is to limit the text to maybe 20 or 30 lines anyway because it is even
mroe stupid to display 1000's of lines as well... evas will have a very bad bad
bad day tokenising it formatting it etc. etc. :) so i expect this to happen
rarely and then have limtied inptu data :) trust me - textblocks' routines for
doing tokenising and formatting are nice and fast as i expect it to be used
heavily. :)

 Yes, exe exit doesn't happen often, yes we will be able to limit the
 output processed once I implement the limit code, and maybe this is all
 a waste of my time to try to get it down to some sort of sane amount of
 end to end string massaging from exe to error dialog.  I still don't
 see any point to continually scanning and massaging text when it isn't
 needed.  In this case, there is way too much unneeded string massaging
 for my liking.
 
 Feel free to wipe out the tlist shit, guess I won't be learning
 anything about evas and edje for the moment.  I'll leave apps/e and
 return to my ecore_exe and emu TODO lists.  There's some excess string
 manipulation in ecore_exe I can probably get rid of now, and some more
 excess string manipulation to add in support of the start/end limits.

that's cool- tlist might be useful anyway - when we dont want icons :) no need
to wipe. :)

 /rant
 


-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)[EMAIL PROTECTED]
裸好多
Tokyo, Japan (東京 日本)


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Re: E CVS: apps/e onefang

2006-01-23 Thread Hisham Mardam Bey
On 1/23/06, enlightenment-cvs@lists.sourceforge.net
enlightenment-cvs@lists.sourceforge.net wrote:
 Enlightenment CVS committal

 Author  : onefang
 Project : e17
 Module  : apps/e

 Dir : e17/apps/e/data/themes


 Added Files:
 default_tlist.edc


 Log Message:
 Raster said to stop hacking ilist and create another widget.  This is the
 default theme for that widget.

 Do we usually clone inages, or just use the ones from other widgets?

we use them, we dont clone.


--
Hisham Mardam Bey
MSc (Computer Science)
http://hisham.cc/
+9613609386
Codito Ergo Sum (I Code Therefore I Am)


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid3432bid#0486dat1642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Re: E CVS: apps/e onefang

2006-01-23 Thread The Rasterman
On Mon, 23 Jan 2006 10:29:49 -0800 enlightenment-cvs@lists.sourceforge.net
babbled:

 Enlightenment CVS committal
 
 Author  : onefang
 Project : e17
 Module  : apps/e
 
 Dir : e17/apps/e/data/themes/images
 
 
 Added Files:
   e17_tlist_bg0.png e17_tlist_bg1.png 
 
 
 Log Message:
 Raster said to stop hacking ilist and create another widget.  This is the 
 default theme for that widget.
 
 Do we usually clone inages, or just use the ones from other widgets?

we re-use images from other objects - add a new images {} section for that
group, but -re-use the image file name :)

-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)[EMAIL PROTECTED]
裸好多
Tokyo, Japan (東京 日本)


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Re: E CVS: apps/e onefang

2006-01-23 Thread David Seikel
On Mon, 23 Jan 2006 22:50:04 +0200 Hisham Mardam Bey
[EMAIL PROTECTED] wrote:

 On 1/23/06, enlightenment-cvs@lists.sourceforge.net
 enlightenment-cvs@lists.sourceforge.net wrote:
  Enlightenment CVS committal
 
  Do we usually clone inages, or just use the ones from other widgets?
 
 we use them, we dont clone.

Raster also pointed that out.  I'll fix that up after I catch up with
my email.  Goody, cvs deletions, I wonder if thinktux will cope?


pgpqSmjiXCAbN.pgp
Description: PGP signature


[E-devel] Re: E CVS: apps/e onefang

2006-01-21 Thread David Stevenson
On 1/22/06, enlightenment-cvs@lists.sourceforge.net 
enlightenment-cvs@lists.sourceforge.net wrote:===
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_apps_error.c,vretrieving revision 1.1retrieving revision 1.2diff -u -3 -r1.1 -r1.2--- e_apps_error.c21 Jan 2006 15:39:03 -1.1+++ e_apps_error.c21 Jan 2006 17:35:36 -
1.2@@ -33,7 +33,7 @@v.advanced.create_widgets = _e_app_error_dialog_advanced_create_widgets;/* Create The Dialog */- cfd = e_config_dialog_new(con, _(Run error), NULL, 0, v, app);
+ cfd = e_config_dialog_new(con, _(Run error, wtf?That sux.), NULL, 0, v, app);app-error_dialog = cfd; }
Remember that translators are going to have to translate this stuff in their .po files...

Also, it may be just my personal preference, but I would rather e didn't include messages like this :/
Regards!
David


Re: [E-devel] Re: E CVS: apps/e onefang

2006-01-21 Thread Michael Jennings
On Sunday, 22 January 2006, at 11:11:08 (+0900),
David Stevenson wrote:

 Remember that translators are going to have to translate this stuff in their
 .po files...
 
 Also, it may be just my personal preference, but I would rather e didn't
 include messages like this :/

It's a joke.  Lighten up.

Michael

-- 
Michael Jennings (a.k.a. KainX)  http://www.kainx.org/  [EMAIL PROTECTED]
n + 1, Inc., http://www.nplus1.net/   Author, Eterm (www.eterm.org)
---
 I had rather men should ask why my statue is not set up, than why it
  is.-- Cato the Elder (from Plutarch's Political Precepts)


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] RE: E CVS: apps/e onefang

2005-10-31 Thread dan sinclair
 Enlightenment CVS committal
 
 Author  : onefang
 Project : e17
 Module  : apps/e
 
 Dir : e17/apps/e
 
 
 Modified Files:
   TODO 
 
 
 Log Message:
 Disable esmart_textarea for now, mention that it needs to be fixed and re 
 enabled.
 ===
 RCS file: /cvsroot/enlightenment/e17/apps/e/TODO,v
 retrieving revision 1.282
 retrieving revision 1.283
 diff -u -3 -r1.282 -r1.283
 --- TODO  30 Oct 2005 11:05:57 -  1.282
 +++ TODO  31 Oct 2005 15:49:31 -  1.283
 @@ -25,6 +25,14 @@
  * BUG: if you have 2 zones and you fill up zone 2 (right) mostly and then run
a big xev (xev -g 1280x1024) that wont fit it gets placed offscreen to the
right of zone 2
 +* FIX: Esmart_textarea has been disabled until it is updated to the new 
 +  textblock API.  Affected files are -
 +e17/libs/esmart/configure.in
 +e17/libs/esmart/src/lib/Makefile.am
 +e17/apps/e_modules/src/modules/Makefile.am
 +e17/apps/e_modules/src/modules/notes/Makefile.am
 +e17/apps/e_utils/src/bin/exige/Makefile.am
 +e17/apps/eclair/src/eclair_subtitles.c
  ]]]
  
  [[[
 


Um, I don't think these belong in the E17 todo list. If anything, it should be 
in the Esmart todo list. Esmart isn't, and won't be, a dependancy of e17.

dan







---
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] RE: E CVS: apps/e onefang

2005-10-31 Thread David Seikel
On Mon, 31 Oct 2005 12:15:49 -0500 (EST) dan sinclair
[EMAIL PROTECTED] wrote:

  +* FIX: Esmart_textarea has been disabled until it is updated to
  the new 
  +  textblock API.  Affected files are -
  +e17/libs/esmart/configure.in
  +e17/libs/esmart/src/lib/Makefile.am
  +e17/apps/e_modules/src/modules/Makefile.am
  +e17/apps/e_modules/src/modules/notes/Makefile.am
  +e17/apps/e_utils/src/bin/exige/Makefile.am
  +e17/apps/eclair/src/eclair_subtitles.c
 
 
 Um, I don't think these belong in the E17 todo list. If anything, it
 should be in the Esmart todo list. Esmart isn't, and won't be, a
 dependancy of e17.

You may be right.  The affected files are scattered across e17, and
e_modules do become part of e17 though.  On the other hand, notes didn't
work anyway, and may never work.


pgpi4AkS7lxtu.pgp
Description: PGP signature


RE: Re: [E-devel] RE: E CVS: apps/e onefang

2005-10-31 Thread dan sinclair
 You may be right.  The affected files are scattered across e17, and
 e_modules do become part of e17 though.  On the other hand, notes didn't
 work anyway, and may never work.
 


e_modules might become part of e17, but their not supported as part of the base 
system. Their addons, use at your own risk.

dan






---
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel