Enlightenment CVS committal
Author : dj2
Project : e17
Module : libs/ewl
Dir : e17/libs/ewl/src/bin/tests/image
Modified Files:
ewl_image_test.c
Log Message:
- change tabs to spaces (Ewl uses an 8 space indent now instead of a tab)
===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/image/ewl_image_test.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- ewl_image_test.c 26 Feb 2008 04:24:11 -0000 1.7
+++ ewl_image_test.c 6 May 2008 20:09:04 -0000 1.8
@@ -1,4 +1,4 @@
-/* vim: set sw=8 ts=8 sts=8 noexpandtab: */
+/* vim: set sw=8 ts=8 sts=8 expandtab: */
#include "Ewl_Test.h"
#include "ewl_test_private.h"
#include "ewl_button.h"
@@ -33,267 +33,267 @@
static int proportional_test_set_get(char *buf, int len);
static Ewl_Unit_Test image_unit_tests[] = {
- {"image path set/get", path_test_set_get, NULL, -1, 0},
- {"image scale set/get", scale_test_set_get, NULL, -1, 0},
- {"image size set/get", size_test_set_get, NULL, -1, 0},
- {"image constrain set/get", constrain_test_set_get, NULL, -1,
0},
- {"image proportional set/get", proportional_test_set_get, NULL,
-1, 0},
- {NULL, NULL, NULL, -1, 0}
- };
+ {"image path set/get", path_test_set_get, NULL, -1, 0},
+ {"image scale set/get", scale_test_set_get, NULL, -1, 0},
+ {"image size set/get", size_test_set_get, NULL, -1, 0},
+ {"image constrain set/get", constrain_test_set_get, NULL, -1,
0},
+ {"image proportional set/get", proportional_test_set_get, NULL,
-1, 0},
+ {NULL, NULL, NULL, -1, 0}
+ };
void
test_info(Ewl_Test *test)
{
- test->name = "Image";
- test->tip = "Provides a widget for displaying evas\n"
- "loadable images, and edjes.";
- test->filename = __FILE__;
- test->func = create_test;
- test->type = EWL_TEST_TYPE_SIMPLE;
- test->unit_tests = image_unit_tests;
+ test->name = "Image";
+ test->tip = "Provides a widget for displaying evas\n"
+ "loadable images, and edjes.";
+ test->filename = __FILE__;
+ test->func = create_test;
+ test->type = EWL_TEST_TYPE_SIMPLE;
+ test->unit_tests = image_unit_tests;
}
static void
destroy_image_test(Ewl_Widget * w __UNUSED__, void *ev_data __UNUSED__,
- void *user_data __UNUSED__)
+ void *user_data __UNUSED__)
{
- ecore_dlist_destroy(images);
- if (last_dir)
- free(last_dir);
+ ecore_dlist_destroy(images);
+ if (last_dir)
+ free(last_dir);
}
static void
image_goto_prev_cb(Ewl_Widget * w __UNUSED__, void *ev_data __UNUSED__,
- void *user_data __UNUSED__)
+ void *user_data __UNUSED__)
{
- char *img = NULL;
+ char *img = NULL;
- ecore_dlist_previous(images);
- img = ecore_dlist_current(images);
+ ecore_dlist_previous(images);
+ img = ecore_dlist_current(images);
- if (!img) img = ecore_dlist_last_goto(images);
+ if (!img) img = ecore_dlist_last_goto(images);
- ewl_text_text_set(EWL_TEXT(entry_path), img);
- ewl_image_file_set(EWL_IMAGE(image), img, NULL);
+ ewl_text_text_set(EWL_TEXT(entry_path), img);
+ ewl_image_file_set(EWL_IMAGE(image), img, NULL);
}
static void
image_remove_cb(Ewl_Widget * w __UNUSED__, void *ev_data __UNUSED__,
- void *user_data __UNUSED__)
+ void *user_data __UNUSED__)
{
- char *img = NULL;
+ char *img = NULL;
- ecore_dlist_remove_destroy(images);
-
- img = ecore_dlist_current(images);
+ ecore_dlist_remove_destroy(images);
+
+ img = ecore_dlist_current(images);
- if (!img) img = ecore_dlist_last_goto(images);
+ if (!img) img = ecore_dlist_last_goto(images);
- ewl_text_text_set(EWL_TEXT(entry_path), img);
- ewl_image_file_set(EWL_IMAGE(image), img, NULL);
+ ewl_text_text_set(EWL_TEXT(entry_path), img);
+ ewl_image_file_set(EWL_IMAGE(image), img, NULL);
}
static void
image_load(const char *img)
{
- if (img && ecore_file_exists(img)) {
- ecore_dlist_append(images, strdup(img));
- ecore_dlist_last_goto(images);
- ewl_image_file_set(EWL_IMAGE(image), img, NULL);
- } else
- printf("ERROR: %s does not exist\n", img);
+ if (img && ecore_file_exists(img)) {
+ ecore_dlist_append(images, strdup(img));
+ ecore_dlist_last_goto(images);
+ ewl_image_file_set(EWL_IMAGE(image), img, NULL);
+ } else
+ printf("ERROR: %s does not exist\n", img);
}
static void
image_goto_next_cb(Ewl_Widget * w __UNUSED__, void *ev_data __UNUSED__,
- void *user_data __UNUSED__)
+ void *user_data __UNUSED__)
{
- char *img = NULL;
+ char *img = NULL;
- ecore_dlist_next(images);
- img = ecore_dlist_current(images);
+ ecore_dlist_next(images);
+ img = ecore_dlist_current(images);
- if (!img)
- img = ecore_dlist_first_goto(images);
+ if (!img)
+ img = ecore_dlist_first_goto(images);
- ewl_text_text_set(EWL_TEXT(entry_path), img);
- ewl_image_file_set(EWL_IMAGE(image), img, NULL);
+ ewl_text_text_set(EWL_TEXT(entry_path), img);
+ ewl_image_file_set(EWL_IMAGE(image), img, NULL);
}
void
entry_path_cb_value_changed(Ewl_Widget *w, void *ev_data __UNUSED__,
- void *data __UNUSED__)
+ void *data __UNUSED__)
{
- char *img;
+ char *img;
- img = ewl_text_text_get(EWL_TEXT(w));
- image_load(img);
- free(img);
+ img = ewl_text_text_get(EWL_TEXT(w));
+ image_load(img);
+ free(img);
}
int
create_test(Ewl_Container *image_box)
{
- Ewl_Widget *scrollpane;
- Ewl_Widget *box;
- Ewl_Widget *button;
- Ewl_Widget *note;
- char *image_file = NULL;
-
- images = ecore_dlist_new();
- ecore_dlist_free_cb_set(images, free);
-
- scrollpane = ewl_scrollpane_new();
- ewl_callback_append(scrollpane, EWL_CALLBACK_DELETE_WINDOW,
- destroy_image_test, NULL);
- ewl_container_child_append(image_box, scrollpane);
- ewl_widget_show(scrollpane);
-
- if ((ecore_file_exists(PACKAGE_DATA_DIR "/ewl/images/e-logo.png")))
- image_file = strdup(PACKAGE_DATA_DIR "/ewl/images/e-logo.png");
- else if ((ecore_file_exists(PACKAGE_SOURCE_DIR
"/data/images/e-logo.png")))
- image_file = strdup(PACKAGE_SOURCE_DIR
"/data/images/e-logo.png");
- else if ((ecore_file_exists("./data/images/e-logo.png")))
- image_file = strdup("./data/images/e-logo.png");
- else if ((ecore_file_exists("../data/images/e-logo.png")))
- image_file = strdup("../data/images/e-logo.png");
-
- image = ewl_image_new();
- ewl_image_file_set(EWL_IMAGE(image), image_file, NULL);
- ewl_object_padding_set(EWL_OBJECT(image), 0, 0, 5, 0);
- ewl_object_alignment_set(EWL_OBJECT(image), EWL_FLAG_ALIGN_CENTER);
- ewl_container_child_append(EWL_CONTAINER(scrollpane), image);
- ewl_widget_show(image);
-
- if (image_file)
- ecore_dlist_append(images, image_file);
-
- box = ewl_hbox_new();
- ewl_box_spacing_set(EWL_BOX(box), 5);
- ewl_object_fill_policy_set(EWL_OBJECT(box),
- EWL_FLAG_FILL_HFILL | EWL_FLAG_FILL_HSHRINK);
- ewl_container_child_append(image_box, box);
- ewl_widget_show(box);
-
- entry_path = ewl_entry_new();
- ewl_text_text_set(EWL_TEXT(entry_path), image_file);
- ewl_object_fill_policy_set(EWL_OBJECT(entry_path),
- EWL_FLAG_FILL_HFILL | EWL_FLAG_FILL_HSHRINK);
- ewl_object_alignment_set(EWL_OBJECT(entry_path), EWL_FLAG_ALIGN_CENTER);
- ewl_container_child_append(EWL_CONTAINER(box), entry_path);
- ewl_callback_append(entry_path, EWL_CALLBACK_VALUE_CHANGED,
- entry_path_cb_value_changed, NULL);
- ewl_widget_show(entry_path);
-
- button = ewl_button_new();
- ewl_stock_type_set(EWL_STOCK(button), EWL_STOCK_OPEN);
- ewl_callback_append(button, EWL_CALLBACK_CLICKED,
- create_image_fd_cb, entry_path);
- ewl_object_fill_policy_set(EWL_OBJECT(button), EWL_FLAG_FILL_NONE);
- ewl_container_child_append(EWL_CONTAINER(box), button);
- ewl_widget_show(button);
-
- box = ewl_hbox_new();
- ewl_box_spacing_set(EWL_BOX(box), 5);
- ewl_object_fill_policy_set(EWL_OBJECT(box),
- EWL_FLAG_FILL_NONE);
- ewl_object_alignment_set(EWL_OBJECT(box),
- EWL_FLAG_ALIGN_CENTER);
- ewl_container_child_append(image_box, box);
- ewl_widget_show(box);
-
- /* the previous button */
- button = ewl_button_new();
- ewl_button_label_set(EWL_BUTTON(button), "Previous");
- ewl_container_child_append(EWL_CONTAINER(box), button);
- ewl_callback_append(button, EWL_CALLBACK_CLICKED,
- image_goto_prev_cb, NULL);
- ewl_widget_show(button);
-
- /* the remove button */
- button = ewl_button_new();
- ewl_button_label_set(EWL_BUTTON(button), "Remove");
- ewl_container_child_append(EWL_CONTAINER(box), button);
- ewl_callback_append(button, EWL_CALLBACK_CLICKED,
- image_remove_cb, NULL);
- ewl_widget_show(button);
-
- /* the next button */
- button = ewl_button_new();
- ewl_button_label_set(EWL_BUTTON(button), "Next");
- ewl_container_child_append(EWL_CONTAINER(box), button);
- ewl_callback_append(button, EWL_CALLBACK_CLICKED,
- image_goto_next_cb, NULL);
- ewl_widget_show(button);
-
- box = ewl_hbox_new();
- ewl_container_child_append(image_box, box);
- ewl_object_alignment_set(EWL_OBJECT(box), EWL_FLAG_ALIGN_CENTER);
- ewl_object_maximum_h_set(EWL_OBJECT(box), 20);
- ewl_widget_show(box);
-
- note = ewl_text_new();
- ewl_text_text_set(EWL_TEXT(note), "Simple image viewer, load up images
and page through them.");
- ewl_container_child_append(EWL_CONTAINER(box), note);
- ewl_widget_show(note);
+ Ewl_Widget *scrollpane;
+ Ewl_Widget *box;
+ Ewl_Widget *button;
+ Ewl_Widget *note;
+ char *image_file = NULL;
+
+ images = ecore_dlist_new();
+ ecore_dlist_free_cb_set(images, free);
+
+ scrollpane = ewl_scrollpane_new();
+ ewl_callback_append(scrollpane, EWL_CALLBACK_DELETE_WINDOW,
+ destroy_image_test, NULL);
+ ewl_container_child_append(image_box, scrollpane);
+ ewl_widget_show(scrollpane);
+
+ if ((ecore_file_exists(PACKAGE_DATA_DIR "/ewl/images/e-logo.png")))
+ image_file = strdup(PACKAGE_DATA_DIR "/ewl/images/e-logo.png");
+ else if ((ecore_file_exists(PACKAGE_SOURCE_DIR
"/data/images/e-logo.png")))
+ image_file = strdup(PACKAGE_SOURCE_DIR
"/data/images/e-logo.png");
+ else if ((ecore_file_exists("./data/images/e-logo.png")))
+ image_file = strdup("./data/images/e-logo.png");
+ else if ((ecore_file_exists("../data/images/e-logo.png")))
+ image_file = strdup("../data/images/e-logo.png");
+
+ image = ewl_image_new();
+ ewl_image_file_set(EWL_IMAGE(image), image_file, NULL);
+ ewl_object_padding_set(EWL_OBJECT(image), 0, 0, 5, 0);
+ ewl_object_alignment_set(EWL_OBJECT(image), EWL_FLAG_ALIGN_CENTER);
+ ewl_container_child_append(EWL_CONTAINER(scrollpane), image);
+ ewl_widget_show(image);
+
+ if (image_file)
+ ecore_dlist_append(images, image_file);
+
+ box = ewl_hbox_new();
+ ewl_box_spacing_set(EWL_BOX(box), 5);
+ ewl_object_fill_policy_set(EWL_OBJECT(box),
+ EWL_FLAG_FILL_HFILL | EWL_FLAG_FILL_HSHRINK);
+ ewl_container_child_append(image_box, box);
+ ewl_widget_show(box);
+
+ entry_path = ewl_entry_new();
+ ewl_text_text_set(EWL_TEXT(entry_path), image_file);
+ ewl_object_fill_policy_set(EWL_OBJECT(entry_path),
+ EWL_FLAG_FILL_HFILL | EWL_FLAG_FILL_HSHRINK);
+ ewl_object_alignment_set(EWL_OBJECT(entry_path),
EWL_FLAG_ALIGN_CENTER);
+ ewl_container_child_append(EWL_CONTAINER(box), entry_path);
+ ewl_callback_append(entry_path, EWL_CALLBACK_VALUE_CHANGED,
+ entry_path_cb_value_changed, NULL);
+ ewl_widget_show(entry_path);
+
+ button = ewl_button_new();
+ ewl_stock_type_set(EWL_STOCK(button), EWL_STOCK_OPEN);
+ ewl_callback_append(button, EWL_CALLBACK_CLICKED,
+ create_image_fd_cb, entry_path);
+ ewl_object_fill_policy_set(EWL_OBJECT(button), EWL_FLAG_FILL_NONE);
+ ewl_container_child_append(EWL_CONTAINER(box), button);
+ ewl_widget_show(button);
+
+ box = ewl_hbox_new();
+ ewl_box_spacing_set(EWL_BOX(box), 5);
+ ewl_object_fill_policy_set(EWL_OBJECT(box),
+ EWL_FLAG_FILL_NONE);
+ ewl_object_alignment_set(EWL_OBJECT(box),
+ EWL_FLAG_ALIGN_CENTER);
+ ewl_container_child_append(image_box, box);
+ ewl_widget_show(box);
+
+ /* the previous button */
+ button = ewl_button_new();
+ ewl_button_label_set(EWL_BUTTON(button), "Previous");
+ ewl_container_child_append(EWL_CONTAINER(box), button);
+ ewl_callback_append(button, EWL_CALLBACK_CLICKED,
+ image_goto_prev_cb, NULL);
+ ewl_widget_show(button);
+
+ /* the remove button */
+ button = ewl_button_new();
+ ewl_button_label_set(EWL_BUTTON(button), "Remove");
+ ewl_container_child_append(EWL_CONTAINER(box), button);
+ ewl_callback_append(button, EWL_CALLBACK_CLICKED,
+ image_remove_cb, NULL);
+ ewl_widget_show(button);
+
+ /* the next button */
+ button = ewl_button_new();
+ ewl_button_label_set(EWL_BUTTON(button), "Next");
+ ewl_container_child_append(EWL_CONTAINER(box), button);
+ ewl_callback_append(button, EWL_CALLBACK_CLICKED,
+ image_goto_next_cb, NULL);
+ ewl_widget_show(button);
+
+ box = ewl_hbox_new();
+ ewl_container_child_append(image_box, box);
+ ewl_object_alignment_set(EWL_OBJECT(box), EWL_FLAG_ALIGN_CENTER);
+ ewl_object_maximum_h_set(EWL_OBJECT(box), 20);
+ ewl_widget_show(box);
+
+ note = ewl_text_new();
+ ewl_text_text_set(EWL_TEXT(note), "Simple image viewer, load up images
and page through them.");
+ ewl_container_child_append(EWL_CONTAINER(box), note);
+ ewl_widget_show(note);
- ewl_widget_show(image);
+ ewl_widget_show(image);
- return 1;
+ return 1;
}
static void
create_image_fd_cb(Ewl_Widget *w __UNUSED__, void *ev_data __UNUSED__,
- void *user_data)
+ void *user_data)
{
- if (fd)
- return;
+ if (fd)
+ return;
- fd = ewl_filedialog_new();
- ewl_window_title_set(EWL_WINDOW(fd), "Select an Image...");
- ewl_window_name_set(EWL_WINDOW(fd), "EWL Image Test");
- ewl_window_class_set(EWL_WINDOW(fd), "EWL Filedialog");
- ewl_callback_append(fd, EWL_CALLBACK_VALUE_CHANGED,
- create_image_fd_window_response, user_data);
- if (last_dir)
- ewl_filedialog_directory_set(EWL_FILEDIALOG(fd), last_dir);
- ewl_widget_show(fd);
+ fd = ewl_filedialog_new();
+ ewl_window_title_set(EWL_WINDOW(fd), "Select an Image...");
+ ewl_window_name_set(EWL_WINDOW(fd), "EWL Image Test");
+ ewl_window_class_set(EWL_WINDOW(fd), "EWL Filedialog");
+ ewl_callback_append(fd, EWL_CALLBACK_VALUE_CHANGED,
+ create_image_fd_window_response, user_data);
+ if (last_dir)
+ ewl_filedialog_directory_set(EWL_FILEDIALOG(fd), last_dir);
+ ewl_widget_show(fd);
}
static void
create_image_fd_window_response(Ewl_Widget *w, void *ev, void *data)
{
- Ewl_Event_Action_Response *e;
- Ewl_Widget *entry = data;
+ Ewl_Event_Action_Response *e;
+ Ewl_Widget *entry = data;
- e = ev;
+ e = ev;
- if (e->response == EWL_STOCK_OK) {
- char *filename;
- const char *dir;
-
- filename = ewl_filedialog_selected_file_get(EWL_FILEDIALOG (w));
- printf("File open from image test: %s\n", filename);
- if (filename) {
- ewl_text_text_set(EWL_TEXT(entry), filename);
- image_load(filename);
- free (filename);
- }
- if (last_dir) {
- free(last_dir);
- last_dir = NULL;
- }
-
- dir = ewl_filedialog_directory_get(EWL_FILEDIALOG(fd));
- if (dir)
- last_dir = strdup(dir);
- }
- else {
- printf("Test program says bugger off.\n");
- }
+ if (e->response == EWL_STOCK_OK) {
+ char *filename;
+ const char *dir;
+
+ filename = ewl_filedialog_selected_file_get(EWL_FILEDIALOG (w));
+ printf("File open from image test: %s\n", filename);
+ if (filename) {
+ ewl_text_text_set(EWL_TEXT(entry), filename);
+ image_load(filename);
+ free (filename);
+ }
+ if (last_dir) {
+ free(last_dir);
+ last_dir = NULL;
+ }
+
+ dir = ewl_filedialog_directory_get(EWL_FILEDIALOG(fd));
+ if (dir)
+ last_dir = strdup(dir);
+ }
+ else {
+ printf("Test program says bugger off.\n");
+ }
- ewl_widget_destroy(fd);
- fd = NULL;
+ ewl_widget_destroy(fd);
+ fd = NULL;
}
/*
@@ -302,94 +302,94 @@
static int
path_test_set_get(char *buf, int len)
{
- Ewl_Widget *o;
- const char *t;
- int ret = 0;
-
- o = ewl_image_new();
- ewl_image_file_path_set(EWL_IMAGE(o), "/invalid/path");
- t = ewl_image_file_path_get(EWL_IMAGE(o));
-
- if (strcmp(t, "/invalid/path"))
- LOG_FAILURE(buf, len, "path_get did not match path_set.");
- else
- ret = 1;
+ Ewl_Widget *o;
+ const char *t;
+ int ret = 0;
+
+ o = ewl_image_new();
+ ewl_image_file_path_set(EWL_IMAGE(o), "/invalid/path");
+ t = ewl_image_file_path_get(EWL_IMAGE(o));
+
+ if (strcmp(t, "/invalid/path"))
+ LOG_FAILURE(buf, len, "path_get did not match path_set.");
+ else
+ ret = 1;
- return ret;
+ return ret;
}
static int
scale_test_set_get(char *buf, int len)
{
- Ewl_Widget *o;
- int ret = 0;
- double sw, sh;
-
- o = ewl_image_new();
- ewl_image_scale_set(EWL_IMAGE(o), 2.0, 2.0);
- ewl_image_scale_get(EWL_IMAGE(o), &sw, &sh);
-
- if (sw != 2.0 || sh != 2.0)
- LOG_FAILURE(buf, len, "scale_get did not match scale_set.");
- else
- ret = 1;
+ Ewl_Widget *o;
+ int ret = 0;
+ double sw, sh;
+
+ o = ewl_image_new();
+ ewl_image_scale_set(EWL_IMAGE(o), 2.0, 2.0);
+ ewl_image_scale_get(EWL_IMAGE(o), &sw, &sh);
+
+ if (sw != 2.0 || sh != 2.0)
+ LOG_FAILURE(buf, len, "scale_get did not match scale_set.");
+ else
+ ret = 1;
- return ret;
+ return ret;
}
static int
size_test_set_get(char *buf, int len)
{
- Ewl_Widget *o;
- int ret = 0;
- int sw, sh;
-
- o = ewl_image_new();
- ewl_image_size_set(EWL_IMAGE(o), 2, 2);
- ewl_image_size_get(EWL_IMAGE(o), &sw, &sh);
-
- if (sw != 2 || sh != 2)
- LOG_FAILURE(buf, len, "size_get did not match size_set.");
- else
- ret = 1;
+ Ewl_Widget *o;
+ int ret = 0;
+ int sw, sh;
+
+ o = ewl_image_new();
+ ewl_image_size_set(EWL_IMAGE(o), 2, 2);
+ ewl_image_size_get(EWL_IMAGE(o), &sw, &sh);
+
+ if (sw != 2 || sh != 2)
+ LOG_FAILURE(buf, len, "size_get did not match size_set.");
+ else
+ ret = 1;
- return ret;
+ return ret;
}
static int
constrain_test_set_get(char *buf, int len)
{
- Ewl_Widget *o;
- int ret = 0;
- int sw;
-
- o = ewl_image_new();
- ewl_image_constrain_set(EWL_IMAGE(o), 2);
- sw = ewl_image_constrain_get(EWL_IMAGE(o));
-
- if (sw != 2)
- LOG_FAILURE(buf, len, "scale_get did not match scale_set.");
- else
- ret = 1;
+ Ewl_Widget *o;
+ int ret = 0;
+ int sw;
+
+ o = ewl_image_new();
+ ewl_image_constrain_set(EWL_IMAGE(o), 2);
+ sw = ewl_image_constrain_get(EWL_IMAGE(o));
+
+ if (sw != 2)
+ LOG_FAILURE(buf, len, "scale_get did not match scale_set.");
+ else
+ ret = 1;
- return ret;
+ return ret;
}
static int
proportional_test_set_get(char *buf, int len)
{
- Ewl_Widget *o;
- unsigned int p;
- int ret = 0;
-
- o = ewl_image_new();
- ewl_image_proportional_set(EWL_IMAGE(o), TRUE);
- p = ewl_image_proportional_get(EWL_IMAGE(o));
-
- if (p != TRUE)
- LOG_FAILURE(buf, len, "proportional_get did not match set.");
- else
- ret = 1;
+ Ewl_Widget *o;
+ unsigned int p;
+ int ret = 0;
+
+ o = ewl_image_new();
+ ewl_image_proportional_set(EWL_IMAGE(o), TRUE);
+ p = ewl_image_proportional_get(EWL_IMAGE(o));
+
+ if (p != TRUE)
+ LOG_FAILURE(buf, len, "proportional_get did not match set.");
+ else
+ ret = 1;
- return ret;
+ return ret;
}
-------------------------------------------------------------------------
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