[EGIT] [website/www-content] master 01/01: Wiki page about changed with summary [] by Nate Drake

2017-11-01 Thread Nate Drake
WWW-www.enlightenment.org pushed a commit to branch master.

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

commit c5dbc929ba1aee05ddb085d136ec4c28b906a117
Author: Nate Drake 
Date:   Wed Nov 1 09:58:10 2017 -0700

Wiki page about changed with summary [] by Nate Drake
---
 pages/about.txt | 45 ++---
 1 file changed, 6 insertions(+), 39 deletions(-)

diff --git a/pages/about.txt b/pages/about.txt
index 35aed4af..adbb5edb 100644
--- a/pages/about.txt
+++ b/pages/about.txt
@@ -4,7 +4,7 @@
 
  Much more than a Window Manager 
 
-Enlightenment was originally developed in the 1990s by Rasterman (Carsten 
Haitzler) as a simple Window Manager for
+Enlightenment originally began as a project to create a Window Manager for
 X11. Since then it's grown into the one million lines of C
 code that form the EFL libraries, as well as a Window Manager and a
 set of applications. There's a vibrant and active community of
@@ -48,46 +48,17 @@ details.
 
 
 
-=== EFL ===
+=== Libraries ===
 
-{{:efl-core.png?nolink|Enlightenment}}
+{{ :efl-core.png?nolink|Core libraries}}
 
 Our libraries are commonly known as EFL (Enlightenment Foundation
-Libraries). They can be used independently or built on top of one other to 
provide useful features and create powerful applications.
+Libraries), which include EFL proper as well as Elementary which is a
+high-level API layer designed for portability and includes widgets. They 
provided everything you need to create powerful applications.
 
-The core EFL libraries are much more efficient in terms of speed and size when 
compared to GTK+ and Qt equivalents and have a smaller memory footprint. 
 
-=== The EFL Model ===
 
-{{:model1.png?nolink}}
-
-EFL operates on the same "main loop" concept adopted by GTK+ and many other 
toolkits. Once you initialize an application in enters the Ecore main loop.
-
-The main loop continuously checks for events, handles timers, callbacks and 
any other services that have previously been set up until an exit request is 
sent. By way of an example if EFL were used to create a video game, the 
mainloop would check for user inputs and update the game world accordingly as 
you play. 
-
-The mainloop is designed efficiently. It will remain idle, consuming virtually 
no CPU resources until an event occurs. Events can be based on user input such 
as using the mouse or time-based. Ecore will then handle the event 
appropriately.
-
-Read more about the Ecore main loop 
[[https://docs.enlightenment.org/auto/group__Ecore__Main__Loop__Group.html|here.]]
-
-For more detailed information on the EFL model including events and callbacks 
visit see our [[https://phab.enlightenment.org/w/efl_concept_overview/|EFL 
Concept Overview.]]
-
-=== EFL Application Structure ===
-
-{{ :efllibs.png }}
-
-Whenever you create a basic EFL Application, it uses a basic set of libraries:
-
-  * **Elementary** is the top-most library. It provides all the functions you 
need to create windows, manage layouts and add widgets. 
-  * **Edje**  is the library used by Elementary to provide 
powerful,customisable themes. You can also use Edje to create your own objects 
and use them in an application. 
-  * **Ecore** is the library which manages the main loop of your application, 
as outlined above. 
-  * **Evas**  is the canvas engine, which draws content. Any graphical objects 
you create are Evas objects. It handles the entire state of the window by 
filling the canvas with objects and manipulating their states. Evas objects are 
created and then manipulated until they are no longer needed, at which point 
they are deleted. 
-  * **Eina** forms the basis of all EFL libraries. It's a toolbox that 
implements an API for data types in an efficient way. Eina contains all the 
functions needed to create lists and hashes, manage shared strings, open shared 
libraries, and manage errors and memory pools. 
-
-EFL naturally contains many more libraries than the basic ones outlined above. 
Visit our 
[[https://www.enlightenment.org/develop/legacy/program_guide/basic_application_structure_pg|Basic
 Application Structure]] page for more information on the core libraries. You 
can also learn about other libraries in our other programming guides.
-
-=== Supported Platforms ===
-
-{{:os-logos.png?nolink }}
+{{:os-logos.png?nolink |Platform Support}}
 
 We primarily work on Linux, which means that most Linux distributions
 and OSs like Tizen should be well supported out of the box. There are
@@ -99,10 +70,6 @@ page, or
 [[http://win-builds.org|Win-Builds]] which ships EFL for
 Windows and even uses it for the package updater GUI. For information on 
macOS, please refer to the [[docs/distros/osx-start]] page.
 
-
-
-=== Uses for EFL ===
-
 Enlightenment libraries already power millions of systems, from mobile
 phones to set top boxes, desktops, laptops, game systems and more. It
 is only now being reco

[EGIT] [website/www-content] master 01/01: Wiki page about changed with summary [] by Nate Drake

2017-11-01 Thread Nate Drake
WWW-www.enlightenment.org pushed a commit to branch master.

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

commit 0ad0c483eb0c989d4ec0627fa784429b7e381cbb
Author: Nate Drake 
Date:   Wed Nov 1 09:34:21 2017 -0700

Wiki page about changed with summary [] by Nate Drake
---
 pages/about.txt | 13 +++--
 1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/pages/about.txt b/pages/about.txt
index edd278c7..35aed4af 100644
--- a/pages/about.txt
+++ b/pages/about.txt
@@ -4,7 +4,7 @@
 
  Much more than a Window Manager 
 
-Enlightenment originally began as a project to create a Window Manager for
+Enlightenment was originally developed in the 1990s by Rasterman (Carsten 
Haitzler) as a simple Window Manager for
 X11. Since then it's grown into the one million lines of C
 code that form the EFL libraries, as well as a Window Manager and a
 set of applications. There's a vibrant and active community of
@@ -69,12 +69,21 @@ The mainloop is designed efficiently. It will remain idle, 
consuming virtually n
 
 Read more about the Ecore main loop 
[[https://docs.enlightenment.org/auto/group__Ecore__Main__Loop__Group.html|here.]]
 
+For more detailed information on the EFL model including events and callbacks 
visit see our [[https://phab.enlightenment.org/w/efl_concept_overview/|EFL 
Concept Overview.]]
 
+=== EFL Application Structure ===
 
+{{ :efllibs.png }}
 
+Whenever you create a basic EFL Application, it uses a basic set of libraries:
 
+  * **Elementary** is the top-most library. It provides all the functions you 
need to create windows, manage layouts and add widgets. 
+  * **Edje**  is the library used by Elementary to provide 
powerful,customisable themes. You can also use Edje to create your own objects 
and use them in an application. 
+  * **Ecore** is the library which manages the main loop of your application, 
as outlined above. 
+  * **Evas**  is the canvas engine, which draws content. Any graphical objects 
you create are Evas objects. It handles the entire state of the window by 
filling the canvas with objects and manipulating their states. Evas objects are 
created and then manipulated until they are no longer needed, at which point 
they are deleted. 
+  * **Eina** forms the basis of all EFL libraries. It's a toolbox that 
implements an API for data types in an efficient way. Eina contains all the 
functions needed to create lists and hashes, manage shared strings, open shared 
libraries, and manage errors and memory pools. 
 
-
+EFL naturally contains many more libraries than the basic ones outlined above. 
Visit our 
[[https://www.enlightenment.org/develop/legacy/program_guide/basic_application_structure_pg|Basic
 Application Structure]] page for more information on the core libraries. You 
can also learn about other libraries in our other programming guides.
 
 === Supported Platforms ===
 

-- 




[EGIT] [website/www-content] master 01/01: Wiki page about changed with summary [] by Nate Drake

2017-11-01 Thread Nate Drake
WWW-www.enlightenment.org pushed a commit to branch master.

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

commit 3954ee064b79e5282e5a48c9d541ba931618d8a9
Author: Nate Drake 
Date:   Wed Nov 1 09:18:02 2017 -0700

Wiki page about changed with summary [] by Nate Drake
---
 pages/about.txt | 14 +++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/pages/about.txt b/pages/about.txt
index e24b6661..edd278c7 100644
--- a/pages/about.txt
+++ b/pages/about.txt
@@ -59,14 +59,22 @@ The core EFL libraries are much more efficient in terms of 
speed and size when c
 
 === The EFL Model ===
 
-EFL operates on the same "main loop" concept adopted by GTK+ and many other 
toolkits. Once you initialize an application in enters the "mainloop" function.
+{{:model1.png?nolink}}
+
+EFL operates on the same "main loop" concept adopted by GTK+ and many other 
toolkits. Once you initialize an application in enters the Ecore main loop.
+
+The main loop continuously checks for events, handles timers, callbacks and 
any other services that have previously been set up until an exit request is 
sent. By way of an example if EFL were used to create a video game, the 
mainloop would check for user inputs and update the game world accordingly as 
you play. 
+
+The mainloop is designed efficiently. It will remain idle, consuming virtually 
no CPU resources until an event occurs. Events can be based on user input such 
as using the mouse or time-based. Ecore will then handle the event 
appropriately.
+
+Read more about the Ecore main loop 
[[https://docs.enlightenment.org/auto/group__Ecore__Main__Loop__Group.html|here.]]
+
+
 
-The mainloop continuously checks for events, handles timers, callbacks and any 
other services that have previously been set up until an exit request is sent. 
By way of an example if EFL were used to create a video game, the mainloop 
would check for user inputs and update the game world accordingly as they play. 
 
 
 
 
-{{:model1.png?nolink}}
 
 === Supported Platforms ===
 

-- 




[EGIT] [website/www-content] master 01/01: Wiki page about changed with summary [] by Nate Drake

2017-11-01 Thread Nate Drake
WWW-www.enlightenment.org pushed a commit to branch master.

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

commit 14a6a2d8dc9fae8d7f054a066e967d61c4da44a7
Author: Nate Drake 
Date:   Wed Nov 1 09:10:01 2017 -0700

Wiki page about changed with summary [] by Nate Drake
---
 pages/about.txt | 15 +++
 1 file changed, 11 insertions(+), 4 deletions(-)

diff --git a/pages/about.txt b/pages/about.txt
index 4893a5ce..e24b6661 100644
--- a/pages/about.txt
+++ b/pages/about.txt
@@ -50,16 +50,23 @@ details.
 
 === EFL ===
 
-{{ :efl-core.png?nolink|Core libraries}}
+{{:efl-core.png?nolink|Enlightenment}}
 
 Our libraries are commonly known as EFL (Enlightenment Foundation
-Libraries). They can be used independently or built on top of each other to 
provide useful features and create powerful applications.
+Libraries). They can be used independently or built on top of one other to 
provide useful features and create powerful applications.
 
-The core EFL libraries are much more efficient in terms of speed and size when 
compared to GTK+ and Qt equivalents and has a smaller memory footprint. 
+The core EFL libraries are much more efficient in terms of speed and size when 
compared to GTK+ and Qt equivalents and have a smaller memory footprint. 
 
 === The EFL Model ===
 
-Description of EFL model here.
+EFL operates on the same "main loop" concept adopted by GTK+ and many other 
toolkits. Once you initialize an application in enters the "mainloop" function.
+
+The mainloop continuously checks for events, handles timers, callbacks and any 
other services that have previously been set up until an exit request is sent. 
By way of an example if EFL were used to create a video game, the mainloop 
would check for user inputs and update the game world accordingly as they play. 
+
+
+
+
+{{:model1.png?nolink}}
 
 === Supported Platforms ===
 

-- 




[EGIT] [website/www-content] master 01/01: Wiki page about changed with summary [] by Nate Drake

2017-11-01 Thread Nate Drake
WWW-www.enlightenment.org pushed a commit to branch master.

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

commit 94b699e1a496f89a8d4fd42a78c27e02c4aab242
Author: Nate Drake 
Date:   Wed Nov 1 08:49:49 2017 -0700

Wiki page about changed with summary [] by Nate Drake
---
 pages/about.txt | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/pages/about.txt b/pages/about.txt
index b6c73bf2..4893a5ce 100644
--- a/pages/about.txt
+++ b/pages/about.txt
@@ -55,9 +55,15 @@ details.
 Our libraries are commonly known as EFL (Enlightenment Foundation
 Libraries). They can be used independently or built on top of each other to 
provide useful features and create powerful applications.
 
+The core EFL libraries are much more efficient in terms of speed and size when 
compared to GTK+ and Qt equivalents and has a smaller memory footprint. 
+
+=== The EFL Model ===
+
+Description of EFL model here.
+
 === Supported Platforms ===
 
-{{:os-logos.png?nolink |Platform Support}}
+{{:os-logos.png?nolink }}
 
 We primarily work on Linux, which means that most Linux distributions
 and OSs like Tizen should be well supported out of the box. There are

-- 




[EGIT] [website/www-content] master 01/01: Wiki page about changed with summary [] by Nate Drake

2017-11-01 Thread Nate Drake
WWW-www.enlightenment.org pushed a commit to branch master.

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

commit fca24f458e50d5a9dd9d79aae6827ed38392c09f
Author: Nate Drake 
Date:   Wed Nov 1 08:42:53 2017 -0700

Wiki page about changed with summary [] by Nate Drake
---
 pages/about.txt | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/pages/about.txt b/pages/about.txt
index a21095fd..b6c73bf2 100644
--- a/pages/about.txt
+++ b/pages/about.txt
@@ -69,6 +69,8 @@ page, or
 [[http://win-builds.org|Win-Builds]] which ships EFL for
 Windows and even uses it for the package updater GUI. For information on 
macOS, please refer to the [[docs/distros/osx-start]] page.
 
+
+
 === Uses for EFL ===
 
 Enlightenment libraries already power millions of systems, from mobile

-- 




[EGIT] [website/www-content] master 01/01: Wiki page about changed with summary [] by Nate Drake

2017-11-01 Thread Nate Drake
WWW-www.enlightenment.org pushed a commit to branch master.

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

commit f34ea2bc4bbe1f7df8b7f4cb0033cc019ef7f326
Author: Nate Drake 
Date:   Wed Nov 1 08:41:23 2017 -0700

Wiki page about changed with summary [] by Nate Drake
---
 pages/about.txt | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/pages/about.txt b/pages/about.txt
index a09bf4f2..a21095fd 100644
--- a/pages/about.txt
+++ b/pages/about.txt
@@ -48,13 +48,15 @@ details.
 
 
 
-=== Libraries ===
+=== EFL ===
 
 {{ :efl-core.png?nolink|Core libraries}}
 
 Our libraries are commonly known as EFL (Enlightenment Foundation
 Libraries). They can be used independently or built on top of each other to 
provide useful features and create powerful applications.
 
+=== Supported Platforms ===
+
 {{:os-logos.png?nolink |Platform Support}}
 
 We primarily work on Linux, which means that most Linux distributions

-- 




[EGIT] [website/www-content] master 01/01: Wiki page about changed with summary [] by Nate Drake

2017-11-01 Thread Nate Drake
WWW-www.enlightenment.org pushed a commit to branch master.

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

commit 8d08d9e1f0ca6a14db066f7571f9087e061e
Author: Nate Drake 
Date:   Wed Nov 1 08:40:10 2017 -0700

Wiki page about changed with summary [] by Nate Drake
---
 pages/about.txt | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/pages/about.txt b/pages/about.txt
index f2877232..a09bf4f2 100644
--- a/pages/about.txt
+++ b/pages/about.txt
@@ -4,7 +4,7 @@
 
  Much more than a Window Manager 
 
-Long ago, Enlightenment began as a project to make a Window Manager for
+Enlightenment originally began as a project to create a Window Manager for
 X11. Since then it's grown into the one million lines of C
 code that form the EFL libraries, as well as a Window Manager and a
 set of applications. There's a vibrant and active community of
@@ -53,8 +53,7 @@ details.
 {{ :efl-core.png?nolink|Core libraries}}
 
 Our libraries are commonly known as EFL (Enlightenment Foundation
-Libraries), which include EFL proper as well as Elementary which is a
-high-level API layer designed for portability and includes widgets. 
+Libraries). They can be used independently or built on top of each other to 
provide useful features and create powerful applications.
 
 {{:os-logos.png?nolink |Platform Support}}
 
@@ -68,6 +67,8 @@ page, or
 [[http://win-builds.org|Win-Builds]] which ships EFL for
 Windows and even uses it for the package updater GUI. For information on 
macOS, please refer to the [[docs/distros/osx-start]] page.
 
+=== Uses for EFL ===
+
 Enlightenment libraries already power millions of systems, from mobile
 phones to set top boxes, desktops, laptops, game systems and more. It
 is only now being recognized for its forward-thinking approach, as

-- 




[EGIT] [website/www-content] master 01/01: Wiki page about changed with summary [] by Nate Drake

2017-10-30 Thread Nate Drake
WWW-www.enlightenment.org pushed a commit to branch master.

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

commit 792205d37ed24895d27ddd25dd8b4a46d6aa8fb3
Author: Nate Drake 
Date:   Mon Oct 30 08:13:04 2017 -0700

Wiki page about changed with summary [] by Nate Drake
---
 pages/about.txt | 58 ++---
 1 file changed, 22 insertions(+), 36 deletions(-)

diff --git a/pages/about.txt b/pages/about.txt
index 3bba4966..f2877232 100644
--- a/pages/about.txt
+++ b/pages/about.txt
@@ -40,10 +40,10 @@ in its own right. This of course takes time and there have 
been some bumps along
 Of course Enlightenment is built on top of EFL, using the libraries we
 wrote for the UI as well as those for the compositor itself. This means that 
any improvements to EFL are included in the compositor.
 
-Enlightenment also is the Window Manager and Compositor for Tizen due
-in part to its efficiency and feature-set.
+Enlightenment is also the Window Manager and Compositor used by Tizen, due
+in part to its efficiency and features.
 
-See our [[about-enlightenment|page about Enlightenment]] for more
+See our [[about-enlightenment|About Page]] for more
 details.
 
 
@@ -54,30 +54,30 @@ details.
 
 Our libraries are commonly known as EFL (Enlightenment Foundation
 Libraries), which include EFL proper as well as Elementary which is a
-high-level API layer with widgets and portability foremost in mind.
+high-level API layer designed for portability and includes widgets. 
 
 {{:os-logos.png?nolink |Platform Support}}
 
 We primarily work on Linux, which means that most Linux distributions
 and OSs like Tizen should be well supported out of the box. There are
-efforts to also work on Windows and Max OS X. There are varying degrees
-of completeness here. For windows please see our
+also efforts to work on Windows and macOS at varying stages of completion. 
+
+For windows please see our
 [[https://phab.enlightenment.org/w/windows|Windows]] development wiki
-page, or see
+page, or
 [[http://win-builds.org|Win-Builds]] which ships EFL for
-Windows and even uses it for the package updater GUI. For MAC OS X
-information, please refer to the [[docs/distros/osx-start]] page.
+Windows and even uses it for the package updater GUI. For information on 
macOS, please refer to the [[docs/distros/osx-start]] page.
 
 Enlightenment libraries already power millions of systems, from mobile
 phones to set top boxes, desktops, laptops, game systems and more. It
-is only now being recognized for its forward-thinking approaches, as
-products and designers want to do more than the boring functional user
-experiences of the past. This is where EFL excels.
+is only now being recognized for its forward-thinking approach, as
+products and designers want to offer more than the boring functional user
+experience of the past. This is where EFL excels.
 
 [[http://www.free.fr|Free.fr]] has shipped millions of set top boxes in
 France, powered by EFL. The
 [[http://wiki.openmoko.org/wiki/Neo_FreeRunner|Openmoko Freerunner]]
-sold thousands of devices with EFL and Enlightenment on them.
+sold thousands of devices using EFL and Enlightenment.
 [[http://www.yellowdoglinux.com/|Yellow Dog Linux]] for the Sony PS3
 ships with Enlightenment as the default. EFL has been used on printers,
 netbooks and more. It powers the
@@ -96,9 +96,9 @@ Also Web conference cameras such as
 [[https://www.biscotti.com/|Biscotti]] use EFL to do their work.
 
 EFL covers a wide range of domains from IPC to Graphics through to
-Audio and even location. Some of the covered domains are:
+Audio and even location services. Some areas covered include:
 
-  * Widgets and UI controls in general
+  * Generic Widgets and UI controls
   * Core mainloop and event processing
   * Rendering via scene graph
   * Thumbnailing
@@ -129,24 +129,13 @@ See our [[about-efl|page about EFL]] for more details.
 
 === Applications ===
 
-We also write applications that use EFL. You can take these as
-examples of what EFL is able to do and of how to drive it to be useful
-for you, but not just that. To be actually useful applications day in
-and out.
+We also write applications that use EFL. Aside from being very useful programs 
in their own right, these are great examples of what EFL can do for you. 
 
 {{:icon-terminology.png?nolink |}}
 
 == Terminology ==
 
-The first application a hacker really needs all day, every day, is a
-terminal emulator. Terminology is not just a simple stripped-down
-terminal to get the job barely done. It's bristling with features you
-find in the more advanced terminals and then with many found nowhere
-else. Tabs, splits, 256 color support, Wallpapers - even animated
-ones, Inline display of media (click on a file path to a video and
-watch it play inline), link detection, compressed scrollback in RAM,
-translucency and a gorgeous look and feel that lets you think of
-term

[EGIT] [website/www-content] master 01/01: Wiki page about changed with summary [] by Nate Drake

2017-10-30 Thread Nate Drake
WWW-www.enlightenment.org pushed a commit to branch master.

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

commit 2000a6162430affe3eae2aa156455946f07b6824
Author: Nate Drake 
Date:   Mon Oct 30 08:00:35 2017 -0700

Wiki page about changed with summary [] by Nate Drake
---
 pages/about.txt | 33 +
 1 file changed, 13 insertions(+), 20 deletions(-)

diff --git a/pages/about.txt b/pages/about.txt
index 344fc291..3bba4966 100644
--- a/pages/about.txt
+++ b/pages/about.txt
@@ -5,11 +5,10 @@
  Much more than a Window Manager 
 
 Long ago, Enlightenment began as a project to make a Window Manager for
-X11. It has grown a lot since then to well over 1 million lines of C
-code in just the EFL libraries alone, as well as a Window Manager, and a
-set of applications. There is a vibrant and active community of
-developers and users who work on the code, use it every day and enjoy
-their environment.
+X11. Since then it's grown into the one million lines of C
+code that form the EFL libraries, as well as a Window Manager and a
+set of applications. There's a vibrant and active community of
+developers and users who work on and use the code every day.
 
 [[about-enlightenment|{{:icon-enlightenment.png|Enlightenment}}]]
 [[about-efl|{{:efl-core.png|EFL}}]]
@@ -27,25 +26,19 @@ their environment.
 {{:icon-enlightenment.png?nolink |Enlightenment}}
 {{ :shot-enlightenment.png?nolink&320|Enlightenment Sample screenshot}}
 
-The original reason Enlightenment exists - The Window Manager. From
-here everything else spawned. This is really the flagship product,
-closely followed by EFL itself. The window manager is a lean, fast,
-modular and very extensible window manager for X11 and Linux. It is
-classed as a "desktop shell" providing the things you need to operate
-your desktop (or laptop), but is not a whole application suite. This
-covers launching applications, managing their windows and doing other
+As we've said Enlightenment was originally built as a Window Manager. 
Everything else snowballed from there. It's the flagship product,
+closely followed by EFL itself. It's a lean, fast,
+modular and very extensible window manager for X11 and Linux. 
+
+Enlightenment is classed as a "desktop shell" in that it provides everything 
you need to operate your desktop (or laptop) but is not a full application 
suite. This covers launching applications, managing their windows and doing 
other
 system tasks like suspending, reboots, managing files etc.
 
-We are moving towards Wayland as the base display system where
-Enlightenment is being worked on to become a full Wayland compositor
-on its own. This of course takes time and has its rough edges along
-the way, but we are not standing still, and one day will leave X11
-behind.
+We are moving towards using Wayland as the base display system, while
+Enlightenment is being developed to become a full Wayland compositor
+in its own right. This of course takes time and there have been some bumps 
along the road. However, one day we will leave X11 behind.
 
 Of course Enlightenment is built on top of EFL, using the libraries we
-wrote for it to do its UI as well as to run the entire compositor
-itself. This means that any improvements to EFL turn up in the
-compositor as well.
+wrote for the UI as well as those for the compositor itself. This means that 
any improvements to EFL are included in the compositor.
 
 Enlightenment also is the Window Manager and Compositor for Tizen due
 in part to its efficiency and feature-set.

-- 




[EGIT] [website/www-content] master 01/01: Wiki page about changed with summary [] by Nate Drake

2017-10-30 Thread Nate Drake
WWW-www.enlightenment.org pushed a commit to branch master.

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

commit 8e451aece863941c5b3059199463f09b0cf50bf4
Author: Nate Drake 
Date:   Mon Oct 30 07:54:07 2017 -0700

Wiki page about changed with summary [] by Nate Drake
---
 pages/about.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pages/about.txt b/pages/about.txt
index f9037291..344fc291 100644
--- a/pages/about.txt
+++ b/pages/about.txt
@@ -2,9 +2,9 @@
 
 {{page>incl:start-shortcuts}}
 
- More than a Window Manager 
+ Much more than a Window Manager 
 
-Long ago Enlightenment was just a project to make a Window Manager for
+Long ago, Enlightenment began as a project to make a Window Manager for
 X11. It has grown a lot since then to well over 1 million lines of C
 code in just the EFL libraries alone, as well as a Window Manager, and a
 set of applications. There is a vibrant and active community of

--