André Luis Gomes
|
b9acdd5058
|
Update opaque-token.adoc
Fixing yaml sample in Servlet and Reactive pages
|
4 years ago |
Steve Riesenberg
|
f0168c6c27
|
Add support for customizing claims in JWT Client Assertion
Closes gh-9855
|
4 years ago |
Steve Riesenberg
|
428216b322
|
Add support for customizing claims in JWT Client Assertion
Closes gh-9855
|
4 years ago |
Joe Grandja
|
54b033078b
|
Allow configuring PKCE for confidential clients
Closes gh-6548
|
4 years ago |
Joe Grandja
|
a2ffc88294
|
Allow configuring PKCE for confidential clients
Closes gh-6548
|
4 years ago |
Yuriy Savchenko
|
f64181ab41
|
Update docs to use multi-tenancy
Closes gh-10572
|
4 years ago |
Yuriy Savchenko
|
77ba94e1db
|
Update docs to use multi-tenancy
Closes gh-10572
|
4 years ago |
Joe Grandja
|
525f40490c
|
Allow Jwt assertion to be resolved
Closes gh-9812
|
4 years ago |
Joe Grandja
|
214cfe807e
|
Allow Jwt assertion to be resolved
Closes gh-9812
|
4 years ago |
Steve Riesenberg
|
32ec8c3ae4
|
Fix Reactive OAuth2 Kotlin DSL examples
Closes gh-10580
|
4 years ago |
Steve Riesenberg
|
7ec3b55ab3
|
Fix Reactive OAuth2 Kotlin DSL examples
Closes gh-10580
|
4 years ago |
Steve Riesenberg
|
1896a5e669
|
Fix Reactive OAuth2 Kotlin DSL examples
Closes gh-10580
|
4 years ago |
Joe Grandja
|
4f185724a3
|
Polish gh-10479
|
4 years ago |
Joe Grandja
|
eceb9ed479
|
Polish gh-10479
|
4 years ago |
Steve Riesenberg
|
0e6722800d
|
Polish gh-10479
|
4 years ago |
Steve Riesenberg
|
7d806b668f
|
Separate OAuth 2.0 Client Reactive Docs
Related gh-10367
|
4 years ago |
Steve Riesenberg
|
1246d5839d
|
Revamp OAuth 2.0 Login Reactive documentation
Related gh-8174
|
4 years ago |
Steve Riesenberg
|
9887b282ce
|
Polish gh-10479
|
4 years ago |
Steve Riesenberg
|
83f76fa1f6
|
Separate OAuth 2.0 Client Reactive Docs
Related gh-10367
|
4 years ago |
Steve Riesenberg
|
0c12aeb7a1
|
Revamp OAuth 2.0 Login Reactive documentation
Related gh-8174
|
4 years ago |
Josh Cummings
|
75abf0cf78
|
Fix Broken Link
Issue gh-10367
|
4 years ago |
Josh Cummings
|
4a9637483a
|
Separate OAuth 2.0 Client Reactive Docs
Issue gh-10367
|
4 years ago |
Josh Cummings
|
82696918ae
|
Separate OAuth 2.0 Client Servlet Docs
Issue gh-10367
|
4 years ago |
Josh Cummings
|
50196537e1
|
Separate OAuth 2.0 Client Reactive Docs
Issue gh-10367
|
4 years ago |
Josh Cummings
|
8c508d6afa
|
Separate OAuth 2.0 Client Servlet Docs
Issue gh-10367
|
4 years ago |
Josh Cummings
|
6d2d3b9a69
|
Separate Resource Server Reactive Docs
Issue gh-10367
|
4 years ago |
Joe Grandja
|
ce09f3eff4
|
Polish gh-10373
|
4 years ago |
Josh Cummings
|
4b0e74aac4
|
Separate Resource Server Servlet Docs
Issue gh-10367
|
4 years ago |
Rob Winch
|
d40e8f6732
|
Fix Antora warnings
|
4 years ago |
Steve Riesenberg
|
47087ba9c5
|
Revamp OAuth 2.0 Client reactive documentation
Related gh-8174
|
4 years ago |
Alexander Schwartz
|
f561499683
|
Fix Antora cross-references that lead to other pages.
Also using AsciiDoc style listings instead of Markdown style listings, and using explicit section IDs on all cross-references.
|
4 years ago |
Rob Winch
|
e681e44268
|
overview/ -> ../
|
4 years ago |
Rob Winch
|
1f90df6a14
|
mkdir -p build/ids
find -name "*.adoc" | xargs -I{file} awk -v file={file} '/\[\[/ { gsub("\[|\]", ""); id=$0; gsub("./docs/modules/ROOT/pages/", "", file); gsub("\[|\]", ""); id=$0;getline;text=$0; sub("^=+ ","", text); print file > "build/ids/"id".id"; print text > "build/ids/"id".text" }' {file}
find docs/modules -name "*.adoc"|while read adoc_file_to_replace; do
echo "Replacing $adoc_file_to_replace"
for id_file in build/ids/*.id; do
id=$(basename $id_file | sed 's/\.id$//')
xref_page=$(cat $id_file)
if [[ "$adoc_file_to_replace" -ef "./docs/modules/ROOT/pages/$xref_page" ]]
then
echo " - Skipping same page refid $id "
else
sed -i -E "s%<<$id(|,([^,>]+))>>%xref:${xref_page}#${id}[\2]%g" $adoc_file_to_replace
fi
done
done
|
4 years ago |
Rob Winch
|
f5274926cf
|
Fix up reactive/oauth2/index.adoc links
|
4 years ago |
Rob Winch
|
c3dfb1711d
|
Remove includes
|
4 years ago |
Rob Winch
|
f01a13aa52
|
Antora
mkdir -p docs/modules/ROOT/
mkdir -p docs/modules/ROOT/pages/
git checkout antora-2.x docs/antora.yml
git checkout antora-2.x docs/modules/ROOT/nav.adoc
mv docs/manual/src/docs/asciidoc/images docs/modules/ROOT/
mv docs/manual/src/docs/asciidoc/_includes/* docs/modules/ROOT/pages/
cp ~/code/rwinch/spring-reference/*antora* ~/code/spring-projects/spring-security/
mv docs/modules/ROOT/pages/about docs/modules/ROOT/pages/overview
|
4 years ago |