[EGIT] [tools/edi] master 01/01: Edit welcome message.

2016-02-24 Thread Yomi
ajwillia-ms pushed a commit to branch master.

http://git.enlightenment.org/tools/edi.git/commit/?id=db913666bd7d00742da834fa9411b5b680d01bc7

commit db913666bd7d00742da834fa9411b5b680d01bc7
Author: Yomi <abyo...@gmail.com>
Date:   Wed Feb 24 10:27:03 2016 +

Edit welcome message.

Summary: Edit welcome message

Test Plan: none.

Reviewers: ajwillia.ms

Reviewed By: ajwillia.ms

Differential Revision: https://phab.enlightenment.org/D3727
---
 src/bin/mainview/edi_mainview.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/mainview/edi_mainview.c b/src/bin/mainview/edi_mainview.c
index 3cf3f2f..fb15212 100644
--- a/src/bin/mainview/edi_mainview.c
+++ b/src/bin/mainview/edi_mainview.c
@@ -720,7 +720,7 @@ edi_mainview_add(Evas_Object *parent, Evas_Object *win)
evas_object_show(nf);
 
txt = elm_label_add(parent);
-   elm_object_text_set(txt, "Welcome - tap a file to edit");
+   elm_object_text_set(txt, "Welcome - click on a file to edit");
evas_object_size_hint_weight_set(txt, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
evas_object_size_hint_align_set(txt, EVAS_HINT_FILL, EVAS_HINT_FILL);
evas_object_show(txt);

-- 




[EGIT] [core/enlightenment] enlightenment-0.20 09/34: Update copyright year.

2016-01-18 Thread Yomi
discomfitor pushed a commit to branch enlightenment-0.20.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=60eacf06c4a3dfc9b87303a3fe7bd934a3fedf8f

commit 60eacf06c4a3dfc9b87303a3fe7bd934a3fedf8f
Author: Yomi <abyo...@gmail.com>
Date:   Mon Jan 4 12:58:46 2016 -0500

Update copyright year.

Summary: update copyright year.

Test Plan: none.

Reviewers: zmike

Subscribers: cedric

Projects: #enlightenment-git

Differential Revision: https://phab.enlightenment.org/D3516
---
 src/bin/e_about.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/e_about.c b/src/bin/e_about.c
index 242d66b..279722e 100644
--- a/src/bin/e_about.c
+++ b/src/bin/e_about.c
@@ -23,7 +23,7 @@ e_about_new(void)
snprintf
  (buf, sizeof(buf), "%s%s",
  _(
-   "Copyright  2000-2015, by the Enlightenment "
+   "Copyright  2000-2016, by the Enlightenment "
"Development Team"
""
"We hope you enjoy using this software as much as we enjoyed "

-- 




[EGIT] [core/enlightenment] master 01/01: Update copyright year.

2016-01-04 Thread Yomi
discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=b50a94296a7acbbd9606fa384009929790d43115

commit b50a94296a7acbbd9606fa384009929790d43115
Author: Yomi <abyo...@gmail.com>
Date:   Mon Jan 4 12:58:46 2016 -0500

Update copyright year.

Summary: update copyright year.

Test Plan: none.

Reviewers: zmike

Subscribers: cedric

Projects: #enlightenment-git

Differential Revision: https://phab.enlightenment.org/D3516
---
 src/bin/e_about.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/e_about.c b/src/bin/e_about.c
index 242d66b..279722e 100644
--- a/src/bin/e_about.c
+++ b/src/bin/e_about.c
@@ -23,7 +23,7 @@ e_about_new(void)
snprintf
  (buf, sizeof(buf), "%s%s",
  _(
-   "Copyright  2000-2015, by the Enlightenment "
+   "Copyright  2000-2016, by the Enlightenment "
"Development Team"
""
"We hope you enjoy using this software as much as we enjoyed "

-- 




[EGIT] [core/efl] master 01/01: Fix grammar in error messages.

2015-08-07 Thread Yomi
hermet pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=626003ce0cc305d9e09e8377c99670e141f5d8cb

commit 626003ce0cc305d9e09e8377c99670e141f5d8cb
Author: Yomi abyo...@gmail.com
Date:   Fri Aug 7 17:06:23 2015 +0900

Fix grammar in error messages.

Summary:
Changes:

 src/examples/eio/eio_file_copy.c
 src/tests/eio/eio_test_file.c
 src/tests/eio/eio_test_xattr.c

Reviewers: cedric, thiepha, Hermet

Reviewed By: thiepha, Hermet

Subscribers: thiepha, cedric

Differential Revision: https://phab.enlightenment.org/D2912
---
 src/examples/eio/eio_file_copy.c | 2 +-
 src/tests/eio/eio_test_file.c| 2 +-
 src/tests/eio/eio_test_xattr.c   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/examples/eio/eio_file_copy.c b/src/examples/eio/eio_file_copy.c
index 72da1b7..9a979d2 100644
--- a/src/examples/eio/eio_file_copy.c
+++ b/src/examples/eio/eio_file_copy.c
@@ -24,7 +24,7 @@ _done_cb(void *data EINA_UNUSED, Eio_File *handle EINA_UNUSED)
 static void
 _error_cb(void *data EINA_UNUSED, Eio_File *handle EINA_UNUSED, int error)
 {
-   fprintf(stderr, Something wrong has happend:%s\n, strerror(error));
+   fprintf(stderr, Something has gone wrong:%s\n, strerror(error));
ecore_main_loop_quit();
 }
 
diff --git a/src/tests/eio/eio_test_file.c b/src/tests/eio/eio_test_file.c
index 912c975..f0e231c 100644
--- a/src/tests/eio/eio_test_file.c
+++ b/src/tests/eio/eio_test_file.c
@@ -110,7 +110,7 @@ _done_cb(void *data, Eio_File *handler EINA_UNUSED)
 static void
 _error_cb(void *data EINA_UNUSED, Eio_File *handler EINA_UNUSED, int error)
 {
-   fprintf(stderr, Something wrong has happend:%s\n, strerror(error));
+   fprintf(stderr, Something has gone wrong:%s\n, strerror(error));
ecore_main_loop_quit();
 }
 
diff --git a/src/tests/eio/eio_test_xattr.c b/src/tests/eio/eio_test_xattr.c
index dfc5894..6600026 100644
--- a/src/tests/eio/eio_test_xattr.c
+++ b/src/tests/eio/eio_test_xattr.c
@@ -122,7 +122,7 @@ static void
 _error_cb(void *data EINA_UNUSED, Eio_File *handler EINA_UNUSED, int error)
 
 {
-   fprintf(stderr, Something wrong has happend:%s\n, strerror(error));
+   fprintf(stderr, Something has gone wrong:%s\n, strerror(error));
abort();
 
ecore_main_loop_quit();

-- 




[EGIT] [core/enlightenment] master 01/01: Update links in head.html

2015-08-06 Thread Yomi
discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=bd305a630f1856841d27afb71c2e8823df40ff63

commit bd305a630f1856841d27afb71c2e8823df40ff63
Author: Yomi abyo...@gmail.com
Date:   Thu Aug 6 12:01:14 2015 -0400

Update links in head.html

Summary: Make sure links point to updated URLs.

Reviewers: zmike

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D2913
---
 doc/head.html | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/doc/head.html b/doc/head.html
index 605fec2..9468b5d 100644
--- a/doc/head.html
+++ b/doc/head.html
@@ -29,15 +29,15 @@
   /td
   td id=header_menu
 table cellspacing=0 cellpadding=0 align=righttr
-  td class=nav_passivea class=nav_passive 
href=http://www.enlightenment.org/p.php?p=home;Home/a/td 
-  td class=nav_passivea class=nav_passive 
href=http://www.enlightenment.org/p.php?p=news;News/a/td 
-  td class=nav_passivea class=nav_passive 
href=http://www.enlightenment.org/p.php?p=about;About/a/td 
-  td class=nav_passivea class=nav_passive 
href=http://www.enlightenment.org/p.php?p=download;Download/a/td 
+  td class=nav_passivea class=nav_passive 
href=https://www.enlightenment.org/;Home/a/td
+  td class=nav_passivea class=nav_passive 
href=https://phab.enlightenment.org/phame/live/3/;News/a/td
+  td class=nav_passivea class=nav_passive 
href=http://www.enlightenment.org/about;About/a/td
+  td class=nav_passivea class=nav_passive 
href=http://www.enlightenment.org/download;Download/a/td
   td class=nav_passivea class=nav_passive 
href=http://www.enlightenment.org/p.php?p=support;Support/a/td 
   td class=nav_passivea class=nav_passive 
href=http://www.enlightenment.org/p.php?p=contribute;Contribute/a/td 
-  td class=nav_passivea class=nav_passive 
href=http://www.enlightenment.org/p.php?p=contact;Contact/a/td 
+  td class=nav_passivea class=nav_passive 
href=http://www.enlightenment.org/contact;Contact/a/td
   td class=nav_passivea class=nav_passive 
href=https://phab.enlightenment.org/maniphest/;Tracker/a/td
-  td class=nav_passivea class=nav_passive 
href=http://www.enlightenment.org/p.php?p=docs;Docs/a/td 
+  td class=nav_passivea class=nav_passive 
href=http://www.enlightenment.org/docs;Docs/a/td
 /tr/table  
   /td
   td id=header_last/td

-- 




[EGIT] [core/efl] master 01/01: eio: grammar and typo fixes in docs.

2015-08-03 Thread Yomi
stefan pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=c1f9152f10dc930826e074b394dcf8fd65352edd

commit c1f9152f10dc930826e074b394dcf8fd65352edd
Author: Yomi abyo...@gmail.com
Date:   Mon Aug 3 11:50:10 2015 +0200

eio: grammar and typo fixes in docs.

Summary:
Fix a sentence.

Changes:

 src/examples/eio/eio_file_ls.c

Reviewers: cedric

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D2894
---
 doc/eio_examples.dox   | 12 ++--
 src/examples/eio/eio_file_ls.c |  2 +-
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/doc/eio_examples.dox b/doc/eio_examples.dox
index 4b7c1ed..587cb39 100644
--- a/doc/eio_examples.dox
+++ b/doc/eio_examples.dox
@@ -181,17 +181,17 @@
  *
  * To use eio_file_ls(), you just need to define four callbacks:
  *
- * @li The filter callback, which allow or not a file to be seen
- * by the main loop handler. This callback run in a separated thread.
+ * @li The filter callback, which allows a file to be seen (or not)
+ * by the main loop handler. This callback runs in a separate thread.
  * @li The main callback, which receive in the main loop all the file
  * that are allowed by the filter. If you are updating a user interface
- * it make sense to delay the insertion a little, so you get a chance
- * to update the canvas for a bunch of file instead of one by one.
+ * it makes sense to delay the insertion a little, so you get a chance
+ * to update the canvas for a bunch of files instead of one by one.
  * @li The end callback, which is called in the main loop when the
  * content of the directory has been correctly scanned and all the
  * file notified to the main loop.
  * @li The error callback, which is called if an error occurred or
- * if the listing was cancelled during it's run. You can then retrieve
+ * if the listing was cancelled during its run. You can then retrieve
  * the error type as an errno error.
  *
  * Here is a simple example:
@@ -288,7 +288,7 @@
  *if( type == EIO_MONITOR_FILE_MODIFIED )
  *   printf(is being modified);
  *else if( type == EIO_MONITOR_FILE_CLOSED )
- *   printf(is not more being modified);
+ *   printf(is no longer being modified);
  *else printf(got unexpected changes);
  *printf(\n);
  * }
diff --git a/src/examples/eio/eio_file_ls.c b/src/examples/eio/eio_file_ls.c
index a9315ff..93e6c7a 100644
--- a/src/examples/eio/eio_file_ls.c
+++ b/src/examples/eio/eio_file_ls.c
@@ -43,7 +43,7 @@ _done_cb(void *data, Eio_File *handler EINA_UNUSED)
 static void
 _error_cb(void *data EINA_UNUSED, Eio_File *handler EINA_UNUSED, int error)
 {
-   fprintf(stderr, Something wrong has happend:%s\n, strerror(error));
+   fprintf(stderr, Something has gone wrong:%s\n, strerror(error));
ecore_main_loop_quit();
 }
 

-- 




[EGIT] [core/enlightenment] master 01/01: Update README for those viewing this repo from github.

2015-08-03 Thread Yomi
discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=98027f258424c028b6794accac404519649ba815

commit 98027f258424c028b6794accac404519649ba815
Author: Yomi abyo...@gmail.com
Date:   Mon Aug 3 15:52:09 2015 -0400

Update README for those viewing this repo from github.

Summary: Update readme.

Reviewers: zmike

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D2908
---
 README | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/README b/README
index a64985c..53ab8de 100644
--- a/README
+++ b/README
@@ -1,3 +1,5 @@
+Please report bugs and send patches to phab.enlightenment.org
+
 Enlightenment 0.19.0
 
 Requirements:

-- 




[EGIT] [core/enlightenment] master 01/01: Fix misspellings in E's files.

2015-06-16 Thread Yomi
discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=0dc33a5aeb1612941b112b3ffc5998badf88d4a9

commit 0dc33a5aeb1612941b112b3ffc5998badf88d4a9
Author: Yomi abyo...@gmail.com
Date:   Tue Jun 16 16:10:21 2015 -0400

Fix misspellings in E's files.

Summary: Fix misspellings and spaces in E's files.

Reviewers: zmike

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D2676
---
 src/bin/e_acpi.c   |  2 +-
 src/bin/e_alert_main.c |  2 +-
 src/bin/e_client.c |  4 ++--
 src/bin/e_client.x | 10 +-
 src/bin/e_comp_object.c| 10 +-
 src/bin/e_comp_wl.c|  2 +-
 src/bin/e_comp_x.c |  8 
 src/bin/e_configure.c  |  2 +-
 src/bin/e_desktop_editor.c |  2 +-
 src/bin/e_exec.c   |  2 +-
 src/bin/e_fm.c | 10 +-
 src/bin/e_fm.h |  6 +++---
 src/bin/e_fm_op.c  |  6 +++---
 src/bin/e_gadcon.c |  2 +-
 src/bin/e_icon.c   |  2 +-
 src/bin/e_int_client_locks.c   |  2 +-
 src/bin/e_int_menus.c  |  2 +-
 src/bin/e_menu.c   |  4 ++--
 src/bin/e_module.c |  2 +-
 src/bin/e_object.h |  2 +-
 src/bin/e_remember.c   |  2 +-
 src/bin/e_signals.c|  6 +++---
 src/bin/e_start_main.c |  6 +++---
 src/bin/e_sys.c| 12 ++--
 src/bin/e_thumb_main.c |  4 ++--
 src/bin/e_utils.c  |  2 +-
 src/bin/e_widget_filepreview.c |  4 ++--
 src/bin/e_widget_ilist.c   | 10 +-
 src/bin/e_widget_list.c|  2 +-
 src/bin/e_widget_slider.c  |  4 ++--
 src/bin/e_xinerama.c   |  2 +-
 src/bin/e_zone.c   |  2 +-
 32 files changed, 69 insertions(+), 69 deletions(-)

diff --git a/src/bin/e_acpi.c b/src/bin/e_acpi.c
index 0429a46..aeb2e6d 100644
--- a/src/bin/e_acpi.c
+++ b/src/bin/e_acpi.c
@@ -252,7 +252,7 @@ _e_acpi_cb_server_data(void *data EINA_UNUSED, int type 
EINA_UNUSED, void *event
/* write out actual acpi received data to stdout for debugging
   res = fwrite(ev-data, ev-size, 1, stdout);
 */
-   /* data from a server isnt a string - its not 0 byte terminated. it's just
+   /* data from a server isn't a string - its not 0 byte terminated. it's just
 * a blob of data. copy to string and 0 byte terminate it so it can be
 * string-swizzled/parsed etc. */
if (!acpibuf) acpibuf = eina_strbuf_new();
diff --git a/src/bin/e_alert_main.c b/src/bin/e_alert_main.c
index 9075760..e2b7abb 100644
--- a/src/bin/e_alert_main.c
+++ b/src/bin/e_alert_main.c
@@ -66,7 +66,7 @@ main(int argc, char **argv)
const char *tmp;
int i = 0;
 
-/* XCB is not avaibale when running in wayland only mode. No need to start 
anything here */
+/* XCB is not available when running in wayland only mode. No need to start 
anything here */
 #ifdef HAVE_WAYLAND_ONLY
printf(E Alert is not suitable to be used with E in wayland only mode\n);
exit(0);
diff --git a/src/bin/e_client.c b/src/bin/e_client.c
index 7545263..7546a63 100644
--- a/src/bin/e_client.c
+++ b/src/bin/e_client.c
@@ -1506,7 +1506,7 @@ _e_client_cb_evas_restack(void *data, Evas *e 
EINA_UNUSED, Evas_Object *obj EINA
 E_LIST_REVERSE_FREE(list, child)
   {
  /* Don't stack iconic transients. If the user wants these shown,
-  * thats another option.
+  * that's another option.
   */
  if (child-iconic) continue;
  if (below)
@@ -2864,7 +2864,7 @@ e_client_mouse_up(E_Client *ec, int button, Evas_Point 
*output, E_Binding_Event_
  }
ec-mouse.current.mx = output-x;
ec-mouse.current.my = output-y;
-   /* also we dont pass the same params that went in - then again that */
+   /* also we don't pass the same params that went in - then again that */
/* should be ok as we are just ending the action if it has an end */
if (ec-cur_mouse_action)
  {
diff --git a/src/bin/e_client.x b/src/bin/e_client.x
index f80648c..d420244 100644
--- a/src/bin/e_client.x
+++ b/src/bin/e_client.x
@@ -26,12 +26,12 @@ e_client_util_move_without_frame(E_Client *ec, int x, int y)
 /**
  * Resize window to values that do not account client decorations yet.
  *
- * This call will consider given size does not account client
+ * This call will consider given size and does not for account client
  * decoration, so these values (e_comp_object_frame) will be
- * accounted automatically. This is specially useful when it is a new
- * client and has not be evaluated yet, in this case
+ * accounted for automatically. This is specially useful when it is a new
+ * client and has not been evaluated yet, in this case
  * e_comp_object_frame will be zeroed and no information is known. It
- * will mark pending requests so client will be accounted on
+ * will mark pending

[EGIT] [core/enlightenment] master 01/01: Fix misspelling in e_randr2.c

2015-05-07 Thread Yomi
discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=aa56794304d814dbac62d2d1e932fcf0033f9ee4

commit aa56794304d814dbac62d2d1e932fcf0033f9ee4
Author: Yomi abyo...@gmail.com
Date:   Thu May 7 18:41:10 2015 -0400

Fix misspelling in e_randr2.c

Summary: Fix misspelling in e_randr2.c

Reviewers: zmike

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D2476
---
 src/bin/e_randr2.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/e_randr2.c b/src/bin/e_randr2.c
index ddf8c60..f5b17a5 100644
--- a/src/bin/e_randr2.c
+++ b/src/bin/e_randr2.c
@@ -535,7 +535,7 @@ _cb_screen_change_delay(void *data EINA_UNUSED)
   }
 printf(RRR: change = %i\n, change);
 // we plugged or unplugged some monitor - re-apply config so
-// known screens can be coonfigured
+// known screens can be configured
 if (change) e_randr2_config_apply();
  }
// update screen info after the above apply or due to external changes

--