Anthony Fok [Thu, 12 Mar 2015 14:46:42 +0000 (08:46 -0600)]
Remove trailing space from site build statistics
Anthony Fok [Wed, 11 Mar 2015 17:34:57 +0000 (11:34 -0600)]
Correct initialisms as suggested by golint
First step to use initialisms that golint suggests,
for example:
Line 116: func GetHtmlRenderer should be GetHTMLRenderer
as see on http://goreportcard.com/report/spf13/hugo
Thanks to @bep for the idea!
Note that command-line flags (cobra and pflag)
as well as struct fields like .BaseUrl and .Url
that are used in Go HTML templates need more work
to maintain backward-compatibility, and thus
are NOT yet dealt with in this commit.
First step in fixing #959.
bep [Wed, 11 Mar 2015 09:25:53 +0000 (10:25 +0100)]
doArithmetic: add test for division by zero
bep [Wed, 11 Mar 2015 00:29:18 +0000 (01:29 +0100)]
Add some basic tests for doArithmetic
We might have to take precision into account for floating point nubers ... at some point.
Anthony Fok [Tue, 10 Mar 2015 22:55:23 +0000 (16:55 -0600)]
Skip directories like node_modules from the watchlist
A local `node_modules` directory can easily contain
tens of thousands of files, easily exhausting the tiny
default max open files limit especially on OS X Yosemite,
in spite of the fact that Hugo already had code in place
since February 2014 to try to raise the maxfiles ulimit.
Also skip `.git` and `bower_components` directories.
The file watching situation will improve when
https://github.com/go-fsnotify/fsevents become ready,
but until then, we will be thrifty. :-)
Thanks to @chibicode for the suggestion.
See #168 for continued discussions.
bep [Tue, 10 Mar 2015 22:17:39 +0000 (23:17 +0100)]
parser: add some frontmatter test cases
bep [Tue, 10 Mar 2015 17:44:32 +0000 (18:44 +0100)]
absurlreplacer: write replacements directly to the byte buffer
The extra step isn't needed and this makes the code simpler.
And slightly faster:
benchmark old ns/op new ns/op delta
BenchmarkAbsUrl 19987 17498 -12.45%
BenchmarkXmlAbsUrl 10606 9503 -10.40%
benchmark old allocs new allocs delta
BenchmarkAbsUrl 28 24 -14.29%
BenchmarkXmlAbsUrl 14 12 -14.29%
benchmark old bytes new bytes delta
BenchmarkAbsUrl 3512 3297 -6.12%
BenchmarkXmlAbsUrl 2059 1963 -4.66%
Anthony Fok [Tue, 10 Mar 2015 16:18:40 +0000 (10:18 -0600)]
Do not parse backup files with trailing '~' as templates
Fixes #964
Anthony Fok [Tue, 10 Mar 2015 15:59:55 +0000 (09:59 -0600)]
Switch from fsnotify.v0 to fsnotify.v1 API (watcher)
Fixes #357
See also #761
Anthony Fok [Tue, 10 Mar 2015 15:49:42 +0000 (09:49 -0600)]
Add new min_version field to theme.toml template
bep [Mon, 9 Mar 2015 14:52:32 +0000 (15:52 +0100)]
Add test cases for Ne and Eq type normalisation
See #961
Tatsushi Demachi [Mon, 9 Mar 2015 13:55:04 +0000 (22:55 +0900)]
Fix eq and ne tpl function issue
`eq` and `ne` template functions don't work as expected when those are
used with a raw number and a calculated value by add, sub etc. It's
caused by both numbers type differences. For example, `eq 5 (add 2 3)`
returns `false` because raw 5 is `int` while `add 2 3` returns 5 with
`int64`
This normalizes `int`, `uint` and `float` type values to `int64`,
`uint64` and `float64` before comparing them. Other type of value is
passed to comparing function without any changes.
Fix #961
bep [Sat, 7 Mar 2015 14:41:01 +0000 (15:41 +0100)]
Fix UglyUrls on Windows
Fixes #958
bep [Sat, 7 Mar 2015 14:18:00 +0000 (15:18 +0100)]
Handle 404 thread safely
Replaces hack that temporarily changes a global flag.
Fixes #955
Fixes #939
bep [Sat, 7 Mar 2015 12:22:02 +0000 (13:22 +0100)]
There is only one s.PageTarget() - so we cannot change it, even tempoararily. We have to find another solution to this.
...
Prevent 404.html from prettifying into 404/index.html
Restore @realchaseadams's commit
348e123
"Force `UglyUrls` option to force `404.html` file name"
which got lost after some refactoring (commit
8db3c0b).
Remove the equivalent "force `UglyUrls`" code for `sitemap.xml`
because the refactored code now calls `renderAndWriteXML()`
which uses `WriteDestFile()` which does not prettify a filename.
Fixes #939 (reverted from commit
c4c19ad303cb11616a7291bdbeec997e59b6d24e)
bep [Sat, 7 Mar 2015 11:59:04 +0000 (12:59 +0100)]
parser: apply some Golint rules
bep [Sat, 7 Mar 2015 11:58:51 +0000 (12:58 +0100)]
livereload: apply some Golint rules
bep [Sat, 7 Mar 2015 11:58:39 +0000 (12:58 +0100)]
source: apply some Golint rules
bep [Sat, 7 Mar 2015 11:53:20 +0000 (12:53 +0100)]
hugolib: apply some more Golint rules
bep [Sat, 7 Mar 2015 11:52:29 +0000 (12:52 +0100)]
menu: make receiver name on Page methods consistent
Apply some Golint rules on Menu, esp. making the method receiver names consistent.
bep [Sat, 7 Mar 2015 11:25:38 +0000 (12:25 +0100)]
page: make receiver name on Page methods consistent
Apply some Golint rules on Page, esp. making the method receiver names consistent:
(page *Page) ==> (p *Page)
bep [Fri, 6 Mar 2015 23:13:06 +0000 (00:13 +0100)]
hugolib: apply some Hugolint rules
bep [Fri, 6 Mar 2015 23:10:00 +0000 (00:10 +0100)]
author: fix doc
bep [Fri, 6 Mar 2015 23:02:06 +0000 (00:02 +0100)]
helpers: apply some Golint rules
bep [Fri, 6 Mar 2015 17:07:50 +0000 (18:07 +0100)]
Apply some more Golint suggestions
bep [Fri, 6 Mar 2015 14:58:14 +0000 (15:58 +0100)]
Fix some Go Lint errors
bep [Fri, 6 Mar 2015 13:56:44 +0000 (14:56 +0100)]
Fix errors reported by Go Vet
Anthony Fok [Fri, 6 Mar 2015 11:47:04 +0000 (04:47 -0700)]
Prevent 404.html from prettifying into 404/index.html
Restore @realchaseadams's commit
348e123
"Force `UglyUrls` option to force `404.html` file name"
which got lost after some refactoring (commit
8db3c0b).
Remove the equivalent "force `UglyUrls`" code for `sitemap.xml`
because the refactored code now calls `renderAndWriteXML()`
which uses `WriteDestFile()` which does not prettify a filename.
Fixes #939
bep [Thu, 5 Mar 2015 23:30:51 +0000 (00:30 +0100)]
Avoid panic when pagination on 0 pages
Fixes #948
bep [Thu, 5 Mar 2015 22:19:10 +0000 (23:19 +0100)]
Apply gofmt -s
bep [Thu, 5 Mar 2015 20:10:53 +0000 (21:10 +0100)]
Add benchmark for the shortcode lexer
Saint Asky [Thu, 5 Mar 2015 02:57:06 +0000 (10:57 +0800)]
Update github-pages-blog.md
change `hugo serve` to `hugo server`
Steve Francia [Wed, 4 Mar 2015 14:17:35 +0000 (09:17 -0500)]
Tidying the Readme a bit more
Steve Francia [Wed, 4 Mar 2015 14:16:49 +0000 (09:16 -0500)]
Using a smaller Header Image
Steve Francia [Wed, 4 Mar 2015 14:15:55 +0000 (09:15 -0500)]
Fixing image in readme
Steve Francia [Wed, 4 Mar 2015 14:15:03 +0000 (09:15 -0500)]
Restructure top of Readme.md
Steve Francia [Wed, 4 Mar 2015 14:08:03 +0000 (09:08 -0500)]
Merge pull request #944 from gitter-badger/gitter-badge
Add a Gitter chat badge to README.md
The Gitter Badger [Wed, 4 Mar 2015 14:06:38 +0000 (14:06 +0000)]
Added Gitter badge
Steve Francia [Wed, 4 Mar 2015 14:01:15 +0000 (09:01 -0500)]
Update Readme.md with additional contribution guides
bep [Mon, 2 Mar 2015 20:23:16 +0000 (21:23 +0100)]
Allow the same shortcode to be used with or without inline content
Fixes #934
bep [Sat, 28 Feb 2015 18:24:30 +0000 (19:24 +0100)]
Improve error message on missing shortcode inner content
Fixes #933
bep [Sat, 28 Feb 2015 17:45:02 +0000 (18:45 +0100)]
Keep trailing slash when baseUrl contains a sub path
Before this commit, .Site.BaseUrl ended up as:
http://mysite.com/ => http://mysite.com/
http://mysite.com/sub/ => http://mysite.com/sub
Now it becomes:
http://mysite.com/ => http://mysite.com/
http://mysite.com/sub/ => http://mysite.com/sub/
Fixed #931
bep [Fri, 27 Feb 2015 10:57:23 +0000 (11:57 +0100)]
Allow hyphens in shortcode name
Fixes #929
bep [Mon, 23 Feb 2015 17:12:19 +0000 (18:12 +0100)]
Use osext on GitHub
Fixes #922
Anthony Fok [Sun, 22 Feb 2015 06:26:34 +0000 (23:26 -0700)]
[Docs] NetBSD and ARM pre-built binaries are already provided
See https://github.com/spf13/hugo/releases
What a pleasant surprise indeed!
How come I have never noticed them before?
And even `.deb` files are provided! How amazing!
spf13 [Sun, 22 Feb 2015 04:11:36 +0000 (23:11 -0500)]
Bumping to version "v0.14-DEV"
spf13 [Sun, 22 Feb 2015 03:31:01 +0000 (22:31 -0500)]
Updating the final release notes for v0.13
Anthony Fok [Sat, 21 Feb 2015 21:46:12 +0000 (14:46 -0700)]
[Docs] Clarify the switch to `canonifyurls = false` as default
Quote from @spf13: "I also think it's the better default
and should continue to be the case going forward."
Also mention the use of `hugo config` to check the current value
of `canonifyurls`, thanks to suggestion by @bep.
Fixes #802
Anthony Fok [Sat, 21 Feb 2015 20:42:15 +0000 (13:42 -0700)]
Update README.md and overview/installing.md
- Clarify that Hugo may be built wherever Go is available;
- Add links to Git, Mercurial and Go;
- Unlist Bazaar: No libraries that Hugo depends on use it any more;
- Suggest the user to simply run `make` to build `hugo`
to get `hugo version` to display the commit hash.
bep [Fri, 20 Feb 2015 17:38:35 +0000 (18:38 +0100)]
Avoid race condition in target list init
As reported by Go's race detector.
See #917
bep [Fri, 20 Feb 2015 16:41:37 +0000 (17:41 +0100)]
Avoid race condition in isInnerShortcode
As reported by Go's race detector.
See #917
Cyrill Schumacher [Wed, 18 Feb 2015 22:19:35 +0000 (09:19 +1100)]
Add trailing file separator to temp dir
Make sure that the file separator is added to the temp dir in all cases.
This prevents cache temp files being written to the root temp folder.
Fixes #910
bep [Thu, 19 Feb 2015 10:36:09 +0000 (11:36 +0100)]
Use $.Paginator in template
Since there will only be one paginator per page, this can get rid of some scoping confusion.
bep [Wed, 18 Feb 2015 21:16:40 +0000 (22:16 +0100)]
Return unmodified content if panic in LiveReloadInject
bep [Wed, 18 Feb 2015 20:51:32 +0000 (21:51 +0100)]
Add revocer in LiveReloadInject
The panic cannot be reproduced, but add this as protection.
Fixes #911
René Jochum [Tue, 17 Feb 2015 21:21:37 +0000 (22:21 +0100)]
Suppress errors for symbolic links witch point to a file.
riboflavin [Tue, 17 Feb 2015 23:08:54 +0000 (18:08 -0500)]
add note that running with watch doesn't produce a site suitable for deployment
karland [Mon, 16 Feb 2015 18:50:53 +0000 (19:50 +0100)]
Add information to highlighting with Payments
Conflicts:
docs/content/extras/highlighting.md
Anthony Fok [Mon, 16 Feb 2015 18:26:54 +0000 (11:26 -0700)]
Adapt to relative path bug fix in purell
Temporary workaround for the bug fix and resulting
behavioral change in purell.NormalizeURLString():
a leading '/' was inadvertently to relative links,
but no longer, see #878.
I think the real solution is to allow Hugo to
make relative URL with relative path,
e.g. "../../post/hello-again/", as wished by users
in issues #157, #622, etc., without forcing
relative URLs to begin with '/'.
Once the fixes are in, let's remove this kludge
and restore SanitizeUrl() to the way it was.
Fixes #878
Cyrill Schumacher [Sun, 15 Feb 2015 21:43:42 +0000 (08:43 +1100)]
Moved futured getSQL topic to another branch
Cyrill Schumacher [Sun, 15 Feb 2015 06:41:46 +0000 (17:41 +1100)]
getJson and getCsv documentation proof reading by @msjulias
Cyrill Schumacher [Sat, 14 Feb 2015 23:01:58 +0000 (10:01 +1100)]
Update Dynamic Content docs
Cyrill Schumacher [Fri, 13 Feb 2015 06:21:26 +0000 (17:21 +1100)]
Update doc
Cyrill Schumacher [Thu, 12 Feb 2015 00:40:06 +0000 (11:40 +1100)]
Add getSQL idea
Cyrill Schumacher [Wed, 11 Feb 2015 23:16:03 +0000 (10:16 +1100)]
Initial doc file: Dynamic Content
Cyrill Schumacher [Sun, 8 Feb 2015 22:22:50 +0000 (09:22 +1100)]
Fix bug where running hugo without options causes to create
$TMPDIR/hugo_cache/ directory.
Cyrill Schumacher [Sun, 8 Feb 2015 04:33:30 +0000 (15:33 +1100)]
GetJson and GetCsv have now variadic URL parts so that you can submit pre or post parts of an URL. The parts will be joined to the final URL.
Cyrill Schumacher [Mon, 2 Feb 2015 09:14:59 +0000 (20:14 +1100)]
Add --ignoreCache CLI flag with description "Ignores the
cache directory for reading but still writes to it" as @spf13
suggested.
Cyrill Schumacher [Sun, 11 Jan 2015 21:59:42 +0000 (08:59 +1100)]
Adding getJson and getCsv to funcMap
Cyrill Schumacher [Sat, 27 Dec 2014 23:10:58 +0000 (10:10 +1100)]
Fix bug on windows where the backslash got removed in func MakePath()
Cyrill Schumacher [Sat, 27 Dec 2014 03:40:10 +0000 (14:40 +1100)]
Merge to stay up to date with current dev
Feature: GetJson and GetJson in short codes or other layout files.
For more details please see: http://cyrillschumacher.com/2014/12/21/dynamic-pages-with-gohugo.io/
Anthony Fok [Tue, 17 Feb 2015 10:19:30 +0000 (03:19 -0700)]
Quote strings in `hugo config` output
Also, use ` = ` to separate keys and values
if metaformatdata is "toml".
Anthony Fok [Tue, 17 Feb 2015 10:35:23 +0000 (03:35 -0700)]
Revert "Expansion of unit tests for utils/utils.go"
Rationale: Test failing on Windows with errors like this:
utils_test.go:177: Error: Could not remove file "f".
Error: remove C:\Users\appveyor\AppData\Local\Temp\utils_test_747965610:
The process cannot access the file because it is being used by another
process.
This reverts commit
6b28e38cea0dec3e3f045ab8ec833608b91a946f.
Sorry for my premature merge of Pull Request #818.
bep [Tue, 17 Feb 2015 03:33:44 +0000 (04:33 +0100)]
Fix canonifyurl vs schemaless links
And looks even faster:
Compared to previous attempt:
benchmark old ns/op new ns/op delta
BenchmarkAbsUrl 30902 27206 -11.96%
BenchmarkXmlAbsUrl 15389 14216 -7.62%
benchmark old allocs new allocs delta
BenchmarkAbsUrl 33 28 -15.15%
BenchmarkXmlAbsUrl 16 14 -12.50%
benchmark old bytes new bytes delta
BenchmarkAbsUrl 4167 3504 -15.91%
BenchmarkXmlAbsUrl 2057 2048 -0.44%
Compared to before I started all of this:
benchmark old ns/op new ns/op delta
BenchmarkAbsUrl 36219 27206 -24.88%
BenchmarkXmlAbsUrl 23903 14216 -40.53%
benchmark old allocs new allocs delta
BenchmarkAbsUrl 60 28 -53.33%
BenchmarkXmlAbsUrl 30 14 -53.33%
benchmark old bytes new bytes delta
BenchmarkAbsUrl 5842 3504 -40.02%
BenchmarkXmlAbsUrl 3754 2048 -45.44%
Fixes #816
Owen Waller [Sun, 16 Nov 2014 17:50:26 +0000 (17:50 +0000)]
Expansion of unit tests for utils/utils.go
This commit expands the test coverage for the utils/utils.go module.
The utils module uses the 'github.com/spf13/jwalterweatherman' (aka jww)
package for logging. The tests take the approach of examining the log
file that is produced by this module to verify correct behaviour. This
avoids refactoring the utils module.
The log file messages written by the jww module are of the form:
<log level>: yyyy/mm/dd <string|error message>
The checkLogFile function checks each of these parts in turn except for
the date string, which is currently ignored. The final part of the log
file format can either be a single error message, or a series of
strings followed by an error message. Both the error message and the
series of strings can be empty strings.
The log file is checked using a combination of the regex package,
along with the bufio scanner type. Each test logs to its own temporary
log file. This is achieved with standard test setup and teardown
functions.
One consequence of these tests is that StopOnErr has been refactored
into call a new unexported function doStopOnErr which contains the bulk
of the original logic. This allows the same testing approach to be used
with StopOnErr as with CheckErr and cutUsageMessage, rather than look at
the exit status code of the test itself.
An unfortunate side effect of this is that the author of the tests must
now know if a log file is expected or not. If doStopOnErr determines
that an empty error message would be written to the log file then
nothing is written. In the context of the tests this means that the log
file created by the test would have no contents. Consequently there
would be nothing for the test to examine. This situation is indicated by
the boolean flag logFileExoected in the testData struct, and processed
by the logFileIsExpectedAndValid function.
Although not ideal this was deemed a reasonable compromise.
Anthony Fok [Tue, 17 Feb 2015 08:59:40 +0000 (01:59 -0700)]
[Docs] Minor copyediting of highlighting.md
Also add `apt-get` command for installing Pygments.
karland [Mon, 16 Feb 2015 18:50:53 +0000 (19:50 +0100)]
Add information to highlighting with Pygments
karland [Mon, 16 Feb 2015 19:43:20 +0000 (20:43 +0100)]
List of variables
Some variables are currently not documented and others are explained
across the document. So, I tried to pull an overview from the source.
Pls double check. I am not 100% sure, what the purpose of some variables
is or whether they are only relevant for previous versions. Thanks
Maxime Michel [Mon, 16 Feb 2015 21:53:12 +0000 (22:53 +0100)]
Fixed a typo
Anthony Fok [Mon, 16 Feb 2015 20:14:47 +0000 (13:14 -0700)]
Make "Indexes" the alias and "Taxonomies" the canonical name
... rather than the other way around.
Discovered thanks to the new `hugo config` command.
spf13 [Mon, 16 Feb 2015 16:51:32 +0000 (11:51 -0500)]
Merge branch 'master' of github.com:spf13/hugo
Anthony Fok [Mon, 16 Feb 2015 16:07:52 +0000 (09:07 -0700)]
README.me: Add linefeed that got lost in the last commit
Anthony Fok [Mon, 16 Feb 2015 16:02:56 +0000 (09:02 -0700)]
[Docs] Add pointers to roadmap; new tweet and article
bep [Mon, 16 Feb 2015 09:48:15 +0000 (10:48 +0100)]
Improve abs url replacement speed
This commit replaces the multuple `bytes.Containts` and `bytes.Replace` with a custom replacer that does one pass through the document and exploits the fact that there are two common prefixes we search for, `src=` and `href=`.
This is both faster and consumes less memory. There may be even better algos to use here, but we must leave some room for improvements for future versions.
This should also make it possible to solve #816.
```
benchmark old ns/op new ns/op delta
BenchmarkAbsUrl 25795 22597 -12.40%
BenchmarkXmlAbsUrl 17187 11166 -35.03%
benchmark old allocs new allocs delta
BenchmarkAbsUrl 60 33 -45.00%
BenchmarkXmlAbsUrl 30 16 -46.67%
benchmark old bytes new bytes delta
BenchmarkAbsUrl 5844 4167 -28.70%
BenchmarkXmlAbsUrl 3754 2069 -44.89%
```
Fixes #894
bep [Thu, 12 Feb 2015 11:17:59 +0000 (12:17 +0100)]
Add benchmark for AbsUrlInXml
And a general test cleanup in /transform.
See #894
Ivan Fraixedes [Sat, 14 Feb 2015 20:20:06 +0000 (20:20 +0000)]
Another link in the same page
Ivan Fraixedes [Sat, 14 Feb 2015 20:08:50 +0000 (20:08 +0000)]
Fixed invalid link to partials
Joseph Kaptur [Sat, 7 Feb 2015 05:21:56 +0000 (00:21 -0500)]
Update docs so that `figure` includes the `class` parameter.
bep [Sun, 1 Feb 2015 21:05:47 +0000 (22:05 +0100)]
Add 'config' command to list site configuration
Fixes #871
spf13 [Sat, 14 Feb 2015 23:30:15 +0000 (18:30 -0500)]
Put back static theme conditional
Anthony Fok [Sun, 8 Feb 2015 15:11:04 +0000 (08:11 -0700)]
[commands/new.go] Update theme.toml etc.
- Add copyright years and author to the top of the file
- Write the current year from time.Now() to LICENSE.md
- Correct comment regarding `os.MkdirAll(p, 0777)`
- In createConfig(), split the `map[string]string` definition into
multiple lines to facilitate future expansion. Also add a trailing
slash to sample "baseurl" definition.
- Update theme.toml template to match that listed at
https://github.com/spf13/hugoThemes/blob/master/README.md#themetoml
See #883 for an equivalent `struct` implementation
bep [Thu, 12 Feb 2015 13:31:44 +0000 (14:31 +0100)]
Remove nohup.out committed by accident
bep [Thu, 12 Feb 2015 08:09:35 +0000 (09:09 +0100)]
Doc Data Files: Add section about themes and expanded the example a bit
bep [Wed, 11 Feb 2015 23:09:04 +0000 (00:09 +0100)]
Remove now superfluous conditional
bep [Wed, 11 Feb 2015 20:55:11 +0000 (21:55 +0100)]
Fix broken data dir test
bep [Wed, 11 Feb 2015 19:33:19 +0000 (20:33 +0100)]
Temporarily disable broken test
bep [Wed, 11 Feb 2015 19:24:56 +0000 (20:24 +0100)]
Add data files support in themes
If duplicate keys, the main data dir wins.
Fixes #892
Anthony Fok [Thu, 29 Jan 2015 21:19:12 +0000 (14:19 -0700)]
Change "ctrl+c" to "Ctrl+C"
midinastasurazz [Wed, 11 Feb 2015 04:45:13 +0000 (05:45 +0100)]
Fix typo: GetJson -> GetCsv
Greg Restall [Wed, 11 Feb 2015 02:41:45 +0000 (13:41 +1100)]
Add showcase entry for consequently.org
Consequently.org is a personal site for an academic, with a blog, list
of publications, classes and talks, all managed by hugo.