Skip to content

Commit d89010c

Browse files
committed
Merge branch 'main' into wca/oidc-client-dpop-extensions
2 parents 2d3f83b + 19a1b0b commit d89010c

Some content is hidden

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

47 files changed

+2091
-411
lines changed

.idea/codeStyles/Project.xml

Lines changed: 57 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/prettier.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.mdx

.prettierrc

Lines changed: 0 additions & 2 deletions
This file was deleted.

.prettierrc.mjs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// .prettierrc.mjs
2+
/** @type {import("prettier").Config} */
3+
export default {
4+
plugins: ["prettier-plugin-astro"],
5+
overrides: [
6+
{
7+
files: "*.astro",
8+
options: {
9+
parser: "astro",
10+
},
11+
},
12+
],
13+
};

LICENSE

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

LICENSE-CODE

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
MIT License
2+
Copyright (c) Duende Software
3+
4+
Permission is hereby granted, free of charge, to any person obtaining a copy
5+
of this software and associated documentation files (the "Software"), to deal
6+
in the Software without restriction, including without limitation the rights
7+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
copies of the Software, and to permit persons to whom the Software is
9+
furnished to do so, subject to the following conditions:
10+
11+
The above copyright notice and this permission notice shall be included in all
12+
copies or substantial portions of the Software.
13+
14+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20+
SOFTWARE.

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# docs.duendesoftware.com
22

3+
Welcome to the documentation of all [Duende Software](https://duendesoftware.com) products and open-source tools!
4+
35
## Getting Started
46

57
You will need Node 22+ installed on your operating system and in the PATH.
@@ -143,3 +145,12 @@ redirects: {
143145

144146
This will remove the old page from the navigation structure, but keeps the URL around
145147
with a redirect to the new location.
148+
149+
## ⚖️ License
150+
151+
For all licensing information, refer to the relevant license files:
152+
153+
* [LICENSE](LICENSE) - License for the documentation site content.
154+
* [LICENSE-CODE](LICENSE-CODE) - License for the code samples.
155+
156+
The Astro documentation engine is licensed under the [MIT license](https://github.com/withastro/astro/blob/main/LICENSE).

astro.config.mjs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,6 @@ export default defineConfig({
6969
content:
7070
"(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-MMR39D3G');",
7171
},
72-
// Reo.dev
73-
{
74-
tag: "script",
75-
content:
76-
"!function(){var e,t,n;e='abfbaac4dad2301',t=function(){Reo.init({clientID:'abfbaac4dad2301'})},(n=document.createElement('script')).src='https://static.reo.dev/'+e+'/reo.js',n.defer=!0,n.onload=t,document.head.appendChild(n)}();",
77-
},
7872
// HubSpot
7973
{
8074
tag: "script",
@@ -133,6 +127,7 @@ export default defineConfig({
133127
SkipLink: "./src/components/SkipLink.astro",
134128
Banner: "./src/components/Banner.astro",
135129
Head: "./src/components/Head.astro",
130+
Pagination: "./src/components/Pagination.astro",
136131
},
137132
sidebar: [
138133
{

package-lock.json

Lines changed: 44 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)