Josh Cummings
|
e5fcf1ebcf
|
Revisit Request and Method Security Docs
Issue gh-13088
|
2023-05-01 14:09:22 -06:00 |
|
Josh Cummings
|
21ceb333a8
|
Merge branch '5.8.x' into 6.0.x
Closes gh-12517
|
2023-01-10 10:43:25 -07:00 |
|
Josh Cummings
|
6f43104eb3
|
Merge branch '5.7.x' into 5.8.x
Closes gh-12516
|
2023-01-10 10:42:45 -07:00 |
|
Josh Cummings
|
2028507bf8
|
Fix Typo in Sample
Closes gh-11095
|
2023-01-10 10:38:28 -07:00 |
|
Josh Cummings
|
7adc000c6b
|
Merge remote-tracking branch 'origin/5.8.x'
|
2022-10-25 14:42:32 -06:00 |
|
Josh Cummings
|
04fa5af794
|
Add Missing Doc Header
The EnableMethodSecurity section
|
2022-10-25 14:41:11 -06:00 |
|
Rob Winch
|
a5069d7e35
|
Fix Add @Configuration to @Enable*Security Usage
Issue gh-6613
|
2022-08-09 17:00:16 -05:00 |
|
Tim te Beek
|
ce67fb08fd
|
Clearly end sentence in note before next sentence
|
2022-07-11 17:38:44 -06:00 |
|
Tim te Beek
|
2c0a4337a8
|
Clearly end sentence in note before next sentence
|
2022-07-11 17:36:30 -06: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 |
|