[E-devel] How to update the website content?
Hello, As usual when making a new release I updated the e16 release info in pages/download-e16.txt in the www-content git repo, but the changes don't show up on the web pages. I guess something changed in the recent infrastructure switch - what am I missing? /Kim ___ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
Re: [E-devel] How to update the website content?
On Thu, 16 Jun 2022 13:16:53 +0200 Kim Woelders said: > Hello, > > As usual when making a new release I updated the e16 release info in > pages/download-e16.txt in the www-content git repo, but the changes > don't show up on the web pages. > > I guess something changed in the recent infrastructure switch - what am > I missing? it should show up. dokuwiki will git pull i think after 1 or 2 minutes of not having pulled when it needs to load a page. let me have a look... -- - Codito, ergo sum - "I code, therefore I am" -- Carsten Haitzler - ras...@rasterman.com ___ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
Re: [E-devel] How to update the website content?
On Thu, 16 Jun 2022 13:16:53 +0200 Kim Woelders said: > Hello, > > As usual when making a new release I updated the e16 release info in > pages/download-e16.txt in the www-content git repo, but the changes > don't show up on the web pages. > > I guess something changed in the recent infrastructure switch - what am > I missing? hmm... the .git config dir had 2 urls and a .lock file floating in it fixed it. -- - Codito, ergo sum - "I code, therefore I am" -- Carsten Haitzler - ras...@rasterman.com ___ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
Re: [E-devel] How to update the website content?
On 6/16/22 14:01, Carsten Haitzler wrote: On Thu, 16 Jun 2022 13:16:53 +0200 Kim Woelders said: Hello, As usual when making a new release I updated the e16 release info in pages/download-e16.txt in the www-content git repo, but the changes don't show up on the web pages. I guess something changed in the recent infrastructure switch - what am I missing? hmm... the .git config dir had 2 urls and a .lock file floating in it fixed it. Thanks :) /Kim ___ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
[EGIT] [www-content] 01/01: fix some git url refs
This is an automated email from the git hooks/post-receive script. git pushed a commit to branch master in repository www-content. View the commit online. commit d6888cdc255d8180714b18e9e6bc647a78ec7176 Author: Carsten Haitzler (Rasterman) AuthorDate: Thu Jun 16 13:22:00 2022 +0100 fix some git url refs --- pages/develop/debug/c/clouseau.md.txt | 4 ++-- pages/develop/guides/c/core/events.md.txt | 6 +++--- pages/develop/guides/c/core/io.md.txt | 8 pages/develop/guides/c/core/main-loop.md.txt | 8 pages/develop/guides/c/eina/generic-value.md.txt | 2 +- pages/develop/guides/c/ui/focus.md.txt| 6 +++--- pages/develop/guides/c/ui/sizing.md.txt | 2 +- pages/develop/guides/csharp/core/events.md.txt| 4 ++-- pages/develop/guides/csharp/core/main-loop.md.txt | 6 +++--- pages/develop/guides/csharp/eina/generic-value.md.txt | 4 ++-- pages/develop/guides/csharp/ui/focus.md.txt | 6 +++--- pages/develop/guides/csharp/ui/sizing.md.txt | 2 +- 12 files changed, 29 insertions(+), 29 deletions(-) diff --git a/pages/develop/debug/c/clouseau.md.txt b/pages/develop/debug/c/clouseau.md.txt index 6d2b78d92..5a3aa6bc5 100644 --- a/pages/develop/debug/c/clouseau.md.txt +++ b/pages/develop/debug/c/clouseau.md.txt @@ -11,7 +11,7 @@ Clouseau is the EFL user interface inspection tool. It is designed to make it ea Clouseau is available from the Enlightenment git repository using the following command: ```bash -git clone https://git.enlightenment.org/tools/clouseau.git +git clone https://git.enlightenment.org/enlightenment/clouseau.git ``` ## Debugging with Clouseau ## @@ -139,4 +139,4 @@ This will display all the program's objects, demonstrating that widgets are just Highlighted in yellow is the ``Efl.Ui.Box``, which is an ``Efl.Canvas.Box`` composed of an ``Efl.Canvas.Rectangle``, an ``Efl.Ui.Text`` and an ``Efl.Ui.Button``. -A Button widget is an Efl.Ui.Button which is composed of four ``Efl.Canvas.Rectangle``, one ``Efl.Canvas.Image`` and two ``Efl.Canvas.Text``. \ No newline at end of file +A Button widget is an Efl.Ui.Button which is composed of four ``Efl.Canvas.Rectangle``, one ``Efl.Canvas.Image`` and two ``Efl.Canvas.Text``. diff --git a/pages/develop/guides/c/core/events.md.txt b/pages/develop/guides/c/core/events.md.txt index 35a66e7e0..918facb22 100644 --- a/pages/develop/guides/c/core/events.md.txt +++ b/pages/develop/guides/c/core/events.md.txt @@ -9,7 +9,7 @@ EFL is event-driven. This means that execution usually takes place within an int Events play a central role in EFL. In this guide, you'll learn more about the required methods to handle them. -You can also find usage examples in the EFL examples repository: [reference/c/core/src/core_event.c](https://git.enlightenment.org/tools/examples.git/tree/reference/c/core/src/core_event.c) +You can also find usage examples in the EFL examples repository: [reference/c/core/src/core_event.c](https://git.enlightenment.org/enlightenment/examples/src/branch/master/reference/c/core/src/core_event.c) ## Prerequisites ## @@ -54,7 +54,7 @@ The parameters here have the same meaning as for ``efl_event_callback_add()``. N > **NOTE:** > Registering and unregistering callbacks is an resource-intensive process. If you perform these operations continuously on several callbacks at the same time do so in a batch as this is more efficient. You can use ``efl_even_callback_array_add()`` and ``efl_even_callback_array_del()`` to accomplish this. Remember however that you can't unregister an individual callback which has been registered in a batch. They must all be unregistered together. -Below is an example code snippet based on [reference/c/core/src/core_event.c](https://git.enlightenment.org/tools/examples.git/tree/reference/c/core/src/core_event.c): +Below is an example code snippet based on [reference/c/core/src/core_event.c](https://git.enlightenment.org/enlightenment/examples/src/branch/master/reference/c/core/src/core_event.c): ```c static void @@ -120,7 +120,7 @@ Now emit the event using ``efl_event_callback_call()``: *event_info* will be passed to the callback through the ``event->info`` parameter. Its meaning is completely up to you as the event creator. ## Further Reading ## -[reference/c/core/src/core_event.c](https://git.enlightenment.org/tools/examples.git/tree/reference/c/core/src/core_event.c) +[reference/c/core/src/core_event.c](https://git.enlightenment.org/enlightenment/examples/src/branch/master/reference/c/core/src/core_event.c) :EFL examples repository [``Efl.Object`` API Reference](/develop/api/efl/object) diff --git a/pages/develop/guides/c/core/io.md.txt b/pages/develop/guides/c/core/io.md.txt index 7304fcdce..79551e35b 100644 --- a/pages/develop/guides/c/core/io.md.txt +++ b/pages/develop/guides/c/core/io.md.txt @@ -99,7 +99,7 @@ Read the entire documentation in ``Efl.Io.File
[EGIT] [www-content] 01/01: replace some old git refs to new gitea
This is an automated email from the git hooks/post-receive script. git pushed a commit to branch master in repository www-content. View the commit online. commit 1d15d8143fe77015cc0b68329cd7b3d7e4f6023f Author: Carsten Haitzler (Rasterman) AuthorDate: Thu Jun 16 13:24:26 2022 +0100 replace some old git refs to new gitea --- pages/develop/guides/c/ui/sizing.md.txt | 2 +- pages/develop/guides/csharp/core/events.md.txt | 2 +- pages/develop/guides/csharp/eina/generic-value.md.txt| 2 +- pages/develop/guides/csharp/ui/sizing.md.txt | 2 +- pages/develop/tutorials/c/hello-world-gui.md.txt | 2 +- pages/develop/tutorials/csharp/hello-world-cs.md.txt | 2 +- pages/develop/tutorials/csharp/hello-world-gui-cs.md.txt | 2 +- pages/develop/tutorials/csharp/texteditor-cs.md.txt | 4 ++-- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/pages/develop/guides/c/ui/sizing.md.txt b/pages/develop/guides/c/ui/sizing.md.txt index b24713848..4c0f9f009 100644 --- a/pages/develop/guides/c/ui/sizing.md.txt +++ b/pages/develop/guides/c/ui/sizing.md.txt @@ -8,7 +8,7 @@ Sometimes when building a *user interface (UI)* you need to set the size of some A better approach is to set *minimum* and *maximum* values for the size of these elements. This means they can be customized while still allowing for some flexibility. -You can find an usage example in the [EFL examples repository](https://git.enlightenment.org/tools/examples.git/) in [reference/c/ui/src/ui_sizing.c](https://git.enlightenment.org/enlightenment/examples/src/branch/master/reference/c/ui/src/ui_sizing.c). +You can find an usage example in the [EFL examples repository](https://git.enlightenment.org/enlightenment/examples) in [reference/c/ui/src/ui_sizing.c](https://git.enlightenment.org/enlightenment/examples/src/branch/master/reference/c/ui/src/ui_sizing.c). ## Prerequisites ## diff --git a/pages/develop/guides/csharp/core/events.md.txt b/pages/develop/guides/csharp/core/events.md.txt index 230c1bf53..cb4902e67 100644 --- a/pages/develop/guides/csharp/core/events.md.txt +++ b/pages/develop/guides/csharp/core/events.md.txt @@ -9,7 +9,7 @@ EFL is event-driven. This means that execution usually takes place within an int Events play a central role in EFL. In this guide, you'll learn more about the required methods to handle them. -You can also find usage examples in the [EFL examples repository](https://git.enlightenment.org/tools/examples.git/tree/). +You can also find usage examples in the [EFL examples repository](https://git.enlightenment.org/enlightenment/examplestree/). | | WARNING | | | --- | --- | --- | diff --git a/pages/develop/guides/csharp/eina/generic-value.md.txt b/pages/develop/guides/csharp/eina/generic-value.md.txt index 2d422debe..8321a9716 100644 --- a/pages/develop/guides/csharp/eina/generic-value.md.txt +++ b/pages/develop/guides/csharp/eina/generic-value.md.txt @@ -8,7 +8,7 @@ The `Eina` namespace provides data types and useful tools which are not availabl The `Eina.Value` class provides storage of and access to generic data, allowing you to store whatever you want in a single `Eina.Value` type. It is meant for simple data types, providing uniform access and release functions for the exchange of data while preserving their types. `Eina.Value` supports a number of predefined types, can be extended with additional user-provided types and can convert between differing data types including strings. -Examples of `Eina.Value` usage can be found in the [EFL examples git repository](https://git.enlightenment.org/tools/examples.git/) in the file [`reference/csharp/eina/src/eina_value.cs`](https://git.enlightenment.org/enlightenment/examples/src/branch/master/reference/csharp/eina/src/eina_value.cs). +Examples of `Eina.Value` usage can be found in the [EFL examples git repository](https://git.enlightenment.org/enlightenment/examples) in the file [`reference/csharp/eina/src/eina_value.cs`](https://git.enlightenment.org/enlightenment/examples/src/branch/master/reference/csharp/eina/src/eina_value.cs). | | WARNING | | | --- | --- | --- | diff --git a/pages/develop/guides/csharp/ui/sizing.md.txt b/pages/develop/guides/csharp/ui/sizing.md.txt index 33978a141..4112b6e1d 100644 --- a/pages/develop/guides/csharp/ui/sizing.md.txt +++ b/pages/develop/guides/csharp/ui/sizing.md.txt @@ -8,7 +8,7 @@ Sometimes when building a *user interface (UI)* you need to set the size of some A better approach is to set **minimum** and **maximum** values for the size of these elements. This means they can be customized while still allowing for some flexibility. -You can find an usage example in the [EFL examples repository](https://git.enlightenment.org/tools/examples.git/) in [`reference/csharp/ui/src/ui_sizing.cs`](https://git.enlightenment.org/enlightenment/examples/src/branch/master/reference/csharp/ui/src/ui_sizing.cs). +You can find an usage exam
[EGIT] [www-content] 01/01: fix some more git refs in docs
This is an automated email from the git hooks/post-receive script. git pushed a commit to branch master in repository www-content. View the commit online. commit becc2bd1ad30446927679b0915d0684096ca5132 Author: Carsten Haitzler (Rasterman) AuthorDate: Thu Jun 16 13:31:31 2022 +0100 fix some more git refs in docs --- pages/contrib/docs/eo.md.txt | 2 +- pages/develop/legacy/start.md.txt| 2 +- pages/develop/legacy/tutorial/start.txt | 2 +- pages/docs/distros/fedora-start.md.txt | 2 +- pages/docs/distros/freebsd-start.md.txt | 2 +- pages/docs/distros/openbsd-start.md.txt | 2 +- pages/docs/distros/opensuse-start.md.txt | 2 +- pages/docs/distros/osx-start.md.txt | 2 +- pages/docs/playground/osx-start.md.txt | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/pages/contrib/docs/eo.md.txt b/pages/contrib/docs/eo.md.txt index 6e57d75c2..17fa62eef 100644 --- a/pages/contrib/docs/eo.md.txt +++ b/pages/contrib/docs/eo.md.txt @@ -624,7 +624,7 @@ You can find handy syntax highlighting config files for different editors [here] 1. ``legacy_prefix: null;`` - deprecated, do not use. 1. The default naming is the class/struct/enum name all in lower case with periods replaced with _ (e.g. Elm.Widget.Item -> elm_widget_item). No need to set it to that value. -1. Document the properties themselves, not the set/get sections separately. For example look at [Efl.Image.smooth_scale](https://git.enlightenment.org/core/efl.git/tree/src/lib/efl/interfaces/efl_image.eo#n25) for an example: +1. Document the properties themselves, not the set/get sections separately. For example look at [Efl.Image.smooth_scale](https://git.enlightenment.org/enlightenment/efl/tree/src/lib/efl/interfaces/efl_image.eo#n25) for an example: @property smooth_scale { [[Whether to use high-quality image scaling algorithm for this image. diff --git a/pages/develop/legacy/start.md.txt b/pages/develop/legacy/start.md.txt index 3e3a3b019..34c5b3977 100644 --- a/pages/develop/legacy/start.md.txt +++ b/pages/develop/legacy/start.md.txt @@ -12,4 +12,4 @@ The underlying concepts and main modules all have programming guides as well. Th ## Examples -The examples for the stable API are included in our source distribution and can be browsed at our [git repository](https://git.enlightenment.org/core/efl.git/tree/src/examples/). \ No newline at end of file +The examples for the stable API are included in our source distribution and can be browsed at our [git repository](https://git.enlightenment.org/enlightenment/efl/tree/src/examples/). \ No newline at end of file diff --git a/pages/develop/legacy/tutorial/start.txt b/pages/develop/legacy/tutorial/start.txt index 1ef06ec28..08f7a890f 100644 --- a/pages/develop/legacy/tutorial/start.txt +++ b/pages/develop/legacy/tutorial/start.txt @@ -28,7 +28,7 @@ Elementary is about displaying its widgets in a nice layout, for this purpose it See too : * [[https://www.enlightenment.org/develop/legacy/api/c/start#infralist.html|Infrastruture list]] -Once efl installed, you can see widgets in action by running elementary_test program, and corresponding code examples in [[https://git.enlightenment.org/core/efl.git/tree/src/bin/elementary]] +Once efl installed, you can see widgets in action by running elementary_test program, and corresponding code examples in [[https://git.enlightenment.org/enlightenment/efl/tree/src/bin/elementary]] === Samples === diff --git a/pages/docs/distros/fedora-start.md.txt b/pages/docs/distros/fedora-start.md.txt index 1543b9303..f4706c47c 100644 --- a/pages/docs/distros/fedora-start.md.txt +++ b/pages/docs/distros/fedora-start.md.txt @@ -111,7 +111,7 @@ Download the bleeding edge version of EFL by cloning it from the git repository. By default, *git* is installed in Fedora, so the first step is to clone EFL's source code: ```bash -git clone https://git.enlightenment.org/core/efl.git +git clone https://git.enlightenment.org/enlightenment/efl ``` This will create a a directory named ``efl/``. You can now ``cd`` into the ``efl/`` folder and follow step 3, 4 and 5 from the above instructions. diff --git a/pages/docs/distros/freebsd-start.md.txt b/pages/docs/distros/freebsd-start.md.txt index ade30ba61..9f4beacda 100644 --- a/pages/docs/distros/freebsd-start.md.txt +++ b/pages/docs/distros/freebsd-start.md.txt @@ -103,7 +103,7 @@ pkg install git Next clone EFL's source code: ```bash -git clone https://git.enlightenment.org/core/efl.git +git clone https://git.enlightenment.org/enlightenment/efl ``` This will create a a directory named *efl/*. diff --git a/pages/docs/distros/openbsd-start.md.txt b/pages/docs/distros/openbsd-start.md.txt index 847a0bf23..a0928d8f2 100644 --- a/pages/docs/distros/openbsd-start.md.txt +++ b/pages/docs/distros/openbsd-start.md.txt @@ -100,7 +100,7 @@ pkg_add git Next clone EFL's source code: ```bash -git clone https://git.enlightenment.org/core/efl.git +git cl
[EGIT] [www-content] 01/01: fix git clone that sed fix got wrong
This is an automated email from the git hooks/post-receive script. git pushed a commit to branch master in repository www-content. View the commit online. commit 96d313bc991cd1eb0dddfd0261e5a83054ffe398 Author: Carsten Haitzler (Rasterman) AuthorDate: Thu Jun 16 14:06:26 2022 +0100 fix git clone that sed fix got wrong --- pages/docs/playground/osx-start.md.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/docs/playground/osx-start.md.txt b/pages/docs/playground/osx-start.md.txt index 36b585a32..f7aa281a0 100644 --- a/pages/docs/playground/osx-start.md.txt +++ b/pages/docs/playground/osx-start.md.txt @@ -100,7 +100,7 @@ export LDFLAGS="-Wl,-headerpad_max_install_names ${LDFLAGS}" Installing dependancies on OS X is painful, but now you did it (congrats'), you can grab the sources from the git repository: -git clone https://git.enlightenment.org/enlightenment/efl # Get the sources +git clone https://git.enlightenment.org/enlightenment/efl.git # Get the sources cd efl # Go to repository you cloned ./autogen.sh --disable-cxx-bindings make -j $(nproc) # Compile @@ -111,4 +111,4 @@ sudo make -j $(nproc) install # Install === Additional Resources === * Enlightenment Developer Days 2016 Slides (EFL & Mac OS X slides): https://phab.enlightenment.org/F36470. - * Internal Wiki Page. Contains “legacy” information: https://phab.enlightenment.org/w/osx/. \ No newline at end of file + * Internal Wiki Page. Contains “legacy” information: https://phab.enlightenment.org/w/osx/. -- To stop receiving notification emails like this one, please contact the administrator of this repository.
[EGIT] [www-content] 01/01: fix other sed git clone mixup
This is an automated email from the git hooks/post-receive script. git pushed a commit to branch master in repository www-content. View the commit online. commit f83859cc0363f91112c9d9ce34a591907cbc3cbc Author: Carsten Haitzler (Rasterman) AuthorDate: Thu Jun 16 14:14:02 2022 +0100 fix other sed git clone mixup --- pages/docs/distros/osx-start.md.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/docs/distros/osx-start.md.txt b/pages/docs/distros/osx-start.md.txt index 16f92a4cf..811dfa0d2 100644 --- a/pages/docs/distros/osx-start.md.txt +++ b/pages/docs/distros/osx-start.md.txt @@ -133,7 +133,7 @@ export LDFLAGS="-Wl,-headerpad_max_install_names ${LDFLAGS}" Now that you've installed all the required packages, you can download EFL itself directly from the git repository. Open Terminal and run: ```bash -git clone https://git.enlightenment.org/enlightenment/efl +git clone https://git.enlightenment.org/enlightenment/efl.git ``` This will create a a directory called *efl/*. Use ``cd`` to switch to the new directory, then compile EFL: @@ -156,4 +156,4 @@ If you are having problems compiling with installing EFL, you can also find help ## Installing on Other Operating Systems ## -If you would like to install EFL on a different operating system visit the [Installing EFL](start) page. \ No newline at end of file +If you would like to install EFL on a different operating system visit the [Installing EFL](start) page. -- To stop receiving notification emails like this one, please contact the administrator of this repository.
[EGIT] [enlightenment] 01/01: fix move to defines for msgbus dbus services for iface/core
This is an automated email from the git hooks/post-receive script. git pushed a commit to branch master in repository enlightenment. View the commit online. commit dbcc56014cd972f632e86a2abc97805d37962f2d Author: Carsten Haitzler AuthorDate: Thu Jun 16 15:44:14 2022 +0100 fix move to defines for msgbus dbus services for iface/core --- src/bin/e_msgbus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_msgbus.c b/src/bin/e_msgbus.c index c228e354d..37fd979ae 100644 --- a/src/bin/e_msgbus.c +++ b/src/bin/e_msgbus.c @@ -2,7 +2,7 @@ /// #define E_BUS "org.enlightenment.wm.service" -#define E_IFACE "org.enlightenment.wm.service" +#define E_IFACE "org.enlightenment.wm.Core" #define E_PATH "/org/enlightenment/wm/RemoteObject" static void_e_msgbus_core_request_name_cb(void *data, const Eldbus_Message *msg, Eldbus_Pending *pending); static Eldbus_Message *_e_msgbus_core_version_cb(const Eldbus_Service_Interface *iface, const Eldbus_Message *msg); -- To stop receiving notification emails like this one, please contact the administrator of this repository.
[EGIT] [enlightenment] 01/01: watchdog - enable. it seems to work fine for me... and that's good.
This is an automated email from the git hooks/post-receive script. git pushed a commit to branch master in repository enlightenment. View the commit online. commit 7dcf43051f1ddf431b1aae67922c3b8c0d87b4e1 Author: Carsten Haitzler AuthorDate: Thu Jun 16 15:45:29 2022 +0100 watchdog - enable. it seems to work fine for me... and that's good. --- src/bin/e_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_main.c b/src/bin/e_main.c index 5ef2e455e..1bde0e926 100644 --- a/src/bin/e_main.c +++ b/src/bin/e_main.c @@ -1116,7 +1116,7 @@ main(int argc, char **argv) E_LIST_FOREACH(e_comp->zones, e_comp_canvas_zone_restarted); } -// e_watchdog_begin(); + e_watchdog_begin(); TS("MAIN LOOP AT LAST"); if (!setjmp(x_fatal_buff)) { @@ -1125,7 +1125,7 @@ main(int argc, char **argv) } else CRI("FATAL: X Died. Connection gone. Abbreviated Shutdown\n"); -// e_watchdog_end(); + e_watchdog_end(); e_main_loop_running = EINA_FALSE; inloop = EINA_FALSE; -- To stop receiving notification emails like this one, please contact the administrator of this repository.
[EGIT] [www-content] 01/01: Wiki page events.md changed with summary [] by Dmitri Chudinov
This is an automated email from the git hooks/post-receive script. git pushed a commit to branch master in repository www-content. View the commit online. commit c29f0f5d20e64c9942d1cf6470064f46da311f7b Author: Dmitri Chudinov AuthorDate: Thu Jun 16 10:51:10 2022 -0700 Wiki page events.md changed with summary [] by Dmitri Chudinov --- pages/develop/guides/csharp/core/events.md.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/develop/guides/csharp/core/events.md.txt b/pages/develop/guides/csharp/core/events.md.txt index cb4902e67..2431cadf2 100644 --- a/pages/develop/guides/csharp/core/events.md.txt +++ b/pages/develop/guides/csharp/core/events.md.txt @@ -9,7 +9,7 @@ EFL is event-driven. This means that execution usually takes place within an int Events play a central role in EFL. In this guide, you'll learn more about the required methods to handle them. -You can also find usage examples in the [EFL examples repository](https://git.enlightenment.org/enlightenment/examplestree/). +You can also find usage examples in the [EFL examples repository](https://git.enlightenment.org/enlightenment/examples/tree/). | | WARNING | | | --- | --- | --- | -- To stop receiving notification emails like this one, please contact the administrator of this repository.
[EGIT] [www-content] 01/01: Wiki page events.md changed with summary [] by Dmitri Chudinov
This is an automated email from the git hooks/post-receive script. git pushed a commit to branch master in repository www-content. View the commit online. commit db197e8c22f12e9fe6a61d9b1486c90bb9dcc8bd Author: Dmitri Chudinov AuthorDate: Thu Jun 16 10:52:11 2022 -0700 Wiki page events.md changed with summary [] by Dmitri Chudinov --- pages/develop/guides/csharp/core/events.md.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/develop/guides/csharp/core/events.md.txt b/pages/develop/guides/csharp/core/events.md.txt index 2431cadf2..6a8ee48c6 100644 --- a/pages/develop/guides/csharp/core/events.md.txt +++ b/pages/develop/guides/csharp/core/events.md.txt @@ -9,7 +9,7 @@ EFL is event-driven. This means that execution usually takes place within an int Events play a central role in EFL. In this guide, you'll learn more about the required methods to handle them. -You can also find usage examples in the [EFL examples repository](https://git.enlightenment.org/enlightenment/examples/tree/). +You can also find usage examples in the [EFL examples repository](https://git.enlightenment.org/enlightenment/examples). | | WARNING | | | --- | --- | --- | -- To stop receiving notification emails like this one, please contact the administrator of this repository.
[EGIT] [www-content] 01/01: Wiki page main-loop.md changed with summary [] by Dmitri Chudinov
This is an automated email from the git hooks/post-receive script. git pushed a commit to branch master in repository www-content. View the commit online. commit fd07ab2d7a4541f76dde898d5dda87a516332744 Author: Dmitri Chudinov AuthorDate: Thu Jun 16 11:10:03 2022 -0700 Wiki page main-loop.md changed with summary [] by Dmitri Chudinov --- pages/develop/guides/csharp/core/main-loop.md.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/develop/guides/csharp/core/main-loop.md.txt b/pages/develop/guides/csharp/core/main-loop.md.txt index f005e83ab..d4f70097e 100644 --- a/pages/develop/guides/csharp/core/main-loop.md.txt +++ b/pages/develop/guides/csharp/core/main-loop.md.txt @@ -34,7 +34,7 @@ This guide will put the application's main loop to a variety of uses. Timers allow events to be triggered periodically after the given time has elapsed. After an event callback has been registered with the timer, it will be called at regular intervals. -You can find usage examples in the [EFL examples repository](https://git.enlightenment.org/tools/examples.git): [`reference/csharp/core/src/core_idler.cs`](https://git.enlightenment.org/enlightenment/examples/src/branch/master/reference/csharp/core/src/core_idler.cs) and [`reference/csharp/core/src/core_poll.cs`](https://git.enlightenment.org/enlightenment/examples/src/branch/master/reference/csharp/core/src/core_poll.cs). +You can find usage examples in the [EFL examples repository](https://git.enlightenment.org/enlightenment/examples): [`reference/csharp/core/src/core_idler.cs`](https://git.enlightenment.org/enlightenment/examples/src/branch/master/reference/csharp/core/src/core_idler.cs) and [`reference/csharp/core/src/core_poll.cs`](https://git.enlightenment.org/enlightenment/examples/src/branch/master/reference/csharp/core/src/core_poll.cs). ### Creating and Destroying Timers ### -- To stop receiving notification emails like this one, please contact the administrator of this repository.