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.
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.
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.
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.
spf13 [Fri, 19 Jun 2015 14:07:47 +0000 (10:07 -0400)]
Make .IsHome work when homepage as page
spf13 [Wed, 17 Jun 2015 14:39:18 +0000 (10:39 -0400)]
Add tests for homepage content support
spf13 [Wed, 17 Jun 2015 14:38:46 +0000 (10:38 -0400)]
Move matchRender to test helpers file
spf13 [Tue, 2 Jun 2015 02:57:16 +0000 (22:57 -0400)]
refactor and clean up site tests
spf13 [Tue, 2 Jun 2015 02:14:36 +0000 (22:14 -0400)]
add preliminary support for content/index.md file to be homepage content
Bjørn Erik Pedersen [Tue, 16 Jun 2015 20:31:51 +0000 (22:31 +0200)]
Remove superfluous return
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
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.
Ariejan de Vroom [Wed, 10 Jun 2015 22:12:27 +0000 (00:12 +0200)]
Update docs for `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.
Ariejan de Vroom [Wed, 10 Jun 2015 21:58:57 +0000 (23:58 +0200)]
Refactor var name limit to index
Ariejan de Vroom [Wed, 10 Jun 2015 21:53:39 +0000 (23:53 +0200)]
Add `after` to template function documentation
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.
Vincent Batoufflet [Sat, 13 Jun 2015 08:02:53 +0000 (10:02 +0200)]
Add Blackfriday definition lists extension support
bep [Fri, 12 Jun 2015 20:50:02 +0000 (22:50 +0200)]
Revert "Add some debug to failing menu test"
This reverts commit
becc627e1e55f08e04892212350fa4db72f5c43a.
bep [Thu, 11 Jun 2015 20:48:55 +0000 (22:48 +0200)]
Add some debug to failing menu test
bep [Thu, 11 Jun 2015 20:41:26 +0000 (22:41 +0200)]
Move Viper reset to correct level in menu tests
bep [Thu, 11 Jun 2015 19:22:35 +0000 (21:22 +0200)]
Reset Viper for every duplicate menu test iteration
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>
Ariejan de Vroom [Wed, 10 Jun 2015 22:22:22 +0000 (00:22 +0200)]
Let travis test against go-tip
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.
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
bep [Sat, 6 Jun 2015 18:57:11 +0000 (20:57 +0200)]
Silence chatty JSON test
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
bep [Wed, 3 Jun 2015 11:46:55 +0000 (13:46 +0200)]
Add some docs for IgnoreFiles
See #1189
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
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
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
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
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
bep [Sun, 31 May 2015 16:54:50 +0000 (18:54 +0200)]
Fix FullFilePath
Fixes #732
Artem Vorotnikov [Sun, 24 May 2015 13:48:46 +0000 (16:48 +0300)]
Allow custom RSS Uri for section and taxonomy feeds
Fixes #1147
vsopvsop [Fri, 29 May 2015 15:14:37 +0000 (20:44 +0530)]
Update introduction.md
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
bep [Sun, 31 May 2015 11:01:20 +0000 (13:01 +0200)]
Add some Ace test cases
See #1178
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
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
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.
bep [Thu, 28 May 2015 00:30:01 +0000 (02:30 +0200)]
Add some missing page permalink test cases
bep [Wed, 27 May 2015 18:41:25 +0000 (20:41 +0200)]
Never remove trailing slash in RelPermalink
Fixed #1174
bep [Wed, 27 May 2015 09:59:27 +0000 (11:59 +0200)]
docs: getting usage up to spec
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/
bep [Tue, 26 May 2015 21:08:32 +0000 (23:08 +0200)]
Make deprecated warning for this release more alert
bep [Tue, 26 May 2015 20:44:40 +0000 (22:44 +0200)]
Hyphenate DEV version
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
bep [Tue, 26 May 2015 08:52:00 +0000 (10:52 +0200)]
docs: add bepsays.com to showcase
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
spf13 [Tue, 26 May 2015 01:47:41 +0000 (21:47 -0400)]
adding goxc config file
spf13 [Tue, 26 May 2015 01:46:29 +0000 (21:46 -0400)]
bumping master version to v0.15-DEV
spf13 [Mon, 25 May 2015 15:59:47 +0000 (11:59 -0400)]
Bump version to Hugo v0.14.0
spf13 [Mon, 25 May 2015 15:55:48 +0000 (11:55 -0400)]
Add GopherCon to the showcase
spf13 [Mon, 25 May 2015 15:55:33 +0000 (11:55 -0400)]
Add GoGB to the showcase
spf13 [Mon, 25 May 2015 15:55:19 +0000 (11:55 -0400)]
Add DavidePetilli to showcase
spf13 [Mon, 25 May 2015 15:55:04 +0000 (11:55 -0400)]
update release notes
spf13 [Mon, 25 May 2015 15:54:47 +0000 (11:54 -0400)]
Add new directions for maintaining press page
spf13 [Mon, 25 May 2015 15:54:22 +0000 (11:54 -0400)]
Move press page to top level menu
spf13 [Mon, 25 May 2015 15:53:37 +0000 (11:53 -0400)]
add dozens of articles to the press page
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
bep [Mon, 25 May 2015 10:57:37 +0000 (12:57 +0200)]
Pass RenderingContext by reference in Mmark
bep [Mon, 25 May 2015 10:54:12 +0000 (12:54 +0200)]
Apply gofmt -s
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.
spf13 [Sun, 24 May 2015 02:04:12 +0000 (22:04 -0400)]
Update release notes in prep for v0.14.0
bep [Sat, 23 May 2015 20:13:05 +0000 (22:13 +0200)]
Remove unused Completed chan on Site
See #1160
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
bep [Fri, 22 May 2015 21:43:12 +0000 (23:43 +0200)]
docs: some more on absURL, relURL
bep [Fri, 22 May 2015 20:36:17 +0000 (22:36 +0200)]
docs: add doc for substr
Fixes #1156
bep [Fri, 22 May 2015 20:20:35 +0000 (22:20 +0200)]
docs: add doc for slicestr
See #1156
bep [Fri, 22 May 2015 20:17:45 +0000 (22:17 +0200)]
docs: add doc for seq
See #1156
bep [Fri, 22 May 2015 18:46:09 +0000 (20:46 +0200)]
docs: add ToC to some more pages
bep [Fri, 22 May 2015 18:18:34 +0000 (20:18 +0200)]
docs: avoid navbar hiding when jumping to in-page anchor
Jeff Ramnani [Fri, 22 May 2015 17:06:18 +0000 (12:06 -0500)]
Docs: Add taxonomy term variables to the list of vars.
Taxonomy Term pages have variables in addition to those on "node"
pages. Documenting these variables with all the other node variables
makes them easier to find.
Fixes: #1155
Jeff Ramnani [Fri, 22 May 2015 16:43:29 +0000 (11:43 -0500)]
Add ".Render" to the list of functions.
Fixes: #1153
Rick Cogley [Tue, 19 May 2015 14:18:28 +0000 (23:18 +0900)]
Clarifying Edits for templates/rss.md
Added clarification for RSS doc page.
* a little formatting to make key words jump out
* emphasize that you can create your own
* add how to link to the feed in <head>
* add what .RSSlink does
* added point that a link to an RSS feed should be of type application/rss+xml
bep [Thu, 21 May 2015 21:04:36 +0000 (23:04 +0200)]
Grammar fix in error message
bep [Thu, 21 May 2015 18:12:25 +0000 (20:12 +0200)]
Do not consider single.html for the home page
Fixes #1152
bep [Thu, 21 May 2015 18:05:14 +0000 (20:05 +0200)]
Fix formatting in hugo command description
bep [Thu, 21 May 2015 11:30:01 +0000 (13:30 +0200)]
Fix CLI command description for the top level
And regenerate the commands doc.
spf13 [Wed, 20 May 2015 22:55:24 +0000 (18:55 -0400)]
Adding default handler & tests Fixes #147
spf13 [Wed, 20 May 2015 22:50:32 +0000 (18:50 -0400)]
Better organization of loading defaults
spf13 [Wed, 20 May 2015 22:48:33 +0000 (18:48 -0400)]
Merge branch 'master' of GitHub.com:spf13/hugo
spf13 [Wed, 20 May 2015 06:21:21 +0000 (02:21 -0400)]
Stop Viper from leaking across many of the tests (now tests pass regardless of order tested)
bep [Tue, 19 May 2015 20:00:48 +0000 (22:00 +0200)]
Add benchmark test for replaceShortcodeTokens
bep [Wed, 13 May 2015 13:31:30 +0000 (15:31 +0200)]
Add gendoc command
Using the new, great auto-doc in Cobra.
This commit also contains a current result of that command added to a commands section in docs.
Fixes #1136
bep [Sun, 17 May 2015 13:44:43 +0000 (15:44 +0200)]
Add a line in doc about the RelativeURL setting
Fixes #1145
bep [Sun, 17 May 2015 13:01:24 +0000 (15:01 +0200)]
Add bugfix to releasenotes
Takuya Wakisaka [Thu, 9 Apr 2015 16:14:26 +0000 (01:14 +0900)]
Fix UTF8 permalink
Generate unencoded directory in public dir.
Fixes #988
Takuya Wakisaka [Sat, 9 May 2015 10:12:30 +0000 (19:12 +0900)]
Add Page tests with UTF8 paths
See #988
bep [Sat, 16 May 2015 17:52:12 +0000 (19:52 +0200)]
Remove trailing spaces in completionfile flag
bep [Sat, 16 May 2015 16:12:00 +0000 (18:12 +0200)]
Add some bullet points to 0.14 rel notes
bep [Sat, 16 May 2015 16:04:56 +0000 (18:04 +0200)]
Add Bash completion
Add a new command, genautocomplete, wich generates a Bash completion script (zsh and others later).
The script is by default written to `/etc/bash_completion.d/hugo.sh`; this can be set in `--completionfile=/some/file`.
Fixes #438
Andre R [Sun, 10 May 2015 18:38:05 +0000 (14:38 -0400)]
Fix datePublished to publishdate
bep [Sat, 16 May 2015 13:42:10 +0000 (15:42 +0200)]
Do not shout about missing baseURL if relativeURLs is set
Rick Cogley [Tue, 12 May 2015 06:56:56 +0000 (15:56 +0900)]
Edits on aliases, comments, theme customizing
Fleshed out aliases section, loading the "redirect" keyword so that it's easier to find. Specifically added a "how aliases work" section.
Added Discourse to comments section.
Fleshed out themes/customizing, because it seems to be the source of a lot of questions on the forum.
Rick Cogley [Sat, 16 May 2015 12:59:37 +0000 (21:59 +0900)]
Edit docs extras syntax highlighting.md
Added a bunch of clarifying narrative, looking at the discussion forum for what people are asking about, and what I myself was confused about.
* clearer separation of advantage of each style - server or client side - at the top
* inconsistent newlines (different column widths) so I just removed them from obvious paragraphs
* added that the highlight shortcode is not used for the client-side javascripts
* Hugo is taking crap for Pygments being slow, so tried to emphasize that's it's in Pygment's lap. I got your back, Hugo.
* On client-side added prism example
* More clarity on how the css and js needs to be added to your templates
* Explained how the client-side scripts work
bep [Fri, 15 May 2015 22:11:39 +0000 (00:11 +0200)]
Add support for URLs relative to context root
Setting `RelativeURLs` to `true` will make all relative URLs in the site *really* relative.
And will do so with speed.
So:
In `/post/myblogpost.html`:
`/mycss.css` becomes `../mycss.css`
The same in `/index.html` will become:
`./mycss.css` etc.
Note that absolute URLs will not be touched (either external resources, or URLs constructed with `BaseURL`).
The speediness is about the same as before:
```
benchmark old ns/op new ns/op delta
BenchmarkAbsURL 17462 18164 +4.02%
BenchmarkAbsURLSrcset 18842 19632 +4.19%
BenchmarkXMLAbsURLSrcset 18643 19313 +3.59%
BenchmarkXMLAbsURL 9283 9656 +4.02%
benchmark old allocs new allocs delta
BenchmarkAbsURL 24 28 +16.67%
BenchmarkAbsURLSrcset 29 32 +10.34%
BenchmarkXMLAbsURLSrcset 27 30 +11.11%
BenchmarkXMLAbsURL 12 14 +16.67%
benchmark old bytes new bytes delta
BenchmarkAbsURL 3154 3404 +7.93%
BenchmarkAbsURLSrcset 2376 2573 +8.29%
BenchmarkXMLAbsURLSrcset 2569 2763 +7.55%
BenchmarkXMLAbsURL 1888 1998 +5.83%
```
Fixes #1104
Fixes #622
Fixes #937
Fixes #157
Rick Cogley [Fri, 15 May 2015 15:04:25 +0000 (00:04 +0900)]
Edits to templates/404.md
Added bit about how the 404.html page has to be set to load automatically - auto on Github but needs config on other web servers.
Also tweaked the text a little to emphasize it's a node type, and explain a little more about where the 404 template should be saved.