Add Realm guide to list of guides
1 file changed
tree: b732b195c120c1c2e389983bc6d67f30a58f560c
  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-overview.md
  49. features.md
  50. forums.md
  51. get-started.md
  52. getting-started-block.md
  53. graduation-resolution.md
  54. guice.md.vtl
  55. guides.md
  56. how-to-contribute.md
  57. inclusionslibrary.md
  58. index.html
  59. integration.md
  60. introduction.md
  61. issues.md
  62. java-annotations-list.md
  63. java-annotations.md
  64. java-authentication-guide.md.vtl
  65. java-authorization-guide.md.vtl
  66. java-cryptography-guide.md.vtl
  67. jaxrs.md.vtl
  68. jsp-tag-library.md
  69. license.md
  70. mailing-lists.md.vtl
  71. navigation.md
  72. news.html
  73. overview.md
  74. performing-a-release.html.vtl
  75. permissions.md
  76. powered-by-shiro.md
  77. privacy-policy.md
  78. quickstart.html.vtl
  79. README.md
  80. realm.md.vtl
  81. reference.md
  82. robots.txt
  83. security-reports.md
  84. securitymanager.md.vtl
  85. session-management-features.md
  86. session-management.md.vtl
  87. sessionmanager.html.vtl
  88. sitemap.xml
  89. spring-boot.md.vtl
  90. spring-framework.md.vtl
  91. spring-xml.md
  92. subject.md.vtl
  93. support.md
  94. tags.html
  95. team.md
  96. terminology.md
  97. testing.md.vtl
  98. tools.md
  99. tutorial.md.vtl
  100. version-2-brainstorming.md
  101. web-features.md
  102. web.md.vtl
  103. webapp-tutorial.md
  104. what-is-shiro.md
  105. 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 `master`
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