Re: [E-devel] Baffled by entrance.hostname

2008-01-31 Thread Glen Larsen
Many of the entrance strings are stored in a simple config database. If 
you installed in /opt/e17, here is a sample command that would change 
this string:

$ ecore_config -c /opt/e17/etc/entrance_config.cfg -k 
/entrance/greeting/before -s Willkommen in

Also useful:

$ecore_config -c /opt/e17/etc/entrance_config.cfg -a

-glen

Toma wrote:
 In regards to entrance, does this actually work? Im trying to change
 the Welcome to $MACHINE type message in Entrance. Digging around in
 the source I get an entrance/greeting/before value but suspect thats
 not a valid part name.
 Thanks a bunch
 Toma-


part {
   name:   entrance.hostname;
   type:   TEXT;
 effect: SOFT_SHADOW;
   clip_to: all_clip;
   description {
  state:default 0.0;
  align:0.5 0.0;
  rel1 {
 relative: 0.0  1.0;
 offset:   44;
 to_x: panel_1_bg;
 to_y: panel_1_bg;
  }
  rel2 {
 relative: 1.0  1.0;
 offset:   -5   4;
 to_x: panel_1_bg;
 to_y: panel_1_bg;
  }
  color: 255 255 255 255;
  color3: 0 0 0 32;
  text {
 text: Youre on machine:;
 font: Edje Vera Bold;
 size: 16;
 min: 0 1;
 align:   0.5 0.5;
  }
   }
}

 -
 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


   

-
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


[E-devel] E17 themes, etc.

2007-06-05 Thread Glen Larsen
Allow me to gush for just a moment.

Brian just posted the return of Milky's and Simply-White and I had
forgotten how much I missed those themes.  So I spent a few minutes
exploring and configuring and this is what I have learned:

- My silly smoke-net-module rocks on Simply-White with the simply shelf.
- Whatever you do, don't put the steampunk shelves on Simply-White! 
It's like wearing a fur coat around Union Square in San Francisco.
- Dang! The smoke-net-module looks almost good on Milky's and my
roller-derby clock on that theme is way too ... un-subtle.
- The blue-eyed theme background looks stunning just about anywhere.
- steampunk has got to win the naming competition (but please don't look
at the smoke-net--module in inset-mode on that theme because I never
tested with a wood background...)
- In the future, all shelves will be shaped like golden bullets.  (I
can't remember where I heard that.)
- Can I get that steampunk background in ebony?

Thank you all for wasting a good 30 minutes of my valuable time.  I know
you are all working hard just for my enjoyment ;-)

-glen

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] New theme and a theme update

2007-05-31 Thread Glen Larsen
Since the subject of themes came up...

The Smoke theme: http://glx.com/e17/smoke_0_1b.edj

Crema theme, updated for desktop icon support:
http://glx.com/e17/crema_0_4a.edj

Enjoy.

-glen

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] entrance configuration problem

2007-03-30 Thread Glen Larsen
For entrance, autogen.sh is failing to fill in the PACKAGE_CFG_DIR
properly.  That is, after  executing ./autogen.sh --prefix=/opt/e17
the variable definition has not been substituted correctly:

$ grep PACKAGE_CFG_DIR src/config.h
#define PACKAGE_CFG_DIR ${prefix}/etc

Note that entrance will still work but will not find a configuration
DB.  Entrance will also handily create a ~/${prefix} hierarchy owned by
root.

I found a fix for this by patching configure.in and passed it by Tilman:
he doesn't see this issue on his distro without my patch so I am not
sure what is up.  I've attached the patch in the off chance there are
developers who are encountering the problem but it is clear this is not
a pure fix.

Some particulars:
$ uname -rmpio
2.6.19-gentoo-r5 x86_64 AMD Athlon(tm) 64 Processor 3000+ AuthenticAMD
GNU/Linux

autoconf (GNU Autoconf) 2.61
automake (GNU automake) 1.9.6

Suggestions welcome.

-glen
Index: configure.in
===
RCS file: /var/cvs/e/e17/apps/entrance/configure.in,v
retrieving revision 1.68
diff -u -u -r1.68 configure.in
--- configure.in	22 Mar 2007 02:17:28 -	1.68
+++ configure.in	28 Mar 2007 06:46:52 -
@@ -34,7 +34,8 @@
 fi
 test $localstatedir = '${prefix}/var'  localstatedir=/var/run/${PACKAGE}
 
-AC_DEFINE_UNQUOTED(PACKAGE_CFG_DIR, ${sysconfdir}, [Config data directory])
+AC_EXPAND_DIR(PACKAGE_CFG_DIR, $sysconfdir)
+AC_DEFINE_UNQUOTED(PACKAGE_CFG_DIR, $PACKAGE_CFG_DIR, [Config data directory])
 AC_DEFINE_UNQUOTED(PACKAGE_STATE_DIR, ${localstatedir}, [State data directory])
 
 dnl Set PACKAGE_SOURCE_DIR in config.h.
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Minor bug fix for evas_module.c

2007-02-02 Thread Glen Larsen
Index: evas_module.c
===
RCS file: /var/cvs/e/e17/libs/evas/src/lib/file/evas_module.c,v
retrieving revision 1.20
diff -u -r1.20 evas_module.c
--- evas_module.c   18 Sep 2006 09:47:34 -  1.20
+++ evas_module.c   3 Feb 2007 02:47:22 -
@@ -257,7 +257,9 @@

err = dlerror();
printf([evas module] error loading the module %s. %s\n, buf, err);
-   dlclose(handle);
+   if (handle) {
+   dlclose(handle);
+   }
em-handle = NULL;
em-func.open = NULL;
em-func.close = NULL;
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel