From f4fe7adb5d8bb36fc639b7b4bf29112776ed8521 Mon Sep 17 00:00:00 2001 From: Andreas Wittig Date: Thu, 30 Mar 2023 08:47:35 +0200 Subject: [PATCH] Preparing errata for 3rd edition --- README.md | 26 +++++++ config.toml | 4 + layouts/_default/list.html | 11 +++ layouts/_default/single.html | 3 + layouts/partials/footer.html | 6 ++ layouts/partials/header.html | 126 ++++++++++++++++++++++++++++++++ public/categories.html | 137 ++++++++++++++++++++++++++++++++++ public/categories/index.xml | 10 +++ public/index.html | 138 +++++++++++++++++++++++++++++++++++ public/index.xml | 10 +++ public/sitemap.xml | 11 +++ public/tags.html | 137 ++++++++++++++++++++++++++++++++++ public/tags/index.xml | 10 +++ 13 files changed, 629 insertions(+) create mode 100644 README.md create mode 100644 config.toml create mode 100644 layouts/_default/list.html create mode 100644 layouts/_default/single.html create mode 100644 layouts/partials/footer.html create mode 100644 layouts/partials/header.html create mode 100644 public/categories.html create mode 100644 public/categories/index.xml create mode 100644 public/index.html create mode 100644 public/index.xml create mode 100644 public/sitemap.xml create mode 100644 public/tags.html create mode 100644 public/tags/index.xml diff --git a/README.md b/README.md new file mode 100644 index 0000000..d4aec4f --- /dev/null +++ b/README.md @@ -0,0 +1,26 @@ +# Errata: Amazon Web Services in Action (3rd Edition) + +![Cover of Amazon Web Services in Action, 3rd Edition](https://images.manning.com/264/352/resize/book/f/bc1b7ca-d446-42bf-a66d-a522d312c86e/Wittig-3ed-HI.png) + +> If you find any any errors in [Amazon Web Services in Action (3rd Edition)](https://bit.ly/amazon-web-services-in-action-3rd-edition) not listed in the errata, or just find something that you think is not well explained, it would be most appreciated if you would post in the book's [errata discussion](https://livebook.manning.com/book/amazon-web-services-in-action-third-edition/Errata/) so that they may be collected here for everyone's benefit. Thanks! + +## Using this project + +[Install Hugo](http://gohugo.io/overview/installing/) to build the site. + +### Run locally + +``` +docker run --rm -it -v $(pwd):/src -p 1313:1313 klakegg/hugo:0.83.1-ext-ubuntu server --buildDrafts --bind 0.0.0.0 -w +``` + +Open http://localhost:1313/ to see the site. + +### Generate HTML + +``` +rm -rf public/ +docker run --rm -it -v $(pwd):/src klakegg/hugo:0.83.1-ext-ubuntu --buildDrafts +``` + +send file `./public/index.html` to Susan Harkins diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..fb54528 --- /dev/null +++ b/config.toml @@ -0,0 +1,4 @@ +baseurl = "/" +languageCode = "en-us" +title = "Amazon Web Services in Action (Second Edition) Errata" +uglyUrls = true diff --git a/layouts/_default/list.html b/layouts/_default/list.html new file mode 100644 index 0000000..48b72bf --- /dev/null +++ b/layouts/_default/list.html @@ -0,0 +1,11 @@ +{{ partial "header.html" . }} + +{{ range sort .Data.Pages "Params.page" "asc" }} +

Section {{ .Params.section }}: {{ .Title }}

+

+ {{ .Content }} + Printed book page {{ .Params.page }} - {{ .Date.Format "2006-01-02" }} +

+{{ end }} + +{{ partial "footer.html" . }} diff --git a/layouts/_default/single.html b/layouts/_default/single.html new file mode 100644 index 0000000..16f6ffc --- /dev/null +++ b/layouts/_default/single.html @@ -0,0 +1,3 @@ +{{ partial "header.html" . }} +{{ .Content }} +{{ partial "footer.html" . }} diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html new file mode 100644 index 0000000..3f4a772 --- /dev/null +++ b/layouts/partials/footer.html @@ -0,0 +1,6 @@ + + + + diff --git a/layouts/partials/header.html b/layouts/partials/header.html new file mode 100644 index 0000000..5b710e0 --- /dev/null +++ b/layouts/partials/header.html @@ -0,0 +1,126 @@ + + + + + + + +
+ + + Errata: {{ now.Format "2006-01-02" }}

+ + Thank you for purchasing Amazon Web Services in Action, Third Edition. Please post any errors, other than those listed below, in the book's errata discussion. We'll update this list as necessary. Thank you! +


diff --git a/public/categories.html b/public/categories.html new file mode 100644 index 0000000..8d4c5d2 --- /dev/null +++ b/public/categories.html @@ -0,0 +1,137 @@ + + + + + + + +
+ + + Errata: 2023-03-30

+ + Thank you for purchasing Amazon Web Services in Action, Third Edition. Please post any errors, other than those listed below, in the book's errata discussion. We'll update this list as necessary. Thank you! +


+ + + + +
+ + + + diff --git a/public/categories/index.xml b/public/categories/index.xml new file mode 100644 index 0000000..a2c0ce4 --- /dev/null +++ b/public/categories/index.xml @@ -0,0 +1,10 @@ + + + + Categories on Amazon Web Services in Action (Second Edition) Errata + /categories.html + Recent content in Categories on Amazon Web Services in Action (Second Edition) Errata + Hugo -- gohugo.io + en-us + + diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..c4744ce --- /dev/null +++ b/public/index.html @@ -0,0 +1,138 @@ + + + + + + + + +
+ + + Errata: 2023-03-30

+ + Thank you for purchasing Amazon Web Services in Action, Third Edition. Please post any errors, other than those listed below, in the book's errata discussion. We'll update this list as necessary. Thank you! +


+ + + + +
+ + + + diff --git a/public/index.xml b/public/index.xml new file mode 100644 index 0000000..bfb40a3 --- /dev/null +++ b/public/index.xml @@ -0,0 +1,10 @@ + + + + Amazon Web Services in Action (Second Edition) Errata + / + Recent content on Amazon Web Services in Action (Second Edition) Errata + Hugo -- gohugo.io + en-us + + diff --git a/public/sitemap.xml b/public/sitemap.xml new file mode 100644 index 0000000..fc4e832 --- /dev/null +++ b/public/sitemap.xml @@ -0,0 +1,11 @@ + + + + / + + /categories.html + + /tags.html + + diff --git a/public/tags.html b/public/tags.html new file mode 100644 index 0000000..8d4c5d2 --- /dev/null +++ b/public/tags.html @@ -0,0 +1,137 @@ + + + + + + + +
+ + + Errata: 2023-03-30

+ + Thank you for purchasing Amazon Web Services in Action, Third Edition. Please post any errors, other than those listed below, in the book's errata discussion. We'll update this list as necessary. Thank you! +


+ + + + +
+ + + + diff --git a/public/tags/index.xml b/public/tags/index.xml new file mode 100644 index 0000000..4d095a2 --- /dev/null +++ b/public/tags/index.xml @@ -0,0 +1,10 @@ + + + + Tags on Amazon Web Services in Action (Second Edition) Errata + /tags.html + Recent content in Tags on Amazon Web Services in Action (Second Edition) Errata + Hugo -- gohugo.io + en-us + +