[EGIT] [website/www-content] master 01/01: Wiki page docs-efl-start changed with summary [Changed http:// to https://] by Shuhrat Dehkanov

2016-05-01 Thread Shuhrat Dehkanov
WWW-www.enlightenment.org pushed a commit to branch master.

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

commit c0f6e7efcdc51a90a0716d456db4e1927288d633
Author: Shuhrat Dehkanov <k+enlightenm...@efir.uz>
Date:   Sun May 1 12:16:35 2016 -0700

Wiki page docs-efl-start changed with summary [Changed http:// to https://] 
by Shuhrat Dehkanov
---
 pages/docs-efl-start.txt | 16 
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/pages/docs-efl-start.txt b/pages/docs-efl-start.txt
index a158818..511566b 100644
--- a/pages/docs-efl-start.txt
+++ b/pages/docs-efl-start.txt
@@ -3,7 +3,7 @@
 
 All our source repositories are on:
 
-  * [[http://git.enlightenment.org|git.enlightenment.org]]
+  * [[https://git.enlightenment.org|git.enlightenment.org]]
 
 Our source code is developed collaboratively in a pretty typical open source 
manner. Our master branches in git are where all new development goes into as 
it happens, thus they are technically "unstable". We try and keep master 
working and usable daily, as developers generally are living off master 
themselves, so bugs affect developers directly and immediately. Sometimes 
issues happen, but they tend to get fixed rapidly.
 
@@ -18,17 +18,17 @@ Before you start you will want basic build tools installed 
such as:
 As any general anonymous user for the EFL core libraries:
 
 
-git clone http://git.enlightenment.org/core/efl.git
-git clone http://git.enlightenment.org/core/emotion_generic_players.git
-git clone http://git.enlightenment.org/core/evas_generic_loaders.git
+git clone https://git.enlightenment.org/core/efl.git
+git clone https://git.enlightenment.org/core/emotion_generic_players.git
+git clone https://git.enlightenment.org/core/evas_generic_loaders.git
 
 
 And for some sample well developed / maintained applications
 
 
-git clone http://git.enlightenment.org/core/enlightenment.git
-git clone http://git.enlightenment.org/apps/terminology.git
-git clone http://git.enlightenment.org/apps/rage.git
+git clone https://git.enlightenment.org/core/enlightenment.git
+git clone https://git.enlightenment.org/apps/terminology.git
+git clone https://git.enlightenment.org/apps/rage.git
 
 
  Dependencies 
@@ -81,7 +81,7 @@ git clone git+ssh://git@
 instead of
 
 
-git clone http://
+git clone https://
 
 
 ~~DISCUSSIONS~~
\ No newline at end of file

-- 




[EGIT] [core/enlightenment] enlightenment-0.20 107/140: xkbswitch: establish parent/child relationship

2016-04-26 Thread Shuhrat Dehkanov
discomfitor pushed a commit to branch enlightenment-0.20.

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

commit be742c4adca4d5f5aac17cb511f9002d1bd6130a
Author: Shuhrat Dehkanov <sh.dehka...@samsung.com>
Date:   Mon Apr 18 12:00:20 2016 -0400

xkbswitch: establish parent/child relationship

Summary:
There is an edge case that results in SIGFAULT in Enlightenment when
"Keyboard Settings" dialog is closed prior to "Add New Configuration"
dialog and "OK" button is pressed in the latter one.
This makes sure that closing the dialogs follows the parent/child logic.

@fix

Test Plan:
1. Go to Settings -> All -> Input -> Keyboard and press "Add"
2. Observe that "Add New Configuration" dialog is opened
3. Select/highlight any new layout
4. Go back to "Keyboard Settings" dialog and close it
5. Press "OK" in "Keyboard Settings" dialog
6. Observe that Enlightenment sigfaults

Reviewers: zmike, raster

Subscribers: cedric, seoz

Differential Revision: https://phab.enlightenment.org/D3901
---
 src/modules/xkbswitch/e_mod_config.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/modules/xkbswitch/e_mod_config.c 
b/src/modules/xkbswitch/e_mod_config.c
index f0f0a4d..f400bc6 100644
--- a/src/modules/xkbswitch/e_mod_config.c
+++ b/src/modules/xkbswitch/e_mod_config.c
@@ -543,7 +543,7 @@ _dlg_add_new(E_Config_Dialog_Data *cfdata)
Evas_Coord mw, mh;
Evas_Object *mainn, *available, *modelss, *variants;
 
-   if (!(dlg = e_dialog_new(NULL, "E", "xkbswitch_config_add_dialog"))) return 
NULL;
+   if (!(dlg = e_dialog_new(e_win_evas_win_get(cfdata->evas), "E", 
"xkbswitch_config_add_dialog"))) return NULL;
 
e_dialog_resizable_set(dlg, 1);
dlg->data = cfdata;

-- 




[EGIT] [core/enlightenment] master 01/01: xkbswitch: establish parent/child relationship

2016-04-18 Thread Shuhrat Dehkanov
discomfitor pushed a commit to branch master.

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

commit 79e19284273f35a2b17c444e3dad4dbcaf875fc6
Author: Shuhrat Dehkanov <sh.dehka...@samsung.com>
Date:   Mon Apr 18 12:00:20 2016 -0400

xkbswitch: establish parent/child relationship

Summary:
There is an edge case that results in SIGFAULT in Enlightenment when
"Keyboard Settings" dialog is closed prior to "Add New Configuration"
dialog and "OK" button is pressed in the latter one.
This makes sure that closing the dialogs follows the parent/child logic.

@fix

Test Plan:
1. Go to Settings -> All -> Input -> Keyboard and press "Add"
2. Observe that "Add New Configuration" dialog is opened
3. Select/highlight any new layout
4. Go back to "Keyboard Settings" dialog and close it
5. Press "OK" in "Keyboard Settings" dialog
6. Observe that Enlightenment sigfaults

Reviewers: zmike, raster

Subscribers: cedric, seoz

Differential Revision: https://phab.enlightenment.org/D3901
---
 src/modules/xkbswitch/e_mod_config.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/modules/xkbswitch/e_mod_config.c 
b/src/modules/xkbswitch/e_mod_config.c
index 64f54ad..1e3748b 100644
--- a/src/modules/xkbswitch/e_mod_config.c
+++ b/src/modules/xkbswitch/e_mod_config.c
@@ -541,7 +541,7 @@ _dlg_add_new(E_Config_Dialog_Data *cfdata)
Evas_Coord mw, mh;
Evas_Object *mainn, *available, *modelss, *variants;
 
-   if (!(dlg = e_dialog_new(NULL, "E", "xkbswitch_config_add_dialog"))) return 
NULL;
+   if (!(dlg = e_dialog_new(e_win_evas_win_get(cfdata->evas), "E", 
"xkbswitch_config_add_dialog"))) return NULL;
 
e_dialog_resizable_set(dlg, 1);
dlg->data = cfdata;

-- 




[EGIT] [core/efl] master 01/01: genlist: do not evaluate against max coord if the value is negative

2016-04-11 Thread Shuhrat Dehkanov
ami pushed a commit to branch master.

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

commit eae53f221809b7e66bae1476f5697e9e4153ceaa
Author: Shuhrat Dehkanov <sh.dehka...@samsung.com>
Date:   Mon Apr 11 17:41:28 2016 +0530

genlist: do not evaluate against max coord if the value is negative

Summary:
If x is already less than '0', there is no need to check if it is
bigger than pan_max_x. Likewise, if y is already less than '0',
there is no need to check if it is bigger than pan_max_y.

Reviewers: Hermet, cedric, SanghyeonLee, singh.amitesh

Reviewed By: singh.amitesh

Subscribers: seoz, minkyu, sju27, jpeg

Differential Revision: https://phab.enlightenment.org/D3865
---
 src/lib/elementary/elm_genlist.c | 12 
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/src/lib/elementary/elm_genlist.c b/src/lib/elementary/elm_genlist.c
index b5137fc..f204537 100644
--- a/src/lib/elementary/elm_genlist.c
+++ b/src/lib/elementary/elm_genlist.c
@@ -3053,10 +3053,14 @@ _key_action_move(Evas_Object *obj, const char *params)
else return EINA_FALSE;
 
elm_obj_pan_pos_max_get(sd->pan_obj, _max_x, _max_y);
-   if (x < 0) x = 0;
-   if (x > pan_max_x) x = pan_max_x;
-   if (y < 0) y = 0;
-   if (y > pan_max_y) y = pan_max_y;
+   if (x < 0)
+ x = 0;
+   else if (x > pan_max_x)
+ x = pan_max_x;
+   if (y < 0)
+ y = 0;
+   else if (y > pan_max_y)
+ y = pan_max_y;
 
elm_interface_scrollable_content_pos_set(obj, x, y, EINA_TRUE);
 

-- 




[EGIT] [website/www-content] master 01/01: Wiki page docs-efl-start changed with summary [Elementary is merged with EFL, so it does not require building separately] by Shuhrat Dehkanov

2016-04-05 Thread Shuhrat Dehkanov
WWW-www.enlightenment.org pushed a commit to branch master.

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

commit 66a75eb185077804ff35ab4787cedb83e9b34dae
Author: Shuhrat Dehkanov <k+enlightenm...@efir.uz>
Date:   Mon Apr 4 23:39:54 2016 -0700

Wiki page docs-efl-start changed with summary [Elementary is merged with 
EFL, so it does not require building separately] by Shuhrat Dehkanov
---
 pages/docs-efl-start.txt | 1 -
 1 file changed, 1 deletion(-)

diff --git a/pages/docs-efl-start.txt b/pages/docs-efl-start.txt
index e20c80a..a158818 100644
--- a/pages/docs-efl-start.txt
+++ b/pages/docs-efl-start.txt
@@ -21,7 +21,6 @@ As any general anonymous user for the EFL core libraries:
 git clone http://git.enlightenment.org/core/efl.git
 git clone http://git.enlightenment.org/core/emotion_generic_players.git
 git clone http://git.enlightenment.org/core/evas_generic_loaders.git
-git clone http://git.enlightenment.org/core/elementary.git
 
 
 And for some sample well developed / maintained applications

-- 




[EGIT] [core/efl] master 01/01: Docs: change 'emittion' to 'emission'

2016-03-23 Thread Shuhrat Dehkanov
stefan pushed a commit to branch master.

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

commit 7e411ecf76a6a73fe37968cce99679c13990c234
Author: Shuhrat Dehkanov <sh.dehka...@samsung.com>
Date:   Wed Mar 23 11:22:44 2016 +0100

Docs: change 'emittion' to 'emission'

Reviewers: cedric, stefan_schmidt

Subscribers: minkyu, cedric, seoz, jpeg

Differential Revision: https://phab.enlightenment.org/D3823
---
 src/lib/edje/Edje_Legacy.h  | 4 ++--
 src/lib/edje/edje_object.eo | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/lib/edje/Edje_Legacy.h b/src/lib/edje/Edje_Legacy.h
index fc68c16..8991eb2 100644
--- a/src/lib/edje/Edje_Legacy.h
+++ b/src/lib/edje/Edje_Legacy.h
@@ -61,7 +61,7 @@ EAPI Evas_Object *edje_object_add (Evas 
*evas);
  * @return The data pointer
  *
  * This function removes a callback, previously attached to the
- * emittion of a signal, from the object @a obj. The parameters @a
+ * emission of a signal, from the object @a obj. The parameters @a
  * emission, @a source and @a func must match exactly those passed to
  * a previous call to edje_object_signal_callback_add(). The data
  * pointer that was passed to this call will be returned.
@@ -86,7 +86,7 @@ EAPI void*edje_object_signal_callback_del 
(Evas_Object *obj, const char
  * had this value)
  *
  * This function removes a callback, previously attached to the
- * emittion of a signal, from the object @a obj. The parameters
+ * emission of a signal, from the object @a obj. The parameters
  * @a emission, @a source, @a func and @a data must match exactly those
  * passed to a previous call to edje_object_signal_callback_add(). The
  * data pointer that was passed to this call will be returned.
diff --git a/src/lib/edje/edje_object.eo b/src/lib/edje/edje_object.eo
index ad6c905..63f4c22 100644
--- a/src/lib/edje/edje_object.eo
+++ b/src/lib/edje/edje_object.eo
@@ -552,7 +552,7 @@ class Edje.Object (Evas.Smart_Clipped, Efl.File)
  [[Remove a signal-triggered callback from an object.
 
This function removes a callback, previously attached to the
-   emittion of a signal, from the object  obj. The parameters
+   emission of a signal, from the object  obj. The parameters
emission,  source and  func must match exactly those passed to
a previous call to edje_object_signal_callback_add(). The data
pointer that was passed to this call will be returned.

-- 




[EGIT] [website/www-content] master 01/01: Wiki page elm_layout changed with summary [Remove redundant text] by Shuhrat Dehkanov

2016-03-22 Thread Shuhrat Dehkanov
WWW-www.enlightenment.org pushed a commit to branch master.

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

commit 2e9d619057f25317eb80a1520bf668aff7dfc253
Author: Shuhrat Dehkanov <k+enlightenm...@efir.uz>
Date:   Tue Mar 22 03:57:04 2016 -0700

Wiki page elm_layout changed with summary [Remove redundant text] by 
Shuhrat Dehkanov
---
 pages/program_guide/edje/elm_layout.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pages/program_guide/edje/elm_layout.txt 
b/pages/program_guide/edje/elm_layout.txt
index 65ca0d0..e1b6199 100644
--- a/pages/program_guide/edje/elm_layout.txt
+++ b/pages/program_guide/edje/elm_layout.txt
@@ -101,7 +101,7 @@ Elm can send Edje signals to the EDC part by using the
 Use the following code to listen to any signals sent by the layout:
 
 
-elm_layout_signal_callback_add(layout, "*", "*", _signal_cb, NULL);jj
+elm_layout_signal_callback_add(layout, "*", "*", _signal_cb, NULL);
 
 static void
 _signal_cb(void *data, Evas_Object *obj, const char *emission, const char 
*source)

-- 




[EGIT] [games/elemines] master 01/01: theme: fix edje build error

2016-03-15 Thread Shuhrat Dehkanov
cedric pushed a commit to branch master.

http://git.enlightenment.org/games/elemines.git/commit/?id=06b588b5069b1b7e2bfbda47de8d5bf1cabed38a

commit 06b588b5069b1b7e2bfbda47de8d5bf1cabed38a
Author: Shuhrat Dehkanov <sh.dehka...@samsung.com>
Date:   Tue Mar 15 11:36:27 2016 -0700

theme: fix edje build error

Summary:
Error log:

edje_cc: Critical. parse error near 
../../../data/themes/default/edc/grass-side.edc:16.
Unnamed part exists in Group "grass/e".

Reviewers: cedric

Subscribers: seoz

Differential Revision: https://phab.enlightenment.org/D3789

Signed-off-by: Cedric Bail <ced...@osg.samsung.com>
---
 data/themes/default/edc/grass-side.edc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/data/themes/default/edc/grass-side.edc 
b/data/themes/default/edc/grass-side.edc
index 6b7bc3a..1cb1089 100644
--- a/data/themes/default/edc/grass-side.edc
+++ b/data/themes/default/edc/grass-side.edc
@@ -2,7 +2,7 @@
 group { \
   name: "grass/"Side;   \
   parts {   \
-part {  \
+part { name: "grass-"Side;  \
   type: IMAGE;  \
   mouse_events: 0;  \
   repeat_events: 0; \

-- 




[EGIT] [core/efl] master 01/01: Update documentation text

2016-02-29 Thread Shuhrat Dehkanov
discomfitor pushed a commit to branch master.

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

commit f3d978e04c54b3720069d51ad87a4a2ccf90dfe1
Author: Shuhrat Dehkanov <sh.dehka...@samsung.com>
Date:   Mon Feb 29 07:02:20 2016 -0500

Update documentation text

Summary:
The word 'english' has several issues:
 - the whole documentation and source code is in English,
   there is no point in mentioning here specifically
 - the character 'E' needs to be capitalized, as in
   Ecore, Evas, Elementary

Reviewers: zmike, herdsman

Subscribers: cedric, seoz, jpeg

Differential Revision: https://phab.enlightenment.org/D3740
---
 src/lib/evas/Evas_Common.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/evas/Evas_Common.h b/src/lib/evas/Evas_Common.h
index 9713e0e..63f9d4a 100644
--- a/src/lib/evas/Evas_Common.h
+++ b/src/lib/evas/Evas_Common.h
@@ -5055,7 +5055,7 @@ EAPI voidevas_cserve_disconnect(void);
 
 /**
  * Converts the given Evas image load error code into a string
- * describing it in english.
+ * describing it in human-readable text.
  *
  * @param error the error code, a value in ::Evas_Load_Error.
  * @return Always returns a valid string. If the given @p error is not

-- 




[EGIT] [website/www-content] master 01/01: Wiki page donation-buttons changed with summary [Created donation buttons page for shortcut linking] by Shuhrat Dehkanov

2016-02-16 Thread Shuhrat Dehkanov
WWW-www.enlightenment.org pushed a commit to branch master.

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

commit 22a673f5fd7433f55a005d615d20cf60e7544b63
Author: Shuhrat Dehkanov <k+enlightenm...@efir.uz>
Date:   Tue Feb 16 20:30:45 2016 -0800

Wiki page donation-buttons changed with summary [Created donation buttons 
page for shortcut linking] by Shuhrat Dehkanov
---
 pages/donation-buttons.txt | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/pages/donation-buttons.txt b/pages/donation-buttons.txt
new file mode 100644
index 000..0f75cc6
--- /dev/null
+++ b/pages/donation-buttons.txt
@@ -0,0 +1,3 @@
+[[http://flattr.com/thing/418692/Enlightenment|{{:scut-flattr.svg|Flattr}}]]
+{{:scut-pad-sml.svg?nolink}}
+[[https://www.paypal.com/webscr?cmd=_s-xclick_button_id=A5U75JR3FFWFC|{{:scut-paypal.svg|PayPal}}]]
\ No newline at end of file

-- 




[EGIT] [website/www-content] master 01/01: Wiki page contribute changed with summary [Use donation-buttons page] by Shuhrat Dehkanov

2016-02-16 Thread Shuhrat Dehkanov
WWW-www.enlightenment.org pushed a commit to branch master.

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

commit 3e2e2a27dc1fd7ed6a34559be6d51b3287916ff7
Author: Shuhrat Dehkanov <k+enlightenm...@efir.uz>
Date:   Tue Feb 16 20:32:19 2016 -0800

Wiki page contribute changed with summary [Use donation-buttons page] by 
Shuhrat Dehkanov
---
 pages/contribute.txt | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/pages/contribute.txt b/pages/contribute.txt
index 7e03992..08fa816 100644
--- a/pages/contribute.txt
+++ b/pages/contribute.txt
@@ -24,6 +24,4 @@ Enlightenment Association is a non-profit organisation, under 
French law. Enligh
 
 Donate to Enlightenment via PayPal or Flattr. You can donate money to the 
project through Enlightenment's PayPal account. There is no minimal amount for 
your donation.  If you click on one of the buttons below, you will be taken to 
the secure PayPal Web site.  You don't need to have a PayPal account in order 
to make a donation.
 
-[[http://flattr.com/thing/418692/Enlightenment|{{:scut-flattr.svg|Flattr}}]]
-{{:scut-pad-sml.svg?nolink}}
-[[https://www.paypal.com/webscr?cmd=_s-xclick_button_id=A5U75JR3FFWFC|{{:scut-paypal.svg|PayPal}}]]
\ No newline at end of file
+{{page>donation-buttons}}
\ No newline at end of file

-- 




[EGIT] [website/www-content] master 01/01: Wiki page contribute changed with summary [Add Flattr and Paypal links] by Shuhrat Dehkanov

2016-02-16 Thread Shuhrat Dehkanov
WWW-www.enlightenment.org pushed a commit to branch master.

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

commit 837e6914bd0ca4ffab16576f14a261d36ad5d050
Author: Shuhrat Dehkanov <k+enlightenm...@efir.uz>
Date:   Tue Feb 16 20:28:52 2016 -0800

Wiki page contribute changed with summary [Add Flattr and Paypal links] by 
Shuhrat Dehkanov
---
 pages/contribute.txt | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/pages/contribute.txt b/pages/contribute.txt
index 1bd2cdb..7e03992 100644
--- a/pages/contribute.txt
+++ b/pages/contribute.txt
@@ -22,4 +22,8 @@ Enlightenment project needs money for different reasons:
 
 Enlightenment Association is a non-profit organisation, under French law. 
Enlightenment association has its own bank account and is responsible for 
running and maintaining the Enlightenment servers.  
 
-Donate to Enlightenment via PayPal or Flattr. You can donate money to the 
project through Enlightenment's PayPal account. There is no minimal amount for 
your donation.  If you click on one of the buttons below, you will be taken to 
the secure PayPal Web site.  You don't need to have a PayPal account in order 
to make a donation.
\ No newline at end of file
+Donate to Enlightenment via PayPal or Flattr. You can donate money to the 
project through Enlightenment's PayPal account. There is no minimal amount for 
your donation.  If you click on one of the buttons below, you will be taken to 
the secure PayPal Web site.  You don't need to have a PayPal account in order 
to make a donation.
+
+[[http://flattr.com/thing/418692/Enlightenment|{{:scut-flattr.svg|Flattr}}]]
+{{:scut-pad-sml.svg?nolink}}
+[[https://www.paypal.com/webscr?cmd=_s-xclick_button_id=A5U75JR3FFWFC|{{:scut-paypal.svg|PayPal}}]]
\ No newline at end of file

-- 




[EGIT] [website/www-content] master 01/01: Wiki page contribute changed with summary [] by Shuhrat Dehkanov

2016-02-16 Thread Shuhrat Dehkanov
WWW-www.enlightenment.org pushed a commit to branch master.

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

commit f17c27a4ab5e1c59b82718dcac68179bd9f0fb18
Author: Shuhrat Dehkanov <k+enlightenm...@efir.uz>
Date:   Tue Feb 16 20:25:22 2016 -0800

Wiki page contribute changed with summary [] by Shuhrat Dehkanov
---
 pages/contribute.txt | 23 +++
 1 file changed, 7 insertions(+), 16 deletions(-)

diff --git a/pages/contribute.txt b/pages/contribute.txt
index bb9338c..1bd2cdb 100644
--- a/pages/contribute.txt
+++ b/pages/contribute.txt
@@ -6,29 +6,20 @@
 
 If you have free time, help is welcome in different areas:
 
-  * Developers: See the [[docs|documentation]], subscribe to the
-[[contact|mailing lists]], create a [[http://phab.enlightenment.org|phab
-account]], have a look at the opened tasks, join [[contact|IRC channel]] to get
-help on how to start coding 
+  * Developers: See the [[docs|documentation]], subscribe to the 
[[contact|mailing lists]], create a [[http://phab.enlightenment.org|phab
+account]], have a look at the opened tasks, join [[contact|IRC channel]] to 
get help on how to start coding 
   * Writers: to help improve the documentation 
   * Translators: to translate Enlightenment, Terminology, Edi, ...  
   * Designers: to help to get edje themes of all applications better
 
 === Donate money ===
 
-Enlightenment project needs money for different reasons :
+Enlightenment project needs money for different reasons:
 
-  * Maintain servers, on which are running all the sevices : git, phab, 
mailing lists, ...
+  * Maintain servers, on which are running all the services: git, phab, 
mailing lists, ...
   * Promote the project by organising or participating in events (FOSDEM, ELC, 
LinuxTag, ...)
-  * Buy hardware for developping and testing purpose.
+  * Buy hardware for developing and testing purposes
 
-Enlightenment Association is a non-profit organisation, under French
-law. Enlightenment association has its own bank account and is responsible for 
running and
-maintaining the Enlightenment servers.  
-
-Donate to Enlightenment via PayPal or Flattr you can donnate money to the
-project through Enlightenment's PayPal account. There is no minimal amount for
-your donation.  If you click on one of the buttons below, you will be taken to
-the secure PayPal Web site.  You don't need to have a paypal account in order 
to
-make a donation.
+Enlightenment Association is a non-profit organisation, under French law. 
Enlightenment association has its own bank account and is responsible for 
running and maintaining the Enlightenment servers.  
 
+Donate to Enlightenment via PayPal or Flattr. You can donate money to the 
project through Enlightenment's PayPal account. There is no minimal amount for 
your donation.  If you click on one of the buttons below, you will be taken to 
the secure PayPal Web site.  You don't need to have a PayPal account in order 
to make a donation.
\ No newline at end of file

--