Bjørn Erik Pedersen [Wed, 23 Nov 2016 08:17:47 +0000 (09:17 +0100)]
tpl: Fix spelling in test
bogem [Mon, 21 Nov 2016 22:04:59 +0000 (23:04 +0100)]
tpl: Drop an else block in checkCondition
Fix golint warning: tpl/template_funcs.go:853:10: if block ends with a
return statement, so drop this else and outdent its block
See #2014
bogem [Mon, 21 Nov 2016 22:02:52 +0000 (23:02 +0100)]
hugolib: Omit type from declaration of var lang
Fix golint warning: hugolib/site.go:922:13: should omit type
*helpers.Language from declaration of var lang; it will be inferred from
the right-hand side
See #2014
bogem [Mon, 21 Nov 2016 22:02:19 +0000 (23:02 +0100)]
hugolib: Camelcase ALL_CAPS vars and const in tests
See #2014
bogem [Mon, 21 Nov 2016 22:01:42 +0000 (23:01 +0100)]
hugolib, source, tpl: Fix docs
See #2014
bogem [Mon, 21 Nov 2016 22:00:44 +0000 (23:00 +0100)]
helpers: Rename WalkRootTooShortError to ErrWalkRootTooShort
Fix golint warning: helpers/path.go:473:5: error var
WalkRootTooShortError should have name of the form ErrFoo
See #2014
bogem [Mon, 21 Nov 2016 21:59:33 +0000 (22:59 +0100)]
helpers: Add documentation to some Language methods
See #2014
bogem [Mon, 21 Nov 2016 21:57:38 +0000 (22:57 +0100)]
helpers: Use iterate operator by int in Emojify
Fix golint warning: helpers/emoji.go:56:4: should replace start += 1
with start++
See #2014
bogem [Fri, 18 Nov 2016 22:21:45 +0000 (23:21 +0100)]
commands, hugolib: Unify case of config variable names
bogem [Fri, 18 Nov 2016 21:54:57 +0000 (22:54 +0100)]
commands, hugolib, parser, tpl: Use errors.New instead of fmt.Errorf
bogem [Fri, 18 Nov 2016 21:38:41 +0000 (22:38 +0100)]
commands, hugolib, source, target, tpl: Get rid of some fmt statements
bogem [Tue, 22 Nov 2016 17:47:20 +0000 (18:47 +0100)]
all: Use jww instead of fmt for printing
This is an attempt to unify method for printing.
Bjørn Erik Pedersen [Mon, 24 Oct 2016 20:29:48 +0000 (22:29 +0200)]
Fix case issues with Params
There are currently several Params and case related issues floating around in Hugo.
This is very confusing for users and one of the most common support questions on the forum.
And while there have been done some great leg work in Viper etc., this is of limited value since this and similar doesn't work:
`Params.myCamelCasedParam`
Hugo has control over all the template method invocations, and can take care of all the lower-casing of the map lookup keys.
But that doesn't help with direct template lookups of type `Site.Params.TWITTER_CONFIG.USER_ID`.
This commit solves that by doing some carefully crafted modifications of the templates' AST -- lowercasing the params keys.
This is low-level work, but it's not like the template API wil change -- and this is important enough to defend such "bit fiddling".
Tests are added for all the template engines: Go templates, Ace and Amber.
Fixes #2615
Fixes #1129
Fixes #2590
Bjørn Erik Pedersen [Mon, 21 Nov 2016 16:12:42 +0000 (17:12 +0100)]
docs: Add Pages to variables section
And some other minor doc fixes.
Closes #2297
Closes #2649
Bjørn Erik Pedersen [Mon, 21 Nov 2016 12:51:41 +0000 (13:51 +0100)]
node to page: Re-add translations sort of regular pages
Was removed by mistake.
Updates #2297
Bjørn Erik Pedersen [Mon, 21 Nov 2016 12:23:19 +0000 (13:23 +0100)]
docs: Add release notes about node to page
Updates #2297
Bjørn Erik Pedersen [Mon, 21 Nov 2016 12:02:02 +0000 (13:02 +0100)]
docs: Add sections on node now being a page
Updates #2297
Bjørn Erik Pedersen [Mon, 21 Nov 2016 09:35:57 +0000 (10:35 +0100)]
node to page: Fix site pages sort
Updates #2297
Bjørn Erik Pedersen [Mon, 21 Nov 2016 09:11:34 +0000 (10:11 +0100)]
node to page: Fixe index page translation issues
Updates #2297
Bjørn Erik Pedersen [Sun, 20 Nov 2016 22:00:57 +0000 (23:00 +0100)]
docs: Revise docs to reflect that Node is gone
Updates #2297
Bjørn Erik Pedersen [Sun, 20 Nov 2016 18:36:24 +0000 (19:36 +0100)]
docs: Make the tools content page a section page
Because it is the right solution and it the avoids naming conflict with section vs page.
Updates #2297
Bjørn Erik Pedersen [Sun, 20 Nov 2016 11:54:17 +0000 (12:54 +0100)]
node to page: Don't repeat the RSS title if it is the same
Updates #2297
Bjørn Erik Pedersen [Sun, 20 Nov 2016 11:21:19 +0000 (12:21 +0100)]
node to page: Temporary set RSS date to zero
Updates #2297
Bjørn Erik Pedersen [Sat, 19 Nov 2016 11:09:06 +0000 (12:09 +0100)]
node to page: Render aliases before pages
Some sites, Hugo docs included, have faulty alias definitions that point
to itself or another real page. These will be overwritten in the next step.
This is how it behaves in Hugo 0.17, too.
Updates #2297
Bjørn Erik Pedersen [Thu, 17 Nov 2016 16:08:31 +0000 (17:08 +0100)]
node to page: Need to append theme templates
Updates #2297
Bjørn Erik Pedersen [Thu, 17 Nov 2016 09:29:11 +0000 (10:29 +0100)]
node to page: Only return regular pages in home.Data.Pages
Returning all types is both confusing and too breaking.
All page types can be fetched in .Site.Pages.
Updates #2297
Bjørn Erik Pedersen [Wed, 16 Nov 2016 20:06:10 +0000 (21:06 +0100)]
node to page: Final TODO-fixes
Updates #2297
Bjørn Erik Pedersen [Wed, 16 Nov 2016 19:32:38 +0000 (20:32 +0100)]
node to page: Fix the Page copy()
By embeding the init sync.Once var in a pointer so we can reset it when we copy the page.
Updates #2297
Bjørn Erik Pedersen [Wed, 16 Nov 2016 16:52:03 +0000 (17:52 +0100)]
node to page: Misc. TODO-fixes
Updates #2297
Bjørn Erik Pedersen [Tue, 15 Nov 2016 09:43:49 +0000 (10:43 +0100)]
node to page: Handle URLs
This includes removing the error return value from Permalink and RelPermalink.
We ignore that error all over the place, so we might as well remove it.
Updates #2297
Bjørn Erik Pedersen [Sun, 13 Nov 2016 13:27:10 +0000 (14:27 +0100)]
node to page: Remove Node
And misc. TODO-fixes
Updates #2297
Bjørn Erik Pedersen [Sun, 13 Nov 2016 11:33:11 +0000 (12:33 +0100)]
node to page: Make Kind a string
Having a custom string type isn't worth it when it doesn't work
with `where`, `eq` etc.
Fixes #2689
Updates #2297
Bjørn Erik Pedersen [Sun, 13 Nov 2016 10:43:23 +0000 (11:43 +0100)]
node to page: Rename PageType to Kind
And embed that on Page.
Updates #2297
Bjørn Erik Pedersen [Sat, 12 Nov 2016 16:30:21 +0000 (17:30 +0100)]
node to page: Export GetPage to the templates
Updates #2297
Bjørn Erik Pedersen [Fri, 11 Nov 2016 10:35:55 +0000 (11:35 +0100)]
node to page: Handle Date and Lastmod
Updates #2297
Bjørn Erik Pedersen [Fri, 11 Nov 2016 08:19:16 +0000 (09:19 +0100)]
node to page: Add Pages to Page
As an alias to .Data.Pages for home page etc.
Also renamte NodeType to PageType and make it a string so it can be used in `where`.
Updates #2297
Bjørn Erik Pedersen [Fri, 11 Nov 2016 08:01:47 +0000 (09:01 +0100)]
node to page: Make Nodes into Pages
* `.Site.Pages` now contains all page types, including sections etc.
* `.Data.Pages` will also contain "node type" pages where relevant.
Updates #2297
Bjørn Erik Pedersen [Thu, 10 Nov 2016 19:55:52 +0000 (20:55 +0100)]
node to page: Refactor the build process
To make it easier to follow and understand.
Both building and rebuilding now follow a four step flow:
1. Init
2. Process
3. Assemble
4. Render
And now there are only one Build method, used for both builds and rebuilds.
Updates #2297
Bjørn Erik Pedersen [Thu, 10 Nov 2016 11:26:23 +0000 (12:26 +0100)]
node to page: Handle sections with only _index.md
Updates #2297
Bjørn Erik Pedersen [Thu, 10 Nov 2016 10:01:58 +0000 (11:01 +0100)]
node to page: Handle aliases on home page etc.
Updates #2297
Bjørn Erik Pedersen [Thu, 10 Nov 2016 09:53:12 +0000 (10:53 +0100)]
node to page: Handle menus on home page etc.
Updates #2297
Bjørn Erik Pedersen [Wed, 9 Nov 2016 19:55:42 +0000 (20:55 +0100)]
node to page: Handle taxonomies on home page etc.
Updates #2297
Bjørn Erik Pedersen [Wed, 9 Nov 2016 18:59:28 +0000 (19:59 +0100)]
node to page: Add all nodes to sitemap
Updates #2297
Fixes #1303
Bjørn Erik Pedersen [Wed, 9 Nov 2016 10:09:16 +0000 (11:09 +0100)]
node to page: Do not create section node for root
Because that will overwrite the home page, which is bad.
Updates #2297
Bjørn Erik Pedersen [Wed, 9 Nov 2016 08:58:18 +0000 (09:58 +0100)]
node to page: Get Rebuild up to speed
Updates #2297
Bjørn Erik Pedersen [Tue, 8 Nov 2016 23:19:37 +0000 (00:19 +0100)]
node to page: Fix home target path on Windows
Updates #2297
Bjørn Erik Pedersen [Tue, 8 Nov 2016 22:49:42 +0000 (23:49 +0100)]
node to page: Remove unused code
Updates #2297
Bjørn Erik Pedersen [Tue, 8 Nov 2016 22:34:52 +0000 (23:34 +0100)]
node to page: Handle aliases, 404, robots.txt, sitemap
Updates #2297
Bjørn Erik Pedersen [Mon, 7 Nov 2016 19:24:37 +0000 (20:24 +0100)]
node to page: Handle translations
Updates #2297
Bjørn Erik Pedersen [Thu, 3 Nov 2016 23:34:25 +0000 (00:34 +0100)]
node to page: Fix the page collections
Updates #2297
Bjørn Erik Pedersen [Thu, 3 Nov 2016 10:36:47 +0000 (11:36 +0100)]
node to page: Use _index as identificator for the list nodes
Updates #2297
Bjørn Erik Pedersen [Wed, 2 Nov 2016 20:34:19 +0000 (21:34 +0100)]
node to page: Handle RSS
Updates #2297
Bjørn Erik Pedersen [Tue, 1 Nov 2016 21:39:24 +0000 (22:39 +0100)]
node to page: Create pages for nodes without content
Updates #2297
Bjørn Erik Pedersen [Tue, 1 Nov 2016 15:47:15 +0000 (16:47 +0100)]
node to page: Handle taxonomy terms
Updates #2297
Bjørn Erik Pedersen [Mon, 31 Oct 2016 18:53:33 +0000 (19:53 +0100)]
node to page: Handle taxonomy lists
Updates #2297
Bjørn Erik Pedersen [Mon, 31 Oct 2016 17:03:02 +0000 (18:03 +0100)]
node to page: Handle sections
Updates #2297
Bjørn Erik Pedersen [Mon, 31 Oct 2016 09:23:01 +0000 (10:23 +0100)]
node to page: Handle home
With refactored paginator handling.
Updates #2297
Bjørn Erik Pedersen [Sun, 30 Oct 2016 16:59:24 +0000 (17:59 +0100)]
node to page: Basic outline
Updates #2297
Bjørn Erik Pedersen [Tue, 22 Nov 2016 08:42:11 +0000 (09:42 +0100)]
Revert "Fix case issues with Params"
This reverts commit
239c75c7f866e8970b794a9e7bac73de46052241.
There is a ininite loop in there somewhere on my site that needs to be resolved.
Bjørn Erik Pedersen [Tue, 22 Nov 2016 08:04:38 +0000 (09:04 +0100)]
Fix case issues with Params
There are currently several Params and case related issues floating around in Hugo.
This is very confusing for users and one of the most common support questions on the forum.
And while there have been done some great leg work in Viper etc., this is of limited value since this and similar doesn't work:
`Params.myCamelCasedParam`
Hugo has control over all the template method invocations, and can take care of all the lower-casing of the map lookup keys.
But that doesn't help with direct template lookups of type `Site.Params.TWITTER_CONFIG.USER_ID`.
This commit solves that by doing some carefully crafted modifications of the templates' AST -- lowercasing the params keys.
This is low-level work, but it's not like the template API wil change -- and this is important enough to defend such "bit fiddling".
Tests are added for all the template engines: Go templates, Ace and Amber.
Fixes #2615
Fixes #1129
Fixes #2590
Bjørn Erik Pedersen [Mon, 21 Nov 2016 23:37:10 +0000 (00:37 +0100)]
docs: Fix list template link
Bjørn Erik Pedersen [Sun, 20 Nov 2016 14:37:18 +0000 (15:37 +0100)]
docs: Add a simple list template
Fixes #2710
Bjørn Erik Pedersen [Sun, 20 Nov 2016 13:59:21 +0000 (14:59 +0100)]
hugolib: Don't write zero-bytes files to disk
Fixes #2709
Bjørn Erik Pedersen [Thu, 17 Nov 2016 07:18:55 +0000 (08:18 +0100)]
docs: Rename RSSlink to RSSLink
The former will be deprecated.
Albert Nigmatzianov [Fri, 18 Nov 2016 23:06:54 +0000 (00:06 +0100)]
commands: Make benchmark command more useful
* Add information about average time, memory consumption and
allocations.
* Fix situation, when user provides memprofile and cpuprofile, but
cpuprofile will not created.
Fixes #2432
balaramadurai [Thu, 17 Nov 2016 07:16:14 +0000 (12:46 +0530)]
docs: Add balaramadurai.net to the showcase
Bjørn Erik Pedersen [Wed, 16 Nov 2016 12:28:21 +0000 (13:28 +0100)]
vendor: Update deps
Tristan Rice [Wed, 16 Nov 2016 12:00:45 +0000 (04:00 -0800)]
tpl: Add imageConfig function
Add imageConfig function which calls image.DecodeConfig and returns the height, width and color mode of the image. (#2677)
This allows for more advanced image shortcodes and templates such as those required by AMP.
layouts/shortcodes/amp-img.html
```
{{ $src := .Get "src" }}
{{ $config := imageConfig (printf "/static/%s" $src) }}
<amp-img src="{{$src}}"
height="{{$config.Height}}"
width="{{$config.Width}}"
layout="responsive">
</amp-img>
```
Albert Nigmatzianov [Tue, 15 Nov 2016 20:22:43 +0000 (21:22 +0100)]
source, tpl: Fix staticcheck complaints
tpl/template_funcs.go:1019:3: the surrounding loop is unconditionally terminated
source/lazy_file_reader.go:66:5: err != nil is always true for all possible
values ([nil:error] != [nil:error])
Rafael Monteiro [Sat, 12 Nov 2016 22:47:07 +0000 (20:47 -0200)]
docs: Fix typos in extras/scratch.md
Bjørn Erik Pedersen [Mon, 7 Nov 2016 20:16:55 +0000 (21:16 +0100)]
hugolib: Must update PathSpec on SiteInfo per language
Albert Nigmatzianov [Sun, 6 Nov 2016 23:10:32 +0000 (00:10 +0100)]
commands, tpl: Get rid of repeating viper accesses
* all: Delete some blank lines
* commands, tpl: Get rid of repeating viper accesses
Bjørn Erik Pedersen [Sun, 6 Nov 2016 14:38:52 +0000 (15:38 +0100)]
hugolib: Fix page sorting when weight is zero
Fixes #2673
Ahmed Zetao Yang [Mon, 17 Oct 2016 03:09:37 +0000 (11:09 +0800)]
docs: Add article by Zetao Yang
JoeArizona [Tue, 19 Jul 2016 03:43:58 +0000 (20:43 -0700)]
docs: Compress Hugo logo (hugo.png)
Bjørn Erik Pedersen [Sat, 5 Nov 2016 16:27:40 +0000 (17:27 +0100)]
tpl: Golint fixes
Bjørn Erik Pedersen [Sat, 5 Nov 2016 16:05:33 +0000 (17:05 +0100)]
helpers: Golint fixes
Bjørn Erik Pedersen [Sat, 5 Nov 2016 16:05:18 +0000 (17:05 +0100)]
hugolib: Simplify range
digitalcraftsman [Fri, 4 Nov 2016 19:18:01 +0000 (20:18 +0100)]
docs: Update roadmap
Closes #2666
digitalcraftsman [Fri, 4 Nov 2016 18:37:41 +0000 (19:37 +0100)]
Enhance commit message guidelines
digitalcraftsman [Fri, 4 Nov 2016 16:28:27 +0000 (17:28 +0100)]
docs: Link latest change as commit in the footer
Adrien Poupin [Tue, 1 Nov 2016 22:04:12 +0000 (23:04 +0100)]
doc: Add a "Deployment with rsync" tutorial page
This is kind of a generic process and not so difficult. It seems important to me that it should be documented.
Bjørn Erik Pedersen [Thu, 3 Nov 2016 23:44:49 +0000 (00:44 +0100)]
transform: Return any read or write error from Apply
Albert Nigmatzianov [Thu, 3 Nov 2016 10:33:53 +0000 (11:33 +0100)]
commands: Move initialization of flags in separate function
And clean up flag variables.
Bjørn Erik Pedersen [Wed, 2 Nov 2016 18:11:05 +0000 (19:11 +0100)]
docs: Remove non-showcase Hugo sites
I.e. sites with no mention of Hugo or hugo etc. in the HTML source.
Fixes #2655
Bjørn Erik Pedersen [Tue, 1 Nov 2016 22:04:12 +0000 (23:04 +0100)]
Add GitInfo
This commit adds a `GitInfo` object to `Page` if `EnableGitInfo` is set.
It then also sets `Lastmod` for the given `Page` to the author date provided by Git.
The Git integrations should be fairly performant, but it adds "some time" to the build, somewhat depending on the Git history size.
If you want, you can run without during development and turn it on when deploying to the live server: `hugo --enableGitInfo`.
Fixes #2102
Prashant Karmakar [Tue, 1 Nov 2016 13:18:24 +0000 (18:48 +0530)]
Fix page names that contain dot
changes:
- in hugolib/page.go, `func permalink` and `func TargetPath`
Fixed the attempt to *replace* the extension of something
that was *already* a basename.
- in source/file.go, `func NewFile`
added check for allowed languages before translating filename
Fixes #2555
Bjørn Erik Pedersen [Mon, 31 Oct 2016 21:32:53 +0000 (22:32 +0100)]
Revert "docs: Add bullion-investor.com to the showcase gallery"
No hugo generator tag, probably not a Hugo a site, certainly not a showcase.
This reverts commit
b5bc74ca4609ce8cf77633c0f93fddc46814a35a.
ITSecMedia [Fri, 28 Oct 2016 09:21:58 +0000 (11:21 +0200)]
docs: Add bullion-investor.com to the showcase gallery
digitalcraftsman [Sat, 29 Oct 2016 12:02:14 +0000 (14:02 +0200)]
docs: Add two articles written by Hash Borgir
Bjørn Erik Pedersen [Fri, 28 Oct 2016 12:46:33 +0000 (14:46 +0200)]
Fix RSS Title regression
And add tests to make sure it doesn't happen again.
Fixes #2645
Bjørn Erik Pedersen [Fri, 28 Oct 2016 08:35:19 +0000 (10:35 +0200)]
Make it clear that Path is relative to content root
Fixes #2290
Bjørn Erik Pedersen [Fri, 28 Oct 2016 07:34:47 +0000 (09:34 +0200)]
Refactor Page tests
* To handle config in one place
* To use the real builder chain
Bjørn Erik Pedersen [Thu, 27 Oct 2016 19:43:43 +0000 (21:43 +0200)]
Remove Wercker config
Hopefully fixes
Bjørn Erik Pedersen [Wed, 26 Oct 2016 18:50:12 +0000 (20:50 +0200)]
Make Amber read from the Afero source file system
Bjørn Erik Pedersen [Tue, 25 Oct 2016 20:56:44 +0000 (22:56 +0200)]
Add missing template error logging
Joonatan Saarhelo [Tue, 25 Oct 2016 18:40:32 +0000 (21:40 +0300)]
Get rid of the rawContentCopy field of the Page struct
It is not needed, because it is only used to store temporary data during `preparePagesForRender`.
Sam Klein [Mon, 24 Oct 2016 18:52:46 +0000 (13:52 -0500)]
docs: Fix punctuation in content.md
- removed comma on line 16 to avoid confusion between clauses
- added period to line 24 for consistency
- clarified "read on" on line 30 to follow style above it while
also verbally writing what the author seems to intend
- removed "You probably know what to do." on line 30 due to wordiness
that could lead to confusion and a drag in reading speed
teodorraul [Mon, 24 Oct 2016 06:40:46 +0000 (08:40 +0200)]
docs: Add clearhaus.com to the showcase
Sam Klein [Mon, 24 Oct 2016 19:05:19 +0000 (14:05 -0500)]
docs: Fix typos in content section
- changed preposition into intended infinitive for syntactical clarity
- removed "easily" as it doesn't describe anything technical and is
confusing (which is why the author may have used a preposition)