Merge features and features-overview pages

Added redirect and updated existing references
4 files changed
tree: a833c3b8b8737515e157963792932401d2864f72
  1. 2010/
  2. 2011/
  3. 2012/
  4. 2013/
  5. assets/
  6. shiro-web/
  7. static/
  8. templates/
  9. .asf.yaml
  10. .gitignore
  11. .htaccess
  12. 10-minute-tutorial.md.vtl
  13. about.md
  14. adoption.md
  15. architecture.md.vtl
  16. articles.md
  17. authentication-features.md
  18. authentication-guide.html.vtl
  19. authentication.md.vtl
  20. authenticator.html.vtl
  21. authorization-features.md
  22. authorization.md.vtl
  23. authorizer.html.vtl
  24. banner.html.vtl
  25. cachemanager.md
  26. caching.md
  27. cas.md.vtl
  28. codec.html.vtl
  29. command-line-hasher.md
  30. commercial-support.md
  31. community.md
  32. concurrency.md
  33. conferences.md
  34. config.scms.groovy
  35. configuration.md.vtl
  36. confluence-auto-export.html.vtl
  37. contribute.md
  38. core.md
  39. cryptography-features.md
  40. cryptography.md
  41. deprecated-pages.html
  42. developer-resources.md.vtl
  43. developers.md
  44. documentation-help-block.md
  45. documentation.md.vtl
  46. download.html.vtl
  47. events.md
  48. features.md
  49. forums.md
  50. get-started.md
  51. getting-started-block.md
  52. graduation-resolution.md
  53. guice.md.vtl
  54. guides.md
  55. how-to-contribute.md
  56. inclusionslibrary.md
  57. index.html
  58. integration.md
  59. introduction.md
  60. issues.md
  61. java-annotations-list.md
  62. java-annotations.md
  63. java-authentication-guide.md.vtl
  64. java-authorization-guide.md.vtl
  65. java-cryptography-guide.md.vtl
  66. jaxrs.md.vtl
  67. jsp-tag-library.md
  68. license.md
  69. mailing-lists.md.vtl
  70. navigation.md
  71. news.html
  72. overview.md
  73. performing-a-release.html.vtl
  74. permissions.md
  75. powered-by-shiro.md
  76. privacy-policy.md
  77. quickstart.html.vtl
  78. README.md
  79. realm.md.vtl
  80. reference.md
  81. robots.txt
  82. security-reports.md
  83. securitymanager.md.vtl
  84. session-management-features.md
  85. session-management.md.vtl
  86. sessionmanager.html.vtl
  87. sitemap.xml
  88. spring-boot.md.vtl
  89. spring-framework.md.vtl
  90. spring-xml.md
  91. subject.md.vtl
  92. support.md
  93. tags.html
  94. team.md
  95. terminology.md
  96. testing.md.vtl
  97. tools.md
  98. tutorial.md.vtl
  99. version-2-brainstorming.md
  100. web-features.md
  101. web.md.vtl
  102. webapp-tutorial.md
  103. what-is-shiro.md
  104. wiki-todos.md
README.md

Apache Shiro Website Overview

The Apache Shiro website is a static content website accessible at http://shiro.apache.org

Site content is authored as Markdown and HTML files. These files are scanned by a tool that applies a page template to each file's contents as necessary, and the rendered static .html files are output to a dest_dir directory.

To publish the site commit changes to the asf-site branch of this repository. ASF infrastructure will see the commit and automatically push the changes to the ASF's production webservers.

Generating and Publishing

The tool used to generate the static content is SCMS. Once scms is installed and in your $PATH, generating and publishing the site on the command line is easy.

The following example assumes you have commit permissions to the apache/shiro-site repository, typically because your are an Apache Shiro project committer:

# clone both repo branches `asf-site` and `main`
git clone https://github.com/apache/shiro-site -b asf-site shiro-site-publish
git clone https://github.com/apache/shiro-site

# build the site
cd shiro-site
scms . ../shiro-site-publish
# Open up the local ../shiro-site-publish/index.html file in your web browser.  Ensure the changes reflect what you want. 

# These next commands will publish changes to live ASF web servers.  Be confident the changes are what you want:
cd ../shiro-site-publish
git add .
git commit -am "my change description"
git push origin asf-site

# It should only take a few minutes until the files are live