Updating with 1.2.5 release

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