E CVS: libs/ewl rbdpngn

2004-06-24 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : rbdpngn
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src


Modified Files:
ewl_embed.c 


Log Message:
Make sure the mouse wheel event gets passed to the embed.

===
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_embed.c,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -3 -r1.38 -r1.39
--- ewl_embed.c 22 Jun 2004 16:44:32 -  1.38
+++ ewl_embed.c 24 Jun 2004 17:33:41 -  1.39
@@ -542,6 +542,12 @@
ev.z = z;
ev.dir = dir;
 
+   if (!last_focused) {
+   ewl_callback_call_with_event_data(EWL_WIDGET(embed),
+ EWL_CALLBACK_MOUSE_WHEEL,
+ &ev);
+   }
+
while (last_focused) {
ewl_callback_call_with_event_data(last_focused,
  EWL_CALLBACK_MOUSE_WHEEL,




---
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/emotion raster

2004-06-24 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/emotion

Dir : e17/libs/emotion/src/modules


Modified Files:
emotion_xine.c emotion_xine.h 


Log Message:


remove race conditions! SMELLY! this does mean more fd's though ! :(

===
RCS file: /cvsroot/enlightenment/e17/libs/emotion/src/modules/emotion_xine.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- emotion_xine.c  24 Jun 2004 10:55:43 -  1.3
+++ emotion_xine.c  24 Jun 2004 13:59:05 -  1.4
@@ -7,12 +7,6 @@
 #include 
 
 static intinit_count = 0;
-static intfd_read = -1;
-static intfd_write = -1;
-Ecore_Fd_Handler *fd_handler = NULL;
-static intfd_ev_read = -1;
-static intfd_ev_write = -1;
-Ecore_Fd_Handler *fd_ev_handler = NULL;
 static xine_t*decoder = NULL;
 
 static int em_init(void);
@@ -88,40 +82,6 @@
   }
  }
xine_init(decoder);
- {
-int fds[2];
-
-if (pipe(fds) == 0)
-  {
- fd_read = fds[0];
- fd_write = fds[1];
- fcntl(fd_read, F_SETFL, O_NONBLOCK);
- fd_handler = ecore_main_fd_handler_add(fd_read, 
-ECORE_FD_READ, 
-_em_fd_active,
-decoder,
-NULL,
-NULL);
- ecore_main_fd_handler_active_set(fd_handler, ECORE_FD_READ);
-  }
- }
- {
-int fds[2];
-
-if (pipe(fds) == 0)
-  {
- fd_ev_read = fds[0];
- fd_ev_write = fds[1];
- fcntl(fd_ev_read, F_SETFL, O_NONBLOCK);
- fd_ev_handler = ecore_main_fd_handler_add(fd_ev_read, 
-   ECORE_FD_READ, 
-   _em_fd_ev_active,
-   decoder,
-   NULL,
-   NULL);
- ecore_main_fd_handler_active_set(fd_ev_handler, ECORE_FD_READ);
-  }
- }
  }
return init_count;
 }
@@ -134,20 +94,7 @@
if (decoder)
  {
xine_exit(decoder);
-   ecore_main_fd_handler_del(fd_handler);
-   close(fd_write);
-   close(fd_read);
-   ecore_main_fd_handler_del(fd_ev_handler);
-   close(fd_ev_write);
-   close(fd_ev_read);
-   
decoder = NULL;
-   fd_handler = NULL;
-   fd_read = -1;
-   fd_write = -1;
-   fd_ev_handler = NULL;
-   fd_ev_read = -1;
-   fd_ev_write = -1;
  }
return 0;
 }
@@ -164,7 +111,6 @@
ev = calloc(1, sizeof(Emotion_Xine_Video));
if (!ev) return NULL;
ev->obj = obj;
-   ev->fd = fd_write;
 
/* some notes on parameters we could swizzle for certain inputs */
if (0)
@@ -278,6 +224,42 @@
   printf("MRL: %s\n", auto_play_mrls[i]);
  }
  }
+ {
+   int fds[2];
+   
+   if (pipe(fds) == 0)
+ {
+ev->fd_read = fds[0];
+ev->fd_write = fds[1];
+fcntl(ev->fd_read, F_SETFL, O_NONBLOCK);
+ev->fd_handler = ecore_main_fd_handler_add(ev->fd_read,
+   ECORE_FD_READ, 
+   _em_fd_active,
+   ev,
+   NULL,
+   NULL);
+ecore_main_fd_handler_active_set(ev->fd_handler, ECORE_FD_READ);
+ }
+ }
+ {
+   int fds[2];
+   
+   if (pipe(fds) == 0)
+ {
+ev->fd_ev_read = fds[0];
+ev->fd_ev_write = fds[1];
+fcntl(ev->fd_ev_read, F_SETFL, O_NONBLOCK);
+ev->fd_ev_handler = ecore_main_fd_handler_add(ev->fd_ev_read, 
+  ECORE_FD_READ, 
+  _em_fd_ev_active,
+  ev,
+  NULL,
+  NULL);
+ecore_main_fd_handler_active_set(ev->fd_ev_handler, ECORE_FD_READ);
+ }
+ }
+   ev->fd = ev->fd_write;
+
ev->video = xine_open_video_driver(decoder, "emotion", XINE_VISUAL_TYPE_NONE, ev);
ev->audio = xine_open_audio_driver(decoder, "oss", ev); 
 //   e

E CVS: libs/emotion raster

2004-06-24 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/emotion

Dir : e17/libs/emotion/src/lib


Modified Files:
Emotion.h emotion_private.h emotion_smart.c 


Log Message:


support events coming from xine a lot better...

still need to support title, artist etc. for mp3's and such...

===
RCS file: /cvsroot/enlightenment/e17/libs/emotion/src/lib/Emotion.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- Emotion.h   24 Jun 2004 06:11:32 -  1.2
+++ Emotion.h   24 Jun 2004 10:55:43 -  1.3
@@ -70,12 +70,12 @@
 const char  *emotion_object_video_channel_name_get(Evas_Object *obj, int channel);
 void emotion_object_video_channel_set (Evas_Object *obj, int channel);
 int  emotion_object_video_channel_get (Evas_Object *obj);
-void emotion_object_spu_mute_set(Evas_Object *obj, Evas_Bool mute);
-Evas_Boolemotion_object_spu_mute_get(Evas_Object *obj);
-int  emotion_object_spu_channel_count   (Evas_Object *obj);
-const char  *emotion_object_spu_channel_name_get(Evas_Object *obj, int channel);
-void emotion_object_spu_channel_set (Evas_Object *obj, int channel);
-int  emotion_object_spu_channel_get (Evas_Object *obj);
+void emotion_object_spu_mute_set  (Evas_Object *obj, Evas_Bool mute);
+Evas_Boolemotion_object_spu_mute_get  (Evas_Object *obj);
+int  emotion_object_spu_channel_count (Evas_Object *obj);
+const char  *emotion_object_spu_channel_name_get  (Evas_Object *obj, int channel);
+void emotion_object_spu_channel_set   (Evas_Object *obj, int channel);
+int  emotion_object_spu_channel_get   (Evas_Object *obj);
 int  emotion_object_chapter_count (Evas_Object *obj);
 void emotion_object_chapter_set   (Evas_Object *obj, int chapter);
 int  emotion_object_chapter_get   (Evas_Object *obj);
@@ -83,5 +83,12 @@
 void emotion_object_play_speed_set(Evas_Object *obj, double speed);
 double   emotion_object_play_speed_get(Evas_Object *obj);
 void emotion_object_eject (Evas_Object *obj);
-
+const char  *emotion_object_title_get (Evas_Object *obj);
+const char  *emotion_object_progress_info_get (Evas_Object *obj);
+double   emotion_object_progress_status_get   (Evas_Object *obj);
+const char  *emotion_object_ref_file_get  (Evas_Object *obj);
+int  emotion_object_ref_num_get   (Evas_Object *obj);
+int  emotion_object_spu_button_count_get  (Evas_Object *obj);
+int  emotion_object_spu_button_get(Evas_Object *obj);
+
 #endif
===
RCS file: /cvsroot/enlightenment/e17/libs/emotion/src/lib/emotion_private.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- emotion_private.h   18 Jun 2004 15:38:03 -  1.1
+++ emotion_private.h   24 Jun 2004 10:55:43 -  1.2
@@ -65,5 +65,12 @@
 void  _emotion_frame_new(Evas_Object *obj);
 void  _emotion_video_pos_update(Evas_Object *obj, double pos, double len);
 void  _emotion_frame_resize(Evas_Object *obj, int w, int h, double ratio);
-
+void  _emotion_decode_stop(Evas_Object *obj);
+void  _emotion_channels_change(Evas_Object *obj);
+void  _emotion_title_set(Evas_Object *obj, char *title);
+void  _emotion_progress_set(Evas_Object *obj, char *info, double stat);
+void  _emotion_file_ref_set(Evas_Object *obj, char *file, int num);
+void  _emotion_spu_button_num_set(Evas_Object *obj, int num);
+void  _emotion_spu_button_set(Evas_Object *obj, int button);
+
 #endif
===
RCS file: /cvsroot/enlightenment/e17/libs/emotion/src/lib/emotion_smart.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- emotion_smart.c 20 Jun 2004 03:20:31 -  1.2
+++ emotion_smart.c 24 Jun 2004 10:55:43 -  1.3
@@ -46,6 +46,20 @@

unsigned char  play : 1;
unsigned char  seek : 1;
+   
+   char *title;
+   struct {
+  char *info;
+  double stat;
+   } progress;
+   struct {
+  char *file;
+  int num;
+   } ref;
+   struct {
+  int button_num;
+  int button;
+   } spu;
 };
 
 static void _mouse_move(void *data, Evas *ev, Evas_Object *obj, void *event_info);
@@ -135,7 +149,20 @@
if ((file) && (sd->file) && (!strcmp(file, sd->file))) return;
if (sd->file) free(sd->file);
sd->file = NULL;
-   
+   if (sd->title) free(sd->title);
+   sd->title = NULL;
+   if (sd->progress.info) free(sd->progress.info);
+   sd->progress.info = NULL;
+   sd->progress.stat = 0.0;
+   if (sd->ref.file) free(sd->ref.file);
+   sd->ref.file = NULL;
+   sd->ref.num = 0;
+   sd->spu.button_num = 0;
+   sd->spu.button = -1;
+   sd->ratio = 1.0;
+   s

E CVS: libs/emotion raster

2004-06-24 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/emotion

Dir : e17/libs/emotion/src/bin


Modified Files:
emotion_test_main.c 


Log Message:


support events coming from xine a lot better...

still need to support title, artist etc. for mp3's and such...

===
RCS file: /cvsroot/enlightenment/e17/libs/emotion/src/bin/emotion_test_main.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- emotion_test_main.c 18 Jun 2004 15:38:03 -  1.1
+++ emotion_test_main.c 24 Jun 2004 10:55:42 -  1.2
@@ -474,6 +474,77 @@
edje_object_part_text_set(oe, "video_progress_txt", buf);
 }
 
+static void
+video_obj_stopped_cb(void *data, Evas_Object *obj, void *event_info)
+{
+   Evas_Object *oe;
+
+   oe = data;
+   printf("video stopped!\n");
+}
+
+static void
+video_obj_channels_cb(void *data, Evas_Object *obj, void *event_info)
+{
+   Evas_Object *oe;
+
+   oe = data;
+   printf("channels changed: [AUD %i][VID %i][SPU %i]\n",
+ emotion_object_audio_channel_count(obj),
+ emotion_object_video_channel_count(obj),
+ emotion_object_spu_channel_count(obj));
+}
+
+static void
+video_obj_title_cb(void *data, Evas_Object *obj, void *event_info)
+{
+   Evas_Object *oe;
+
+   oe = data;
+   printf("video title to: \"%s\"\n", emotion_object_title_get(obj));
+}
+
+static void
+video_obj_progress_cb(void *data, Evas_Object *obj, void *event_info)
+{
+   Evas_Object *oe;
+
+   oe = data;
+   printf("progress: \"%s\" %3.3f\n", 
+ emotion_object_progress_info_get(obj),
+ emotion_object_progress_status_get(obj));
+}
+
+static void
+video_obj_ref_cb(void *data, Evas_Object *obj, void *event_info)
+{
+   Evas_Object *oe;
+
+   oe = data;
+   printf("video ref to: \"%s\" %i\n",
+ emotion_object_ref_file_get(obj),
+ emotion_object_ref_num_get(obj));
+}
+
+static void
+video_obj_button_num_cb(void *data, Evas_Object *obj, void *event_info)
+{
+   Evas_Object *oe;
+
+   oe = data;
+   printf("video spu buttons to: %i\n",
+ emotion_object_spu_button_count_get(obj));
+}
+
+static void
+video_obj_button_cb(void *data, Evas_Object *obj, void *event_info)
+{
+   Evas_Object *oe;
+
+   oe = data;
+   printf("video selected spu button: %i\n",
+ emotion_object_spu_button_get(obj));
+}
 
 
 
@@ -621,18 +692,6 @@
Frame_Data *fd;
 

-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
 /* basic video object setup */   
o = emotion_object_add(evas);   
emotion_object_file_set(o, file);
@@ -642,18 +701,7 @@
emotion_object_smooth_scale_set(o, 1);
evas_object_show(o);
 /* end basic video setup. all the rest here is just to be fancy */
-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
+

video_objs = evas_list_append(video_objs, o);

@@ -677,7 +725,15 @@
evas_object_smart_callback_add(o, "frame_decode", video_obj_frame_decode_cb, oe);
evas_object_smart_callback_add(o, "frame_resize", video_obj_frame_resize_cb, oe);
evas_object_smart_callback_add(o, "length_change", video_obj_length_change_cb, oe);
-  
+
+   evas_object_smart_callback_add(o, "decode_stop", video_obj_stopped_cb, oe);
+   evas_object_smart_callback_add(o, "channels_change", video_obj_channels_cb, oe);
+   evas_object_smart_callback_add(o, "title_change", video_obj_title_cb, oe);
+   evas_object_smart_callback_add(o, "progress_change", video_obj_progress_cb, oe);
+   evas_object_smart_callback_add(o, "ref_change", video_obj_ref_cb, oe);
+   evas_object_smart_callback_add(o, "button_num_change", video_obj_button_num_cb, 
oe);
+   evas_object_smart_callback_add(o, "button_change", video_obj_button_cb, oe);
+   
edje_object_signal_callback_add(oe, "video_control", "play", 
video_obj_signal_play_cb, o);
edje_object_signal_callback_add(oe, "video_control", "pause", 
video_obj_signal_pause_cb, o);
edje_object_signal_callback_add(oe, "video_control", "stop", 
video_obj_signal_stop_cb, o);




---
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/emotion raster

2004-06-24 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/emotion

Dir : e17/libs/emotion/src/modules


Modified Files:
emotion_xine.c 


Log Message:


support events coming from xine a lot better...

still need to support title, artist etc. for mp3's and such...

===
RCS file: /cvsroot/enlightenment/e17/libs/emotion/src/modules/emotion_xine.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- emotion_xine.c  24 Jun 2004 06:11:32 -  1.2
+++ emotion_xine.c  24 Jun 2004 10:55:43 -  1.3
@@ -244,7 +244,7 @@
 xine_config_update_entry(decoder, &cf);
  }
  }
-   if (1)
+   if (0)
  {
xine_mrl_t **mrls;
int mrls_num;
@@ -263,7 +263,7 @@
   }
  }
  }
-   if (1)
+   if (0)
  {
char **auto_play_mrls;
int auto_play_num;
@@ -1040,104 +1040,103 @@
 Emotion_Xine_Video *ev;
 Emotion_Xine_Event *eev;
 
-printf("event from xine...\n");
 ev = buf[0];
 eev = buf[1];
 switch (eev->type)
   {
case XINE_EVENT_UI_PLAYBACK_FINISHED:
{
-  printf("EV: Playback finished\n");
-  /* no data in this event */
+  if (ev->timer)
+{
+   ecore_timer_del(ev->timer);
+   ev->timer = NULL;
+}
+  ev->play = 0;
+  _emotion_decode_stop(ev->obj);
}
  break;
case XINE_EVENT_UI_CHANNELS_CHANGED:
{
-  printf("EV: Channels changed\n");
-  /* no data in this event */
+  _emotion_channels_change(ev->obj);
}
  break;
case XINE_EVENT_UI_SET_TITLE:
{
-  xine_ui_data_t *ev;
+  xine_ui_data_t *e;
   
-  ev = eev->xine_event;
-  printf("EV: New Title \"%s\"\n", ev->str);
-  // title is ev->str
+  e = eev->xine_event;
+  _emotion_title_set(ev->obj, e->str);
}
  break;
case XINE_EVENT_UI_MESSAGE:
{
-  xine_ui_message_data_t *ev;
+  xine_ui_message_data_t *e;
   
-  ev = eev->xine_event;
-  printf("EV: UI Message\n");
-  // ev->type = error type(XINE_MSG_NO_ERROR, 
XINE_MSG_GENERAL_WARNING, XINE_MSG_UNKNOWN_HOST etc.)
-  // ev->messages is a list of messages DOUBLE null terminated
+  e = eev->xine_event;
+  printf("EV: UI Message [FIXME: break this out to emotion 
api]\n");
+  // e->type = error type(XINE_MSG_NO_ERROR, 
XINE_MSG_GENERAL_WARNING, XINE_MSG_UNKNOWN_HOST etc.)
+  // e->messages is a list of messages DOUBLE null terminated
}
  break;
case XINE_EVENT_AUDIO_LEVEL:
{
-  xine_audio_level_data_t *ev;
+  xine_audio_level_data_t *e;
 
-  ev = eev->xine_event;
-  printf("EV: Audio Level\n");
-  // ev->left (0->100) 
-  // ev->right
-  // ev->mute
+  e = eev->xine_event;
+  printf("EV: Audio Level [FIXME: break this out to emotion 
api]\n");
+  // e->left (0->100) 
+  // e->right
+  // e->mute
}
  break;
case XINE_EVENT_PROGRESS:
{
-  xine_progress_data_t *ev;
+  xine_progress_data_t *e;
   
-  ev = eev->xine_event;
-  printf("EV: Progress \"%s\" %i%%\n", ev->description, 
ev->percent);
-  // ev->description is text
-  // ev->percent is a percentage marker (0-100)
+  e = eev->xine_event;
+  _emotion_progress_set(ev->obj, e->description, 
(double)e->percent / 100.0);
}
  break;
case XINE_EVENT_MRL_REFERENCE:
{
-  xine_mrl_reference_data_t *ev;
+  xine_mrl_reference_data_t *e;
   
-  ev = eev->xine_event;
-  printf("EV: MRL Ref to \"%s\

E CVS: e technikolor

2004-06-24 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : technikolor
Project : web
Module  : e

Dir : web/e/data


Modified Files:
news.html 


Log Message:
Added rasters latest mailing list post to the news update.

===
RCS file: /cvsroot/enlightenment/web/e/data/news.html,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -3 -r1.70 -r1.71
--- news.html   24 Jun 2004 08:38:10 -  1.70
+++ news.html   24 Jun 2004 10:06:35 -  1.71
@@ -16,10 +16,14 @@
 we can really show off all the great things we have ready to show.  If you can attend 
please show
 up and show your support for Enlightenment.  T-Shirts and goodies are coming soon so 
that you can
 show off your support.  You can find some details about the show 
-http://marc.theaimsgroup.com/?l=enlightenment-devel&m=108709242323923&w=2";>from 
the mailing list post.
+http://marc.theaimsgroup.com/?l=enlightenment-devel&m=108709242323923&w=2";>from 
the mailing list post,
+and http://sourceforge.net/mailarchive/forum.php?thread_id=4971781&forum_id=6427";>even
 more details on
+how you can help and participate.
 
 
-http://www.linuxworldexpo.com/live/12/images/12/logo/linuxworld_logo.jpg";>
+http://www.linuxworldexpo.com/live/12/";>
+http://www.linuxworldexpo.com/live/12/images/12/logo/linuxworld_logo.jpg"; 
border=0>
+
 
 @:news_end@
 




---
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: e technikolor

2004-06-24 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : technikolor
Project : web
Module  : e

Dir : web/e/pages


Modified Files:
news.html 


Log Message:
Added rasters latest mailing list post to the news update.

===
RCS file: /cvsroot/enlightenment/web/e/pages/news.html,v
retrieving revision 1.124
retrieving revision 1.125
diff -u -3 -r1.124 -r1.125
--- news.html   24 Jun 2004 08:38:11 -  1.124
+++ news.html   24 Jun 2004 10:06:38 -  1.125
@@ -125,10 +125,14 @@
 we can really show off all the great things we have ready to show.  If you can attend 
please show
 up and show your support for Enlightenment.  T-Shirts and goodies are coming soon so 
that you can
 show off your support.  You can find some details about the show 
-http://marc.theaimsgroup.com/?l=enlightenment-devel&m=108709242323923&w=2";>from 
the mailing list post.
+http://marc.theaimsgroup.com/?l=enlightenment-devel&m=108709242323923&w=2";>from 
the mailing list post,
+and http://sourceforge.net/mailarchive/forum.php?thread_id=4971781&forum_id=6427";>even
 more details on
+how you can help and participate.
 
 
-http://www.linuxworldexpo.com/live/12/images/12/logo/linuxworld_logo.jpg";>
+http://www.linuxworldexpo.com/live/12/";>
+http://www.linuxworldexpo.com/live/12/images/12/logo/linuxworld_logo.jpg"; 
border=0>
+
 
 
 




---
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: engage handyande

2004-06-24 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : handyande
Project : misc
Module  : engage

Dir : misc/engage/src


Modified Files:
config.c 


Log Message:
bad raster
===
RCS file: /cvsroot/enlightenment/misc/engage/src/config.c,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -3 -r1.31 -r1.32
--- config.c24 Jun 2004 06:16:26 -  1.31
+++ config.c24 Jun 2004 08:41:26 -  1.32
@@ -52,7 +52,7 @@
   "The overall width of the application area");
   ecore_config_int_create("engage.options.height", 100, 'H', "height",
   "The overall height of the application area");
-  ecore_config_theme_create("engage.options.theme", "creepy_engage", 't', "theme",
+  ecore_config_theme_create("engage.options.theme", "gentoo", 't', "theme",
 "The theme name to use (minus path and extension)");
   /* not technically correct - iconsets should do this, but it looks better for
* everything bar 'gentoo' - and we all have the others installed ;) */




---
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: e technikolor

2004-06-24 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : technikolor
Project : web
Module  : e

Dir : web/e/data


Modified Files:
download.html news.html 


Log Message:
Commited this the other day but apparently didnt' take.


===
RCS file: /cvsroot/enlightenment/web/e/data/download.html,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -3 -r1.30 -r1.31
--- download.html   6 Nov 2003 03:12:44 -   1.30
+++ download.html   24 Jun 2004 08:38:10 -  1.31
@@ -4,12 +4,19 @@
 
 
 The Enlightenment DR0.16.5 stable release has been considered stable
-since October 27th, 2000.  Before downloading, review the following
-list of required libraries and applications:
+since October 27th, 2000.  DR16.6 was released November 2nd, 2003. 
+DR16.7 is currently in testing.
+Before downloading, review the following
+list of required dependancies:
 
 
+
+DR16.6 and earlier dependancies:
+
 
-  
+
+
+  
 
   
 
@@ -19,9 +26,6 @@
http://libpng.sourceforge.net/";>libPNG 1.0.8
http://www.gzip.org/zlib.tar.gz";>Zlib 1.1.3
http://www.ijg.org/";>libJPEG 6b
-   http://prtr-13.ucsc.edu/~badger/software/libungif/";>libUNGIF 
4.1.0 (optional)
-   http://www.gtk.org";>GTK+ 1.2.1 (optional)
-   http://www.gtk.org";>GLIB 1.2.1 (optional)
  
  http://prdownloads.sourceforge.net/enlightenment/fnlib-0.5.tar.gz";>FNLIB 0.5 
(or greater)
  http://www.freetype.org/";>FreeType 1.3.1 (or greater)
@@ -29,11 +33,36 @@
   
 
   
+
+
+
+DR16.7 dependancies [Note: DR16.7 can also use the old dependancies if these are not 
available]:
+
+
+
+  
+
+  
+
+  http://sourceforge.net/project/showfiles.php?group_id=2";>Imlib2 v1.1.0
+  
+http://libpng.sourceforge.net/";>libPNG 1.0.8
+http://www.gzip.org/zlib.tar.gz";>Zlib 1.1.3
+http://www.ijg.org/";>libJPEG 6b
+  
+  http://www.freetype.org/";>FreeType2 2.1.6
+
+  
+
+  
+
+
   
 
 Enlightenment can be compiled on a number of different *NIX platforms.  Below are 
packages of the current, stable release of Enlightenment. Please choose from the list 
of available distributions the one that is right for you.
 
 
+
 
   
 Distribution/Platform
@@ -89,6 +118,7 @@
   
 
 
+
 
 
 
@@ -103,6 +133,7 @@
 which can be found here:
 
 
+
 
   
 Application
@@ -129,6 +160,7 @@
[http://packages.debian.org/epplets";>Debian GNU/Linux packages for 
epplets]
   
 
+
 
 
 @end@
===
RCS file: /cvsroot/enlightenment/web/e/data/news.html,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -3 -r1.69 -r1.70
--- news.html   2 Jun 2004 18:38:12 -   1.69
+++ news.html   24 Jun 2004 08:38:10 -  1.70
@@ -3,6 +3,29 @@
 News
 
 @:news_title@
+Tue Jun 22 - mailto:benr@@NO.SPAMcuddletech.com";>benr - We're going to 
LinuxWorld SF!
+@:news_body@
+
+
+Great news!  Raster has secured us a booth in the .Org pavilion of 
+http://www.linuxworldexpo.com/live/12/";>LinuxWorld San Francisco.  
Raster,
+RbdPngn, Xenith, Vac, and myself will all be there, with some suprise drop-ins 
expected.  
+The expo runs from Tues August 2nd till Thurs August 5th.  We're in Booth 161.  Raster
+has a bunch of free expo passes, so if you want to attend but can't afford the expo 
registration
+cost just ask on the mailing list.  We're trying to get demos completed for the show, 
so that
+we can really show off all the great things we have ready to show.  If you can attend 
please show
+up and show your support for Enlightenment.  T-Shirts and goodies are coming soon so 
that you can
+show off your support.  You can find some details about the show 
+http://marc.theaimsgroup.com/?l=enlightenment-devel&m=108709242323923&w=2";>from 
the mailing list post.
+
+
+http://www.linuxworldexpo.com/live/12/images/12/logo/linuxworld_logo.jpg";>
+
+@:news_end@
+
+
+
+@:news_title@
 Tue Jun 1 - mailto:benr@@NO.SPAMcuddletech.com";>benr - DR16.7-pre3 
Released
 @:news_body@
 




---
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: e technikolor

2004-06-24 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : technikolor
Project : web
Module  : e

Dir : web/e/pages


Modified Files:
download.html news.html 


Log Message:
Commited this the other day but apparently didnt' take.


===
RCS file: /cvsroot/enlightenment/web/e/pages/download.html,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -3 -r1.81 -r1.82
--- download.html   6 Jun 2004 04:54:21 -   1.81
+++ download.html   24 Jun 2004 08:38:11 -  1.82
@@ -113,12 +113,19 @@
 
 
 The Enlightenment DR0.16.5 stable release has been considered stable
-since October 27th, 2000.  Before downloading, review the following
-list of required libraries and applications:
+since October 27th, 2000.  DR16.6 was released November 2nd, 2003. 
+DR16.7 is currently in testing.
+Before downloading, review the following
+list of required dependancies:
 
 
+
+DR16.6 and earlier dependancies:
+
 
-  
+
+
+  
 
   
 
@@ -128,9 +135,6 @@
http://libpng.sourceforge.net/";>libPNG 1.0.8
http://www.gzip.org/zlib.tar.gz";>Zlib 1.1.3
http://www.ijg.org/";>libJPEG 6b
-   http://prtr-13.ucsc.edu/~badger/software/libungif/";>libUNGIF 
4.1.0 (optional)
-   http://www.gtk.org";>GTK+ 1.2.1 (optional)
-   http://www.gtk.org";>GLIB 1.2.1 (optional)
  
  http://prdownloads.sourceforge.net/enlightenment/fnlib-0.5.tar.gz";>FNLIB 0.5 
(or greater)
  http://www.freetype.org/";>FreeType 1.3.1 (or greater)
@@ -138,11 +142,36 @@
   
 
   
+
+
+
+DR16.7 dependancies [Note: DR16.7 can also use the old dependancies if these are not 
available]:
+
+
+
+  
+
+  
+
+  http://sourceforge.net/project/showfiles.php?group_id=2";>Imlib2 v1.1.0
+  
+http://libpng.sourceforge.net/";>libPNG 1.0.8
+http://www.gzip.org/zlib.tar.gz";>Zlib 1.1.3
+http://www.ijg.org/";>libJPEG 6b
+  
+  http://www.freetype.org/";>FreeType2 2.1.6
+
+  
+
+  
+
+
   
 
 Enlightenment can be compiled on a number of different *NIX platforms.  Below are 
packages of the current, stable release of Enlightenment. Please choose from the list 
of available distributions the one that is right for you.
 
 
+
 
   
 Distribution/Platform
@@ -198,6 +227,7 @@
   
 
 
+
 
 
 
@@ -212,6 +242,7 @@
 which can be found here:
 
 
+
 
   
 Application
@@ -238,6 +269,7 @@
[http://packages.debian.org/epplets";>Debian GNU/Linux packages for 
epplets]
   
 
+
 
 
 
===
RCS file: /cvsroot/enlightenment/web/e/pages/news.html,v
retrieving revision 1.123
retrieving revision 1.124
diff -u -3 -r1.123 -r1.124
--- news.html   6 Jun 2004 04:54:22 -   1.123
+++ news.html   24 Jun 2004 08:38:11 -  1.124
@@ -112,6 +112,29 @@
 News
 
 
+Tue Jun 22 - mailto:[EMAIL PROTECTED]">benr - We're going to LinuxWorld 
SF!
+
+
+
+Great news!  Raster has secured us a booth in the .Org pavilion of 
+http://www.linuxworldexpo.com/live/12/";>LinuxWorld San Francisco.  
Raster,
+RbdPngn, Xenith, Vac, and myself will all be there, with some suprise drop-ins 
expected.  
+The expo runs from Tues August 2nd till Thurs August 5th.  We're in Booth 161.  Raster
+has a bunch of free expo passes, so if you want to attend but can't afford the expo 
registration
+cost just ask on the mailing list.  We're trying to get demos completed for the show, 
so that
+we can really show off all the great things we have ready to show.  If you can attend 
please show
+up and show your support for Enlightenment.  T-Shirts and goodies are coming soon so 
that you can
+show off your support.  You can find some details about the show 
+http://marc.theaimsgroup.com/?l=enlightenment-devel&m=108709242323923&w=2";>from 
the mailing list post.
+
+
+http://www.linuxworldexpo.com/live/12/images/12/logo/linuxworld_logo.jpg";>
+
+
+
+
+
+
 Tue Jun 1 - mailto:[EMAIL PROTECTED]">benr - DR16.7-pre3 Released
 
 




---
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs