Rob Winch
c7a50c40ae
Use explicit version from antora.yml
4 years ago
Josh Cummings
11aa02c6fb
Separate SAML 2.0 Login Docs
...
Issue gh-10367
4 years ago
Josh Cummings
6d2d3b9a69
Separate Resource Server Reactive Docs
...
Issue gh-10367
4 years ago
Josh Cummings
f02a7d2b28
Separate Testing Servlet Docs
...
Issue gh-10367
4 years ago
Josh Cummings
f39d272a86
Separate SAML Docs
...
Issue gh-10367
4 years ago
Josh Cummings
b4ffe154d7
Separate Testing Reactive Docs
...
Issue gh-10367
4 years ago
Rob Winch
7a99542662
Docs Use Section Summary where appropriate
...
Closes gh-10449
4 years ago
Joe Grandja
b77cb8d0cb
Remove redundant docs for Reactive OAuth2 Client
...
Issue gh-10373
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
Rob Winch
9357c2f05d
antora.component.version extract major.minor only
4 years ago
Rob Winch
144af074b7
Use a dynamic version for Antora
4 years ago
Rob Winch
863bee2bc7
Revert 6.0 generated version
4 years ago
Rob Winch
dbf8e9ecce
Use 6.0 for generated docs
4 years ago
Rob Winch
0c105ff44f
Use ROOT component name
4 years ago
Rob Winch
f27ad296d0
Generated docs use version URL
4 years ago
Rob Winch
ecd7301893
Use version in docs URL
4 years ago
Rob Winch
a8c7ac9010
Add Antora based docs in whats-new
4 years ago
Steve Riesenberg
47087ba9c5
Revamp OAuth 2.0 Client reactive documentation
...
Related gh-8174
4 years ago
Steve Riesenberg
a487ef2d74
Add JwtEncoder to What's New in 5.6
4 years ago
Marcus Da Coregio
c82722c412
Update What's New in 5.6
4 years ago
Steve Riesenberg
00f466a431
Update What's New in 5.6
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
14fd213557
Better consistency between reactive and servlet
4 years ago
Rob Winch
77dc3d1a0e
Move to servlet/configurations/*
4 years ago
Rob Winch
ca2bc958df
Create features/integrations
4 years ago
Rob Winch
ab63ebbbee
Add link to authorization from features.
4 years ago
Rob Winch
176e6b6000
Add additional info to overview
4 years ago
Rob Winch
d6ada7fb18
Remove /servlet/hello/index.adoc
...
This is now /servlet/getting-started.adoc
4 years ago
Rob Winch
e368734557
Update "Big Picture" to Architecture
4 years ago
Rob Winch
0d339aeda6
Add Reactive Getting Started Page
4 years ago
Rob Winch
7537aa5124
Add generic authorization page
4 years ago
Rob Winch
a1c7a39bd3
Fix Firewall link in nav
4 years ago
Rob Winch
d52aab88af
Update nav text Project Modules
4 years ago
Rob Winch
be9ff16583
Remove Asciidoctor from the build in favor of Antora
4 years ago
Rob Winch
871bc1c42c
The next version of Security is 5.6
4 years ago
Rob Winch
7e2eb6894f
Use component name of ''
...
This makes it so that the URL contains security in the root of the deploy
folder. We will do this until we decide to add projects other than the
security related projects.
4 years ago
Rob Winch
52bfae5e27
Servlet Authentication no a link in nav
4 years ago
Rob Winch
a7f3f54a33
architecture/index.adoc -> ../architecture.adoc
...
BASE_DIR=docs/modules/ROOT/pages
git --no-pager diff HEAD~1 --diff-filter=R -M | sed -Ez "s%(\nrename to|rename from |similarity index [^\n]+|diff[^\n]+|$BASE_DIR/)%%g" | grep "\S" | while read rename_from_to; do
from=$(echo $rename_from_to | cut -f 1 -d " ")
to=$(echo $rename_from_to | cut -f 2 -d " ")
echo "processing rename from $from to $to"
find "$BASE_DIR/../" -name "*.adoc" | while read adoc_file; do
sed -i -E "s%xref:$from%xref:$to%g" "$adoc_file"
done
done
4 years ago
Rob Winch
583761f916
unpwd->passwords folder
4 years ago
Rob Winch
e4ce7249cc
Generate antora.yml and push to spring-security-docs-generated
4 years ago
Rob Winch
a0e9c67482
Fix antora version
4 years ago
Rob Winch
0b587dcef1
Reduce folders
4 years ago
Rob Winch
2da377ec88
Fix antora security version
4 years ago
Rob Winch
e681e44268
overview/ -> ../
4 years ago
Rob Winch
a64a694c60
Indent testing subsections in nav.adoc
4 years ago
Rob Winch
32331185dc
Fix local anchor
4 years ago
Rob Winch
29a7669101
rg "xref:\S+?#\S+\[\]" docs/modules -l -g "*.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
text_file=$(echo $id_file | sed 's/\.id$/.text/')
default_text=$(cat $text_file)
sed -i -E "s%xref:${xref_page}#${id}\[\]%xref:${xref_page}#${id}[$default_text]%g" $adoc_file_to_replace
fi
done
done
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