Re: [E-devel] E SVN: raster trunk/e/src/bin

2010-04-29 Thread sebastid
But other parts of E expects it to be gone, so it was right for them :)
Anyway, need to track down all internal users who listens to file drops
and fix correctly.

Sebastian

 Log:
   DONT strip file://! efm etc. expects it.. as its a uri! dnd broke as of
 this
   change completely... bad englebass! bad! spank! :)


 Author:   raster
 Date: 2010-04-27 20:30:31 -0700 (Tue, 27 Apr 2010)
 New Revision: 48379

 Modified:
   trunk/e/src/bin/e_dnd.c

 Modified: trunk/e/src/bin/e_dnd.c
 ===
 --- trunk/e/src/bin/e_dnd.c   2010-04-28 03:30:20 UTC (rev 48378)
 +++ trunk/e/src/bin/e_dnd.c   2010-04-28 03:30:31 UTC (rev 48379)
 @@ -764,7 +764,7 @@
/* A little bit of caching to avoid trips to X. */
cache.win = root;
  // wtf - get root of root window? pointless!
 -//cache.root = ecore_x_window_root_get(root);
 +  cache.root = ecore_x_window_root_get(root);
cache.root = root;
 }
   win = ecore_x_window_shadow_tree_at_xy_with_skip_get(cache.root, x, y,
 ignore_win, 2);
 @@ -1389,7 +1389,7 @@
 {
/* TODO: Check if hostname is in file:// uri */
if (!strncmp(files-files[i], file://, 7))
 -l = eina_list_append(l, files-files[i] + 7);
 +l = eina_list_append(l, files-files[i]);
/* TODO: download files
else if (!strncmp(files-files[i], http://;, 7))
else if (!strncmp(files-files[i], ftp://;, 6))


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




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


Re: [E-devel] E CVS: libs/efreet dj2

2008-05-07 Thread sebastid
 Enlightenment CVS committal

 Author  : dj2
 Project : e17
 Module  : libs/efreet

 Dir : e17/libs/efreet/src/lib


 Modified Files:
   efreet_ini.c


 Log Message:
 - if we can't parse the INI file we can't set ini-data so return NULL
   instead of an invalid ini file

Are you sure this has no consequences? I'm pretty sure I did it that way
for a reason (maybe parse empty or non-existing file?)

Sebastian


 ===
 RCS file: /cvs/e/e17/libs/efreet/src/lib/efreet_ini.c,v
 retrieving revision 1.11
 retrieving revision 1.12
 diff -u -3 -r1.11 -r1.12
 --- efreet_ini.c  7 May 2008 02:16:50 -   1.11
 +++ efreet_ini.c  7 May 2008 03:04:58 -   1.12
 @@ -55,6 +55,7 @@
  if (!ini) return NULL;

  ini-data = efreet_ini_parse(file);
 +if (!ini-data) FREE(ini);

  return ini;
  }
 @@ -79,8 +80,7 @@
  f = fopen(file, rb);
  if (!f) return NULL;

 -if (fstat(fileno(f), file_stat)
 -|| file_stat.st_size  1)
 +if (fstat(fileno(f), file_stat) || file_stat.st_size  1)
  {
  fclose(f);
  return NULL;
 @@ -274,7 +274,7 @@
  EAPI int
  efreet_ini_section_set(Efreet_Ini *ini, const char *section)
  {
 -if (!ini || !ini-data || !section) return 0;
 +if (!ini || !(ini-data) || !section) return 0;

  ini-section = ecore_hash_get(ini-data, section);
  return (ini-section ? 1 : 0);



 -
 This SF.net email is sponsored by the 2008 JavaOne(SM) Conference
 Don't miss this year's exciting event. There's still time to save $100.
 Use priority code J8TL2D2.
 http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
 ___
 enlightenment-cvs mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs




-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] e_module-notification installation location

2008-01-25 Thread sebastid
 Sebastian Dransfeld wrote:
 lok wrote:
 It's not a bug the configure.in are set up this way in most (all?)
 modules.
 They will be installed in `enlightenment-config --module-dir`.
 Unless you use the --enable-homedir-install option.
 Morlenxus pointed me than the --prefix was ignored, and I thought that
 it
 might be a handful option for package maintainers (or people with
 various reasons).

 I think package maintainers would like modules to install in a location
 where e finds it, so I don't really think we should use --prefix. At
 least since modules don't use --prefix like normal apps do. For most
 users it isn't logical that ./configure --prefix=/usr in 'e_modules'
 wont work with ./configure --prefix=/usr in 'e'.

 Maybe a --set-module-installation-dir option?


 Sebastian

 Well, before the great autofoo changes, this used to work. If you passed
 in a prefix (eg: same prefix as E) it would install to the module
 directory under E. If you did not pass a prefix, then it installed to
 the user's home directory (under ~/.e/e/modules) which is a place that E
 also checks.

Nah.

It didn't work very well, as we want all module data in the module dir.
Which includes locale files etc. With the old approach locale info went in
standard dirs, and the module ended in the right dir because it assumed
what e's module dir was. So if the module dir changed, we had to update
all modules.

But, can't people just do 'e_module=/dir make install' and the module will
install wherever you want?

Sebastian


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] edje_editor / engrave problem

2007-11-26 Thread sebastid
 Dave ha scritto:
 The same problem appear also in the loading of the edc files.
 Here's the second patch (not including the first)

 None seems contrary so I will commit the change to cvs. we can always
 keep back ;)

And a stupid question, why isn't parsing a problem with edje_cc?

Sebastian


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Fix recent breakage on modules menus

2007-11-26 Thread sebastid
 В пн, 2007-11-26 в 00:28 -0500, Christopher Michael написа:
 The person who broke the menu interface should've fixed all programs in
 cvs that use it, not just what he maintains. I thought we all agreed on
 that a while ago.

I broke the menu stuff, but didn't know it. Since then dh fixed most of
it, and I haven't had time to look at it at all since I'm kinda busy with
preparing my PhD defense.

Sorry

Sebastian


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Recent e_modules configure.in changes

2007-11-15 Thread sebastid


 On Wed, 14 Nov 2007, Christopher Michael wrote:

 Hey Seb,

 Just looking through configure.in  I wondered why you didn't use:

 AC_PATH_PROG(EDJE_CC, edje_cc, , $PATH)

 instead of the:

 edje_cc=$(pkg-config --variable=prefix edje)/bin/edje_cc

 it is maybe possible that $(pkg-config --variable=prefix edje)/bin in not
 in the PATH. With AC_PATH_PROG, you are sure tht edje_cc can be called.


With edje_cc=$(pkg-config --variable=prefix edje)/bin/edje_cc you get
the full path, so it will be executable anyway.

With AC_PATH_PROG(EDJE_CC, edje_cc, , $PATH) edje_cc must be in the
path, which is possible that it isn't. Could be that people install
library binaries in special folders?

Sebastian


-
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-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Recent e_modules configure.in changes

2007-11-15 Thread sebastid
 Hey Seb,

 Just looking through configure.in  I wondered why you didn't use:

 AC_PATH_PROG(EDJE_CC, edje_cc, , $PATH)

 instead of the:

 edje_cc=$(pkg-config --variable=prefix edje)/bin/edje_cc

 that is there currently.

Because the latter was used in the first file I encountered, and I just
did the same in all files.

But I agree, the first is probably better, as it really isn't important
where the edje_cc is as long as it works.

Sebastian


-
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-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] e17 crash and several other problems

2007-10-09 Thread sebastid
 Hi developpers.

 I built e17 with the fresh source from the CVS yesterday, and I noticed
 serveral
 problems.

 1) When I tried to change the size of my virtual desktop from 1x4 to 2x2
 and moved
 either slider just a little bit on the virtual desktop setting up
 dialog, e17 crashed
 with a message Enlightenment SIGFPE'd. Here's its backtrace:

 (gdb) bt
 #0  0x405cea52 in select () from /lib/libc.so.6
 #1  0x405045ac in ?? () from /usr/X11R6/lib/libX11.so.6
 #2  0x08153828 in ?? ()
 #3  0x in ?? ()
 (gdb) quit

 2) a value of a slider is messed up. See the following images:
 * http://homepage3.nifty.com/peterpan/x00/ss-e17-problem.jpg
   (the slider on the configuration dialog for screenshot module)

 * http://homepage3.nifty.com/peterpan/x00/ss-e17-problem-3.jpg
(the slider on the configuration dialog for shelf)

 * http://homepage3.nifty.com/peterpan/x00/ss-e17-problem-4.jpg
(the silders on the configuration dialog for virtual desktop)

 3) I edited a .desktop file for a module, say
 conf_wallpaper/module.desktop,
 added a name and a comment in Japanese. The name is shown in Japanese
 correctly, but the comment doesn't appear and some squares are shown
 in
 the comment field on the dialog instead.
 See the following screenshot of Module Settings dailog at:
 http://homepage3.nifty.com/peterpan/x00/ss-e17-problem-2.jpg

I think you have some old stuff installed somewhere which interferes with
your current build. See if you have some old versions installed, remove it
all and rebuild again. Else it might be a problem with localization.

Sebastian


-
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-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Worldmap with Devs - GPS Coords in info.txt

2007-07-24 Thread sebastid
And please honor the '-' on the e-mail addresses!

Sebastian


-
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-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel