brevno-suite/hugo
8 years agohugolib: Camelcase ALL_CAPS vars and const in tests
bogem [Mon, 21 Nov 2016 22:02:19 +0000 (23:02 +0100)]
hugolib: Camelcase ALL_CAPS vars and const in tests

See #2014

8 years agohugolib, source, tpl: Fix docs
bogem [Mon, 21 Nov 2016 22:01:42 +0000 (23:01 +0100)]
hugolib, source, tpl: Fix docs

See #2014

8 years agohelpers: Rename WalkRootTooShortError to ErrWalkRootTooShort
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

8 years agohelpers: Add documentation to some Language methods
bogem [Mon, 21 Nov 2016 21:59:33 +0000 (22:59 +0100)]
helpers: Add documentation to some Language methods

See #2014

8 years agohelpers: Use iterate operator by int in Emojify
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

8 years agocommands, hugolib: Unify case of config variable names
bogem [Fri, 18 Nov 2016 22:21:45 +0000 (23:21 +0100)]
commands, hugolib: Unify case of config variable names

8 years agocommands, hugolib, parser, tpl: Use errors.New instead of fmt.Errorf
bogem [Fri, 18 Nov 2016 21:54:57 +0000 (22:54 +0100)]
commands, hugolib, parser, tpl: Use errors.New instead of fmt.Errorf

8 years agocommands, hugolib, source, target, tpl: Get rid of some fmt statements
bogem [Fri, 18 Nov 2016 21:38:41 +0000 (22:38 +0100)]
commands, hugolib, source, target, tpl: Get rid of some fmt statements

8 years agoall: Use jww instead of fmt for printing
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.

8 years agoFix case issues with Params
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

8 years agodocs: Add Pages to variables section
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

8 years agonode to page: Re-add translations sort of regular pages
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

8 years agodocs: Add release notes about node to page
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

8 years agodocs: Add sections on node now being a page
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

8 years agonode to page: Fix site pages sort
Bjørn Erik Pedersen [Mon, 21 Nov 2016 09:35:57 +0000 (10:35 +0100)]
node to page: Fix site pages sort

Updates #2297

8 years agonode to page: Fixe index page translation issues
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

8 years agodocs: Revise docs to reflect that Node is gone
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

8 years agodocs: Make the tools content page a section page
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

8 years agonode to page: Don't repeat the RSS title if it is the same
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

8 years agonode to page: Temporary set RSS date to zero
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

8 years agonode to page: Render aliases before pages
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

8 years agonode to page: Need to append theme templates
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

8 years agonode to page: Only return regular pages in home.Data.Pages
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

8 years agonode to page: Final TODO-fixes
Bjørn Erik Pedersen [Wed, 16 Nov 2016 20:06:10 +0000 (21:06 +0100)]
node to page: Final TODO-fixes

Updates #2297

8 years agonode to page: Fix the Page copy()
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

8 years agonode to page: Misc. TODO-fixes
Bjørn Erik Pedersen [Wed, 16 Nov 2016 16:52:03 +0000 (17:52 +0100)]
node to page: Misc. TODO-fixes

Updates #2297

8 years agonode to page: Handle URLs
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

8 years agonode to page: Remove Node
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

8 years agonode to page: Make Kind a string
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

8 years agonode to page: Rename PageType to Kind
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

8 years agonode to page: Export GetPage to the templates
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

8 years agonode to page: Handle Date and Lastmod
Bjørn Erik Pedersen [Fri, 11 Nov 2016 10:35:55 +0000 (11:35 +0100)]
node to page: Handle Date and Lastmod

Updates #2297

8 years agonode to page: Add Pages to Page
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

8 years agonode to page: Make Nodes into Pages
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

8 years agonode to page: Refactor the build process
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

8 years agonode to page: Handle sections with only _index.md
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

8 years agonode to page: Handle aliases on home page etc.
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

8 years agonode to page: Handle menus on home page etc.
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

8 years agonode to page: Handle taxonomies on home page etc.
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

8 years agonode to page: Add all nodes to sitemap
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

8 years agonode to page: Do not create section node for root
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

8 years agonode to page: Get Rebuild up to speed
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

8 years agonode to page: Fix home target path on Windows
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

8 years agonode to page: Remove unused code
Bjørn Erik Pedersen [Tue, 8 Nov 2016 22:49:42 +0000 (23:49 +0100)]
node to page: Remove unused code

Updates #2297

8 years agonode to page: Handle aliases, 404, robots.txt, sitemap
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

8 years agonode to page: Handle translations
Bjørn Erik Pedersen [Mon, 7 Nov 2016 19:24:37 +0000 (20:24 +0100)]
node to page: Handle translations

Updates #2297

8 years agonode to page: Fix the page collections
Bjørn Erik Pedersen [Thu, 3 Nov 2016 23:34:25 +0000 (00:34 +0100)]
node to page: Fix the page collections

Updates #2297

8 years agonode to page: Use _index as identificator for the list nodes
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

8 years agonode to page: Handle RSS
Bjørn Erik Pedersen [Wed, 2 Nov 2016 20:34:19 +0000 (21:34 +0100)]
node to page: Handle RSS

Updates #2297

8 years agonode to page: Create pages for nodes without content
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

8 years agonode to page: Handle taxonomy terms
Bjørn Erik Pedersen [Tue, 1 Nov 2016 15:47:15 +0000 (16:47 +0100)]
node to page: Handle taxonomy terms

Updates #2297

8 years agonode to page: Handle taxonomy lists
Bjørn Erik Pedersen [Mon, 31 Oct 2016 18:53:33 +0000 (19:53 +0100)]
node to page: Handle taxonomy lists

Updates #2297

8 years agonode to page: Handle sections
Bjørn Erik Pedersen [Mon, 31 Oct 2016 17:03:02 +0000 (18:03 +0100)]
node to page: Handle sections

Updates #2297

8 years agonode to page: Handle home
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

8 years agonode to page: Basic outline
Bjørn Erik Pedersen [Sun, 30 Oct 2016 16:59:24 +0000 (17:59 +0100)]
node to page: Basic outline

Updates #2297

8 years agoRevert "Fix case issues with Params"
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.

8 years agoFix case issues with Params
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

8 years agodocs: Fix list template link
Bjørn Erik Pedersen [Mon, 21 Nov 2016 23:37:10 +0000 (00:37 +0100)]
docs: Fix list template link

8 years agodocs: Add a simple list template
Bjørn Erik Pedersen [Sun, 20 Nov 2016 14:37:18 +0000 (15:37 +0100)]
docs: Add a simple list template

Fixes #2710

8 years agohugolib: Don't write zero-bytes files to disk
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

8 years agodocs: Rename RSSlink to RSSLink
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.

8 years agocommands: Make benchmark command more useful
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

8 years agodocs: Add balaramadurai.net to the showcase
balaramadurai [Thu, 17 Nov 2016 07:16:14 +0000 (12:46 +0530)]
docs: Add balaramadurai.net to the showcase

8 years agovendor: Update deps
Bjørn Erik Pedersen [Wed, 16 Nov 2016 12:28:21 +0000 (13:28 +0100)]
vendor: Update deps

8 years agotpl: Add imageConfig function
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>
```

8 years agosource, tpl: Fix staticcheck complaints
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])

8 years agodocs: Fix typos in extras/scratch.md
Rafael Monteiro [Sat, 12 Nov 2016 22:47:07 +0000 (20:47 -0200)]
docs: Fix typos in extras/scratch.md

8 years agohugolib: Must update PathSpec on SiteInfo per language
Bjørn Erik Pedersen [Mon, 7 Nov 2016 20:16:55 +0000 (21:16 +0100)]
hugolib: Must update PathSpec on SiteInfo per language

8 years agocommands, tpl: Get rid of repeating viper accesses
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

8 years agohugolib: Fix page sorting when weight is zero
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

8 years agodocs: Add article by Zetao Yang
Ahmed Zetao Yang [Mon, 17 Oct 2016 03:09:37 +0000 (11:09 +0800)]
docs: Add article by Zetao Yang

8 years agodocs: Compress Hugo logo (hugo.png)
JoeArizona [Tue, 19 Jul 2016 03:43:58 +0000 (20:43 -0700)]
docs: Compress Hugo logo (hugo.png)

8 years agotpl: Golint fixes
Bjørn Erik Pedersen [Sat, 5 Nov 2016 16:27:40 +0000 (17:27 +0100)]
tpl: Golint fixes

8 years agohelpers: Golint fixes
Bjørn Erik Pedersen [Sat, 5 Nov 2016 16:05:33 +0000 (17:05 +0100)]
helpers: Golint fixes

8 years agohugolib: Simplify range
Bjørn Erik Pedersen [Sat, 5 Nov 2016 16:05:18 +0000 (17:05 +0100)]
hugolib: Simplify range

8 years agodocs: Update roadmap
digitalcraftsman [Fri, 4 Nov 2016 19:18:01 +0000 (20:18 +0100)]
docs: Update roadmap

Closes #2666

8 years agoEnhance commit message guidelines
digitalcraftsman [Fri, 4 Nov 2016 18:37:41 +0000 (19:37 +0100)]
Enhance commit message guidelines

8 years agodocs: Link latest change as commit in the footer
digitalcraftsman [Fri, 4 Nov 2016 16:28:27 +0000 (17:28 +0100)]
docs: Link latest change as commit in the footer

8 years agodoc: Add a "Deployment with rsync" tutorial page
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.

8 years agotransform: Return any read or write error from Apply
Bjørn Erik Pedersen [Thu, 3 Nov 2016 23:44:49 +0000 (00:44 +0100)]
transform: Return any read or write error from Apply

8 years agocommands: Move initialization of flags in separate function
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.

8 years agodocs: Remove non-showcase Hugo sites
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

8 years agoAdd GitInfo
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

8 years agoFix page names that contain dot
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

8 years agoRevert "docs: Add www.bullion-investor.com to the showcase gallery"
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.

8 years agodocs: Add www.bullion-investor.com to the showcase gallery
ITSecMedia [Fri, 28 Oct 2016 09:21:58 +0000 (11:21 +0200)]
docs: Add bullion-investor.com to the showcase gallery

8 years agodocs: Add two articles written by Hash Borgir
digitalcraftsman [Sat, 29 Oct 2016 12:02:14 +0000 (14:02 +0200)]
docs: Add two articles written by Hash Borgir

8 years agoFix RSS Title regression
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

8 years agoMake it clear that Path is relative to content root
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

8 years agoRefactor Page tests
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

8 years agoRemove Wercker config
Bjørn Erik Pedersen [Thu, 27 Oct 2016 19:43:43 +0000 (21:43 +0200)]
Remove Wercker config

Hopefully fixes

8 years agoMake Amber read from the Afero source file system
Bjørn Erik Pedersen [Wed, 26 Oct 2016 18:50:12 +0000 (20:50 +0200)]
Make Amber read from the Afero source file system

8 years agoAdd missing template error logging
Bjørn Erik Pedersen [Tue, 25 Oct 2016 20:56:44 +0000 (22:56 +0200)]
Add missing template error logging

8 years agoGet rid of the rawContentCopy field of the Page struct
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`.

8 years agodocs: Fix punctuation in content.md
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

8 years agodocs: Add clearhaus.com to the showcase
teodorraul [Mon, 24 Oct 2016 06:40:46 +0000 (08:40 +0200)]
docs: Add clearhaus.com to the showcase

8 years agodocs: Fix typos in content section
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)

8 years agoRemove now superfluous lowercasing
Bjørn Erik Pedersen [Mon, 24 Oct 2016 19:33:11 +0000 (21:33 +0200)]
Remove now superfluous lowercasing

See #2615
See #1129

8 years agovendor: Update Viper
Bjørn Erik Pedersen [Mon, 24 Oct 2016 19:21:37 +0000 (21:21 +0200)]
vendor: Update Viper

8 years agoall: Unify case of config variable names
Albert Nigmatzianov [Mon, 24 Oct 2016 18:56:00 +0000 (20:56 +0200)]
all: Unify case of config variable names

All config variables starts with low-case and uses camelCase.

If there is abbreviation at the beginning of the name, the whole
abbreviation will be written in low-case.
If there is abbreviation at the end of the name, the
whole abbreviation will be written in upper-case.
For example, rssURI.