Skip to content

Commit 1b47edb

Browse files
committed
refactor: restructure WebExpress
1 parent b81b225 commit 1b47edb

8 files changed

Lines changed: 39 additions & 39 deletions

File tree

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![WebExpress](https://raw.githubusercontent.com/ReneSchwarzer/WebExpress/main/assets/banner.png)
1+
![WebExpress-Framework](https://raw.githubusercontent.com/webexpress-framework/.github/main/docs/assets/img/banner.png)
22

33
# WebExpress
44
`WebExpress` is a lightweight web server optimized for use in low-performance environments (e.g. Rasperry PI). By providing a powerful plugin system and a comprehensive API, web applications can be easily and quickly integrated into a .net language (e.g. C#). Some advantages of `WebExpress` are:
@@ -10,23 +10,23 @@
1010

1111
The `WebExpress` family includes the following projects:
1212

13-
- [WebExpress](https://github.com/ReneSchwarzer/WebExpress#readme) - The web server for `WebExpress` applications and the documentation.
14-
- [WebExpress.WebCore](https://github.com/ReneSchwarzer/WebExpress.WebCore#readme) - The core for `WebExpress` applications.
15-
- [WebExpress.WebUI](https://github.com/ReneSchwarzer/WebExpress.WebUI#readme) - Common templates and controls for `WebExpress` applications.
16-
- [WebExpress.WebIndex](https://github.com/ReneSchwarzer/WebExpress.WebIndex#readme) - Reverse index for `WebExpress` applications.
17-
- [WebExpress.WebApp](https://github.com/ReneSchwarzer/WebExpress.WebApp#readme) - Business application template for `WebExpress` applications.
13+
- [WebExpress](https://github.com/webexpress-framework/WebExpress#readme) - The web server for `WebExpress` applications and the documentation.
14+
- [WebExpress.WebCore](https://github.com/webexpress-framework/WebExpress.WebCore#readme) - The core for `WebExpress` applications.
15+
- [WebExpress.WebUI](https://github.com/webexpress-framework/WebExpress.WebUI#readme) - Common templates and controls for `WebExpress` applications.
16+
- [WebExpress.WebIndex](https://github.com/webexpress-framework/WebExpress.WebIndex#readme) - Reverse index for `WebExpress` applications.
17+
- [WebExpress.WebApp](https://github.com/webexpress-framework/WebExpress.WebApp#readme) - Business application template for `WebExpress` applications.
1818

1919
# WebExpress.WebIndex
20-
`WebExpress.WebIndex` is part of the WebExpress family. The project provides a reverse index to enable a quick and efficient search for data. The index can be filtered using the wql (webexpress query language). Even though the reverse index is part of the `WebExpress` family, it can also be used in other projects (outside of `WebExpress`). For detailed information about `WebIndex`, see [concept](https://github.com/ReneSchwarzer/WebExpress.WebIndex/blob/main/docs/concept.md).
20+
`WebExpress.WebIndex` is part of the WebExpress family. The project provides a reverse index to enable a quick and efficient search for data. The index can be filtered using the wql (webexpress query language). Even though the reverse index is part of the `WebExpress` family, it can also be used in other projects (outside of `WebExpress`). For detailed information about `WebIndex`, see [concept](https://github.com/webexpress-framework/WebExpress.WebIndex/blob/main/docs/concept.md).
2121

2222
# Download
23-
The current binaries are available for download [here](https://github.com/ReneSchwarzer/WebExpress/releases).
23+
The current binaries are available for download [here](https://github.com/webexpress-framework/WebExpress/releases).
2424

2525
# Start
2626
If you're looking to get started with `WebExpress`, we would recommend using the following documentation. It can help you understand the platform.
2727

28-
- [Installation Guide](https://github.com/ReneSchwarzer/WebExpress/blob/main/doc/installation_guide.md)
29-
- [Development Guide](https://github.com/ReneSchwarzer/WebExpress/blob/main/doc/development_guide.md)
28+
- [Installation Guide](https://github.com/webexpress-framework/WebExpress/blob/main/doc/installation_guide.md)
29+
- [Development Guide](https://github.com/webexpress-framework/WebExpress/blob/main/doc/development_guide.md)
3030
- [WebExpress.WebCore API Documentation](https://reneschwarzer.github.io/WebExpress.WebCore/)
3131
- [WebExpress.WebUI API Documentation](https://reneschwarzer.github.io/WebExpress.WebUI/)
3232
- [WebExpress.WebApp API Documentation](https://reneschwarzer.github.io/WebExpress.WebApp/)
@@ -35,10 +35,10 @@ If you're looking to get started with `WebExpress`, we would recommend using the
3535
# Learning
3636
The following tutorials illustrate the essential techniques of `WebExpress`. These tutorials are designed to assist you, as a developer, in understanding the various aspects of `WebExpress`. Each tutorial provides a detailed, step-by-step guide that you can work through using an example. If you’re interested in beginning the development of `WebExpress` components, we would recommend you to complete some of these tutorials.
3737

38-
- [HelloWorld](https://github.com/ReneSchwarzer/WebExpress.Tutorial.HelloWorld#readme)
39-
- [WebUI](https://github.com/ReneSchwarzer/WebExpress.Tutorial.WebUI#readme)
40-
- [WebApp](https://github.com/ReneSchwarzer/WebExpress.Tutorial.WebApp#readme)
41-
- [WebIndex](https://github.com/ReneSchwarzer/WebExpress.Tutorial.WebIndex#readme)
38+
- [HelloWorld](https://github.com/webexpress-framework/WebExpress.Tutorial.HelloWorld#readme)
39+
- [WebUI](https://github.com/webexpress-framework/WebExpress.Tutorial.WebUI#readme)
40+
- [WebApp](https://github.com/webexpress-framework/WebExpress.Tutorial.WebApp#readme)
41+
- [WebIndex](https://github.com/webexpress-framework/WebExpress.Tutorial.WebIndex#readme)
4242

4343
# Tags
4444
#WebIndex #WebExpress #ReverseIndex #DotNet #NETCore

docs/concept.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![WebExpress](https://raw.githubusercontent.com/ReneSchwarzer/WebExpress.Doc/main/assets/banner.png)
1+
![WebExpress-Framework](https://raw.githubusercontent.com/webexpress-framework/.github/main/docs/assets/img/banner.png)
22

33
# WebExpress.WebIndex
44
The index model provides a reverse index to enable fast and efficient searching. A reverse

docs/index.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![WebExpress](https://raw.githubusercontent.com/ReneSchwarzer/WebExpress/main/assets/banner.png)
1+
![WebExpress-Framework](https://raw.githubusercontent.com/webexpress-framework/.github/main/docs/assets/img/banner.png)
22

33
# WebExpress
44
WebExpress is a lightweight web server optimized for use in low-performance environments (e.g. Raspberry PI). By providing
@@ -12,17 +12,17 @@ language (e.g. C#). Some advantages of WebExpress are:
1212

1313
The `WebExpress` family includes the following projects:
1414

15-
- [WebExpress](https://github.com/ReneSchwarzer/WebExpress#readme) - The web server for `WebExpress` applications and the documentation.
16-
- [WebExpress.WebCore](https://github.com/ReneSchwarzer/WebExpress.WebCore#readme) - The core for `WebExpress` applications.
17-
- [WebExpress.WebUI](https://github.com/ReneSchwarzer/WebExpress.WebUI#readme) - Common templates and controls for `WebExpress` applications.
18-
- [WebExpress.WebIndex](https://github.com/ReneSchwarzer/WebExpress.WebIndex#readme) - Reverse index for `WebExpress` applications.
19-
- [WebExpress.WebApp](https://github.com/ReneSchwarzer/WebExpress.WebApp#readme) - Business application template for `WebExpress` applications.
15+
- [WebExpress](https://github.com/webexpress-framework/WebExpress#readme) - The web server for `WebExpress` applications and the documentation.
16+
- [WebExpress.WebCore](https://github.com/webexpress-framework/WebExpress.WebCore#readme) - The core for `WebExpress` applications.
17+
- [WebExpress.WebUI](https://github.com/webexpress-framework/WebExpress.WebUI#readme) - Common templates and controls for `WebExpress` applications.
18+
- [WebExpress.WebIndex](https://github.com/webexpress-framework/WebExpress.WebIndex#readme) - Reverse index for `WebExpress` applications.
19+
- [WebExpress.WebApp](https://github.com/webexpress-framework/WebExpress.WebApp#readme) - Business application template for `WebExpress` applications.
2020

2121
# WebExpress.WebIndex
22-
`WebExpress.WebIndex` is part of the WebExpress family. The project provides a reverse index to enable a quick and efficient search for data. The index can be filtered using the wql (webexpress query language). Even though the reverse index is part of the `WebExpress` family, it can also be used in other projects (outside of `WebExpress`). For detailed information about `WebIndex`, see [concept](https://github.com/ReneSchwarzer/WebExpress.WebIndex/blob/main/docs/concept.md).
22+
`WebExpress.WebIndex` is part of the WebExpress family. The project provides a reverse index to enable a quick and efficient search for data. The index can be filtered using the wql (webexpress query language). Even though the reverse index is part of the `WebExpress` family, it can also be used in other projects (outside of `WebExpress`). For detailed information about `WebIndex`, see [concept](https://github.com/webexpress-framework/WebExpress.WebIndex/blob/main/docs/concept.md).
2323

2424
# Download
25-
The current binaries are available for download [here](https://github.com/ReneSchwarzer/WebExpress/releases).
25+
The current binaries are available for download [here](https://github.com/webexpress-framework/WebExpress/releases).
2626

2727
# Tags
2828
#WebIndex #WebExpress #ReverseIndex #DotNet #NETCore

docs/tutorials.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![WebExpress](https://raw.githubusercontent.com/ReneSchwarzer/WebExpress/main/assets/banner.png)
1+
![WebExpress-Framework](https://raw.githubusercontent.com/webexpress-framework/.github/main/docs/assets/img/banner.png)
22

33
# Tutorials
44
Welcome to the `WebExpress` Tutorials! Here, you'll find step-by-step guides and helpful resources to get the most out
@@ -7,10 +7,10 @@ our tutorials offer something for everyone.
77

88
# Getting Started
99
Begin with our basic tutorial:
10-
- [HelloWorld](https://github.com/ReneSchwarzer/WebExpress.Tutorial.HelloWorld#readme)
11-
- [WebUI](https://github.com/ReneSchwarzer/WebExpress.Tutorial.WebUI#readme)
12-
- [WebApp](https://github.com/ReneSchwarzer/WebExpress.Tutorial.WebApp#readme)
13-
- [WebIndex](https://github.com/ReneSchwarzer/WebExpress.Tutorial.WebIndex#readme)
10+
- [HelloWorld](https://github.com/webexpress-framework/WebExpress.Tutorial.HelloWorld#readme)
11+
- [WebUI](https://github.com/webexpress-framework/WebExpress.Tutorial.WebUI#readme)
12+
- [WebApp](https://github.com/webexpress-framework/WebExpress.Tutorial.WebApp#readme)
13+
- [WebIndex](https://github.com/webexpress-framework/WebExpress.Tutorial.WebIndex#readme)
1414

1515
This tutorial will guide you through the initial steps of creating and running your first `WebExpress` application.
1616

docs/user-guide.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![WebExpress](https://raw.githubusercontent.com/ReneSchwarzer/WebExpress/main/assets/banner.png)
1+
![WebExpress-Framework](https://raw.githubusercontent.com/webexpress-framework/.github/main/docs/assets/img/banner.png)
22

33
# User guide
44
Welcome to the `WebExpress.WebIndex` User Guide. This guide will help you get started with `WebExpress.WebIndex` and make the most out of its
@@ -7,11 +7,11 @@ features. Follow the links below to begin your journey.
77
# Getting started
88
To get started with `WebExpress.WebIndex`, use the following guides:
99

10-
- [Installation Guide](https://github.com/ReneSchwarzer/WebExpress/blob/main/doc/installation_guide.md)
11-
- [Development Guide](https://github.com/ReneSchwarzer/WebExpress/blob/main/doc/development_guide.md)
12-
- [WebExpress.WebCore API Documentation](https://reneschwarzer.github.io/WebExpress.WebCore/)
13-
- [WebExpress.WebUI API Documentation](https://reneschwarzer.github.io/WebExpress.WebUI/)
14-
- [WebExpress.WebApp API Documentation](https://reneschwarzer.github.io/WebExpress.WebApp/)
15-
- [WebExpress.WebIndex API Documentation](https://reneschwarzer.github.io/WebExpress.WebIndex/)
10+
- [Installation Guide](https://github.com/webexpress-framework/WebExpress/blob/main/doc/installation_guide.md)
11+
- [Development Guide](https://github.com/webexpress-framework/WebExpress/blob/main/doc/development_guide.md)
12+
- [WebExpress.WebCore API Documentation](https://webexpress-framework.github.io/WebExpress.WebCore/)
13+
- [WebExpress.WebUI API Documentation](https://webexpress-framework.github.io/WebExpress.WebUI/)
14+
- [WebExpress.WebApp API Documentation](https://webexpress-framework.github.io/WebExpress.WebApp/)
15+
- [WebExpress.WebIndex API Documentation](https://webexpress-framework.github.io/WebExpress.WebIndex/)
1616

1717
We hope you enjoy using `WebExpress.WebIndex` and find it valuable for your projects. Happy coding!

src/WebExpress.WebIndex.Wi/WebExpress.WebIndex.Wi.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<AssemblyName>wi</AssemblyName>
1010
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1111
<RepositoryType>git</RepositoryType>
12-
<RepositoryUrl>https://github.com/ReneSchwarzer/WebExpress.WebIndex</RepositoryUrl>
12+
<RepositoryUrl>https://github.com/webexpress-framework/WebExpress.WebIndex</RepositoryUrl>
1313
<PackageTags>reverse index webexpress</PackageTags>
1414
<PackageIcon>icon.png</PackageIcon>
1515
<PackageReadmeFile>README.md</PackageReadmeFile>

src/WebExpress.WebIndex.Wi/WiApp.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,7 @@ private void PrintInfo()
728728
Console.WriteLine("wi is an administrative console application for creating and searching WebIndex indexes.");
729729
Console.WriteLine($"Version: {ViewModel.Version}");
730730
Console.WriteLine("License: MIT");
731-
Console.WriteLine("Project: https://github.com/ReneSchwarzer/WebExpress.WebIndex");
731+
Console.WriteLine("Project: https://github.com/webexpress-framework/WebExpress.WebIndex");
732732
}
733733

734734
/// <summary>

src/WebExpress.WebIndex/WebExpress.WebIndex.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
<AssemblyVersion>0.0.9.0</AssemblyVersion>
88
<TargetFramework>net9.0</TargetFramework>
99
<RuntimeIdentifiers>any</RuntimeIdentifiers>
10-
<RepositoryUrl>https://github.com/ReneSchwarzer/WebExpress.WebIndex</RepositoryUrl>
10+
<RepositoryUrl>https://github.com/webexpress-framework/WebExpress.WebIndex</RepositoryUrl>
1111
<Authors>Rene_Schwarzer@hotmail.de</Authors>
1212
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1313
<Company>Rene_Schwarzer@hotmail.de</Company>
1414
<EnableDynamicLoading>true</EnableDynamicLoading>
1515
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
1616
<Description>Provide a reverse index for the WebExpress web server.</Description>
1717
<PackageVersion>0.0.9-alpha</PackageVersion>
18-
<PackageProjectUrl>https://github.com/ReneSchwarzer/WebExpress</PackageProjectUrl>
18+
<PackageProjectUrl>https://github.com/webexpress-framework/WebExpress</PackageProjectUrl>
1919
<PackageIcon>icon.png</PackageIcon>
2020
<PackageReadmeFile>README.md</PackageReadmeFile>
2121
<RepositoryType>git</RepositoryType>

0 commit comments

Comments
 (0)