brevno-suite/hugo
8 years agoHandle error in config loading
Bjørn Erik Pedersen [Tue, 9 Aug 2016 13:31:16 +0000 (15:31 +0200)]
Handle error in config loading

See #2309

8 years agoAdd IsTranslated to Node and Page
Bjørn Erik Pedersen [Tue, 9 Aug 2016 12:26:55 +0000 (14:26 +0200)]
Add IsTranslated to Node and Page

Makes the templates simpler.

See #2309

8 years agoRemove unused Multilingual Viper default
Bjørn Erik Pedersen [Tue, 9 Aug 2016 09:50:29 +0000 (11:50 +0200)]
Remove unused Multilingual Viper default

See #2312

8 years agoImprove i18n string handling
Bjørn Erik Pedersen [Tue, 9 Aug 2016 09:41:56 +0000 (11:41 +0200)]
Improve i18n string handling

* Fall back to default language on missing translation file
* Add a i18n-warnings build flag
* If that flag is set, print a parseable and greppable string on missing translation strings

See #2303

8 years agoRender main content language in root by default
Bjørn Erik Pedersen [Mon, 8 Aug 2016 11:55:18 +0000 (13:55 +0200)]
Render main content language in root by default

Fixes #2312

8 years agoAdd parent as owner to Site
Bjørn Erik Pedersen [Mon, 8 Aug 2016 08:12:39 +0000 (10:12 +0200)]
Add parent as owner to Site

And pull up common member vars like Tmpl and Multilinguage.

Or: the final multilingual TODO-fixes.

See #2309

8 years agoMake the check command work in multilingual mode
Bjørn Erik Pedersen [Mon, 8 Aug 2016 07:28:02 +0000 (09:28 +0200)]
Make the check command work in multilingual mode

Or: some more multilingual TODO-fixes.

See #2309

8 years agoMake sure drafts etc. are not processed
Bjørn Erik Pedersen [Mon, 8 Aug 2016 07:05:16 +0000 (09:05 +0200)]
Make sure drafts etc. are not processed

See #2309

8 years agoMultilingual TODO-fixes, take 1
Bjørn Erik Pedersen [Sun, 7 Aug 2016 22:12:06 +0000 (00:12 +0200)]
Multilingual TODO-fixes, take 1

See #2309

8 years agoFix some corner cases in revised summary handling
Bjørn Erik Pedersen [Sun, 7 Aug 2016 21:34:04 +0000 (23:34 +0200)]
Fix some corner cases in revised summary handling

And clean up the test.

See #2309

8 years agoFix livereload in multilingual mode
Bjørn Erik Pedersen [Sun, 7 Aug 2016 20:41:48 +0000 (22:41 +0200)]
Fix livereload in multilingual mode

See #2309

8 years agoFix the shortcode ref tests
Bjørn Erik Pedersen [Sun, 7 Aug 2016 20:29:27 +0000 (22:29 +0200)]
Fix the shortcode ref tests

See #2309

8 years agoImprove language handling in URLs
Bjørn Erik Pedersen [Sun, 7 Aug 2016 20:01:55 +0000 (22:01 +0200)]
Improve language handling in URLs

The current "rendering language" is needed outside of Site. This commit moves the Language type to the helpers package, and then used to get correct correct language configuration in the markdownify template func.
This commit also adds two new template funcs: relLangURL and absLangURL.

See #2309

8 years agoMake it possible to configure Blackfroday per language
Bjørn Erik Pedersen [Sun, 7 Aug 2016 12:03:03 +0000 (14:03 +0200)]
Make it possible to configure Blackfroday per language

See #2309

8 years agoMake it possible to add a language in server mode
Bjørn Erik Pedersen [Sat, 6 Aug 2016 12:51:50 +0000 (14:51 +0200)]
Make it possible to add a language in server mode

See #2309

8 years agocmd: Load config from the common config loader in hugolib
Bjørn Erik Pedersen [Fri, 5 Aug 2016 15:30:31 +0000 (17:30 +0200)]
cmd: Load config from the common config loader in hugolib

See #2309

8 years agoGet the list commands up to multi-site level
Bjørn Erik Pedersen [Fri, 5 Aug 2016 14:11:03 +0000 (16:11 +0200)]
Get the list commands up to multi-site level

This commit also unexports some Site methods, making it clear what the external build API really is.

See #2312

8 years agoMake taxonomies configurable per language
Bjørn Erik Pedersen [Fri, 5 Aug 2016 11:10:58 +0000 (13:10 +0200)]
Make taxonomies configurable per language

See #2312

8 years agoMake the config loading testable
Bjørn Erik Pedersen [Fri, 5 Aug 2016 09:04:52 +0000 (11:04 +0200)]
Make the config loading testable

This is needed to verify  #2309, but it closes a big hole in Hugo's automated tests.

The loading of the config is now moved to `hugolib` and the same default settings are now used
in production and tests.

As Viper now uses Afero as its filesystem, we now can write fairly complete integration tests with ease.

See #2309

8 years agoAdd sitemap index for multilingual sites
Bjørn Erik Pedersen [Thu, 4 Aug 2016 20:12:19 +0000 (22:12 +0200)]
Add sitemap index for multilingual sites

See #2309

8 years agoRedirect to main language from root
Bjørn Erik Pedersen [Thu, 4 Aug 2016 18:41:30 +0000 (20:41 +0200)]
Redirect to main language from root

See #2312
See #2309

8 years agoRework the multilingual docs
Bjørn Erik Pedersen [Thu, 4 Aug 2016 10:06:29 +0000 (12:06 +0200)]
Rework the multilingual docs

And in the same go adjusted some minor parts of the language API:

Add LanguagePrefix alias to Node and rename the Multilingual config section to Languages.

See #2309

8 years agoRender the shortcodes as late as possible
Bjørn Erik Pedersen [Mon, 1 Aug 2016 21:04:44 +0000 (23:04 +0200)]
Render the shortcodes as late as possible

This is needed to make shortcode users happy with the new multilanguage support,
but it will also solve many other related posts about "stuff not available in the shortcode".

We will have to revisit this re the handler chain at some point, but that will be easier
now as the integration test story has improved so much.

As part of this commit, the site-building tests in page_test.go is refreshed, they now
tests for all the rendering engines (when available), and all of them now uses the
same code-path as used in production.

Fixes #1229
Fixes #2323
Fixes ##1076

8 years agoOptimize the multilanguage build process
Bjørn Erik Pedersen [Thu, 28 Jul 2016 07:30:58 +0000 (09:30 +0200)]
Optimize the multilanguage build process

Work In Progress!

This commit makes a rework of the build and rebuild process to better suit a multi-site setup.

This also includes a complete overhaul of the site tests. Previous these were a messy mix that
were testing just small parts of the build chain, some of it testing code-paths not even used in
"real life". Now all tests that depends on a built site follows the same and real production code path.

See #2309
Closes #2211
Closes #477
Closes #1744

8 years agoMove the Build* methods to HugoSites
Bjørn Erik Pedersen [Wed, 27 Jul 2016 08:49:42 +0000 (10:49 +0200)]
Move the Build* methods to HugoSites

See #2309

8 years agoMove HugoSites to hugolib
Bjørn Erik Pedersen [Wed, 27 Jul 2016 08:03:45 +0000 (10:03 +0200)]
Move HugoSites to hugolib

It will get more involved in the build process in a minute.

See #2309

8 years agoAdd Translations and AllTranslations to Node
Bjørn Erik Pedersen [Tue, 26 Jul 2016 17:04:10 +0000 (19:04 +0200)]
Add Translations and AllTranslations to Node

This commit also consolidates URLs on Node vs Page, so now .Permalink should be interoperable.

Note that this implementations should be fairly short-livded, waiting for #2297, but the API should be stable.

8 years agoRework the i18n template func handling
Bjørn Erik Pedersen [Tue, 26 Jul 2016 12:44:37 +0000 (14:44 +0200)]
Rework the i18n template func handling

Setting the language to use when loading the language bundles just doesn't work.
The template system is unfortanetely a global, and the last languate processed won ...

8 years agoIntroduce HugoSites type
Bjørn Erik Pedersen [Tue, 26 Jul 2016 08:24:27 +0000 (10:24 +0200)]
Introduce HugoSites type

And a Hugo global variable which contains the site under build.

This is really needed to get some level of control of the "multiple languages" in play.

There are still work related to this scattered around, but that will come.

With this commit, the multilingual feature is starting to work.

8 years agoReset translation slice on rebuild
Bjørn Erik Pedersen [Mon, 25 Jul 2016 21:38:37 +0000 (23:38 +0200)]
Reset translation slice on rebuild

Also add all translations, including the current, to the slice. We filter later.

8 years agoRename MainSites to Sites
Bjørn Erik Pedersen [Mon, 25 Jul 2016 21:26:15 +0000 (23:26 +0200)]
Rename MainSites to Sites

Having many *main* sites doesn't make much sense.

8 years agoAdd Translations and AllTranslations methods to Page
Bjørn Erik Pedersen [Mon, 25 Jul 2016 20:22:09 +0000 (22:22 +0200)]
Add Translations and AllTranslations methods to Page

Will revisit Node later.

8 years agoAdd proper Language and Languages types
Bjørn Erik Pedersen [Sun, 24 Jul 2016 11:58:27 +0000 (13:58 +0200)]
Add proper Language and Languages types

8 years agoAdd multilingual support in Hugo
Alexandre Bourget [Sat, 14 May 2016 04:35:16 +0000 (00:35 -0400)]
Add multilingual support in Hugo

Implements:
* support to render:
  * content/post/whatever.en.md to /en/2015/12/22/whatever/index.html
  * content/post/whatever.fr.md to /fr/2015/12/22/whatever/index.html
* gets enabled when `Multilingual:` is specified in config.
* support having language switchers in templates, that know
  where the translated page is (with .Page.Translations)
  (when you're on /en/about/, you can have a "Francais" link pointing to
   /fr/a-propos/)
  * all translations are in the `.Page.Translations` map, including the current one.
* easily tweak themes to support Multilingual mode
* renders in a single swift, no need for two config files.

Adds a couple of variables useful for multilingual sites

Adds documentation (content/multilingual.md)

Added language prefixing for all URL generation/permalinking see in the
code base.

Implements i18n. Leverages the great github.com/nicksnyder/go-i18n lib.. thanks Nick.
* Adds "i18n" and "T" template functions..

8 years agodocs: Fix typo in Quickstart guide
Russ Shanahan [Mon, 5 Sep 2016 02:59:56 +0000 (22:59 -0400)]
docs: Fix typo in Quickstart guide

To publish a post, draft status should be changed to `false`.

8 years agodocs: Add open.cinegy.com to the showcase
Vasiliy Solovey [Mon, 5 Sep 2016 20:38:08 +0000 (23:38 +0300)]
docs: Add open.cinegy.com to the showcase

8 years agodocs: Add Vim/Emacs plugin to tools section
digitalcraftsman [Sun, 4 Sep 2016 13:22:05 +0000 (15:22 +0200)]
docs: Add Vim/Emacs plugin to tools section

8 years agodocs: Clarify first level URL generation
integrii [Mon, 1 Feb 2016 09:08:34 +0000 (01:08 -0800)]
docs: Clarify first level URL generation

8 years agodocs: Improve Quickstart guide
Mark D. Blackwell [Fri, 5 Aug 2016 22:56:53 +0000 (18:56 -0400)]
docs: Improve Quickstart guide

Fixes #2331.

8 years agodocs: Clarify Creating a New Theme
Mark D. Blackwell [Wed, 10 Aug 2016 19:18:03 +0000 (15:18 -0400)]
docs: Clarify Creating a New Theme

8 years agodocs: Mention theme config option on Usage page
Nichlas Hummelsberger [Wed, 31 Aug 2016 09:38:21 +0000 (11:38 +0200)]
docs: Mention theme config option on Usage page

8 years agodocs: Update documentation for URLs
sethmacleod [Tue, 30 Aug 2016 05:26:21 +0000 (01:26 -0400)]
docs: Update documentation for URLs

Using absolute URLs overrides relative URL behavior. This should be explicit in the docs.

8 years agohelpers: Fix bug in emoji renderer
Cameron Moore [Mon, 29 Aug 2016 22:34:48 +0000 (17:34 -0500)]
helpers: Fix bug in emoji renderer

Fixes #2391

8 years agodocs: Correct spelling for "parameters" in partials.md
vsopvsop [Sun, 28 Aug 2016 13:21:19 +0000 (18:51 +0530)]
docs: Correct spelling for "parameters" in partials.md

8 years agodocs: Document shuffle template func
digitalcraftsman [Mon, 29 Aug 2016 10:22:37 +0000 (12:22 +0200)]
docs: Document shuffle template func

Fixes #2393.

8 years agodocs: Update highlight.js example to latest version
Andreas Grunewald [Wed, 24 Aug 2016 23:13:21 +0000 (16:13 -0700)]
docs: Update highlight.js example to latest version

Highlight.js has evolved quite a bit since it this doc was written. Updating the example to the latest 9.6 version of Highlight JS hosted by cloudflare

8 years agodocs: Add location of block template
Eric [Sat, 20 Aug 2016 19:19:23 +0000 (12:19 -0700)]
docs: Add location of block template

8 years agotpl: Add missing arg to Fatalf
Bjørn Erik Pedersen [Sat, 20 Aug 2016 19:52:14 +0000 (20:52 +0100)]
tpl: Add missing arg to Fatalf

8 years agoSwitch to a more up to date TOML library
Bjørn Erik Pedersen [Sat, 20 Aug 2016 19:28:38 +0000 (20:28 +0100)]
Switch to a more up to date TOML library

Fixes #2089

8 years agodocs: Clarify Usage
Mark D. Blackwell [Wed, 10 Aug 2016 19:18:03 +0000 (15:18 -0400)]
docs: Clarify Usage

8 years agodocs: Add Spanish video tutorial by Verónica López to press.md
Anthony Fok [Fri, 19 Aug 2016 14:26:26 +0000 (08:26 -0600)]
docs: Add Spanish video tutorial by Verónica López to press.md

8 years agohugolib: Use named keys in composite literals
Cameron Moore [Fri, 19 Aug 2016 11:22:19 +0000 (06:22 -0500)]
hugolib: Use named keys in composite literals

Make `go vet` great again

8 years agodocs: Just a small grammar fix in quickstart.md
Steef Hegeman [Fri, 5 Aug 2016 14:57:23 +0000 (16:57 +0200)]
docs: Just a small grammar fix in quickstart.md

8 years agodocs: Follow through on watch default
Mark D. Blackwell [Tue, 9 Aug 2016 23:14:40 +0000 (19:14 -0400)]
docs: Follow through on watch default

8 years agodocs: Correct name of release archives for OS X
Georg Hartmann [Wed, 10 Aug 2016 10:45:13 +0000 (12:45 +0200)]
docs: Correct name of release archives for OS X

Fixes #2341

8 years agodocs: Correct all erroneous swaps of "it's" and "its"
Mark D. Blackwell [Sat, 13 Aug 2016 13:09:51 +0000 (09:09 -0400)]
docs: Correct all erroneous swaps of "it's" and "its"

8 years agodocs: Improve section 'Why did you write Hugo?'
Mark D. Blackwell [Sat, 13 Aug 2016 14:44:20 +0000 (10:44 -0400)]
docs: Improve section 'Why did you write Hugo?'

8 years agodocs: Fix URLs in examples sites with path prefix
Stephan Kulla [Wed, 17 Aug 2016 08:30:55 +0000 (10:30 +0200)]
docs: Fix URLs in examples sites with path prefix

When baseurl ist something like "http://example.com/hugo/" a link to
"/tags/..." does not work. Therefore I fixed the examples so that they
also work in cases where the website is not saved at the server's root.
See also https://discuss.gohugo.io/t/how-shall-i-link-a-taxonomy-page/3920

8 years agoRemove broken Bitdeli badge from README.md
Anthony Fok [Wed, 17 Aug 2016 03:13:21 +0000 (21:13 -0600)]
Remove broken Bitdeli badge from README.md

8 years agotpl: Return all errors from casting
Cameron Moore [Fri, 12 Aug 2016 22:43:15 +0000 (17:43 -0500)]
tpl: Return all errors from casting

Most non-boolean template functions should return errors.

Fixes #2354

8 years agoSimplify Travis build
Cameron Moore [Tue, 16 Aug 2016 14:09:19 +0000 (09:09 -0500)]
Simplify Travis build

8 years agoFix command for getting hugo in CONTRIBUTING.md
Stephan Kulla [Fri, 12 Aug 2016 14:58:57 +0000 (16:58 +0200)]
Fix command for getting hugo in CONTRIBUTING.md

8 years agoAdd a global Reset func
Bjørn Erik Pedersen [Tue, 16 Aug 2016 10:50:26 +0000 (12:50 +0200)]
Add a global Reset func

So we can do some benchmarking.

8 years agoBump Travis to Go 1.7
Bjørn Erik Pedersen [Tue, 16 Aug 2016 08:05:10 +0000 (10:05 +0200)]
Bump Travis to Go 1.7

8 years agocommands: Suppress 'missing static' error
Kishin Yagami [Sat, 13 Aug 2016 22:35:43 +0000 (07:35 +0900)]
commands: Suppress 'missing static' error

Fixes #2311

8 years agoSkipt Twitter test in short mode
Bjørn Erik Pedersen [Sat, 13 Aug 2016 16:50:06 +0000 (18:50 +0200)]
Skipt Twitter test in short mode

8 years agotpl: Fix faulty ordering of relURL test cases
Bjørn Erik Pedersen [Fri, 12 Aug 2016 22:36:15 +0000 (00:36 +0200)]
tpl: Fix faulty ordering of relURL test cases

8 years agotpl: Make absURL and relURL accept anything
Stephan Kulla [Fri, 12 Aug 2016 22:31:50 +0000 (00:31 +0200)]
tpl: Make absURL and relURL accept anything

8 years agodocs: Convert toml to yaml in config overview
Mark Ayers [Fri, 12 Aug 2016 05:59:35 +0000 (22:59 -0700)]
docs: Convert toml to yaml in config overview

8 years agosource: Normalize file name to NFC
Kishin Yagami [Mon, 8 Aug 2016 18:25:00 +0000 (03:25 +0900)]
source: Normalize file name to NFC

Fixes #2203

8 years agodocs: Add doc for time template func
Wade Fitzpatrick [Mon, 8 Aug 2016 01:38:18 +0000 (11:38 +1000)]
docs: Add doc for time template func

8 years agoRemove maximeguitare.com from showcase
Maxime Michel [Sat, 6 Aug 2016 21:34:42 +0000 (23:34 +0200)]
Remove maximeguitare.com from showcase

8 years agodocs: Add rdegges.com to the showcase
Randall Degges [Fri, 5 Aug 2016 22:46:01 +0000 (15:46 -0700)]
docs: Add rdegges.com to the showcase

8 years agotpl: Fix typo in FindRE test
digitalcraftsman [Thu, 4 Aug 2016 12:37:15 +0000 (14:37 +0200)]
tpl: Fix typo in FindRE test

8 years agoFix the time template func test
Bjørn Erik Pedersen [Thu, 4 Aug 2016 08:36:44 +0000 (10:36 +0200)]
Fix the time template func test

By making it not depend on the locale setup.

8 years agotpl: Add time template func
Wade Fitzpatrick [Wed, 3 Aug 2016 23:55:24 +0000 (09:55 +1000)]
tpl: Add time template func

Fixes #2328

8 years agoFix for meminterval not using specified interval
Jeremy Brown [Tue, 2 Aug 2016 17:48:07 +0000 (19:48 +0200)]
Fix for meminterval not using specified interval

Hugo seems to ignore the meminterval I specify and always uses it's default of 100ms.
This seems to be because Hugo tries to take the meminterval from the command line
(an Int) and converts it to a String and passes it to time.ParseDuration. If you pass a
different meminterval (such as `1000` as above) it will fail (time.ParseDuration requires
some units) and use the default instead.

Changed `meminterval` to be a String and added better documentation for valid time units.

Resolves: #2325

8 years agodocs: Add romansilin.com to the showcase
astrochili [Sun, 31 Jul 2016 08:37:43 +0000 (11:37 +0300)]
docs: Add romansilin.com to the showcase

8 years agoReturn specific error on walk path too short
Bjørn Erik Pedersen [Sat, 30 Jul 2016 20:32:03 +0000 (22:32 +0200)]
Return specific error on walk path too short

8 years agoAdjust the sanity check to path length 4
Bjørn Erik Pedersen [Sat, 30 Jul 2016 18:07:35 +0000 (20:07 +0200)]
Adjust the sanity check to path length 4

8 years agoAdd sanity check to the file walker
Bjørn Erik Pedersen [Sat, 30 Jul 2016 17:54:07 +0000 (19:54 +0200)]
Add sanity check to the file walker

As more tests now hit the virtual filesystem, add this check
to prevent any walking of the entire file system.

8 years agoDisable Go 1.5.4 in Travis
Bjørn Erik Pedersen [Sat, 30 Jul 2016 17:37:15 +0000 (19:37 +0200)]
Disable Go 1.5.4 in Travis

There is one failing test there now, a odd filesystem issue.

Since Go 1.7 is only "days" away, I'm not spending time debugging this.

8 years agoTake 2: Load templates from the Afero source fs
Bjørn Erik Pedersen [Sat, 30 Jul 2016 15:28:40 +0000 (17:28 +0200)]
Take 2: Load templates from the Afero source fs

See #2321

8 years agoLoad templates from the Afero source fs
Bjørn Erik Pedersen [Sat, 30 Jul 2016 15:16:04 +0000 (17:16 +0200)]
Load templates from the Afero source fs

Fixes #2321

8 years agoDo not return empty theme dirs
Bjørn Erik Pedersen [Sat, 30 Jul 2016 14:21:57 +0000 (16:21 +0200)]
Do not return empty theme dirs

This prevents reading data etc. from the root.

Fixes #2320

8 years agoUse the Afero source fs where relevant
Bjørn Erik Pedersen [Sat, 30 Jul 2016 13:37:03 +0000 (15:37 +0200)]
Use the Afero source fs where relevant

Fixes #2319

8 years agoMake LazyFileReader use the Afero source fs
Bjørn Erik Pedersen [Sat, 30 Jul 2016 13:14:41 +0000 (15:14 +0200)]
Make LazyFileReader use the Afero source fs

Fixes #2317

8 years agoHandle errors during filesystem walk
Bjørn Erik Pedersen [Sat, 30 Jul 2016 12:02:53 +0000 (14:02 +0200)]
Handle errors during filesystem walk

Fixes #2318

8 years agodocs: Add tumblr2hugomarkdown to tools section
digitalcraftsman [Fri, 29 Jul 2016 18:37:13 +0000 (20:37 +0200)]
docs: Add tumblr2hugomarkdown to tools section

8 years agodocs: Add tumblr-importr to tools section
digitalcraftsman [Fri, 29 Jul 2016 18:28:05 +0000 (20:28 +0200)]
docs: Add tumblr-importr to tools section

8 years agoexamples: Add example for translation files
Richard Metzler [Sat, 11 Jun 2016 09:56:10 +0000 (11:56 +0200)]
examples: Add example for translation files

8 years agodocs: Document .File variables for pages
digitalcraftsman [Wed, 18 May 2016 19:07:06 +0000 (21:07 +0200)]
docs: Document .File variables for pages

Fixes #2154.

8 years agodocs: Drop .isDraft to new line
Chris DeLuca [Fri, 15 Jul 2016 18:38:02 +0000 (14:38 -0400)]
docs: Drop .isDraft to new line

Bring **.isDraft** onto a new line, to be consistent with the other list items.

8 years agodocs: Add a link to hugo-openapispec-shortcode
Jeremy Brown [Tue, 12 Jul 2016 19:42:41 +0000 (21:42 +0200)]
docs: Add a link to hugo-openapispec-shortcode

Added a link to the Hugo Open API Spec shortcode which allows you to embed OAI Spec (formerly known as Swagger) in your site.

8 years agodocs: Removed comma from json example.
Felipe Rohde [Tue, 26 Jul 2016 18:26:25 +0000 (15:26 -0300)]
docs: Removed comma from json example.

The comma causing invalid json and hugo not compile the file based on the same example.

8 years agodocs: Add missing configuration option disableHugoGeneratorInject
Max Milton [Fri, 29 Jul 2016 07:46:40 +0000 (17:46 +1000)]
docs: Add missing configuration option disableHugoGeneratorInject

8 years agodocs: Add weilinshi.org to the showcase
Weilin [Wed, 27 Jul 2016 23:15:17 +0000 (07:15 +0800)]
docs: Add weilinshi.org to the showcase

8 years agodocs: Add CTL Compiled edtech blog to showcase
zarina [Mon, 25 Jul 2016 18:03:17 +0000 (14:03 -0400)]
docs: Add CTL Compiled edtech blog to showcase

8 years agodocs: Add www.leowkahman.com to the showcase
Leow Kah Man [Sun, 24 Jul 2016 10:02:42 +0000 (18:02 +0800)]
docs: Add www.leowkahman.com to the showcase

8 years agoBe less aggressive with CHMOD filesystem events
Pedro Melo [Tue, 26 Jul 2016 20:18:15 +0000 (21:18 +0100)]
Be less aggressive with CHMOD filesystem events

On 4679fbee41d3, rebuild was disabled on
CHMOD filesystem events, but the code is overly aggressive.

In some situations, specially with older Mac's (using a Late 2008
Macbook), the events we receive might be aggregated. On my
particular laptop, I get this events:

    INFO: 2016/07/26 18:08:51 hugo.go:737: Received System Events: ["<path>": WRITE|CHMOD]

These events are ignored because the code only checks for Chmod. This
commit fixes this by checking that the event is also not a Write or Create.

Related to #1587.