Update java-authentication-guide.md.vtl
1 file changed
tree: e0b36384b087132dba07e3116b1813d40ab402c2
  1. 2010/
  2. 2011/
  3. 2012/
  4. 2013/
  5. assets/
  6. shiro-web/
  7. static/
  8. templates/
  9. .gitignore
  10. .htaccess
  11. 10-minute-tutorial.md.vtl
  12. about.md
  13. adoption.md
  14. architecture.md.vtl
  15. articles.md
  16. authentication-features.md
  17. authentication-guide.html.vtl
  18. authentication.md.vtl
  19. authenticator.html.vtl
  20. authorization-features.md
  21. authorization.md.vtl
  22. authorizer.html.vtl
  23. banner.html.vtl
  24. cachemanager.md
  25. caching.md
  26. cas.md.vtl
  27. codec.html.vtl
  28. command-line-hasher.md
  29. commercial-support.md
  30. community.md
  31. concurrency.md
  32. conferences.md
  33. config.scms.groovy
  34. configuration.md.vtl
  35. confluence-auto-export.html.vtl
  36. contribute.md
  37. core.md
  38. cryptography-features.md
  39. cryptography.md
  40. deprecated-pages.html
  41. developer-resources.md.vtl
  42. developers.md
  43. documentation-help-block.md
  44. documentation.md.vtl
  45. download.html.vtl
  46. events.md
  47. features-overview.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. security-reports.md
  82. securitymanager.md.vtl
  83. session-management-features.md
  84. session-management.md.vtl
  85. sessionmanager.html.vtl
  86. site.xml
  87. spring-boot.md.vtl
  88. spring-framework.md.vtl
  89. spring-xml.md
  90. spring.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 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"