brevno-suite/hugo
9 years agoAdd a showcase of Kangkona
kangkona [Sun, 5 Jul 2015 11:13:42 +0000 (19:13 +0800)]
Add a showcase of Kangkona

9 years agoAdd how-to for foreign language month names
Rick Cogley [Wed, 8 Jul 2015 02:09:11 +0000 (11:09 +0900)]
Add how-to for foreign language month names

FYI @nicolinuxfr, added the month name example.

9 years agoAdd Rick and eSolia's sites to the Hugo docs showcase
Rick Cogley [Wed, 8 Jul 2015 01:35:47 +0000 (10:35 +0900)]
Add Rick and eSolia's sites to the Hugo docs showcase

9 years agoAdded missing "Social" section to SiteInfo
delputnam [Thu, 2 Jul 2015 14:04:17 +0000 (10:04 -0400)]
Added missing "Social" section to SiteInfo

I could be wrong here, but it looks to me like .Site.Social.facebook is used in tpl/template_embedded.go, but the variable is never set. I've added a line to initializeSiteInfo to map the info from config into this variable.

9 years agoDocument Page.RawContent in templates/variables/
Marc-Antoine Ruel [Thu, 2 Jul 2015 15:58:38 +0000 (11:58 -0400)]
Document Page.RawContent in templates/variables/

9 years agoAdd Page.RawContent() to access raw Markdown as a string.
Marc-Antoine Ruel [Thu, 2 Jul 2015 13:32:57 +0000 (09:32 -0400)]
Add Page.RawContent() to access raw Markdown as a string.

In particular, RawContent() excludes the metadata header.

This is necessary in the use case of embedding remarkjs.com slides, as it needs
the unprocessed Markdown content to generate the slides.

9 years agoAdd nil comparison to where tpl function
Tatsushi Demachi [Sat, 27 Jun 2015 17:15:42 +0000 (02:15 +0900)]
Add nil comparison to where tpl function

`where` template function's internal condition check function always
returns `false` when a target value doesn't exist or it's nil value but
this behavior makes it difficult to filter values which doesn't have a
particular parameter.

To solve it, this adds nil value comparison to the function.
`where Values ".Param.key" nil` like clause can be used for the case
above.

Only "=", "==", "eq", "!=", "<>", "ne" operators are allowed to be used
with `nil`. If an other operator is passed with `nil`, the condition
check function returns `false` like before.

Fix #1232

9 years agoFix watcher detecting changes as static when no theme
Bjørn Erik Pedersen [Sun, 28 Jun 2015 17:27:28 +0000 (19:27 +0200)]
Fix watcher detecting changes as static when no theme

There have been some changes to the ´helpers.GetThemesDirPath()´ so it now returns an empty string when no theme.

This is correct, but it broke the watch service (at lest on OSX), as `strings.HasPrefix("", "somestring") evaluates to true somehow, and content changes are incorrectly branded as static.

There are other issues in there, but that will come later ...

See #1236

9 years agoAdd doc for new Blackfriday options
Bjørn Erik Pedersen [Sun, 28 Jun 2015 13:27:47 +0000 (15:27 +0200)]
Add doc for new Blackfriday options

See #1220
See #1231

9 years agoAdd config option for Blackfriday HTML_HREF_TARGET_BLANK
Bjørn Erik Pedersen [Sun, 28 Jun 2015 13:18:15 +0000 (15:18 +0200)]
Add config option for Blackfriday HTML_HREF_TARGET_BLANK

Fixes #1220

9 years agoAdd option to disable Blackfriday LaTeX style dashes
Bjørn Erik Pedersen [Sun, 28 Jun 2015 13:08:52 +0000 (15:08 +0200)]
Add option to disable Blackfriday LaTeX style dashes

Can be used in site config of per page front matter:

```
[blackfriday]
latexDashes = false
```

Fixes #1231

9 years ago404 is homeless
Bjørn Erik Pedersen [Sun, 28 Jun 2015 08:43:43 +0000 (10:43 +0200)]
404 is homeless

Fixes #1235

9 years agoadded thumbnail
Mario Sanchez Carrion [Wed, 24 Jun 2015 02:03:47 +0000 (22:03 -0400)]
added thumbnail

9 years agoCreate mariosanchez.md
Mario Sanchez Carrion [Sun, 21 Jun 2015 01:04:44 +0000 (21:04 -0400)]
Create mariosanchez.md

Submitting site for consideration in Hugo Showcase

9 years agoadd vamp.io site as showcase
tim [Fri, 26 Jun 2015 13:55:16 +0000 (15:55 +0200)]
add vamp.io site as showcase

9 years agoUse helpers.GetThemeDir() to find base templates.
Jonathan Anderson [Fri, 19 Jun 2015 13:30:34 +0000 (11:00 -0230)]
Use helpers.GetThemeDir() to find base templates.

Now that we have the helpers.GetThemeDir() function, use it instead of
calling directly into viper.

9 years agoRefactor theme path helper functions.
Jonathan Anderson [Fri, 19 Jun 2015 13:26:32 +0000 (10:56 -0230)]
Refactor theme path helper functions.

Reduce duplication (`x + FilePathSeparator + y` a few lines away from `filepath.Join(x, y)`) and add a `GetThemeDir()` function to get the current theme's directory.

Also add a comment complaining about the `GetThemesDirPath()` function, which doesn't seem to do what its name would suggest. This might be a candidate for deprecation?

9 years agoAdd support for baseof.ace templates in themes.
Jonathan Anderson [Fri, 19 Jun 2015 01:29:08 +0000 (22:59 -0230)]
Add support for baseof.ace templates in themes.

When we find a template that requires a base template, we should also look
for that base template in the current theme.

Fixes #1215.

9 years agoProper parsing structured array from yaml based FrontMatter
Piotr Kowalczuk [Thu, 25 Jun 2015 09:46:09 +0000 (11:46 +0200)]
Proper parsing structured array from yaml based FrontMatter

9 years agoUse pooled buffer in replaceShortcodes
Bjørn Erik Pedersen [Mon, 22 Jun 2015 17:40:12 +0000 (19:40 +0200)]
Use pooled buffer in replaceShortcodes

Even as a copy at the end is needed, this consumes way less memory on Go 1.4.2:

```benchmark                           old ns/op     new ns/op     delta
BenchmarkParsePage                  145979        139964        -4.12%
BenchmarkReplaceShortcodeTokens     633574        631946        -0.26%
BenchmarkShortcodeLexer             195842        187938        -4.04%

benchmark                           old allocs     new allocs     delta
BenchmarkParsePage                  87             87             +0.00%
BenchmarkReplaceShortcodeTokens     9424           9415           -0.10%
BenchmarkShortcodeLexer             274            274            +0.00%

benchmark                           old bytes     new bytes     delta
BenchmarkParsePage                  141830        141830        +0.00%
BenchmarkReplaceShortcodeTokens     35219         25385         -27.92%
BenchmarkShortcodeLexer             30178         30177         -0.00%
```
See #1148

9 years agodocs: make the named value Data File example simpler
Bjørn Erik Pedersen [Mon, 22 Jun 2015 18:25:17 +0000 (20:25 +0200)]
docs: make the named value Data File example simpler

9 years agoUpdate datafiles.md
Sebastian Krause [Mon, 15 Jun 2015 23:09:24 +0000 (01:09 +0200)]
Update datafiles.md

additional example for named data values

9 years agoFix map-order dependent menu tests
Bjørn Erik Pedersen [Sun, 21 Jun 2015 21:36:58 +0000 (23:36 +0200)]
Fix map-order dependent menu tests

Fixes #1222

9 years agoPrint URL when failing menu test
Bjørn Erik Pedersen [Sun, 21 Jun 2015 21:09:39 +0000 (23:09 +0200)]
Print URL when failing menu test

See #1222

9 years agoRemove unused var
Bjørn Erik Pedersen [Sun, 21 Jun 2015 20:57:42 +0000 (22:57 +0200)]
Remove unused var

9 years agoRemove superfluous p-tags around shortcodes
Bjørn Erik Pedersen [Sun, 21 Jun 2015 11:08:30 +0000 (13:08 +0200)]
Remove superfluous p-tags around shortcodes

This commit replaces the regexp driven `replaceShortcodeTokens` with a handwritten one.

It wasnt't possible to handle the p-tags case without breaking performance.

This fix actually improves in that area:

```
benchmark                           old ns/op     new ns/op     delta
BenchmarkParsePage                  142738        142667        -0.05%
BenchmarkReplaceShortcodeTokens     665590        575645        -13.51%
BenchmarkShortcodeLexer             176038        181074        +2.86%

benchmark                           old allocs     new allocs     delta
BenchmarkParsePage                  87             87             +0.00%
BenchmarkReplaceShortcodeTokens     9631           9424           -2.15%
BenchmarkShortcodeLexer             274            274            +0.00%

benchmark                           old bytes     new bytes     delta
BenchmarkParsePage                  141830        141830        +0.00%
BenchmarkReplaceShortcodeTokens     52275         35219         -32.63%
BenchmarkShortcodeLexer             30177         30178         +0.00%
```

Fixes #1148

9 years agoComment out mystery test
Bjørn Erik Pedersen [Sun, 21 Jun 2015 20:28:50 +0000 (22:28 +0200)]
Comment out mystery test

Fails on Travis in Go 1.3 + 1.5.

Will have to look into that one.

9 years agoRevert "add preliminary support for content/index.md file to be homepage content"
Bjørn Erik Pedersen [Sun, 21 Jun 2015 13:01:09 +0000 (15:01 +0200)]
Revert "add preliminary support for content/index.md file to be homepage content"

This reverts commit 5f84bc02cd9706af92311cc27ae01d2ffc1410fa.

9 years agoRevert "refactor and clean up site tests"
Bjørn Erik Pedersen [Sun, 21 Jun 2015 13:01:06 +0000 (15:01 +0200)]
Revert "refactor and clean up site tests"

This reverts commit 99e250917ddc351d45adfeb81057ea3607d1b148.

9 years agoRevert "Move matchRender to test helpers file"
Bjørn Erik Pedersen [Sun, 21 Jun 2015 13:01:02 +0000 (15:01 +0200)]
Revert "Move matchRender to test helpers file"

This reverts commit 32d91d616e99cd05b59644e292b29be415d5054f.

9 years agoRevert "Add tests for homepage content support"
Bjørn Erik Pedersen [Sun, 21 Jun 2015 13:01:01 +0000 (15:01 +0200)]
Revert "Add tests for homepage content support"

This reverts commit 24351c58bedea72e4e113e2d2e5753a32ce2a0e3.

9 years agoRevert "Make .IsHome work when homepage as page"
Bjørn Erik Pedersen [Sun, 21 Jun 2015 13:00:53 +0000 (15:00 +0200)]
Revert "Make .IsHome work when homepage as page"

This reverts commit 7e765cc1bd0ab06dbf05a467f3c648012265742b.

9 years agoMake .IsHome work when homepage as page
spf13 [Fri, 19 Jun 2015 14:07:47 +0000 (10:07 -0400)]
Make .IsHome work when homepage as page

9 years agoAdd tests for homepage content support
spf13 [Wed, 17 Jun 2015 14:39:18 +0000 (10:39 -0400)]
Add tests for homepage content support

9 years agoMove matchRender to test helpers file
spf13 [Wed, 17 Jun 2015 14:38:46 +0000 (10:38 -0400)]
Move matchRender to test helpers file

9 years agorefactor and clean up site tests
spf13 [Tue, 2 Jun 2015 02:57:16 +0000 (22:57 -0400)]
refactor and clean up site tests

9 years agoadd preliminary support for content/index.md file to be homepage content
spf13 [Tue, 2 Jun 2015 02:14:36 +0000 (22:14 -0400)]
add preliminary support for content/index.md file to be homepage content

9 years agoRemove superfluous return
Bjørn Erik Pedersen [Tue, 16 Jun 2015 20:31:51 +0000 (22:31 +0200)]
Remove superfluous return

9 years agoMake removal of accents in taxonomy and section paths optional
Bjørn Erik Pedersen [Tue, 16 Jun 2015 17:25:48 +0000 (19:25 +0200)]
Make removal of accents in taxonomy and section paths optional

And default off.

Fixes #1180

9 years agoAdd new tutorial for multilingual sites
Rick Cogley [Sun, 7 Jun 2015 06:26:06 +0000 (15:26 +0900)]
Add new tutorial for multilingual sites

Simple tutorial showing one pattern for creating a multilingual site in
Hugo.

9 years agoUpdate docs for `last` template function
Ariejan de Vroom [Wed, 10 Jun 2015 22:12:27 +0000 (00:12 +0200)]
Update docs for `last` template function

9 years agoAdd `last` template function
Ariejan de Vroom [Wed, 10 Jun 2015 22:11:47 +0000 (00:11 +0200)]
Add `last` template function

`last` allows the user to select the last X items of
and array.

9 years agoRefactor var name limit to index
Ariejan de Vroom [Wed, 10 Jun 2015 21:58:57 +0000 (23:58 +0200)]
Refactor var name limit to index

9 years agoAdd `after` to template function documentation
Ariejan de Vroom [Wed, 10 Jun 2015 21:53:39 +0000 (23:53 +0200)]
Add `after` to template function documentation

9 years agoAdd `after` template function
Ariejan de Vroom [Wed, 10 Jun 2015 21:49:55 +0000 (23:49 +0200)]
Add `after` template function

Where `first` will return the first N items of a rangeable list,
`after` will return all items after the Nth item.

This allows the user to do something with the first N items and
something different with the remaining items after N.

9 years agoAdd Blackfriday definition lists extension support
Vincent Batoufflet [Sat, 13 Jun 2015 08:02:53 +0000 (10:02 +0200)]
Add Blackfriday definition lists extension support

9 years agoRevert "Add some debug to failing menu test"
bep [Fri, 12 Jun 2015 20:50:02 +0000 (22:50 +0200)]
Revert "Add some debug to failing menu test"

This reverts commit becc627e1e55f08e04892212350fa4db72f5c43a.

9 years agoAdd some debug to failing menu test
bep [Thu, 11 Jun 2015 20:48:55 +0000 (22:48 +0200)]
Add some debug to failing menu test

9 years agoMove Viper reset to correct level in menu tests
bep [Thu, 11 Jun 2015 20:41:26 +0000 (22:41 +0200)]
Move Viper reset to correct level in menu tests

9 years agoReset Viper for every duplicate menu test iteration
bep [Thu, 11 Jun 2015 19:22:35 +0000 (21:22 +0200)]
Reset Viper for every duplicate menu test iteration

9 years agoMake sure target destination has the right path separator.
David Calavera [Thu, 11 Jun 2015 03:29:12 +0000 (20:29 -0700)]
Make sure target destination has the right path separator.

Signed-off-by: David Calavera <david.calavera@gmail.com>
9 years agoLet travis test against go-tip
Ariejan de Vroom [Wed, 10 Jun 2015 22:22:22 +0000 (00:22 +0200)]
Let travis test against go-tip

9 years agoTemp remove tip from Travis
bep [Sat, 6 Jun 2015 21:56:28 +0000 (23:56 +0200)]
Temp remove tip from Travis

There is one failing test there. It runs fine for me on tip locally (Linux).

Will reinsert this once tip gets into stable mode.

9 years agoFix substr tpl func's int type variant issue
Tatsushi Demachi [Sat, 6 Jun 2015 15:21:14 +0000 (00:21 +0900)]
Fix substr tpl func's int type variant issue

`substr` template function takes one or two range arguments. Both
arguments must be int type values but if it is used with a calclation
function e.g. `add`, `len` etc, it causes a wrong type error.

This fixes the issue to allow the function to take other integer type
variant like `int64` etc.

This also includes a small fix on no range argument case.

Fix #1190

9 years agoSilence chatty JSON test
bep [Sat, 6 Jun 2015 18:57:11 +0000 (20:57 +0200)]
Silence chatty JSON test

9 years agoAdd some tests for IgnoreFiles
bep [Wed, 3 Jun 2015 16:54:30 +0000 (18:54 +0200)]
Add some tests for IgnoreFiles

And log error on invalid regexp.

See #1189

9 years agoAdd some docs for IgnoreFiles
bep [Wed, 3 Jun 2015 11:46:55 +0000 (13:46 +0200)]
Add some docs for IgnoreFiles

See #1189

9 years agoRename WatchIgnoreFiles to IgnoreFiles
bep [Wed, 3 Jun 2015 11:45:52 +0000 (13:45 +0200)]
Rename WatchIgnoreFiles to IgnoreFiles

Because this isn't just about server and watching.

See #1189

9 years agoAdd configurable list to ignore files in server watch
bep [Wed, 3 Jun 2015 11:37:57 +0000 (13:37 +0200)]
Add configurable list to ignore files in server watch

The following inside `config.toml` will ignore files ending with `.foo` and `.boo`.

```
watchIgnoreFiles = [ "\\.foo$", "\\.boo$" ]
```

The above is is a list of Reqular Expressions, but note the escaping of the `\` to make TOML happy.

Fixes #1189

9 years agoGetJSON/GetCSV: Add retry on invalid content
Cyrill Schumacher [Thu, 28 May 2015 05:36:06 +0000 (15:36 +1000)]
GetJSON/GetCSV: Add retry on invalid content

The retry gets triggered when the parsing of the content fails.

Fixes #1166

9 years agoAdd PreserveTaxonomyNames flag
bep [Sun, 31 May 2015 18:30:53 +0000 (20:30 +0200)]
Add PreserveTaxonomyNames flag

Before this commit, taxonomy names were hyphenated, lower-cased and normalized -- then fixed and titleized on the archive page.

So what you entered in the front matter isn't necessarily what you got in the final site.

To preserve backwards compability, `PreserveTaxonomyNames` is default `false`.

Setting it to `true` will preserve what you type (the first characters is made toupper for titles), but normalized in URLs.

This also means that, if you manually construct URLs to the archive pages, you will have to pass the Taxonomy names through the `urlize` func.

Fixes #1180

9 years agoRemove accents in URLs
bep [Sat, 30 May 2015 12:46:58 +0000 (14:46 +0200)]
Remove accents in URLs

So the taxonomy `Gérard Depardieu` gives paths on the form `gerard-depardieu`.

Unfortunately this introduces two imports from the `golang.org/`, but Unicode-normalization isn't something we'd want to write from scratch.

See https://blog.golang.org/normalization

See #1180

9 years agoFix FullFilePath
bep [Sun, 31 May 2015 16:54:50 +0000 (18:54 +0200)]
Fix FullFilePath

Fixes #732

9 years agoAllow custom RSS Uri for section and taxonomy feeds
Artem Vorotnikov [Sun, 24 May 2015 13:48:46 +0000 (16:48 +0300)]
Allow custom RSS Uri for section and taxonomy feeds

Fixes #1147

9 years agoUpdate introduction.md
vsopvsop [Fri, 29 May 2015 15:14:37 +0000 (20:44 +0530)]
Update introduction.md

9 years agoFix Windows Ace path issue
bep [Sun, 31 May 2015 11:13:26 +0000 (13:13 +0200)]
Fix Windows Ace path issue

Ace doesn't like Windows style filepath separators.

Fixes #1178

9 years agoAdd some Ace test cases
bep [Sun, 31 May 2015 11:01:20 +0000 (13:01 +0200)]
Add some Ace test cases

See #1178

9 years agoExtract Ace handling to a method
bep [Fri, 29 May 2015 09:31:23 +0000 (11:31 +0200)]
Extract Ace handling to a method

To prepare for some testing.

See #1178

9 years agoSupport `Fish and Chips` section
bep [Thu, 28 May 2015 21:05:13 +0000 (23:05 +0200)]
Support `Fish and Chips` section

Section names are also used as the title of the list pages, but naming section folders as `Fish and Chips` and similar didn't work very well.

This commit fixes that.

This commit also changes the title casing of the section titles. Some may argue that this is a breaking change, but the old behaviour was also pretty broken,
even for languages that use title capitalizations, as it didn't follow any particular style guide, `fish and chips` became `Fish And Chips` etc.

Now it just turns the first letter into upper case, so `Fish and Chips` will be left as `Fish and Chips`.

People wanting the good old behaviour can use the `title` template func.

Fixes #1176

9 years agoAdd IsHome
bep [Thu, 28 May 2015 01:19:59 +0000 (03:19 +0200)]
Add IsHome

To determine if a page is the "Home Page" has inspired lots of creativity in the template department.

This commit makes it simpler: IsHome will tell the truth.

9 years agoAdd some missing page permalink test cases
bep [Thu, 28 May 2015 00:30:01 +0000 (02:30 +0200)]
Add some missing page permalink test cases

9 years agoNever remove trailing slash in RelPermalink
bep [Wed, 27 May 2015 18:41:25 +0000 (20:41 +0200)]
Never remove trailing slash in RelPermalink

Fixed #1174

9 years agodocs: getting usage up to spec
bep [Wed, 27 May 2015 09:59:27 +0000 (11:59 +0200)]
docs: getting usage up to spec

9 years agoAdd two articles about Hugo to the Press page
Anthony Fok [Wed, 27 May 2015 03:45:50 +0000 (21:45 -0600)]
Add two articles about Hugo to the Press page

* http://jbrodriguez.io/mobile-friendly-website-2/
* http://blog.hypriot.com/post/moved-from-posthaven-to-hugo/

9 years agoMake deprecated warning for this release more alert
bep [Tue, 26 May 2015 21:08:32 +0000 (23:08 +0200)]
Make deprecated warning for this release more alert

9 years agoHyphenate DEV version
bep [Tue, 26 May 2015 20:44:40 +0000 (22:44 +0200)]
Hyphenate DEV version

9 years agoAdd `time.Time` type support to `where` tpl func
Tatsushi Demachi [Tue, 26 May 2015 10:33:32 +0000 (19:33 +0900)]
Add `time.Time` type support to `where` tpl func

`where` tpl function doesn't support `time.Time` type so if people want
to compare such values, it's required that these values are converted
into `int` and compare them.

This improves it. If `time.Time` values are passed to `where`, it
converts them into `int` internally, compares them and returns the
result.

See also
http://discuss.gohugo.io/t/future-posts-and-past-posts/1229/3

9 years agodocs: add bepsays.com to showcase
bep [Tue, 26 May 2015 08:52:00 +0000 (10:52 +0200)]
docs: add bepsays.com to showcase

9 years agoDocument techniques for debugging templates.
Jeff Ramnani [Mon, 25 May 2015 19:16:10 +0000 (14:16 -0500)]
Document techniques for debugging templates.

This information was previously scattered around in the forums and
mailing list.  Add it to the official docs to make things easier for new
users.

Fixes #1167

9 years agoadding goxc config file
spf13 [Tue, 26 May 2015 01:47:41 +0000 (21:47 -0400)]
adding goxc config file

9 years agobumping master version to v0.15-DEV
spf13 [Tue, 26 May 2015 01:46:29 +0000 (21:46 -0400)]
bumping master version to v0.15-DEV

9 years agoBump version to Hugo v0.14.0 v0.14
spf13 [Mon, 25 May 2015 15:59:47 +0000 (11:59 -0400)]
Bump version to Hugo v0.14.0

9 years agoAdd GopherCon to the showcase
spf13 [Mon, 25 May 2015 15:55:48 +0000 (11:55 -0400)]
Add GopherCon to the showcase

9 years agoAdd GoGB to the showcase
spf13 [Mon, 25 May 2015 15:55:33 +0000 (11:55 -0400)]
Add GoGB to the showcase

9 years agoAdd DavidePetilli to showcase
spf13 [Mon, 25 May 2015 15:55:19 +0000 (11:55 -0400)]
Add DavidePetilli to showcase

9 years agoupdate release notes
spf13 [Mon, 25 May 2015 15:55:04 +0000 (11:55 -0400)]
update release notes

9 years agoAdd new directions for maintaining press page
spf13 [Mon, 25 May 2015 15:54:47 +0000 (11:54 -0400)]
Add new directions for maintaining press page

9 years agoMove press page to top level menu
spf13 [Mon, 25 May 2015 15:54:22 +0000 (11:54 -0400)]
Move press page to top level menu

9 years agoadd dozens of articles to the press page
spf13 [Mon, 25 May 2015 15:53:37 +0000 (11:53 -0400)]
add dozens of articles to the press page

9 years agoUnexport filepath/path bridge types
bep [Mon, 25 May 2015 11:10:26 +0000 (13:10 +0200)]
Unexport filepath/path bridge types

They are of no use outside the helpers package.

See #1160

9 years agoPass RenderingContext by reference in Mmark
bep [Mon, 25 May 2015 10:57:37 +0000 (12:57 +0200)]
Pass RenderingContext by reference in Mmark

9 years agoApply gofmt -s
bep [Mon, 25 May 2015 10:54:12 +0000 (12:54 +0200)]
Apply gofmt -s

9 years agoAdd Go 1.4.2 to Travis config
bep [Sun, 24 May 2015 16:46:32 +0000 (18:46 +0200)]
Add Go 1.4.2 to Travis config

Go tip is at 1.5 now; make sure we also test with the latest release version.

9 years agoUpdate release notes in prep for v0.14.0
spf13 [Sun, 24 May 2015 02:04:12 +0000 (22:04 -0400)]
Update release notes in prep for v0.14.0

9 years agoRemove unused Completed chan on Site
bep [Sat, 23 May 2015 20:13:05 +0000 (22:13 +0200)]
Remove unused Completed chan on Site

See #1160

9 years agoPrevent cyclic ref crash in JSON encode
bep [Sat, 23 May 2015 10:28:01 +0000 (12:28 +0200)]
Prevent cyclic ref crash in JSON encode

Note that this commit makes no promise about great JSON output from the encoder, but the cyclic refs should be broken.

Fixes #1123

9 years agodocs: some more on absURL, relURL
bep [Fri, 22 May 2015 21:43:12 +0000 (23:43 +0200)]
docs: some more on absURL, relURL

9 years agodocs: add doc for substr
bep [Fri, 22 May 2015 20:36:17 +0000 (22:36 +0200)]
docs: add doc for substr

Fixes #1156

9 years agodocs: add doc for slicestr
bep [Fri, 22 May 2015 20:20:35 +0000 (22:20 +0200)]
docs: add doc for slicestr

See #1156

9 years agodocs: add doc for seq
bep [Fri, 22 May 2015 20:17:45 +0000 (22:17 +0200)]
docs: add doc for seq

See #1156