5842 Commits

Author SHA1 Message Date
digitalcraftsman
771f2b38eb Remove outdated and redudant content file for release notes 2017-07-28 18:55:36 +02:00
digitalcraftsman
64cf47c320 Remove outdated note in docs contribution guide 2017-07-28 18:39:06 +02:00
Anthony Fok
84710eb3ec Add -u flag for go get govendor in CONTRIBUTING.md
This to to ensure the reader is not stuck with a stale version
of govendor where `govendor get` may not actually build/install
the final hugo binary.

See kardianos/govendor#330
2017-07-28 09:18:20 -06:00
Anthony Fok
555a9bc806 tpl: Accommodate gccgo in TestMethodToName
Fixes #3744
2017-07-28 08:03:15 +02:00
Cameron Moore
55d0b89417 tpl/collections: Fix intersect on []interface{} handling
Fixes #3718
2017-07-28 07:21:21 +02:00
Max Rydahl Andersen
aee2b06780 Add --debug option to be improved on over time
Why:

 * first time using hugo I got very little info from --verbose output
   but I noticed there is quite a lot of useful DEBUG logging
 * asked for in other issues like https://github.com/gohugoio/hugo/issues/3514

This change addreses the need by:

 * adding a simple --debug flag which simply turns on debug level in stdout
   and logoutput if enabled.
2017-07-27 22:36:22 +02:00
Anthony Fok
c1a5da9777 vendor: Update dependencies for 0.26-DEV 2017-07-27 13:45:43 -06:00
Mathieu Cornic
bdb11b890b Fix typo 2017-07-27 21:19:17 +02:00
Vivace
8324af7038 Fixes broken link on Roadmap 2017-07-27 14:28:04 +02:00
Cameron Moore
d93f09926b functions: Add all missing binary comparison operators
Fixes #91
2017-07-27 00:20:02 +02:00
Farhan Attamimi
fb7ae80aa3 Fix typo in usage.md
Changes "most command commands" to "most common commands".
2017-07-26 14:10:31 +02:00
Anthony Fok
9ed48c1c9a Dockerfile: Run go install with -ldflags '-s -w'
This reduce the Docker image size from 27 MB to 20.5 MB.
2017-07-26 03:22:39 -06:00
Maik Ellerbrock
bfe0bfbbd1 Dockerfile: Reduce image size from 277MB to 27MB
"xtrem" awesome container size optimization
by using alpine:3.6 as base image
and by installing Go at build time.

See #3730 and #3738
2017-07-26 00:51:27 -06:00
Andrey S
fbdae08be4 Fix typo in content-management/taxonomies.md 2017-07-25 18:11:41 +02:00
Bjørn Erik Pedersen
66fab8d233 Make <title> less stuttery
Fixes https://github.com/gohugoio/gohugoioTheme/issues/58
2017-07-25 08:57:30 +02:00
Anthony Fok
b3cd4c2266 Remove old temp release notes 2017-07-24 16:35:12 -06:00
Andrey S
5589ba96c1 Fix typos in templates/lists.md 2017-07-24 19:53:50 +02:00
Bjørn Erik Pedersen
af3a0807e8 http > HTTP 2017-07-24 19:52:31 +02:00
Bjørn Erik Pedersen
b2af90ae96 Remove formatting in description of blog article 2017-07-24 19:50:59 +02:00
Bjørn Erik Pedersen
6e2e60a932 Add blog article about Netlify files 2017-07-24 19:43:43 +02:00
Bjørn Erik Pedersen
0bb6f2f28b Use title in archetype file 2017-07-24 18:43:56 +02:00
Bjørn Erik Pedersen
7b2490ff5c Get the Archetypes up to new spec 2017-07-24 18:33:00 +02:00
Bjørn Erik Pedersen
f401d69b49 Load CSS and JS via HTTP/2 server push
See https://www.netlify.com/blog/2017/07/18/http/2-server-push-on-netlify/

```
▶ nghttp -ans https://deploy-preview-83--gohugoio.netlify.com/
***** Statistics *****

Request timing:
  responseEnd: the  time  when  last  byte of  response  was  received
               relative to connectEnd
 requestStart: the time  just before  first byte  of request  was sent
               relative  to connectEnd.   If  '*' is  shown, this  was
               pushed by server.
      process: responseEnd - requestStart
         code: HTTP status code
         size: number  of  bytes  received as  response  body  without
               inflation.
          URI: request URI

see http://www.w3.org/TR/resource-timing/#processing-model

sorted by 'complete'

id  responseEnd requestStart  process code size request path
 13   +199.52ms      +1.22ms 198.30ms  200  42K /
  4   +404.60ms *   +69.97ms 334.62ms  200 102K /dist/main.css
  2   +484.93ms *   +69.63ms 415.30ms  200 131K /dist/app.bundle.js
```

Compare that to the live site:

```
▶ nghttp -ans https://gohugo.io/
***** Statistics *****

Request timing:
  responseEnd: the  time  when  last  byte of  response  was  received
               relative to connectEnd
 requestStart: the time  just before  first byte  of request  was sent
               relative  to connectEnd.   If  '*' is  shown, this  was
               pushed by server.
      process: responseEnd - requestStart
         code: HTTP status code
         size: number  of  bytes  received as  response  body  without
               inflation.
          URI: request URI

see http://www.w3.org/TR/resource-timing/#processing-model

sorted by 'complete'

id  responseEnd requestStart  process code size request path
 13   +596.97ms      +2.54ms 594.43ms  200  42K /
 15   +606.87ms    +403.50ms 203.37ms  200  15K /files/muli-latin-200.woff2
 2`1   +790.39ms    +403.51ms 386.88ms  200  20K /dist/main.css
 23      +1.14s    +596.00ms 544.48ms  200  42K /dist/app.bundle.js
 19      +1.14s    +403.50ms 737.99ms  200  15K /files/muli-latin-800.woff2
 17      +1.14s    +403.50ms 738.01ms  200  15K /files/muli-latin-400.woff2
```
2017-07-24 18:05:24 +02:00
Bjørn Erik Pedersen
4aef494434 Adjust titles 2017-07-24 08:30:02 +02:00
Michael Henderson
362acdb26b Fix typo in quickstart
Change "relase" to "release"

See #80
2017-07-23 18:17:17 -06:00
Ryan Watters
c24405600d Remove inline icons from installation guide
Fixes #78
2017-07-24 01:00:19 +02:00
Bjørn Erik Pedersen
d2edcbc32d Revert "Fix links to Disqus template documentation"
This reverts commit 93e08e1956b5293b3005bbfe04ed2b304529a222.
2017-07-23 23:58:17 +02:00
Bjørn Erik Pedersen
622f49cf8e Add a full commands section at the quick start end 2017-07-23 23:52:28 +02:00
Bjørn Erik Pedersen
752f065bfa Fix server command in README 2017-07-23 23:20:37 +02:00
Tom Bennet
93e08e1956 Fix links to Disqus template documentation
Links were pointing at the Partials page - more useful to link directly to the Disqus section of Internal Templates page
2017-07-23 22:39:50 +02:00
Bjørn Erik Pedersen
5e0cfaa92b Adjust Linux install 2017-07-23 21:24:55 +02:00
Maik Ellerbrock
606d6a8c91 Dockerfile: Optimize Docker image size
Reduce Docker image size from 428 MB to 277 MB.

See #3674
2017-07-23 12:30:18 -06:00
Bjørn Erik Pedersen
d51397c2fe Fix broken link in Quick Start
Fixes #3729
2017-07-23 20:20:12 +02:00
Bjørn Erik Pedersen
1fb39846c8 Add /quickstart alias to quickstart 2017-07-23 18:45:48 +02:00
Bjørn Erik Pedersen
7440616b1b Add new and simpler quickstart
Fixes #75
2017-07-23 18:43:20 +02:00
digitalcraftsman
b3ec698681 Let page title correspond to function name replaceRE 2017-07-23 10:39:03 +02:00
digitalcraftsman
b44499c920 Add YouTube tutorial about taxonomies 2017-07-22 19:08:37 +02:00
Bjørn Erik Pedersen
88b9eb0ed9 Add RSS templates example 2017-07-22 15:10:56 +02:00
Bjørn Erik Pedersen
12e0495203 docs: Add RSS template lookup example 2017-07-22 15:05:43 +02:00
zuriar
6c0bde3f88 Update slice.md
Change word "alice" to "slice" in description
2017-07-22 09:27:20 +02:00
Jeremiah Valenzuela
6c212ea611 Reorder to match the following content order 2017-07-22 09:23:23 +02:00
Pieter
d212299277 Complete "content" spelling under theme components 2017-07-21 16:50:51 +02:00
Jake Howard
6cd33f6953 tpl: Use hash for cache key
Use a hash for the cache key, to fix 'file name too long' errors when retreiving from long urls

Fixes #3690
2017-07-21 13:10:11 +02:00
Bjørn Erik Pedersen
dbe63970e0 hugolib: Support reflinks starting with a slash
Fixes #3703
2017-07-21 13:08:32 +02:00
Bjørn Erik Pedersen
e4824eb3fe Fix the output shortcode and its usage
Passing the shortcode into the Markdown processor just to get pre and code tags does not make much sense.
2017-07-21 13:06:11 +02:00
Bjørn Erik Pedersen
0adfc94526 Add archetypes YouTube video 2017-07-21 12:58:48 +02:00
Anthony Fok
0c90e6d710 Change "hugodocs" to "hugoDocs" to match GitHub's default URL 2017-07-21 03:36:44 -06:00
YAJIE
638e9d9bb6 Fix double "your" typo in taxonomies.md
See gohugoio/hugoDocs#71
2017-07-21 03:15:06 -06:00
Vasyl Solovei
b60aa1a504 helpers: Add --trace to asciidoctor args
This will help to understand and fix errors by
seeing stacktrace of an error.

See #3714
2017-07-21 03:07:56 -06:00
Bjørn Erik Pedersen
ff433f9813 Add script to pull in docs changes 2017-07-21 11:01:13 +02:00