brevno-suite/hugo
10 years agoChange to variadic int args in Slicestr
bep [Mon, 23 Mar 2015 18:18:17 +0000 (19:18 +0100)]
Change to variadic int args in Slicestr

Makes for a better template api.

10 years agoImplement substr template function
Anthony Fok [Mon, 23 Mar 2015 17:23:13 +0000 (11:23 -0600)]
Implement substr template function

Its behavior is similar to that in JavaScript
with special handling of negative length as found in in PHP.

Fixes #991

10 years agoRename Slice to Slicestr
bep [Mon, 23 Mar 2015 15:24:18 +0000 (16:24 +0100)]
Rename Slice to Slicestr

Fixes #990

10 years agoPolish Slice doc
bep [Mon, 23 Mar 2015 11:42:42 +0000 (12:42 +0100)]
Polish Slice doc

10 years agoRename Substr to Slice
bep [Mon, 23 Mar 2015 11:18:34 +0000 (12:18 +0100)]
Rename Substr to Slice

That is whas was implemented, not Substr.

Also make the API more similar to Go's internal slice by making both the start and end indices optional.

See #990

10 years agoPolish Substr and Split tests
bep [Sun, 22 Mar 2015 12:52:35 +0000 (13:52 +0100)]
Polish Substr and Split tests

10 years agoAdd Substr and Split template functions
Xin Fan [Fri, 20 Mar 2015 02:44:53 +0000 (13:44 +1100)]
Add Substr and Split template functions

Both of these can take any type the cast lib can turn into a string.

10 years agoPull Data Files tests into its own file
bep [Thu, 19 Mar 2015 16:23:14 +0000 (17:23 +0100)]
Pull Data Files tests into its own file

10 years agoFormat docs
bep [Thu, 19 Mar 2015 01:09:42 +0000 (02:09 +0100)]
Format docs

10 years agoRename interface contentRewriter to contentTransformer
bep [Thu, 19 Mar 2015 00:55:49 +0000 (01:55 +0100)]
Rename interface contentRewriter to contentTransformer

Is is a much better name.

10 years agoChange safeHTtml to safeHTML in sitemap template
bep [Wed, 18 Mar 2015 20:27:29 +0000 (21:27 +0100)]
Change safeHTtml to safeHTML in sitemap template

10 years agotemplate: add some missing test cases for First
bep [Wed, 18 Mar 2015 19:47:10 +0000 (20:47 +0100)]
template: add some missing test cases for First

10 years agotransform: remove some superfluous int conversions
bep [Wed, 18 Mar 2015 19:18:18 +0000 (20:18 +0100)]
transform: remove some superfluous int conversions

10 years agoRemove URL param from exported AbsURL methods
bep [Wed, 18 Mar 2015 18:42:46 +0000 (19:42 +0100)]
Remove URL param from exported AbsURL methods

This is to make it clear that there is only one URL in play,
the BaseURL.

10 years agoUn-export ContentReWriter
bep [Wed, 18 Mar 2015 16:33:12 +0000 (17:33 +0100)]
Un-export ContentReWriter

10 years agoWrite to rotating ContentReWriter in transformer chain
bep [Tue, 17 Mar 2015 23:36:48 +0000 (00:36 +0100)]
Write to rotating ContentReWriter in transformer chain

This commit adds the interface ContentReWriter in the tranformer chain.

This is backed by two pooled byte buffers, alternating between being the reader or the writer.

This keeps the performance characteristic of the old implementation, but in a thread safe way.

Fixes #911

Benchmark old vs new:

benchmark              old ns/op     new ns/op     delta
BenchmarkAbsURL        17614         17384         -1.31%
BenchmarkXMLAbsURL     9431          9248          -1.94%

benchmark              old allocs     new allocs     delta
BenchmarkAbsURL        24             28             +16.67%
BenchmarkXMLAbsURL     12             14             +16.67%

benchmark              old bytes     new bytes     delta
BenchmarkAbsURL        3295          3424          +3.92%
BenchmarkXMLAbsURL     1954          1987          +1.69%

10 years agoComment out shaky Seq test
bep [Wed, 18 Mar 2015 11:42:00 +0000 (12:42 +0100)]
Comment out shaky Seq test

10 years agoCalculate the next Hugo version in Deprecated
bep [Wed, 18 Mar 2015 11:27:56 +0000 (12:27 +0100)]
Calculate the next Hugo version in Deprecated

Deprecation will be an ongoing activity for many future versions.

10 years agoRefactor Hugo version
bep [Wed, 18 Mar 2015 11:23:13 +0000 (12:23 +0100)]
Refactor Hugo version

Put version handling into the helpers package so it can be used by many,
and split version and suffix to make it possible to calculate the next Hugo version.

10 years agoAdd UrlPath to the deprecated list
bep [Wed, 18 Mar 2015 10:30:23 +0000 (11:30 +0100)]
Add UrlPath to the deprecated list

10 years agoImprove type handling in Seq
bep [Wed, 18 Mar 2015 10:10:04 +0000 (11:10 +0100)]
Improve type handling in Seq

10 years agoUpdate Hugo docs with the initialisms suggested by golint
Anthony Fok [Wed, 18 Mar 2015 06:44:12 +0000 (00:44 -0600)]
Update Hugo docs with the initialisms suggested by golint

In particular:

 * .Url → .URL (for node, menu and paginator)
 * .Site.BaseUrl → .Site.BaseURL
 * getJson → getJSON
 * getCsv → getCSV
 * safeHtml → safeHTML
 * safeCss → safeCSS
 * safeUrl → safeURL

Continued effort in fixing #959.

10 years agoMore initialism corrections (golint)
Anthony Fok [Wed, 18 Mar 2015 05:16:54 +0000 (22:16 -0700)]
More initialism corrections (golint)

Thanks to @bep's new, brilliant helpers.Deprecated() function,
the following functions or variables are transitioned to their
new names, preserving backward compatibility for v0.14
and warning the user of upcoming obsolescence in v0.15:

 * .Url → .URL (for node, menu and paginator)
 * .Site.BaseUrl → .Site.BaseURL
 * .Site.Indexes → .Site.Taxonomies
 * .Site.Recent → .Site.Pages
 * getJson → getJSON
 * getCsv → getCSV
 * safeHtml → safeHTML
 * safeCss → safeCSS
 * safeUrl → safeURL

Also fix related initialisms in strings and comments.

Continued effort in fixing #959.

10 years agoPress: Add "Migrating to Hugo From Octopress" by Nathan LeClaire
Anthony Fok [Wed, 18 Mar 2015 06:32:19 +0000 (00:32 -0600)]
Press: Add "Migrating to Hugo From Octopress" by Nathan LeClaire

10 years ago[Docs] Copyedit http://gohugo.io/extras/dynamiccontent/
Anthony Fok [Wed, 18 Mar 2015 05:53:17 +0000 (23:53 -0600)]
[Docs] Copyedit gohugo.io/extras/dynamiccontent/

10 years agoUse ReaderToString in site tests
bep [Tue, 17 Mar 2015 17:14:29 +0000 (18:14 +0100)]
Use ReaderToString in site tests

Since a string is what's really needed.

10 years agoFix crossrefs on Windows
bep [Tue, 17 Mar 2015 14:38:48 +0000 (15:38 +0100)]
Fix crossrefs on Windows

Have to convert path slashes to file path slashes before the URL path is compared to a file path.

Fixes #957

10 years agoAdd "getenv" as an wrapper for os.Getenv
quoha [Mon, 16 Mar 2015 01:56:20 +0000 (20:56 -0500)]
Add "getenv" as an wrapper for os.Getenv

Add a wrapper for the os.Getenv function. The
wrapper takes as input a string that is assumed to be an exported
variable name.

Fixes #977

10 years agoremoved duplicate word in readme
Vitaly Haritonsky [Sat, 14 Mar 2015 10:58:03 +0000 (12:58 +0200)]
removed duplicate word in readme

10 years agoRevert "Added image support to the sitemap.xml template"
bep [Fri, 13 Mar 2015 23:03:34 +0000 (00:03 +0100)]
Revert "Added image support to the sitemap.xml template"

This reverts commit 3c147bd41922c4f0ac81bc1e1f2ffab8093d5d1c.

Fixes #972

10 years agoAdded image support to the sitemap.xml template
Derek Perkins [Tue, 25 Nov 2014 02:59:26 +0000 (19:59 -0700)]
Added image support to the sitemap.xml template

Conflicts:
tpl/template_embedded.go

10 years agoAdd Seq template func
bep [Tue, 24 Feb 2015 09:56:16 +0000 (10:56 +0100)]
Add Seq template func

Very similar to GNU's seq.

Fixes #552

Conflicts:
tpl/template.go

10 years agoExperimental AsciiDoc support with external helpers
Anthony Fok [Fri, 23 Jan 2015 18:59:14 +0000 (11:59 -0700)]
Experimental AsciiDoc support with external helpers

See #470

 * Based on existing support for reStructuredText files

 * Handles content files with extensions `.asciidoc` and `.ad`

 * Pipes content through `asciidoctor --safe -`.
   If `asciidoctor` is not installed, then `asciidoc --safe -`.

 * To make sure `asciidoctor` or `asciidoc` is found, after adding
   a piece of AsciiDoc content, run `hugo` with the `-v` flag
   and look for this message:

        INFO: 2015/01/23 Rendering with /usr/bin/asciidoctor ...

Caveats:

 * The final "Last updated" timestamp is currently not stripped.

 * When `hugo` is run with `-v`, you may see a lot of these messages

        INFO: 2015/01/23 Rendering with /usr/bin/asciidoctor ...

   if you have lots of `*.ad`, `*.adoc` or `*.asciidoc` files.

 * Some versions of `asciidoc` may have trouble with its safe mode.
   To test if you are affected, try this:

        $ echo "Hello" | asciidoc --safe -
        asciidoc: ERROR: unsafe: ifeval invalid
        asciidoc: FAILED: ifeval invalid safe document

   If so, I recommend that you install `asciidoctor` instead.

Feedback and patches welcome!

Ideally, we should be using https://github.com/VonC/asciidocgo,
@VonC's wonderful Go implementation of Asciidoctor.  However,
there is still a bit of work needed for asciidocgo to expose
its API so that Hugo can actually use it.

Until then, hope this "experimental AsciiDoc support through external
helpers" can serve as a stopgap solution for our community. :-)

2015-01-30: Updated for the replaceShortcodeTokens() syntax change
2015-02-21: Add `.adoc` extension as suggested by @Fale

Conflicts:
helpers/content.go

10 years agoDo not ERROR-log missing /data dir
bep [Thu, 12 Mar 2015 20:44:36 +0000 (21:44 +0100)]
Do not ERROR-log missing /data dir

Fixes #930

10 years agosource: add some test cases for File
bep [Thu, 12 Mar 2015 19:50:44 +0000 (20:50 +0100)]
source: add some test cases for File

10 years agoAdd double checking in Deprecated
bep [Thu, 12 Mar 2015 17:51:31 +0000 (18:51 +0100)]
Add double checking in Deprecated

To prevent possible duplicate log statements.

10 years agoAdd deprecated logger
bep [Thu, 12 Mar 2015 15:10:14 +0000 (16:10 +0100)]
Add deprecated logger

10 years ago[Docs] Update and expand http://gohugo.io/overview/usage/
Anthony Fok [Thu, 12 Mar 2015 14:53:48 +0000 (08:53 -0600)]
[Docs] Update and expand gohugo.io/overview/usage/

The `hugo help` output as shown in http://gohugo.io/overview/usage/
was not yet updated for v0.13. Thanks to @alebaffa for the heads up!

Also:
 - Clarify that, after using `hugo server`, the bare `hugo` command
   need to be run before deployment.
 - Add a section on running `hugo` as production web server,
   and add links to two blog posts of two Hugo users sharing
   their experience.

Partially fixes: #852 and #937

10 years agoUpdate press coverage: Fix URL; new tutorial in Chinese
Anthony Fok [Thu, 12 Mar 2015 14:50:31 +0000 (08:50 -0600)]
Update press coverage: Fix URL; new tutorial in Chinese

10 years agoRemove trailing space from site build statistics
Anthony Fok [Thu, 12 Mar 2015 14:46:42 +0000 (08:46 -0600)]
Remove trailing space from site build statistics

10 years agoCorrect initialisms as suggested by golint
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.

10 years agodoArithmetic: add test for division by zero
bep [Wed, 11 Mar 2015 09:25:53 +0000 (10:25 +0100)]
doArithmetic: add test for division by zero

10 years agoAdd some basic tests for doArithmetic
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.

10 years agoSkip directories like node_modules from the watchlist
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.

10 years agoparser: add some frontmatter test cases
bep [Tue, 10 Mar 2015 22:17:39 +0000 (23:17 +0100)]
parser: add some frontmatter test cases

10 years agoabsurlreplacer: write replacements directly to the byte buffer
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%

10 years agoDo not parse backup files with trailing '~' as templates
Anthony Fok [Tue, 10 Mar 2015 16:18:40 +0000 (10:18 -0600)]
Do not parse backup files with trailing '~' as templates

Fixes #964

10 years agoSwitch from fsnotify.v0 to fsnotify.v1 API (watcher)
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

10 years agoAdd new min_version field to theme.toml template
Anthony Fok [Tue, 10 Mar 2015 15:49:42 +0000 (09:49 -0600)]
Add new min_version field to theme.toml template

10 years agoAdd test cases for Ne and Eq type normalisation
bep [Mon, 9 Mar 2015 14:52:32 +0000 (15:52 +0100)]
Add test cases for Ne and Eq type normalisation

See #961

10 years agoFix eq and ne tpl function issue
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

10 years agoFix UglyUrls on Windows
bep [Sat, 7 Mar 2015 14:41:01 +0000 (15:41 +0100)]
Fix UglyUrls on Windows

Fixes #958

10 years agoHandle 404 thread safely
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

10 years agoThere is only one s.PageTarget() - so we cannot change it, even tempoararily. We...
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)

10 years agoparser: apply some Golint rules
bep [Sat, 7 Mar 2015 11:59:04 +0000 (12:59 +0100)]
parser: apply some Golint rules

10 years agolivereload: apply some Golint rules
bep [Sat, 7 Mar 2015 11:58:51 +0000 (12:58 +0100)]
livereload: apply some Golint rules

10 years agosource: apply some Golint rules
bep [Sat, 7 Mar 2015 11:58:39 +0000 (12:58 +0100)]
source: apply some Golint rules

10 years agohugolib: apply some more Golint rules
bep [Sat, 7 Mar 2015 11:53:20 +0000 (12:53 +0100)]
hugolib: apply some more Golint rules

10 years agomenu: make receiver name on Page methods consistent
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.

10 years agopage: make receiver name on Page methods 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)

10 years agohugolib: apply some Hugolint rules
bep [Fri, 6 Mar 2015 23:13:06 +0000 (00:13 +0100)]
hugolib: apply some Hugolint rules

10 years agoauthor: fix doc
bep [Fri, 6 Mar 2015 23:10:00 +0000 (00:10 +0100)]
author: fix doc

10 years agohelpers: apply some Golint rules
bep [Fri, 6 Mar 2015 23:02:06 +0000 (00:02 +0100)]
helpers: apply some Golint rules

10 years agoApply some more Golint suggestions
bep [Fri, 6 Mar 2015 17:07:50 +0000 (18:07 +0100)]
Apply some more Golint suggestions

10 years agoFix some Go Lint errors
bep [Fri, 6 Mar 2015 14:58:14 +0000 (15:58 +0100)]
Fix some Go Lint errors

10 years agoFix errors reported by Go Vet
bep [Fri, 6 Mar 2015 13:56:44 +0000 (14:56 +0100)]
Fix errors reported by Go Vet

10 years agoPrevent 404.html from prettifying into 404/index.html
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

10 years agoAvoid panic when pagination on 0 pages
bep [Thu, 5 Mar 2015 23:30:51 +0000 (00:30 +0100)]
Avoid panic when pagination on 0 pages

Fixes #948

10 years agoApply gofmt -s
bep [Thu, 5 Mar 2015 22:19:10 +0000 (23:19 +0100)]
Apply gofmt -s

10 years agoAdd benchmark for the shortcode lexer
bep [Thu, 5 Mar 2015 20:10:53 +0000 (21:10 +0100)]
Add benchmark for the shortcode lexer

10 years agoUpdate github-pages-blog.md
Saint Asky [Thu, 5 Mar 2015 02:57:06 +0000 (10:57 +0800)]
Update github-pages-blog.md

change `hugo serve` to `hugo server`

10 years agoTidying the Readme a bit more
Steve Francia [Wed, 4 Mar 2015 14:17:35 +0000 (09:17 -0500)]
Tidying the Readme a bit more

10 years agoUsing a smaller Header Image
Steve Francia [Wed, 4 Mar 2015 14:16:49 +0000 (09:16 -0500)]
Using a smaller Header Image

10 years agoFixing image in readme
Steve Francia [Wed, 4 Mar 2015 14:15:55 +0000 (09:15 -0500)]
Fixing image in readme

10 years agoRestructure top of Readme.md
Steve Francia [Wed, 4 Mar 2015 14:15:03 +0000 (09:15 -0500)]
Restructure top of Readme.md

10 years agoMerge pull request #944 from gitter-badger/gitter-badge
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

10 years agoAdded Gitter badge
The Gitter Badger [Wed, 4 Mar 2015 14:06:38 +0000 (14:06 +0000)]
Added Gitter badge

10 years agoUpdate Readme.md with additional contribution guides
Steve Francia [Wed, 4 Mar 2015 14:01:15 +0000 (09:01 -0500)]
Update Readme.md with additional contribution guides

10 years agoAllow the same shortcode to be used with or without inline content
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

10 years agoImprove error message on missing shortcode inner content
bep [Sat, 28 Feb 2015 18:24:30 +0000 (19:24 +0100)]
Improve error message on missing shortcode inner content

Fixes #933

10 years agoKeep trailing slash when baseUrl contains a sub path
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

10 years agoAllow hyphens in shortcode name
bep [Fri, 27 Feb 2015 10:57:23 +0000 (11:57 +0100)]
Allow hyphens in shortcode name

Fixes #929

10 years agoUse osext on GitHub
bep [Mon, 23 Feb 2015 17:12:19 +0000 (18:12 +0100)]
Use osext on GitHub

Fixes #922

10 years ago[Docs] NetBSD and ARM pre-built binaries are already provided
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!

10 years agoBumping to version "v0.14-DEV"
spf13 [Sun, 22 Feb 2015 04:11:36 +0000 (23:11 -0500)]
Bumping to version "v0.14-DEV"

10 years agoUpdating the final release notes for v0.13 v0.13
spf13 [Sun, 22 Feb 2015 03:31:01 +0000 (22:31 -0500)]
Updating the final release notes for v0.13

10 years ago[Docs] Clarify the switch to `canonifyurls = false` as default
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

10 years agoUpdate README.md and overview/installing.md
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.

10 years agoAvoid race condition in target list init
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

10 years agoAvoid race condition in isInnerShortcode
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

10 years agoAdd trailing file separator to temp dir
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

10 years agoUse $.Paginator in template
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.

10 years agoReturn unmodified content if panic in LiveReloadInject
bep [Wed, 18 Feb 2015 21:16:40 +0000 (22:16 +0100)]
Return unmodified content if panic in LiveReloadInject

10 years agoAdd revocer 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

10 years agoSuppress errors for symbolic links witch point to a file.
René Jochum [Tue, 17 Feb 2015 21:21:37 +0000 (22:21 +0100)]
Suppress errors for symbolic links witch point to a file.

10 years agoadd note that running with watch doesn't produce a site suitable for deployment
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

10 years agoAdd information to highlighting with Payments
karland [Mon, 16 Feb 2015 18:50:53 +0000 (19:50 +0100)]
Add information to highlighting with Payments

Conflicts:
docs/content/extras/highlighting.md

10 years agoAdapt to relative path bug fix in purell
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

10 years agoMoved futured getSQL topic to another branch
Cyrill Schumacher [Sun, 15 Feb 2015 21:43:42 +0000 (08:43 +1100)]
Moved futured getSQL topic to another branch

10 years agogetJson and getCsv documentation proof reading by @msjulias
Cyrill Schumacher [Sun, 15 Feb 2015 06:41:46 +0000 (17:41 +1100)]
getJson and getCsv documentation proof reading by @msjulias