Bjørn Erik Pedersen [Sun, 23 Aug 2015 13:14:48 +0000 (15:14 +0200)]
Polish 0.15 release notes
Bjørn Erik Pedersen [Sun, 23 Aug 2015 12:20:14 +0000 (14:20 +0200)]
Add first draft of Hugo 0.15 Release Notes
Tatsushi Demachi [Sun, 16 Aug 2015 03:30:22 +0000 (12:30 +0900)]
Use LazyFileReader for reading file contents
Simple ioutil.ReadFile is used for reading file contents but it reads
all of the file contents and copies them into the memory and is run in a
single goroutine. It causes much memory consumption at copying media
files in content directory to publish directory and it is not good at
performance.
This improves the both issue by replacing ReadFile with LazyFileReader.
It postpones reading the file contents until it is really needed. As the
result, actual file read is run in parallelized goroutine. It improves
performance especially in a really big site.
In addition, if this reader is called from io.Copy, it does not copy the
file contents into the memory but just copies them into destination
file. It improves much memory consumption issue when the site has many
media files.
Fix #1181
Tatsushi Demachi [Sat, 15 Aug 2015 15:06:39 +0000 (00:06 +0900)]
Add LazyFileReader type to source library
LazyFileReader is an io.Reader implementation to postpone reading the
file contents until it is really needed. It is introduced for improving
performance and memory consumption at reading media files in content
directory.
Bjørn Erik Pedersen [Fri, 21 Aug 2015 07:17:53 +0000 (09:17 +0200)]
Update Travis for Go 1.5
Andrew Carter [Thu, 20 Aug 2015 20:48:42 +0000 (13:48 -0700)]
Fix -ldflags for Go 1.5
Use correct form -X <name>=<value> for Go 1.5
Icaro Seara [Wed, 19 Aug 2015 01:59:34 +0000 (22:59 -0300)]
Fix typo, "delemiters" -> "delimiters"
Francois Lanthier Nadeau [Thu, 13 Aug 2015 18:00:33 +0000 (14:00 -0400)]
Update press.md
New article about Hugo on the Snipcart blog.
Anthony Fok [Wed, 19 Aug 2015 06:36:22 +0000 (00:36 -0600)]
Search current directory for config file by default
As of 2015-08-16, Viper no longer searches the CWD
for config file by default to avoid unintended surprises,
but Hugo relies on the original behaviour.
Fixed by calling
viper.AddConfigPath(".")
at the appropriate place.
See https://github.com/spf13/viper/issues/73 for more information.
Fixes #1363
Bjørn Erik Pedersen [Sat, 15 Aug 2015 13:47:16 +0000 (15:47 +0200)]
Use cast.ToIntE for int conversions in substr and slicestr
It is less restrictive, and it is what is used in other template funcs.
Benny Wu [Fri, 14 Aug 2015 08:36:56 +0000 (15:36 +0700)]
Slicestr fix for other int type param
Fixes #1347
Benny Wu [Tue, 11 Aug 2015 02:33:13 +0000 (09:33 +0700)]
Documentation update on Template Where Function for nil
Anthony Fok [Mon, 10 Aug 2015 00:49:54 +0000 (18:49 -0600)]
Implement `hugo --theme=[Tab][Tab]` bash completion
using the new BashCompSubdirsInDir annotation in spf13/cobra.
Anthony Fok [Thu, 6 Aug 2015 21:38:25 +0000 (15:38 -0600)]
Print feedback for `hugo genautocomplete`
Anthony Fok [Sat, 8 Aug 2015 04:26:28 +0000 (22:26 -0600)]
Print feedback for `hugo gendoc`
Anthony Fok [Sat, 8 Aug 2015 04:50:36 +0000 (22:50 -0600)]
Use spf13/pflag's new SetAnnotation helper
And make our bash completion code more compact.
Michael Diamond [Thu, 6 Aug 2015 05:39:49 +0000 (01:39 -0400)]
Added sitemap configuration documentation.
Michael Diamond [Thu, 6 Aug 2015 05:21:18 +0000 (01:21 -0400)]
Added mention of .Data.Pages, removed duplicate .Site.Pages mention.
Anthony Fok [Sat, 8 Aug 2015 20:48:01 +0000 (14:48 -0600)]
docs: Remove minodisk's dsk.mn/ from Showcase
The domain dsk.mn expired in January 2015,
and unfortunately I was unable to reach the author
nor find his replacement website.
Anthony Fok [Sat, 8 Aug 2015 20:22:48 +0000 (14:22 -0600)]
docs: Clean up and align Showcase thumbnail images
Some of the thumbnails in Showcase were out of place
because of several irregularly sized thumbnails,
and some of them almost 300KB in filesize.
Resize them all to 600x400 (pixels), and use the `-tn.png`
suffix.
When necessary, the website snapshot is re-captured using
gnome-web-photo. Then, the following commands (or a combination
thereof) are used to crop and resize the image into a thumbnail,
and to reduce its filesize:
$ convert example.png -crop 900x600+0+0 \
-filter Lanczos2Sharp -distort Resize 600x400 \
example-tn.png
$ pngquant --nofs -v --speed 1 --quality 65-80 example-tn.png
$ optipng -o7 -zm1-9 example-tn-or8.png
$ mv example-tn-or8.png example-tn.png
Anthony Fok [Sat, 8 Aug 2015 07:41:18 +0000 (01:41 -0600)]
docs: Add site title; set pluralizeListTitles = false
To prevent "Showcase" from becoming "Showcases",
also to have the RSS feed display correct titles,
i.e. "Showcase on gohugo.io" rather than "Showcase on ".
Bruno Calheira [Thu, 6 Aug 2015 00:06:53 +0000 (21:06 -0300)]
Add Arqueart to Showcase
Bruno Calheira [Wed, 5 Aug 2015 23:51:33 +0000 (20:51 -0300)]
Create arqueart.md
Anthony Fok [Sat, 8 Aug 2015 05:30:11 +0000 (23:30 -0600)]
docs: More detailed explanation of .Site.LastChange
Austin Dizzy [Mon, 3 Aug 2015 04:01:52 +0000 (00:01 -0400)]
Removed extra .Site.LastChange listing
Baptiste Mathus [Sat, 1 Aug 2015 21:50:39 +0000 (23:50 +0200)]
Doc for other supported formats (external helpers)
As Hugo now supports more formats thanks to the new "external helpers"
feature recently introduced, and as requested by some people, I added
some lines in the doc:
* basically confirming it actually exists
* how to use it
Bjørn Erik Pedersen [Fri, 7 Aug 2015 18:30:01 +0000 (20:30 +0200)]
Reset Scratch for 404
The 404 pages etc. need a better solution, but fix this issue for now.
Fixes #1336
Bjørn Erik Pedersen [Fri, 7 Aug 2015 18:09:40 +0000 (20:09 +0200)]
Revert "Fix some Go code doc issues"
This reverts commit
de7dd70bbc1ac533f137e5f788e1b337d6ba6b8c.
Broke the code fence feat.
Bjørn Erik Pedersen [Fri, 7 Aug 2015 18:08:23 +0000 (20:08 +0200)]
Avoid panic in shortcode param handling
Fixes #1337
Bjørn Erik Pedersen [Fri, 7 Aug 2015 17:21:26 +0000 (19:21 +0200)]
Do not panic on index out of range in shortcode.Get
Fixes #1335
Bjørn Erik Pedersen [Fri, 7 Aug 2015 12:55:53 +0000 (14:55 +0200)]
Also rename readDir in docs shortcode
Bjørn Erik Pedersen [Fri, 7 Aug 2015 12:33:48 +0000 (14:33 +0200)]
Rename ReadDir to readDir
To make it consistent with the other template funcs.
Tatsushi Demachi [Fri, 7 Aug 2015 11:05:18 +0000 (20:05 +0900)]
Make sort tpl func accept field/key chaining arg
'sort' template function used to accept only each element's struct field
name, method name and map key name as its second argument. This extends
it to accept a field/method/key chaining key string like
'Params.foo.bar' as the argument. It evaluates sub elements of each
array or map elements and sorts by them.
Typical use case would be sorting pages by user defined front matter
value. For example, sorting pages by 'Params.foo.bar' is possible by
writing the following template code
{{ range sort .Data.Pages "Params.foo.bar" }}
{{ .Content }}
{{ end }}
It ignores all leading and trailing dots so "Params.foo.bar" can be
written in ".Params.foo.bar"
This also fixes the issue that 'sort' cannot evaluate a pointer value.
Fix #1330
Tatsushi Demachi [Thu, 6 Aug 2015 17:27:15 +0000 (02:27 +0900)]
Fix sort tpl func to return explicit type value
sort template function returns `[]interface{}` type slice value
regardless of its original element type.
This fixes it to keep the original element type. For example, if it
sorts `map[string]int` type value, it returns `[]int` slice value
instead of `[]interface{}` slice value.
Bjørn Erik Pedersen [Fri, 7 Aug 2015 06:52:22 +0000 (08:52 +0200)]
Fix Unicode issue in Slicestr and Substr
Fixes #1333
Bjørn Erik Pedersen [Thu, 6 Aug 2015 20:58:10 +0000 (22:58 +0200)]
Fix some Go code doc issues
Bjørn Erik Pedersen [Thu, 6 Aug 2015 20:46:01 +0000 (22:46 +0200)]
Add missing formatting directive in Printf call
To make Go Vet happy.
Anthony Fok [Wed, 5 Aug 2015 22:24:03 +0000 (16:24 -0600)]
docs: Extend documentation on Blackfriday options
Especially to spell out how the `latexDashes` flag
changes the behavior of smart dashes
Bjørn Erik Pedersen [Wed, 5 Aug 2015 16:55:25 +0000 (18:55 +0200)]
Add some float tests to TestArethmic
Anthony Fok [Tue, 4 Aug 2015 19:05:48 +0000 (13:05 -0600)]
Add option to disable Blackfriday Smartypants
Can be used in site config or per page front matter:
```
[blackfriday]
smartypants = false
```
Anthony Fok [Tue, 4 Aug 2015 19:01:25 +0000 (13:01 -0600)]
docs: Fix typos
Anthony Fok [Tue, 4 Aug 2015 18:34:47 +0000 (12:34 -0600)]
docs: Bolden the blackfriday flags to make them stand out
And other minor HTML/CSS tweaks.
Anthony Fok [Tue, 4 Aug 2015 18:00:08 +0000 (12:00 -0600)]
doc: Strip trailing whitespace; other revisions
Make some random and non-comprehensive changes to the
template functions documentation to make them more
consistent.
Anthony Fok [Tue, 4 Aug 2015 17:59:32 +0000 (11:59 -0600)]
Strip trailing whitespace in code
Anthony Fok [Tue, 4 Aug 2015 09:15:12 +0000 (03:15 -0600)]
Improve formatting of Hugo command descriptions
Trying to make them look good both in the terminal (`hugo help [command]`)
and in the web browser (http://gohugo.io/commands/). :-)
Anthony Fok [Tue, 4 Aug 2015 08:59:57 +0000 (02:59 -0600)]
Bump `hugo new theme` template min_version to 0.14
Tatsushi Demachi [Mon, 3 Aug 2015 14:32:51 +0000 (23:32 +0900)]
Fix searching YAML/TOML delimiters in frontmatter
When a YAML/TOML's delimiter character sequence is included in a
frontmatter string, parser mistakes it as a delimiter. This fixes it by
checking a character right before the delimiter sequence is '\n' or it
is the beginning of the frontmatter.
Fix #1320
Marek Janda [Sun, 2 Aug 2015 05:00:43 +0000 (07:00 +0200)]
Add map support to scratch
Jeff Hodges [Sun, 2 Aug 2015 05:24:22 +0000 (22:24 -0700)]
Trim trailing spaces from YAML and TOML delimiters
When someone hits space after typing "---" (or "+++") but before they
hit return, hugo silently failed to parse the file. This corrects that.
Anthony Fok [Sat, 1 Aug 2015 17:38:58 +0000 (11:38 -0600)]
[Docs] Add <br> to an extra-long title in the Press page
Bjørn Erik Pedersen [Fri, 31 Jul 2015 11:43:45 +0000 (13:43 +0200)]
docs: add netlify article to press section
Anthony Fok [Thu, 30 Jul 2015 07:17:10 +0000 (01:17 -0600)]
Remove deprecated fields and methods for v0.15
Special thanks to @bep for his guidance and
for making sure all of the Hugo themes get updated.
Fixes #1172
Baptiste Mathus [Wed, 29 Jul 2015 14:11:59 +0000 (16:11 +0200)]
Asciidoc[tor]: use --no-header-footer option
This simplifies the retrieval of the HTML (no more need to extract the
part within body) and also removes the unwanted "Last Updated" part in
the article.
Bjørn Erik Pedersen [Tue, 28 Jul 2015 23:19:29 +0000 (01:19 +0200)]
Always use the template provided in page.Render
Fixes #1306
Bjørn Erik Pedersen [Sun, 26 Jul 2015 13:28:56 +0000 (15:28 +0200)]
Fix inconsistent front matter handling
Fixes #768
Russell Oliver [Fri, 26 Jun 2015 10:23:37 +0000 (20:23 +1000)]
Add ReadDir function to list local files.
Includes documentation.
Scott C Wilson [Sat, 18 Jul 2015 13:14:39 +0000 (09:14 -0400)]
Ignore non-presence of "layouts" directory in watch logic
Fixes #691
Ryan Clarke [Tue, 2 Jun 2015 00:29:29 +0000 (20:29 -0400)]
Fix periods in taxonomies create bad paths
Fixes #1188
Bjørn Erik Pedersen [Sat, 25 Jul 2015 15:38:13 +0000 (17:38 +0200)]
Replace strings.Compare
Which is a Go 1.5 func.
See #1299
Bjørn Erik Pedersen [Sat, 25 Jul 2015 15:22:19 +0000 (17:22 +0200)]
Fix sort test and title sort
See #1299
Bjørn Erik Pedersen [Sat, 25 Jul 2015 14:34:35 +0000 (16:34 +0200)]
Fall back to link title for default page sort
Fixes #1299
Sam Debruyn [Mon, 13 Jul 2015 20:22:27 +0000 (22:22 +0200)]
The guide is updated to fit the current Wercker interface and configurations.
Wercker changed its interface and default infrastructure (Docker).
Bjørn Erik Pedersen [Fri, 24 Jul 2015 09:41:45 +0000 (11:41 +0200)]
Remove point 7 in contributors guide
It makes sense on its own, but it contradicts 6). We need to revisit this one to make it more clear/better.
Scott C Wilson [Mon, 13 Jul 2015 09:41:46 +0000 (05:41 -0400)]
Make small fixes to README file
- Add a step to Contributor instructions for those modifying commands
- Change forum link to http (https does not work)
- Add "Sign the forum release thread" to contributor instructions
Bjørn Erik Pedersen [Fri, 24 Jul 2015 09:31:26 +0000 (11:31 +0200)]
docs: fix prev in highlightling
Szymon Katra [Fri, 10 Jul 2015 14:27:39 +0000 (16:27 +0200)]
Added szymonkatra.github.io site to showcase
Scott C Wilson [Mon, 20 Jul 2015 22:29:36 +0000 (18:29 -0400)]
Fix links to Ace and Amber pages
Scott C Wilson [Tue, 21 Jul 2015 10:06:14 +0000 (06:06 -0400)]
Add scottcwilson.github.io to showcase site
Bjørn Erik Pedersen [Thu, 23 Jul 2015 22:28:21 +0000 (00:28 +0200)]
Move apply before cache put
It just looks better.
See #1293
Bjørn Erik Pedersen [Thu, 23 Jul 2015 10:54:58 +0000 (12:54 +0200)]
docs: Rename dynamic content to data-driven content
Fixes #925
Bjørn Erik Pedersen [Mon, 20 Jul 2015 23:29:22 +0000 (01:29 +0200)]
Fix data races in sorting and Reverse
The custom sort functions used from the templates had some subtle data race- and related issues,
especially when used in the single page template.
This commit fixes this by making copies and protect the read and writes with a RWMutex.
The results are cached (it will typically be invoked *number of pages* times with exactly the same data).
This is, not surprisingly, also faster:
```
benchmark old ns/op new ns/op delta
BenchmarkSortByWeightAndReverse 14228 491 -96.55%
benchmark old allocs new allocs delta
BenchmarkSortByWeightAndReverse 1 0 -100.00%
benchmark old bytes new bytes delta
BenchmarkSortByWeightAndReverse 32 0 -100.00%
```
Fixes #1293
Bjørn Erik Pedersen [Tue, 21 Jul 2015 19:12:03 +0000 (21:12 +0200)]
Fix broken test
Bjørn Erik Pedersen [Tue, 21 Jul 2015 19:01:56 +0000 (21:01 +0200)]
Add benchmark for sort and reverse
Bjørn Erik Pedersen [Tue, 21 Jul 2015 18:02:42 +0000 (20:02 +0200)]
source/File: Fix data races
Scott C Wilson [Mon, 20 Jul 2015 12:49:18 +0000 (08:49 -0400)]
Document Amber templates
Fixes #1064
Scott C Wilson [Mon, 20 Jul 2015 01:02:03 +0000 (21:02 -0400)]
On error, return error message, not nil
Scott C Wilson [Sat, 18 Jul 2015 00:42:09 +0000 (20:42 -0400)]
Add a check for the setting of watch flag in config file
Fixes #1074
Tatsushi Demachi [Mon, 20 Jul 2015 00:07:55 +0000 (09:07 +0900)]
Let Amber template call Hugo's custom functions
Amber doesn't share text/template `FuncMap` functions and has its own
function list. This allows Amber to call Hugo's custom functions.
Bjørn Erik Pedersen [Sun, 19 Jul 2015 18:12:05 +0000 (20:12 +0200)]
Fix name logic for Amber templates
Christopher Eliot [Tue, 14 Jul 2015 13:36:39 +0000 (09:36 -0400)]
Fix link to front matter
added leading backslash, changing [front matter](content/front-matter) to [front matter](/content/front-matter)
Clam- [Fri, 17 Jul 2015 13:29:58 +0000 (23:29 +1000)]
Fix unclear RSS template docs
The documentation for the RSS templating is a little unclear.
http://gohugo.io/templates/rss/
Some users may attempt to look for a ```__internal``` directory rather than assume that's the aforementioned "Hugo own template."
Here's my suggestion.
digitalcraftsman [Sat, 18 Jul 2015 10:23:52 +0000 (12:23 +0200)]
Add mention about .Hugo.Generator in 'Creating a theme' section
Edward Vielmetti [Thu, 16 Jul 2015 11:47:35 +0000 (07:47 -0400)]
Fix typo: "taxononomy" -> "taxonomy"
Bjørn Erik Pedersen [Thu, 16 Jul 2015 11:17:54 +0000 (13:17 +0200)]
Add paginator support for page groups
Fixed #1274
Valere JEANTET [Mon, 13 Jul 2015 20:07:04 +0000 (22:07 +0200)]
fix TestHomeNodeMenu test
Signed-off-by: Valere JEANTET <valere.jeantet@gmail.com>
Valere JEANTET [Thu, 25 Jun 2015 10:26:48 +0000 (12:26 +0200)]
Allow page.HasMenuCurrent() and node.HasMenuCurrent() to proceed with multi-level nested menus
Currently HasMenuCurrent only process the first 2 levels.
Bjørn Erik Pedersen [Mon, 13 Jul 2015 08:38:28 +0000 (10:38 +0200)]
Log missing theme as FATAL
See #1234
Scott C Wilson [Sun, 12 Jul 2015 17:25:43 +0000 (13:25 -0400)]
Checks to ensure theme directory, if specified, exists
See #1234
Bjørn Erik Pedersen [Sun, 12 Jul 2015 17:27:29 +0000 (19:27 +0200)]
Fix log message in test
Bjørn Erik Pedersen [Sun, 12 Jul 2015 09:28:19 +0000 (11:28 +0200)]
Optimize RuneCount
Do not create it unless used.
See #1266
Bjørn Erik Pedersen [Sun, 12 Jul 2015 09:05:37 +0000 (11:05 +0200)]
Add RuneCount to Page
Fixes #1266
Éli Marshal [Fri, 10 Jul 2015 22:53:03 +0000 (16:53 -0600)]
Omit protocol from embedded font resources
Fixes the mixed content errors and loads fonts when accessing
https://gohugo.io/
Arian Allenson M. Valdez [Thu, 9 Jul 2015 08:59:00 +0000 (16:59 +0800)]
Change arianv sourceLink to master branch
Arian Allenson M. Valdez [Thu, 9 Jul 2015 03:17:35 +0000 (11:17 +0800)]
Add learnoverpass
Arian Allenson M. Valdez [Thu, 9 Jul 2015 03:17:29 +0000 (11:17 +0800)]
Add arianv
Sam Debruyn [Wed, 8 Jul 2015 12:12:09 +0000 (14:12 +0200)]
add a showcase of sa.muel.be
Borys Borysenko [Wed, 8 Jul 2015 10:57:49 +0000 (13:57 +0300)]
[Docs] Press page. Fix URL
Andrew Brampton [Fri, 3 Jul 2015 21:53:50 +0000 (14:53 -0700)]
Add support for GitHub-flavoured markdown code fences for highlighting
This commit adds a new PygmentsCodeFences config option (default false), which if true will allow GitHub style backtick code fences around code, which will then be rendered by Pygments.
For example:
``` language
your code
```
can be used instead of {{< highlight language >}}your code {{< /highlight >}}.
Fixes #362
Andrew Brampton [Fri, 3 Jul 2015 21:51:43 +0000 (14:51 -0700)]
If no language is provided to Pygments, then try and guess it
Previously if no language was specified, then illegal args would be passed to pygments, for example `pygments -l -fhtml`, which would result in pygments printing an error.
kangkona [Sun, 5 Jul 2015 11:13:42 +0000 (19:13 +0800)]
Add a showcase of Kangkona