Skip to content

Commit a885f8c

Browse files
Merge pull request #18 from webexpress-framework/develop
Develop 0.0.11-alpha
2 parents 5fdeeca + 4f4ab5d commit a885f8c

681 files changed

Lines changed: 44246 additions & 2915 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/generate-docs.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup .NET SDK
2929
uses: actions/setup-dotnet@v3
3030
with:
31-
dotnet-version: 9.x
31+
dotnet-version: 10.x
3232

3333
- name: Install DocFX
3434
run: dotnet tool install -g docfx
@@ -101,6 +101,11 @@ jobs:
101101
docfx metadata
102102
docfx build
103103
104+
- name: Validate JavaScript docs are included in site
105+
run: |
106+
test -f docs/_site/js/index.html
107+
test -f docs/_site/js/tab.html
108+
104109
- name: Generate API toc.yaml
105110
run: |
106111
echo "### YamlMime:TableOfContent" > docs/api/toc.yaml

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -399,3 +399,6 @@ FodyWeavers.xsd
399399
# JetBrains Rider
400400
*.sln.iml
401401
/src/WebExpress.WebApp/WebExpress - Backup.WebApp.csproj
402+
nuget.config
403+
WebExpress.WebCore
404+
nuget.config

docs/_site/api/toc.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
<div id="sidetoggle">
3+
<div>
4+
<div class="sidefilter">
5+
<form class="toc-filter">
6+
<span class="glyphicon glyphicon-filter filter-icon"></span>
7+
<span class="glyphicon glyphicon-remove clear-icon" id="toc_filter_clear"></span>
8+
<input type="text" id="toc_filter_input" placeholder="Filter by title" onkeypress="if(event.keyCode==13) {return false;}">
9+
</form>
10+
</div>
11+
<div class="sidetoc">
12+
<div class="toc" id="toc">
13+
</div>
14+
</div>
15+
</div>
16+
</div>

docs/_site/api/toc.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
{"items":[],"pdf":false}

docs/_site/assets/webexpress.ico

68.5 KB
Binary file not shown.

docs/_site/assets/webexpress.svg

Lines changed: 40 additions & 0 deletions
Loading

docs/_site/favicon.ico

97.3 KB
Binary file not shown.

docs/_site/index.html

Lines changed: 126 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>WebExpress | WebExpress.WebApp </title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<meta name="title" content="WebExpress | WebExpress.WebApp ">
8+
9+
10+
<link rel="icon" href="assets/webexpress.ico">
11+
<link rel="stylesheet" href="public/docfx.min.css">
12+
<link rel="stylesheet" href="public/main.css">
13+
<meta name="docfx:navrel" content="toc.html">
14+
<meta name="docfx:tocrel" content="toc.html">
15+
16+
<meta name="docfx:rel" content="">
17+
18+
19+
<meta name="docfx:docurl" content="https://github.com/ReneSchwarzer/WebExpress.WebApp/blob/develop/docs/index.md/#L1">
20+
<meta name="loc:inThisArticle" content="In this article">
21+
<meta name="loc:searchResultsCount" content="{count} results for &quot;{query}&quot;">
22+
<meta name="loc:searchNoResults" content="No results for &quot;{query}&quot;">
23+
<meta name="loc:tocFilter" content="Filter by title">
24+
<meta name="loc:nextArticle" content="Next">
25+
<meta name="loc:prevArticle" content="Previous">
26+
<meta name="loc:themeLight" content="Light">
27+
<meta name="loc:themeDark" content="Dark">
28+
<meta name="loc:themeAuto" content="Auto">
29+
<meta name="loc:changeTheme" content="Change theme">
30+
<meta name="loc:copy" content="Copy">
31+
<meta name="loc:downloadPdf" content="Download PDF">
32+
33+
<script type="module" src="./public/docfx.min.js"></script>
34+
35+
<script>
36+
const theme = localStorage.getItem('theme') || 'auto'
37+
document.documentElement.setAttribute('data-bs-theme', theme === 'auto' ? (window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light') : theme)
38+
</script>
39+
40+
</head>
41+
42+
<body class="tex2jax_ignore" data-layout="" data-yaml-mime="">
43+
<header class="bg-body border-bottom">
44+
<nav id="autocollapse" class="navbar navbar-expand-md" role="navigation">
45+
<div class="container-xxl flex-nowrap">
46+
<a class="navbar-brand" href="index.html">
47+
<img id="logo" class="svg" src="assets/webexpress.svg" alt="WebExpress.WebApp">
48+
WebExpress.WebApp
49+
</a>
50+
<button class="btn btn-lg d-md-none border-0" type="button" data-bs-toggle="collapse" data-bs-target="#navpanel" aria-controls="navpanel" aria-expanded="false" aria-label="Toggle navigation">
51+
<i class="bi bi-three-dots"></i>
52+
</button>
53+
<div class="collapse navbar-collapse" id="navpanel">
54+
<div id="navbar">
55+
<form class="search" role="search" id="search">
56+
<i class="bi bi-search"></i>
57+
<input class="form-control" id="search-query" type="search" disabled placeholder="Search" autocomplete="off" aria-label="Search">
58+
</form>
59+
</div>
60+
</div>
61+
</div>
62+
</nav>
63+
</header>
64+
65+
<main class="container-xxl">
66+
67+
<div class="content">
68+
<div class="actionbar">
69+
70+
<nav id="breadcrumb"></nav>
71+
</div>
72+
73+
<article data-uid="">
74+
75+
<p><img src="https://raw.githubusercontent.com/webexpress-framework/.github/main/docs/assets/img/banner.png" alt="WebExpress-Framework"></p>
76+
<h1 id="webexpress">WebExpress</h1>
77+
<p>WebExpress is a lightweight web server optimized for use in low-performance environments (e.g. Raspberry PI). By providing
78+
a powerful plugin system and a comprehensive API, web applications can be easily and quickly integrated into a .NET
79+
language (e.g. C#). Some advantages of WebExpress are:</p>
80+
<ul>
81+
<li>It is easy to use.</li>
82+
<li>It offers a variety of features and tools that can help you build and manage your website.</li>
83+
<li>It is fast and efficient and can help you save time and money.</li>
84+
<li>It is flexible and can be customized to meet your specific requirements.</li>
85+
</ul>
86+
<p>The <code>WebExpress</code> family includes the following projects:</p>
87+
<ul>
88+
<li><a href="https://github.com/webexpress-framework/WebExpress#readme">WebExpress</a> - The web server for <code>WebExpress</code> applications and the documentation.</li>
89+
<li><a href="https://github.com/webexpress-framework/WebExpress.WebCore#readme">WebExpress.WebCore</a> - The core for <code>WebExpress</code> applications.</li>
90+
<li><a href="https://github.com/webexpress-framework/WebExpress.WebUI#readme">WebExpress.WebUI</a> - Common templates and controls for <code>WebExpress</code> applications.</li>
91+
<li><a href="https://github.com/webexpress-framework/WebExpress.WebIndex#readme">WebExpress.WebIndex</a> - Reverse index for <code>WebExpress</code> applications.</li>
92+
<li><a href="https://github.com/webexpress-framework/WebExpress.WebApp#readme">WebExpress.WebApp</a> - Business application template for <code>WebExpress</code> applications.</li>
93+
</ul>
94+
<h1 id="webexpresswebapp">WebExpress.WebApp</h1>
95+
<p><code>WebExpress.WebApp</code> is part of the WebExpress family. Provides a business application template for <code>WebExpress</code> applications.</p>
96+
<h1 id="download">Download</h1>
97+
<p>The current binaries are available for download <a href="https://github.com/webexpress-framework/WebExpress/releases">here</a>.</p>
98+
<h1 id="tags">Tags</h1>
99+
<p>#WebApp #WebExpress #BusinessApplication #DotNet #NETCore</p>
100+
101+
</article>
102+
103+
<div class="contribution d-print-none">
104+
<a href="https://github.com/ReneSchwarzer/WebExpress.WebApp/blob/develop/docs/index.md/#L1" class="edit-link">Edit this page</a>
105+
</div>
106+
107+
<div class="next-article d-print-none border-top" id="nextArticle"></div>
108+
109+
</div>
110+
111+
<div class="affix">
112+
<nav id="affix"></nav>
113+
</div>
114+
</main>
115+
116+
<div class="container-xxl search-results" id="search-results"></div>
117+
118+
<footer class="border-top text-secondary">
119+
<div class="container-xxl">
120+
<div class="flex-fill">
121+
<span>Made with <a href="https://dotnet.github.io/docfx">docfx</a></span>
122+
</div>
123+
</div>
124+
</footer>
125+
</body>
126+
</html>

docs/_site/index.json

Lines changed: 52 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)