Tran Ngoc Nhan
|
89260a3a9c
|
Use reference links from attributes
Signed-off-by: Tran Ngoc Nhan <ngocnhan.tran1996@gmail.com>
|
2026-03-03 16:51:25 -07:00 |
|
Josh Cummings
|
84b124d29d
|
Merge branch '6.4.x' into 6.5.x
|
2026-01-15 12:41:16 -07:00 |
|
songhee
|
fee6a9bb0e
|
docs: add CurrentSecurityContext section and link references
Signed-off-by: songhee <songhee9327@gmail.com>
|
2026-01-15 12:31:58 -07:00 |
|
nobletrout
|
555fe1f147
|
Update anonymous.adoc
make the example code return the same thing for the do and don't do.
Signed-off-by: nobletrout <nobletrout@gmail.com>
|
2025-03-20 15:17:35 -05:00 |
|
Habin Song
|
74d85c1e46
|
Typo: Update anonymous.adoc
I changed 'instancesthat' to 'instances that'
|
2024-02-05 11:34:38 -07:00 |
|
Andreas Büchel
|
3346f2dd73
|
fix typo in anonymous.adoc
|
2024-01-17 15:22:06 -03:00 |
|
Rob Winch
|
f66a5bab99
|
Merge branch '5.8.x' into 6.0.x
Closes gh-13406
|
2023-06-18 21:33:58 -05:00 |
|
Rob Winch
|
39c43159f4
|
Convert to Asciidoctor Tabs
Closes gh-13403
|
2023-06-18 21:30:41 -05:00 |
|
Rob Winch
|
2fb056b5c1
|
Merge Clean up Reference Documentation
Closes gh-9668
|
2021-12-13 16:57:36 -06:00 |
|
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
|
2021-09-23 15:49:43 -05:00 |
|
Rob Winch
|
b8a362a60f
|
Remove include servlet/saml2/index.adoc
|
2021-09-23 15:47:20 -05:00 |
|
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
|
2021-09-23 15:45:22 -05:00 |
|