replace some old git refs to new gitea

This commit is contained in:
Carsten Haitzler 2022-06-16 13:24:26 +01:00
parent d6888cdc25
commit 1d15d8143f
8 changed files with 9 additions and 9 deletions

View File

@ -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 ##

View File

@ -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 | |
| --- | ------- | --- |

View File

@ -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 | |
| --- | ------- | --- |

View File

@ -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 example in the [EFL examples repository](https://git.enlightenment.org/enlightenment/examples) in [`reference/csharp/ui/src/ui_sizing.cs`](https://git.enlightenment.org/enlightenment/examples/src/branch/master/reference/csharp/ui/src/ui_sizing.cs).
| | WARNING | |
| --- | ------- | --- |

View File

@ -428,5 +428,5 @@ Apart from typos that may cause problems compiling or running, there is not much
[EFL Installation Guide](/develop/setup/c/start.md)
: Instructions for installing and using EFL on a variety of operating systems.
[Tutorial Code Examples](https://git.enlightenment.org/tools/examples.git/tree/tutorial/c)
[Tutorial Code Examples](https://git.enlightenment.org/enlightenment/examplestree/tutorial/c)
: Source code for programs included in this and other tutorials.

View File

@ -172,5 +172,5 @@ The following tutorial adds some text and a button to the UI, and shows how to r
[Setting Up a C# Development Environment](/develop/setup/csharp/)
: Instructions for having EFL ready to work from C#.
[Tutorial Code Examples](https://git.enlightenment.org/tools/examples.git/tree/tutorial/csharp)
[Tutorial Code Examples](https://git.enlightenment.org/enlightenment/examplestree/tutorial/csharp)
: C# Source code for the tutorials.

View File

@ -250,5 +250,5 @@ At the end of this tutorial you have learned:
["Hello World" in C#](hello-world-cs.md)
: First tutorial in the series, explaining the basics.
[Tutorial Code Examples](https://git.enlightenment.org/tools/examples.git/tree/tutorial/csharp)
[Tutorial Code Examples](https://git.enlightenment.org/enlightenment/examplestree/tutorial/csharp)
: C# Source code for the tutorials.

View File

@ -23,7 +23,7 @@ In this tutorial you will learn how to build a simple text editor application, i
## The Code ##
Copy the code below into a file and build it as instructed in the [Setting Up a C# Development Environment](/develop/setup/csharp/) guide. You can also find this file in the [EFL examples repository](https://git.enlightenment.org/tools/examples.git/) in [`apps/csharp/texteditor`](https://git.enlightenment.org/tools/examples.git/tree/apps/csharp/texteditor).
Copy the code below into a file and build it as instructed in the [Setting Up a C# Development Environment](/develop/setup/csharp/) guide. You can also find this file in the [EFL examples repository](https://git.enlightenment.org/enlightenment/examples) in [`apps/csharp/texteditor`](https://git.enlightenment.org/enlightenment/examplestree/apps/csharp/texteditor).
```csharp
/* Simple text editor with a main text box and a toolbar on top:
@ -607,5 +607,5 @@ At the end of this tutorial you have learned:
[Graphical "Hello World" in C#](hello-world-gui-cs.md)
: Explains the basics of creating an EFL application and its user interface.
[Tutorial Code Examples](https://git.enlightenment.org/tools/examples.git/tree/apps/csharp/texteditor)
[Tutorial Code Examples](https://git.enlightenment.org/enlightenment/examplestree/apps/csharp/texteditor)
: C# Source code for this tutorial.