[EGIT] [tools/erigo] master 02/03: Remove unused code: applying default values

2015-11-15 Thread Yakov Goldberg
yakov pushed a commit to branch master.

http://git.enlightenment.org/tools/erigo.git/commit/?id=11f03d85b1ae38eb2e7757c7d6279360a9a5816f

commit 11f03d85b1ae38eb2e7757c7d6279360a9a5816f
Author: Yakov Goldberg 
Date:   Sun Nov 15 11:29:50 2015 +0200

Remove unused code: applying default values

Now all default values are defined in factory's json
---
 data/config/func_names.json | 131 --
 src/lib/database.c  | 191 +---
 src/lib/database.h  |   4 -
 3 files changed, 1 insertion(+), 325 deletions(-)

diff --git a/data/config/func_names.json b/data/config/func_names.json
index c0fec19..a7b3655 100644
--- a/data/config/func_names.json
+++ b/data/config/func_names.json
@@ -1,135 +1,4 @@
 {
-   "DEFAULTS":
-  {
-"Elm.Win":
-  {
- "Elm.Win.type":["ELM_WIN_BASIC"],
- "Efl.Gfx.Base.size":[150, 100]
-  },
-"Elm.Button":
-  {
- "Elm.Widget.part_text":[null, "Button"],
- "Efl.Gfx.Base.size":[73, 30]
-  },
-"Elm.Box":
-  {
- "Evas.Object.size_hint_align":[-1.0, -1.0]
-  },
-"Elm.Label":
-  {
- "Elm.Widget.part_text":[null, "Label"],
- "Efl.Gfx.Base.size":[60, 30]
-  },
-"Elm.Check":
-  {
- "Elm.Widget.part_text":[null, "Check"],
- "Efl.Gfx.Base.size":[60, 30]
-  },
-"Elm.Radio":
-  {
- "Elm.Widget.part_text":[null, "Radio"],
- "Efl.Gfx.Base.size":[60, 30]
-  },
-"Elm.Icon":
-  {
-  },
-"Elm.Image":
-  {
- "Efl.Gfx.Base.size":[40, 40]
-  },
-"Elm.Actionslider":
-  {
- "Elm.Widget.part_text":[null, "ActionSlider"],
- "Efl.Gfx.Base.size":[60, 30]
-  },
-"Elm.Clock":
-  {
- "Efl.Gfx.Base.size":[40, 40]
-  },
-"Elm.Dayselector":
-  {
- "Efl.Gfx.Base.size":[60, 45]
-  },
-"Elm.Calendar":
-  {
- "Efl.Gfx.Base.size":[60, 45]
-  },
-"Elm.Bubble":
-  {
- "Efl.Gfx.Base.size":[60, 45]
-  },
-"Elm.Colorselector":
-  {
- "Efl.Gfx.Base.size":[60, 45]
-  },
-"Elm.Entry":
-  {
- "Elm.Widget.part_text":[null, "Entry"],
- "Elm.Entry.scrollable":[true],
- "Efl.Gfx.Base.size":[60, 30]
-  },
-"Elm.Flip":
-  {
- "Efl.Gfx.Base.size":[60, 30]
-  },
-"Elm.Genlist":
-  {
- "Efl.Gfx.Base.size":[70, 60]
-  },
-"Elm.Gengrid":
-  {
- "Efl.Gfx.Base.size":[70, 60]
-  },
-"Elm.Table":
-  {
- "Efl.Gfx.Base.size":[70, 60]
-  },
-"Elm.Menu":
-  {
- "Efl.Gfx.Base.size":[60, 30]
-  },
-"Elm.Diskselector":
-  {
- "Efl.Gfx.Base.size":[60, 50]
-  },
-"Elm.Ctxpopup":
-  {
- "Efl.Gfx.Base.size":[60, 40]
-  },
-"Elm.Toolbar":
-  {
- "Efl.Gfx.Base.size":[60, 30]
-  },
-"Elm.Naviframe":
-  {
- "Efl.Gfx.Base.size":[70, 60]
-  },
-"Elm.Frame":
-  {
- "Efl.Gfx.Base.size":[70, 60]
-  },
-"Evas.Object":
-  {
- "Evas.Object.size_hint_weight":[1.0, 1.0],
- "Efl.Gfx.Base.visible":[true]
-  },
-"Evas.Image":
-  {
- "Efl.Gfx.Base.size":[40, 40]
-  },
-"Elm.Fileselector":
-  {
- "Efl.Gfx.Base.size":[200, 200]
-  },
-"Elm.Fileselector_Entry":
-  {
- "Efl.Gfx.Base.size":[100, 22]
-  },
-"Elm.Separator":
-  {
- "Efl.Gfx.Base.size":[4, 100]
-  }
-  },
"OPERATIONS" :
   [
 {
diff --git a/src/lib/database.c b/src/lib/database.c
index 6dee252..6e8b80e 100644
--- a/src/lib/database.c
+++ b/src/lib/database.c
@@ -96,7 +96,6 @@ static Eina_Hash *cl_table = NULL; /* ["elm_win"] -> 
[Class_Prop] */
 static Eina_Hash *enum_table = NULL; /* ["ENUM_NAME"]->[{1}] */
 static Eina_Hash *enum_types_table = NULL; /* 
["Elm_Win_Type"]->[ELM_WIN_BASIC, ELM_WIN_DIALOG_BASIC, ..] */
 static Eina_Hash *container_table = NULL; /* Hash ["Elm_Box"]-> struct 
describing container */
-static Eina_Hash *def_props_table = NULL; /* Holds lists of default props 
values per class */
 
 static char *gui_type_names[] =
 {
@@ -606,93 +605,6 @@ _cl_table_init()
eina_iterator_free(all_classes_list);
 }
 
-static void
-_json_arr_to_def_prop_values(Eina_Json_Value *jv, Gui_Widget_Property *prop)
-{
-   Eina_Json_Type 

[EGIT] [tools/erigo] master 03/03: Factory: add size_hint_aling for containers

2015-11-15 Thread Yakov Goldberg
yakov pushed a commit to branch master.

http://git.enlightenment.org/tools/erigo.git/commit/?id=fcfd26986ae743aa73d4386e70943a15d4d08f9a

commit fcfd26986ae743aa73d4386e70943a15d4d08f9a
Author: Yakov Goldberg 
Date:   Sun Nov 15 12:04:08 2015 +0200

Factory: add size_hint_aling for containers
---
 data/layouts/factory.json | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/data/layouts/factory.json b/data/layouts/factory.json
index e5731c5..a0e3406 100644
--- a/data/layouts/factory.json
+++ b/data/layouts/factory.json
@@ -359,6 +359,7 @@
  {
 "Elm.Box.padding":[7, 0],
 "Evas.Object.size_hint_weight":[1, 1],
+"Evas.Object.size_hint_align":[-1, -1],
 "Efl.Gfx.Base.size":[200, 200],
 "Efl.Gfx.Base.visible":[true]
  },
@@ -373,6 +374,7 @@
  "Properties":
  {
 "Evas.Object.size_hint_weight":[1, 1],
+"Evas.Object.size_hint_align":[-1, -1],
 "Efl.Gfx.Base.size":[200, 200],
 "Efl.Gfx.Base.visible":[true]
  },
@@ -392,6 +394,7 @@
  "Properties":
  {
 "Evas.Object.size_hint_weight":[1, 1],
+"Evas.Object.size_hint_align":[-1, -1],
 "Efl.Gfx.Base.visible":[true]
  }
   },
@@ -404,6 +407,7 @@
  "Properties":
  {
 "Evas.Object.size_hint_weight":[1, 1],
+"Evas.Object.size_hint_align":[-1, -1],
 "Efl.Gfx.Base.visible":[true]
  }
   },
@@ -416,6 +420,7 @@
  "Properties":
  {
 "Evas.Object.size_hint_weight":[1, 1],
+"Evas.Object.size_hint_align":[-1, -1],
 "Efl.Gfx.Base.size":[200, 200],
 "Efl.Gfx.Base.visible":[true]
  },
@@ -459,6 +464,7 @@
  "Properties":
  {
 "Evas.Object.size_hint_weight":[1, 1],
+"Evas.Object.size_hint_align":[-1, -1],
 "Efl.Gfx.Base.visible":[true]
  }
   },

-- 




[EGIT] [tools/erigo] master 04/04: Add _context_change_cb

2015-11-15 Thread Yakov Goldberg
yakov pushed a commit to branch master.

http://git.enlightenment.org/tools/erigo.git/commit/?id=a3f6eafa805c057804528a038e4e79b902af5c7b

commit a3f6eafa805c057804528a038e4e79b902af5c7b
Author: Yakov Goldberg 
Date:   Thu Nov 12 14:45:16 2015 +0200

Add _context_change_cb

This callback will be called when edited content was changed,
t.e. in the end of updater().
---
 src/bin/gui/editor.c | 28 ++--
 src/bin/gui/egui_logic.c |  1 +
 src/lib/gui_widget.c | 15 +++
 src/lib/gui_widget.h |  6 ++
 4 files changed, 44 insertions(+), 6 deletions(-)

diff --git a/src/bin/gui/editor.c b/src/bin/gui/editor.c
index 3802688..4bb1f1b 100644
--- a/src/bin/gui/editor.c
+++ b/src/bin/gui/editor.c
@@ -2793,8 +2793,6 @@ _editor_undo(const Gui_Context *ctx)
 
_editor_undo_redo_post(head_memento);
 
-   eo_do(g->main_win->toolbar_redo_it, 
elm_wdg_item_disabled_set(context_can_redo(ctx) ? EINA_FALSE : EINA_TRUE));
-   eo_do(g->main_win->toolbar_undo_it, 
elm_wdg_item_disabled_set(context_can_undo(ctx) ? EINA_FALSE : EINA_TRUE));
return EINA_TRUE;
 }
 
@@ -2812,8 +2810,6 @@ _editor_redo(const Gui_Context *ctx)
 
_editor_undo_redo_post(head_memento);
 
-   eo_do(g->main_win->toolbar_redo_it, 
elm_wdg_item_disabled_set(context_can_redo(ctx) ? EINA_FALSE : EINA_TRUE));
-   eo_do(g->main_win->toolbar_undo_it, 
elm_wdg_item_disabled_set(context_can_undo(ctx) ? EINA_FALSE : EINA_TRUE));
return EINA_TRUE;
 }
 
@@ -4010,8 +4006,9 @@ _wdg_border_draw_on_idle(void *data EINA_UNUSED)
 static void
 _update_undo_redo_buttons(void *data EINA_UNUSED)
 {
-   eo_do(g->main_win->toolbar_redo_it, elm_wdg_item_disabled_set(EINA_TRUE));
-   eo_do(g->main_win->toolbar_undo_it, elm_wdg_item_disabled_set(EINA_FALSE));
+   Gui_Context *ctx = _active_context_get();
+   eo_do(g->main_win->toolbar_redo_it, 
elm_wdg_item_disabled_set(context_can_redo(ctx) ? EINA_FALSE : EINA_TRUE));
+   eo_do(g->main_win->toolbar_undo_it, 
elm_wdg_item_disabled_set(context_can_undo(ctx) ? EINA_FALSE : EINA_TRUE));
 }
 
 static void
@@ -4246,6 +4243,23 @@ _mouse_wheel_cb(void *data EINA_UNUSED, int type 
EINA_UNUSED, void *ev EINA_UNUS
return ECORE_CALLBACK_PASS_ON;
 }
 
+static void
+_context_changed_cb(void *data, Memento *mem, Eina_Bool dir)
+{
+   ERR("I'm change cb");
+   const Gui_Context *ctx = _active_context_get();
+   eo_do(g->main_win->toolbar_redo_it, 
elm_wdg_item_disabled_set(context_can_redo(ctx) ? EINA_FALSE : EINA_TRUE));
+   eo_do(g->main_win->toolbar_undo_it, 
elm_wdg_item_disabled_set(context_can_undo(ctx) ? EINA_FALSE : EINA_TRUE));
+   if (context_current_memento_get(ctx) != context_saved_memento_get(ctx))
+ {
+_canvas_name_update(ctx, EINA_TRUE);
+ }
+   else
+ {
+_canvas_name_update(ctx, EINA_FALSE);
+ }
+}
+
 void
 editor_init(GuiLogicCbs *_guilogic_cbs)
 {
@@ -4287,6 +4301,8 @@ editor_init(GuiLogicCbs *_guilogic_cbs)
_guilogic_cbs->_project_new = _project_new;
_guilogic_cbs->_theme_hoversel_fill = _theme_hoversel_fill;
 
+   updater_completion_callback_add(_context_changed_cb, NULL);
+
objtree_init();
proplayout_init();
target_db_init();
diff --git a/src/bin/gui/egui_logic.c b/src/bin/gui/egui_logic.c
index fa7c51b..3961a56 100644
--- a/src/bin/gui/egui_logic.c
+++ b/src/bin/gui/egui_logic.c
@@ -149,6 +149,7 @@ static void
 _context_save(const Gui_Context *ctx)
 {
generator_ctx_source_generate(ctx, GENERATE_JSON, EINA_FALSE);
+   context_saved_memento_set((Gui_Context *) ctx, 
context_current_memento_get(ctx));
_canvas_name_update(ctx, EINA_FALSE);
 }
 
diff --git a/src/lib/gui_widget.c b/src/lib/gui_widget.c
index 1d344d3..271ae08 100644
--- a/src/lib/gui_widget.c
+++ b/src/lib/gui_widget.c
@@ -168,6 +168,7 @@ struct _Gui_Context
Eina_Hash *eids;
Eina_Hash *eids_by_name;
 
+   Memento *saved_memento;
Eina_List *current_memento;
Eina_List *memento_list;
Eina_List *not_updated_mementos;
@@ -4029,6 +4030,20 @@ context_current_memento_get(const Gui_Context *ctx)
return eina_list_data_get(ctx->current_memento);
 }
 
+const Memento *
+context_saved_memento_get(const Gui_Context *ctx)
+{
+   EINA_SAFETY_ON_NULL_RETURN_VAL(ctx, NULL);
+   return ctx->saved_memento;
+}
+
+void
+context_saved_memento_set(Gui_Context *ctx, const Memento *memento)
+{
+   EINA_SAFETY_ON_NULL_RETURN(ctx);
+   ctx->saved_memento = (Memento *) memento;
+}
+
 void
 context_memento_finalize(Gui_Context *ctx)
 {
diff --git a/src/lib/gui_widget.h b/src/lib/gui_widget.h
index a37525b..e224adb 100644
--- a/src/lib/gui_widget.h
+++ b/src/lib/gui_widget.h
@@ -1000,6 +1000,12 @@ const Memento *
 context_current_memento_get(const Gui_Context *ctx);
 
 void
+context_saved_memento_set(Gui_Context *ctx, const Memento *memento);
+
+const Memento *
+context_saved_memento_get(const Gui_Context *ctx);
+
+void
 context_memento_finalize(Gui_Context *ctx);
 
 /* FIXME: remove this func, when editor_undo will 

[EGIT] [tools/erigo] master 02/04: Refactoring _canvas_name_update()

2015-11-15 Thread Yakov Goldberg
yakov pushed a commit to branch master.

http://git.enlightenment.org/tools/erigo.git/commit/?id=a04d1faa70da2c861c96a94ff75aa7a5387f6d40

commit a04d1faa70da2c861c96a94ff75aa7a5387f6d40
Author: Yakov Goldberg 
Date:   Thu Nov 12 14:00:41 2015 +0200

Refactoring _canvas_name_update()

Add parameter to be able to set canvas name with star:
'*project_name' when project is not saved
---
 src/bin/gui/editor.c | 16 
 src/bin/gui/egui_logic.c | 20 ++--
 src/bin/gui/egui_logic_private.h |  2 +-
 3 files changed, 23 insertions(+), 15 deletions(-)

diff --git a/src/bin/gui/editor.c b/src/bin/gui/editor.c
index fdeee66..5f58411 100644
--- a/src/bin/gui/editor.c
+++ b/src/bin/gui/editor.c
@@ -90,9 +90,16 @@ _active_context_get()
 }
 
 void
-_canvas_name_update(const Gui_Context *ctx)
+_canvas_name_update(const Gui_Context *ctx, Eina_Bool editing)
 {
const char* project_name = NULL;
+
+   static Eina_Bool prev_editing;
+   static const Gui_Context *prev_ctx;
+   if ((prev_editing == editing) && (ctx == prev_ctx)) return;
+   prev_editing = editing;
+   prev_ctx = ctx;
+
char name[100];
if (!ctx)
  {
@@ -102,7 +109,7 @@ _canvas_name_update(const Gui_Context *ctx)
  {
 project_name = gui_context_project_name_get(ctx);
 if (!project_name) project_name = "untitled";
-sprintf(name, "Erigo - %s", project_name);
+sprintf(name, "Erigo - %s%s", editing ? "*" : "", project_name);
  }
eo_do(g->main_win->main_win, elm_obj_win_title_set(name));
 
@@ -113,7 +120,8 @@ _canvas_name_update(const Gui_Context *ctx)
 
if (glit)
  {
-eo_do(glit, elm_wdg_item_part_text_set(NULL, project_name));
+sprintf(name, "%s%s", editing ? "*" : "", project_name);
+eo_do(glit, elm_wdg_item_part_text_set(NULL, name));
  }
 }
 
@@ -3850,7 +3858,7 @@ _switch_to_context(Gui_Context *ctx)
_editor_wdg_selected_set(wdg);
objtree_item_selected_set(wdg);
_canvas_resize_cb(NULL, g->main_win->canvas_scroller, NULL, NULL);
-   _canvas_name_update(ctx);
+   _canvas_name_update(ctx, EINA_FALSE);
Eina_Stringshare *theme_name = 
gui_context_edit_theme_name_get(_active_context_get());
eo_do(g->main_win->theme_selector_hoversel, 
elm_obj_widget_part_text_set(NULL, THEME_NAME_GET(theme_name)));
_theme_selector_hover_selected_cb(NULL, NULL, NULL, NULL);
diff --git a/src/bin/gui/egui_logic.c b/src/bin/gui/egui_logic.c
index 2e3e137..fa6cafe 100644
--- a/src/bin/gui/egui_logic.c
+++ b/src/bin/gui/egui_logic.c
@@ -160,7 +160,7 @@ _popup_cb(Popup_Button_Type button_type, void *data)
 gui_context_project_filename_set((Gui_Context *) ctx, filename);
 gui_context_project_path_set((Gui_Context *) ctx, (const char *) 
parent_dir);
 generator_ctx_source_generate(ctx, GENERATE_JSON, EINA_FALSE);
-_canvas_name_update(ctx);
+_canvas_name_update(ctx, EINA_FALSE);
 
 free(parent_dir);
 /* Close fileselector win. */
@@ -198,7 +198,7 @@ _on_fs_done(void *data, Evas_Object *obj EINA_UNUSED, void 
*event)
   if (_guilogic_cbs->_project_new(path))
 {
ctx = _active_context_get();
-   _canvas_name_update(ctx);
+   _canvas_name_update(ctx, EINA_FALSE);
/* If no more free contexts, disable items. */
if (!gui_context_free_is())
  {
@@ -229,7 +229,7 @@ _on_fs_done(void *data, Evas_Object *obj EINA_UNUSED, void 
*event)
   if (_guilogic_cbs->_project_new(NULL))
 {
ctx = _active_context_get();
-   _canvas_name_update(ctx);
+   _canvas_name_update(ctx, EINA_FALSE);
/* If no more free contexts, disable items. */
if (!gui_context_free_is())
  {
@@ -270,7 +270,7 @@ _on_fs_done(void *data, Evas_Object *obj EINA_UNUSED, void 
*event)
gui_context_project_path_set((Gui_Context *) ctx, path);
gui_context_project_filename_set((Gui_Context *) ctx, 
full_filename);
generator_ctx_source_generate(ctx, GENERATE_JSON, 
EINA_FALSE);
-   _canvas_name_update(ctx);
+   _canvas_name_update(ctx, EINA_FALSE);
free(default_filename);
 }
   break;
@@ -324,7 +324,7 @@ _on_fs_done(void *data, Evas_Object *obj EINA_UNUSED, void 
*event)
gui_context_project_filename_set((Gui_Context *) ctx, 
filename);
gui_context_project_path_set((Gui_Context *) ctx, (const 
char *) parent_dir);
generator_ctx_source_generate(ctx, GENERATE_JSON, 
EINA_FALSE);
-   _canvas_name_update(ctx);
+   _canvas_name_update(ctx, EINA_FALSE);
 }
   break;

[EGIT] [tools/erigo] master 01/04: Refactoring _project_close()

2015-11-15 Thread Yakov Goldberg
yakov pushed a commit to branch master.

http://git.enlightenment.org/tools/erigo.git/commit/?id=c25381e89f8e1daadd3887371c097316bdffb1eb

commit c25381e89f8e1daadd3887371c097316bdffb1eb
Author: Yakov Goldberg 
Date:   Thu Nov 12 15:50:27 2015 +0200

Refactoring _project_close()
---
 src/bin/gui/editor.c | 16 ++--
 1 file changed, 6 insertions(+), 10 deletions(-)

diff --git a/src/bin/gui/editor.c b/src/bin/gui/editor.c
index 33988de..fdeee66 100644
--- a/src/bin/gui/editor.c
+++ b/src/bin/gui/editor.c
@@ -3895,21 +3895,17 @@ _project_close(const Gui_Context *ctx)
 _editor_layout_clear(_active_context_get());
 
 /* Iterate over windows and delete Main_Wdg_Info */
-Eina_List *list, *itr, *itr2;
+Eina_List *list, *itr;
 Eid *wdg_id;
-list = gui_context_main_widgets_get(_active_context_get());
-EINA_LIST_FOREACH_SAFE(list, itr, itr2, wdg_id)
+Gui_Session *editor_session = (Gui_Session *) 
gui_context_editor_session_get(ctx);
+list = gui_context_main_widgets_get(ctx);
+EINA_LIST_FOREACH(list, itr, wdg_id)
   {
  Gui_Widget *wdg = wdg_get(wdg_id);
- if (wdg)
-   {
-  Main_Wdg_Info *wi = wdg_data_get(wdg, MAIN_WDG_INFO);
-  if (wi) eo_del(wi->frame);
-  free(wi);
-   }
+ manager_widget_delete(editor_session, wdg, NULL);
   }
 
-session_del((Gui_Session *) gui_context_editor_session_get(ctx));
+session_del(editor_session);
 gui_context_del((Gui_Context *) ctx);
  }
 }

-- 




[EGIT] [tools/erigo] master 01/01: Fix typo introduced with prev commit

2015-11-15 Thread Yakov Goldberg
yakov pushed a commit to branch master.

http://git.enlightenment.org/tools/erigo.git/commit/?id=6bf066f31da66efa3696b086cdee9daa570cbc21

commit 6bf066f31da66efa3696b086cdee9daa570cbc21
Author: Yakov Goldberg 
Date:   Sun Nov 15 10:41:33 2015 +0200

Fix typo introduced with prev commit
---
 src/bin/gui/editor.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/bin/gui/editor.c b/src/bin/gui/editor.c
index 4bb1f1b..875195b 100644
--- a/src/bin/gui/editor.c
+++ b/src/bin/gui/editor.c
@@ -4244,9 +4244,8 @@ _mouse_wheel_cb(void *data EINA_UNUSED, int type 
EINA_UNUSED, void *ev EINA_UNUS
 }
 
 static void
-_context_changed_cb(void *data, Memento *mem, Eina_Bool dir)
+_context_changed_cb(void *data EINA_UNUSED, Memento *mem EINA_UNUSED, 
Eina_Bool dir EINA_UNUSED)
 {
-   ERR("I'm change cb");
const Gui_Context *ctx = _active_context_get();
eo_do(g->main_win->toolbar_redo_it, 
elm_wdg_item_disabled_set(context_can_redo(ctx) ? EINA_FALSE : EINA_TRUE));
eo_do(g->main_win->toolbar_undo_it, 
elm_wdg_item_disabled_set(context_can_undo(ctx) ? EINA_FALSE : EINA_TRUE));

-- 




[EGIT] [bindings/python/python-efl] master 01/01: 2 small fix in docs

2015-11-15 Thread Dave Andreoli
davemds pushed a commit to branch master.

http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=d4f355f584a9048f35d649bf841ce6f9ab2dd458

commit d4f355f584a9048f35d649bf841ce6f9ab2dd458
Author: Dave Andreoli 
Date:   Sun Nov 15 21:09:06 2015 +0100

2 small fix in docs
---
 CODING| 8 
 ChangeLog | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/CODING b/CODING
index 8b1fed6..5438352 100644
--- a/CODING
+++ b/CODING
@@ -97,8 +97,8 @@ Tips
 Release process instructions
 
 
-* Announce at rele...@lists.enlightenment.org that you are planning
-  for the release
+* Announce at enlightenment-rele...@lists.sourceforge.net and
+  enlightenment-de...@lists.sourceforge.net that you are planning for the 
release
 * Change versions in efl/__init__.py (ex: 1.9.0)
 * Update the ChangeLog file:
 setup.py build_doc -b changes ...and manually merge from the html file
@@ -106,8 +106,8 @@ Release process instructions
 * Test the generated tarballs
 * scp tarballs & md5sums to:
   
download.enlightenment.org:/srv/web/download.enlightenment.org/public_html/pre-releases/
-* Announce at rele...@lists.enlightenment.org that tarballs are
-  ready for testing
+* Announce at enlightenment-rele...@lists.sourceforge.net and
+  enlightenment-de...@lists.sourceforge.net that tarballs are ready for testing
 
 ... wait 24 hours, fix any issues found. In the mean time you can prepare the
 release announcement for phame/ml.
diff --git a/ChangeLog b/ChangeLog
index 7b78059..187b851 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -49,7 +49,7 @@ Additions:
  * evas.Textblock.obstacle_add
  * evas.Textblock.obstacle_del
  * evas.Textblock.obstacles_update
- * evas.EVAS_CALLBACK_CANVA_VIEWPORT_RESIZE
+ * evas.EVAS_CALLBACK_CANVAS_VIEWPORT_RESIZE
 
 
 ===

-- 




[EGIT] [bindings/python/python-efl] annotated tag v1.16.0 created (now 8309c38)

2015-11-15 Thread Enlightenment Git
This is an automated email from the git hooks/post-receive script.

davemds pushed a change to annotated tag v1.16.0
in repository bindings/python/python-efl.

at  8309c38   (tag)
   tagging  d4f355f584a9048f35d649bf841ce6f9ab2dd458 (commit)
  replaces  v1.15.0
 tagged by  Dave Andreoli
on  Sun Nov 15 21:10:08 2015 +0100

- Log -
tagging 1.16.0 release

Dave Andreoli (20):
  Open the 1.16 development phase
  Update release process instructions
  Re-enable the evas callbacks len test
  Add the missed prop elm.Object.tooltip_orient
  GenlistItem.data is now also writable
  Improve a bit Genlist documentation
  Rewamped genlist tests
  Add missed doc for ObjectItem.tooltip_window_mode
  Genlist: new 1.16 'changed' signal
  new 1.16 API: Index.standard_priority and IndexItem.priority
  Blacklist Cython 0.23.X
  New 1.16 API: Configuration.scroll_thumbscroll_smooth_*
  New 1.16 API: Hoversel.label_auto_changed
  Implemented TablePadding test
  rename Hoversel API label_auto_changed->auto_update
  New 1.16 API: Elm.Object.focus_region_show_mode
  New 1.16 API: various next_item_get/set
  Prepare the 1.16 release
  test: show python-efl and python versions in win title
  2 small fix in docs

---

No new revisions were added by this update.

-- 




[EGIT] [website/www-content] master 01/01: Wiki page download-latest changed with summary [updated pyefl download links] by Davide Andreoli

2015-11-15 Thread Davide Andreoli
WWW-www.enlightenment.org pushed a commit to branch master.

http://git.enlightenment.org/website/www-content.git/commit/?id=a819b06aac5dd84cec1ecb8ad1474c9af14ff96a

commit a819b06aac5dd84cec1ecb8ad1474c9af14ff96a
Author: Davide Andreoli 
Date:   Sun Nov 15 12:16:47 2015 -0800

Wiki page download-latest changed with summary [updated pyefl download 
links] by Davide Andreoli
---
 pages/download-latest.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pages/download-latest.txt b/pages/download-latest.txt
index e6f8b4c..eec87f8 100644
--- a/pages/download-latest.txt
+++ b/pages/download-latest.txt
@@ -3,7 +3,7 @@ efl_v = 1.16.0
 elm_v = 1.16.0
 emotion_generic_players_v = 1.16.0
 evas_generic_loaders_v= 1.16.0
-python_efl_v  = 1.15.0
+python_efl_v  = 1.16.0
 
 enlightenment_v   = 0.19.13
 terminology_v = 0.9.1

-- 




[EGIT] [bindings/python/python-efl] master 01/01: Open the 1.17 development phase

2015-11-15 Thread Dave Andreoli
davemds pushed a commit to branch master.

http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=f01ac0788eeb8c5b54b6df31df0def9d4d71f4c3

commit f01ac0788eeb8c5b54b6df31df0def9d4d71f4c3
Author: Dave Andreoli 
Date:   Sun Nov 15 21:28:14 2015 +0100

Open the 1.17 development phase
---
 CODING  | 2 +-
 efl/__init__.py | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/CODING b/CODING
index 5438352..f793701 100644
--- a/CODING
+++ b/CODING
@@ -124,7 +124,7 @@ Release process instructions
 * scp the generated html documentation to:
   
download.enlightenment.org:/srv/web/docs.enlightenment.org/public_html/python-efl/1.XX.0/
   and update the 'current' link on the server (ssh)
-* Update download and docs link on the website wiki
+* Update download link on the wiki (www.enlightenment.org/download)
 * Publish the blog post on phame (Official Announcements)
 * Announce the release to rele...@lists.enlightenment.org
 * Change versions again in efl/__init__.py (ex: 1.9.99)
diff --git a/efl/__init__.py b/efl/__init__.py
index db46b96..137df12 100644
--- a/efl/__init__.py
+++ b/efl/__init__.py
@@ -20,5 +20,5 @@
 # pre-release: "1.13.0-beta1" ( 1, 13, 0 )
 # release: "1.13.0" ( 1, 13, 0 )
 
-__version__ = "1.16.0"
-__version_info__ = ( 1, 16, 0 )
+__version__ = "1.16.99"
+__version_info__ = ( 1, 16, 99 )

-- 




[EGIT] [tools/enventor] master 01/01: enventor: remove --eo option from eolian_helper

2015-11-15 Thread Jee-Yong Um
jaehyun pushed a commit to branch master.

http://git.enlightenment.org/tools/enventor.git/commit/?id=9b2c0540028de7f991b134bffb1131410fba0b38

commit 9b2c0540028de7f991b134bffb1131410fba0b38
Author: Jee-Yong Um 
Date:   Mon Nov 16 13:01:42 2015 +0900

enventor: remove --eo option from eolian_helper

Summary: remove --eo option from Makefile_Eolian_Helper.am to fix build fail

Reviewers: Hermet, Jaehyun_Cho

Reviewed By: Jaehyun_Cho

Differential Revision: https://phab.enlightenment.org/D3331
---
 Makefile_Eolian_Helper.am | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile_Eolian_Helper.am b/Makefile_Eolian_Helper.am
index 168f659..377f173 100644
--- a/Makefile_Eolian_Helper.am
+++ b/Makefile_Eolian_Helper.am
@@ -13,10 +13,10 @@ am__v_EOL_0 = @echo "  EOLIAN  " $@;
 SUFFIXES = .eo .eo.c .eo.h .eo.legacy.h
 
 %.eo.c: %.eo ${_EOLIAN_GEN_DEP}
-   $(AM_V_EOL)$(EOLIAN_GEN) --eo --legacy $(EOLIAN_FLAGS) --gc -o $@ $<
+   $(AM_V_EOL)$(EOLIAN_GEN) --legacy $(EOLIAN_FLAGS) --gc -o $@ $<
 
 %.eo.h: %.eo ${_EOLIAN_GEN_DEP}
-   $(AM_V_EOL)$(EOLIAN_GEN) --eo $(EOLIAN_FLAGS) --gh -o $@ $<
+   $(AM_V_EOL)$(EOLIAN_GEN) $(EOLIAN_FLAGS) --gh -o $@ $<
 
 %.eo.legacy.h: %.eo ${_EOLIAN_GEN_DEP}
$(AM_V_EOL)$(EOLIAN_GEN) --legacy $(EOLIAN_FLAGS) --gh -o $@ $<

--