├── .gitignore ├── CODEOWNERS ├── Gemfile ├── LICENSE ├── NOTICE ├── README.md ├── config.yml ├── config └── template_variables.yml ├── docker ├── Dockerfile ├── README.md ├── docker-compose.yml └── files │ └── Gemfile ├── manifest.yml ├── master_middleman └── source │ ├── 404.html.erb │ ├── contribute.html.md.erb │ ├── googlefb873635f2f14682.html │ ├── images │ ├── Pipe_NavBar.png │ ├── Pipe_gBar.png │ ├── bg-crowd.png │ ├── bg-plain-x.jpg │ ├── bg_social_footer.png │ ├── cf-icons.png │ ├── facebook_large.png │ ├── favicon.ico │ ├── gplus_large.png │ ├── hr-horizontal-dark.png │ ├── hr-vertical.png │ ├── ico-cancel-x.png │ ├── ico-search.png │ ├── logo-footer-pivotal.png │ ├── logo-pws.png │ ├── logo_org.png │ ├── new_logo_org.png │ ├── pws-logo-dark-bg.png │ ├── pws-logo-light-bg.png │ ├── ribbon_forkme.png │ ├── searchsprite.png │ ├── twitter_large.png │ └── youtube_large.png │ ├── index.html.md.erb │ ├── javascripts │ ├── book.js │ ├── page_initializers │ │ └── documentation.js.erb │ ├── vendor │ │ └── mermaid.js │ └── waypoints │ │ ├── context.js │ │ ├── group.js │ │ ├── noframeworkAdapter.js │ │ ├── sticky.js │ │ └── waypoint.js │ ├── layouts │ ├── _additional-scripts.erb │ ├── _book-footer.erb │ ├── _pre-content.erb │ └── layout.erb │ ├── owners.json.erb │ ├── search.html.erb │ ├── stylesheets │ ├── book-styles.scss │ ├── partials │ │ ├── _book-base-values.scss │ │ └── _book-vars.scss │ └── vendor │ │ └── mermaid.scss │ └── subnavs │ └── _cf-subnav.erb ├── redirects.rb └── run.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @cloudfoundry/wg-app-runtime-platform-docs-approvers 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/README.md -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/config.yml -------------------------------------------------------------------------------- /config/template_variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/config/template_variables.yml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docker/files/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/docker/files/Gemfile -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/manifest.yml -------------------------------------------------------------------------------- /master_middleman/source/404.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/404.html.erb -------------------------------------------------------------------------------- /master_middleman/source/contribute.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/contribute.html.md.erb -------------------------------------------------------------------------------- /master_middleman/source/googlefb873635f2f14682.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/googlefb873635f2f14682.html -------------------------------------------------------------------------------- /master_middleman/source/images/Pipe_NavBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/images/Pipe_NavBar.png -------------------------------------------------------------------------------- /master_middleman/source/images/Pipe_gBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/images/Pipe_gBar.png -------------------------------------------------------------------------------- /master_middleman/source/images/bg-crowd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/images/bg-crowd.png -------------------------------------------------------------------------------- /master_middleman/source/images/bg-plain-x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/images/bg-plain-x.jpg -------------------------------------------------------------------------------- /master_middleman/source/images/bg_social_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/images/bg_social_footer.png -------------------------------------------------------------------------------- /master_middleman/source/images/cf-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/images/cf-icons.png -------------------------------------------------------------------------------- /master_middleman/source/images/facebook_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/images/facebook_large.png -------------------------------------------------------------------------------- /master_middleman/source/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/images/favicon.ico -------------------------------------------------------------------------------- /master_middleman/source/images/gplus_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/images/gplus_large.png -------------------------------------------------------------------------------- /master_middleman/source/images/hr-horizontal-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/images/hr-horizontal-dark.png -------------------------------------------------------------------------------- /master_middleman/source/images/hr-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/images/hr-vertical.png -------------------------------------------------------------------------------- /master_middleman/source/images/ico-cancel-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/images/ico-cancel-x.png -------------------------------------------------------------------------------- /master_middleman/source/images/ico-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/images/ico-search.png -------------------------------------------------------------------------------- /master_middleman/source/images/logo-footer-pivotal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/images/logo-footer-pivotal.png -------------------------------------------------------------------------------- /master_middleman/source/images/logo-pws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/images/logo-pws.png -------------------------------------------------------------------------------- /master_middleman/source/images/logo_org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/images/logo_org.png -------------------------------------------------------------------------------- /master_middleman/source/images/new_logo_org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/images/new_logo_org.png -------------------------------------------------------------------------------- /master_middleman/source/images/pws-logo-dark-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/images/pws-logo-dark-bg.png -------------------------------------------------------------------------------- /master_middleman/source/images/pws-logo-light-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/images/pws-logo-light-bg.png -------------------------------------------------------------------------------- /master_middleman/source/images/ribbon_forkme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/images/ribbon_forkme.png -------------------------------------------------------------------------------- /master_middleman/source/images/searchsprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/images/searchsprite.png -------------------------------------------------------------------------------- /master_middleman/source/images/twitter_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/images/twitter_large.png -------------------------------------------------------------------------------- /master_middleman/source/images/youtube_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/images/youtube_large.png -------------------------------------------------------------------------------- /master_middleman/source/index.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/index.html.md.erb -------------------------------------------------------------------------------- /master_middleman/source/javascripts/book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/javascripts/book.js -------------------------------------------------------------------------------- /master_middleman/source/javascripts/page_initializers/documentation.js.erb: -------------------------------------------------------------------------------- 1 | mermaid.initialize({startOnLoad:true}); 2 | -------------------------------------------------------------------------------- /master_middleman/source/javascripts/vendor/mermaid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/javascripts/vendor/mermaid.js -------------------------------------------------------------------------------- /master_middleman/source/javascripts/waypoints/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/javascripts/waypoints/context.js -------------------------------------------------------------------------------- /master_middleman/source/javascripts/waypoints/group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/javascripts/waypoints/group.js -------------------------------------------------------------------------------- /master_middleman/source/javascripts/waypoints/noframeworkAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/javascripts/waypoints/noframeworkAdapter.js -------------------------------------------------------------------------------- /master_middleman/source/javascripts/waypoints/sticky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/javascripts/waypoints/sticky.js -------------------------------------------------------------------------------- /master_middleman/source/javascripts/waypoints/waypoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/javascripts/waypoints/waypoint.js -------------------------------------------------------------------------------- /master_middleman/source/layouts/_additional-scripts.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/layouts/_additional-scripts.erb -------------------------------------------------------------------------------- /master_middleman/source/layouts/_book-footer.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/layouts/_book-footer.erb -------------------------------------------------------------------------------- /master_middleman/source/layouts/_pre-content.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/layouts/_pre-content.erb -------------------------------------------------------------------------------- /master_middleman/source/layouts/layout.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/layouts/layout.erb -------------------------------------------------------------------------------- /master_middleman/source/owners.json.erb: -------------------------------------------------------------------------------- 1 | <%= owners.to_json %> 2 | -------------------------------------------------------------------------------- /master_middleman/source/search.html.erb: -------------------------------------------------------------------------------- 1 | --- 2 | title: Search 3 | --- 4 | 5 | <%%= yield %> 6 | -------------------------------------------------------------------------------- /master_middleman/source/stylesheets/book-styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/stylesheets/book-styles.scss -------------------------------------------------------------------------------- /master_middleman/source/stylesheets/partials/_book-base-values.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/stylesheets/partials/_book-base-values.scss -------------------------------------------------------------------------------- /master_middleman/source/stylesheets/partials/_book-vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/stylesheets/partials/_book-vars.scss -------------------------------------------------------------------------------- /master_middleman/source/stylesheets/vendor/mermaid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/stylesheets/vendor/mermaid.scss -------------------------------------------------------------------------------- /master_middleman/source/subnavs/_cf-subnav.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/master_middleman/source/subnavs/_cf-subnav.erb -------------------------------------------------------------------------------- /redirects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/redirects.rb -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry/docs-book-cloudfoundry/HEAD/run.sh --------------------------------------------------------------------------------