Merge pull request #90 from apache/merge-feature-pages

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