tree: 8b4e0d14c78631b2fc5c60de71b45ad7414d0ade [path history] [tgz]
  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. spring.md
  93. subject.md.vtl
  94. support.md
  95. tags.html
  96. team.md
  97. terminology.md
  98. testing.md.vtl
  99. tools.md
  100. tutorial.md.vtl
  101. version-2-brainstorming.md
  102. web-features.md
  103. web.md.vtl
  104. webapp-tutorial.md
  105. what-is-shiro.md
  106. 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 publish directory.

Publishing site changes is as simple as committing any changes in the publish directory to version control. 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 SVN commit permissions to the publish directory, typically because your are an Apache Shiro project committer:

cd site
# This next command will take a few seconds, be patient :)
scms trunk publish
# Open up the local publish/index.html file in your web browser.  Ensure the changes reflect what you want. 
#
# This next commands will publish changes to live ASF web servers.  Be confident the changes are what you want:
svn add .
svn commit -m "my change description"