spf13 [Wed, 5 Nov 2014 01:28:07 +0000 (20:28 -0500)]
Updating tests to use hugofs
spf13 [Wed, 5 Nov 2014 01:19:45 +0000 (20:19 -0500)]
rewriting guessSection to accurately reflect intent and usage. Update tests.
Owen Waller [Sat, 11 Oct 2014 22:49:53 +0000 (23:49 +0100)]
First stab at correcting GuessSection tests
Updated the test to correctly test for "" when a non-absolute path
is used.
But the tests still fail for multi-part paths e.g. /contents/blog/
Owen Waller [Mon, 22 Sep 2014 17:40:09 +0000 (18:40 +0100)]
Fix: rewrite FileAndExt
FileAndExt has now be completely rewritten and now works as may
reasonably be expected. The test cases for:
ReplaceExtension
Filename
FileAndExt
now all pass.
The problem was the way path.Base was being used.
Firstly Base returns "." if the directory is empty, but it can also
return "." for the current directory, or ".." for the parent directory,
if these are the last elements in the path. Simply detecting the
presence of a "." in the returned string and truncating before the "."
does not therefore always result in a valid filename.
Secondly, Base strips any trailing slashes making is more difficult to
detect when the path does not end in a filename but in a directory name
i.e. a no filename case. Not detecting this incorrectly results in the
last directory name being returned as the filename.
The code has been updated to take account of of both situations so that:
1) An empty string for both the filename and extension is returned if the
path does not contain a filename (plus an optional extension). This
includes both the empty path case, and the ends in a directory case.
2) If the path represents a filename with an extension then both the
filename and the extension (minus any dots) are returned as non empty
strings.
3) If the path represents a filename without an extension then filename
will be returned as a non empty string (minus any dot) and the extension
will be returned as an empty string.
Owen Waller [Mon, 22 Sep 2014 16:49:39 +0000 (17:49 +0100)]
Fix: remove the unnecessary dot in an extension
Oops minor typo. The new extension passed to ReplaceExtension should
not have a dot in it. The test data bas been updated to reflect this.
Owen Waller [Mon, 22 Sep 2014 15:42:38 +0000 (16:42 +0100)]
Updated TestReplaceExtensioni, TestFilename and TestFileAndExt
Updated the test cases in TestReplaceExtension to reflect the intent
of ReplaceExtension which is to accept a path and return only the file
name with a new extension. It's intentionally designed to strip out the
path and only provide the filename
Additional test cases have been added to both TestFilename and
TestFileAndExt to clarify behaviour with relative paths.
Owen Waller [Thu, 18 Sep 2014 21:58:44 +0000 (22:58 +0100)]
WriteToDisk and SafeWriteToDisk test cleaned up
Minor cleanup to randomise the names of the temp directories used by the
tests.
Owen Waller [Thu, 18 Sep 2014 21:38:07 +0000 (22:38 +0100)]
WriteToDisk and SafeWriteToDisk tests now pass
This is the first time that both the WriteToDisk and SafeWriteToDisk
tests pass
Owen Waller [Wed, 10 Sep 2014 18:47:31 +0000 (19:47 +0100)]
Fix: Test TestSafeWriteToDisk now works
Oops, my bad.
Despite the function intending to test SafeWriteToDisk it was actually
calling WriteToDisk. WriteToDisk does not return the file exists error
that SafeWriteToDisk does, which the test checks for.
Owen Waller [Wed, 10 Sep 2014 17:48:14 +0000 (18:48 +0100)]
Added the path modules test files
Added the new path modules test file. This replaces the old
helpers_test.go file.
The currently failing tests are:
TestReplaceExtension
TestFilename
TestFileAndExt
TestGuessSection
TestFindCWD
TestWriteToDisk
In addition the TestSafeWriteToDisk test case is currently disabled.
It will panic if enabled.
In addition there are some minor changes to path.go. They are:
Refactored MakePathToLower to simplify it.
Commented out, pending removal, Sanitize as it appears to be unused.
Fixed the resource leak in UnicodeSanitize
Conflicts:
helpers/path.go
Owen Waller [Wed, 10 Sep 2014 17:43:02 +0000 (18:43 +0100)]
Added the url modules test files.
Added the new url module test file. This replaces the original
helpers_test.go file.
The TestUrlPrep test currently fails.
The only minor change to url.go is to add some trace printf's to
UrlPrep.
Owen Waller [Wed, 10 Sep 2014 17:30:03 +0000 (18:30 +0100)]
Added the general modules test files
Added the new general module's test file, general_test.go. This replaces the
helpers_test.go file.
There is also a minor defect fix in general.go's StripHTML function.
The correct xhtml tag for a break is <br /> not </br>. I've also removed
the unnecessary spaces before the replacement "\n".
The new test module also reflects this change.
Conflicts:
helpers/general.go
Owen Waller [Wed, 10 Sep 2014 17:26:01 +0000 (18:26 +0100)]
Remove the helpers_test.go file
The helpers_test.go file has been split into three new
test files, one each for the path, url and general modules.
Conflicts:
helpers/helpers_test.go
spf13 [Tue, 4 Nov 2014 05:44:30 +0000 (00:44 -0500)]
Use page.Markup to determine which PageHandler to use if it's set.
spf13 [Tue, 4 Nov 2014 05:43:09 +0000 (00:43 -0500)]
Adding an html file handler
spf13 [Tue, 4 Nov 2014 05:42:36 +0000 (00:42 -0500)]
Adding a proper css file handler (with automatic minification)
spf13 [Tue, 4 Nov 2014 05:41:47 +0000 (00:41 -0500)]
Updating tests to use new Targets & Writers and switch to using Afero.MemMapFs for more accurate tests.
spf13 [Tue, 4 Nov 2014 05:39:37 +0000 (00:39 -0500)]
New targets & new renderers and write methods [WIP]
spf13 [Tue, 4 Nov 2014 05:36:05 +0000 (00:36 -0500)]
Cleanup file conversion handling
spf13 [Tue, 4 Nov 2014 05:32:55 +0000 (00:32 -0500)]
Better error messages for show_plan_test
spf13 [Tue, 4 Nov 2014 05:31:57 +0000 (00:31 -0500)]
Page Group functions now work even when an uppercase field / method is provided.
spf13 [Tue, 4 Nov 2014 05:30:35 +0000 (00:30 -0500)]
Setting to filesystems to the afero.fs interface so can be easily swapped out.
spf13 [Tue, 4 Nov 2014 05:28:20 +0000 (00:28 -0500)]
Source files can provide content as String or Bytes or Reader
spf13 [Tue, 4 Nov 2014 05:26:56 +0000 (00:26 -0500)]
Adding ReaderTo and ToReader helper functions
spf13 [Mon, 3 Nov 2014 15:14:10 +0000 (10:14 -0500)]
Update menu test to work with revised source struct
Austin Ziegler [Sat, 1 Nov 2014 03:58:14 +0000 (23:58 -0400)]
Change the type of .Site.Author from…
…`map[string]string` to `map[string]interface{}`.
This allows values other than `string` values to be saved to Author,
such as:
```toml
# config.toml
…
[Author]
name = "Austin Ziegler"
social-site = [ "Facebook", "Twitter", "GitHub" ]
```
My specific use-case is that I’m trying to make something work similar
whether it’s specified in `.Params.Author` or in `.Site.Author` without
introducing `.Site.Params.Author`.
Kartik Singhal [Fri, 31 Oct 2014 06:13:44 +0000 (11:43 +0530)]
Fix #593 problem with `hugo -w`
Austin Ziegler [Wed, 29 Oct 2014 04:37:59 +0000 (00:37 -0400)]
Change permalink validation and substitution.
Austin Ziegler [Mon, 27 Oct 2014 21:23:54 +0000 (17:23 -0400)]
Output a timestamp with hugo server --watch
Per a [discussion][thread] on discuss, I have implemented one possible
way to do this.
[thread]: http://discuss.gohugo.io/t/output-a-timestamp-with-hugo-watch/213
Mike Dillon [Thu, 30 Oct 2014 04:52:57 +0000 (21:52 -0700)]
Fix sourceLink for Hugo
Michael Henderson [Sun, 26 Oct 2014 00:23:46 +0000 (19:23 -0500)]
Create creating-a-new-theme.md
Justin Calleja [Sat, 25 Oct 2014 14:54:07 +0000 (16:54 +0200)]
Fix for issue 583
Kartik Singhal [Sat, 25 Oct 2014 14:13:06 +0000 (19:43 +0530)]
Fix broken link
Kartik Singhal [Sat, 25 Oct 2014 13:28:13 +0000 (18:58 +0530)]
Minor doc corrections
Tatsushi Demachi [Tue, 21 Oct 2014 15:51:29 +0000 (00:51 +0900)]
Extend template's mod and modBool functions to accept any int types
Fixes #575
Joel Scoble [Sun, 19 Oct 2014 16:10:35 +0000 (11:10 -0500)]
added note about pygment example code and markdown processing, updated example
Joel Scoble [Sun, 19 Oct 2014 14:20:57 +0000 (09:20 -0500)]
540: add support for build information output to version command
bep [Sun, 19 Oct 2014 12:41:02 +0000 (14:41 +0200)]
Fix redirect-loop for Hugo server
An extra slash was added to the path if baseUrl had a sub-directory, causing infinite redirect loop in Go's HTTP server.
Fixes #510
Tatsushi Demachi [Fri, 17 Oct 2014 15:10:19 +0000 (00:10 +0900)]
Add sort and grouping functions for publish date and param of Page
`GroupBy` is modified to allow it to receive a method name argument for
example `Type` as its first argument. It is only allowed to call with
a method which takes no arguments and returns a result or a pair of
a result and an error.
The functions discussed at #443 are also added
- `ByPublishDate`: Order contents by `PublishDate` front matter variable
- `GroupByPublishDate(format, order)`: Group contents by `PublishDate`
front matter variable formatted in string like `GroupByDate`
- `GroupByParam(key, order)`: Group contents by `Param` front matter
variable specified by `key` argument
- `GroupByParamDate(key, format, order)`: Group contents by `Param`
front matter variable specified by `key` argument and formatted in
string like `GroupByDate`. It's effective against `time.Time` type
front matter variable
bep [Sat, 18 Oct 2014 18:25:10 +0000 (20:25 +0200)]
Implement HasMenuCurrent and IsMenuCurrent for Nodes
Prior to this commit, `HasMenuCurrent` and `IsMenuCurrent` on `Node` always returned false.
This made it hard (if possible at all) to mark the currently selected menu item/group for non-Page content (home page, category pages etc.), i.e. for menus defined in the site configuration.
This commit provides an implementation of these two methods.
Notable design choices:
* These menu items have a loose coupling to the the resources they navigate to; the `Url` is the best common identificator. To facilitate a consistent matching, and to get it in line with the menu items connected to `Page`, relative Urls (Urls starting with '/') for menu items in the site configuration are converted to permaLinks using the same rules used for others’.
* `IsMenuCurrent` only looks at the children of the current node; this is in line with the implementation on `Page`.
* Due to this loose coupling, `IsMenuCurrent` have to search downards in the tree to make sure that the node is inside the current menu. This could have been made simpler if it could answer `yes` to any match of any menu item matching the current resource.
This commit also adds a set of unit tests for the menu system.
Fixes #367
Marcelo Glezer [Fri, 17 Oct 2014 16:32:16 +0000 (13:32 -0300)]
fixed server reporting Web Server is available at https://localhost:1313 when server always serve http
Joel Scoble [Fri, 31 Oct 2014 21:25:11 +0000 (16:25 -0500)]
update summary doc
Joel Scoble [Wed, 15 Oct 2014 22:59:43 +0000 (17:59 -0500)]
#463 add summary.md page
spf13 [Sat, 1 Nov 2014 16:05:37 +0000 (12:05 -0400)]
Handler WIP
spf13 [Sat, 1 Nov 2014 15:57:29 +0000 (11:57 -0400)]
Migrating Hugo to Afero for filesystem calls.
spf13 [Tue, 21 Oct 2014 00:15:33 +0000 (20:15 -0400)]
Handlers WIP - Convert now working
spf13 [Mon, 20 Oct 2014 21:51:53 +0000 (17:51 -0400)]
Handlers WIP (builds)
spf13 [Mon, 20 Oct 2014 21:42:16 +0000 (17:42 -0400)]
Handlers WIP
spf13 [Fri, 17 Oct 2014 20:57:48 +0000 (16:57 -0400)]
Initial Handler Architecture WIP
spf13 [Fri, 17 Oct 2014 00:20:39 +0000 (20:20 -0400)]
Improved error message when config file not found.
spf13 [Fri, 17 Oct 2014 00:20:09 +0000 (20:20 -0400)]
Big refactor of how source files are used. Also added default destination extension option.
bep [Wed, 15 Oct 2014 11:26:21 +0000 (13:26 +0200)]
Set Content-Type for livereload.js
The Content-Type was not set for livereload.js and was interpreteted by the browser as text/plain.
This commit sets it to application/javascript.
Fixes #562
bep [Sun, 12 Oct 2014 13:57:00 +0000 (15:57 +0200)]
Copy content from archetype
Prior to this commit only metadata were copied from archetype on content creation.
This commit includes the content if set in archetype. This is useful in situations with similar page structure.
Fixes #556
bep [Thu, 9 Oct 2014 22:57:57 +0000 (00:57 +0200)]
Make First accept any int
TOML and YAML handles integers differently, creating issues when using integer values from configuration or front matter in the First template function.
This currently works in YAML (parses into int), but not in TOML (parses into int64).
This commit modifies First so it accepts any int.
Fixes #551
Jian Zhou [Wed, 8 Oct 2014 20:02:53 +0000 (16:02 -0400)]
Fix spf13/hugo#467. RSSLink now point to index.xml
bep [Wed, 8 Oct 2014 17:56:00 +0000 (19:56 +0200)]
Add nil-check to Intersect
The Intersect template-method would fail if one or both of the lists were nil (post vs page; post has tags, page has not).
This commit adds a nil-check and returns an empty result if any of the inputs are nil.
See #537
Will Stevens [Wed, 8 Oct 2014 16:05:22 +0000 (12:05 -0400)]
added docs for 'intersect' and 'in' template functions
Anthony Fok [Tue, 7 Oct 2014 23:52:58 +0000 (17:52 -0600)]
Minor proofreading corrections to Hugo docs
- Add backticks and commas where necessary
- Remove some trailing whitespace
- Add front matter example in TOML
- Fix typo in one of the tags in Showcase
- Add 多说 (Duoshuo) as an alternative to Disqus
- Use internal links (i.e. without gohugo.io) where possible
- Use a colon to set off an example
- Change "it's" to "its" where appropriate
- Use typographical (i.e. curly) apostrophe on the front page
where appropriate
- Capitalize "Github" as "GitHub"
bep [Thu, 9 Oct 2014 20:41:14 +0000 (22:41 +0200)]
Document manual breakpoint of .Summary
The use of <!--more--> to set the breakpoint for the generated page summary is mentioned in a release note, but not in the doc itself.
Very useful - and it leaves the formatting in place.
Raphael Estrada [Wed, 8 Oct 2014 14:54:50 +0000 (15:54 +0100)]
add 'width' parameter to 'figure' shortcode
Mantas [Mon, 6 Oct 2014 09:50:44 +0000 (12:50 +0300)]
handle https prefixes in baseUrl
Oscar Bolmsten [Sun, 5 Oct 2014 07:41:54 +0000 (09:41 +0200)]
Minor fix to error message when copying static files
Joel Scoble [Thu, 2 Oct 2014 22:25:52 +0000 (17:25 -0500)]
#462 fix, remove leading and trailing dashes from urlized slug. includes test changes
Joel Scoble [Thu, 2 Oct 2014 21:28:24 +0000 (16:28 -0500)]
Feed the titleized taxonomy key through string replace to replace '-' with ' ' for proper display of the taxonmy title
Will Stevens [Thu, 2 Oct 2014 14:15:54 +0000 (10:15 -0400)]
added In and Intersect template functions
Austin Ziegler [Wed, 1 Oct 2014 18:26:43 +0000 (14:26 -0400)]
Use md5 against the file path for uniqueness.
Austin Ziegler [Mon, 29 Sep 2014 14:02:45 +0000 (10:02 -0400)]
Make each generated page’s footnotes unique.
If content pages are fully rendered in a list page, footnotes that use
the same reference (`[^fn]`) will have duplicated anchors. This change
builds on #526 to put the page filename (`Page.File.Name`) as part of
the anchor for a footnote.
This would fix discussion [116](http://discuss.gohugo.io/t/footnote-references-are-duplicated-on-list-pages/116).
Austin Ziegler [Sat, 27 Sep 2014 03:44:09 +0000 (23:44 -0400)]
Configure footnote rendering.
- The config file can provide FootnoteAnchorPrefix, which will be used
by blackfriday when rendering to HTML. A value of `q:` has the effect
of making the anchor for a footnote `[^footie]` be `fn:q:footie`. The
default is `""`.
- The config file can provide FootnoteReturnLinkContents, which will be
used by blackfriday when rendering to HTML. A value of `^` has the
effect of making the return link be `^` instead of `[return]`.
Jorin Vogel [Wed, 1 Oct 2014 07:51:25 +0000 (14:51 +0700)]
Mention .Params and .Page variables in shortcode docs. Also `highlight` variables.
Kartik Singhal [Sun, 28 Sep 2014 04:52:15 +0000 (10:22 +0530)]
Correct desc for hugo new command
Aurelius Prochazka [Sun, 28 Sep 2014 00:21:06 +0000 (17:21 -0700)]
Removed text from code block.
Kartik Singhal [Sat, 27 Sep 2014 07:35:42 +0000 (13:05 +0530)]
Switch to new hompage
spf13 [Thu, 2 Oct 2014 17:37:38 +0000 (13:37 -0400)]
better error messages for template errors
Nate Finch [Mon, 29 Sep 2014 13:19:39 +0000 (09:19 -0400)]
add some information to rendering errors so it's easier to tell what's failing.
Austin Ziegler [Wed, 24 Sep 2014 01:34:13 +0000 (21:34 -0400)]
Make taxonomy documentation match the example.
Kartik Singhal [Tue, 23 Sep 2014 14:09:40 +0000 (19:39 +0530)]
Make highlight.js example clearer
Provide the missing step to actually use the library. Should be helpful for a newbie.
spf13 [Tue, 23 Sep 2014 02:08:08 +0000 (22:08 -0400)]
Making the install on the homepage a bit more clear
Alex Dunn [Mon, 22 Sep 2014 23:58:30 +0000 (16:58 -0700)]
instructions for Homebrew installation
updated installation page of documentation, and changed "Download" button on index.html to scroll to bottom where multiple installation options are featured
getting the scrolldown to work required removing the fixed positioning on #action and on the footer
spf13 [Mon, 22 Sep 2014 13:45:05 +0000 (09:45 -0400)]
adding memstat option to server
Tatsushi Demachi [Fri, 19 Sep 2014 16:33:02 +0000 (01:33 +0900)]
Extend template's basic math functions to accept float, uint and string values
spf13 [Fri, 19 Sep 2014 12:32:25 +0000 (08:32 -0400)]
Adding a community link to the homepage
spf13 [Fri, 19 Sep 2014 01:22:04 +0000 (21:22 -0400)]
switching website to gohugo.io & adding links to discuss
rybi [Wed, 17 Sep 2014 19:59:18 +0000 (21:59 +0200)]
Update urls.md
Corrected the --uglyUrls flag, wouldn't work if lowercase.
Nate Finch [Sun, 14 Sep 2014 11:23:03 +0000 (07:23 -0400)]
limit the number of goroutines used in taxonomy rendering to gomaxprocs*4
Nate Finch [Sun, 14 Sep 2014 11:01:40 +0000 (07:01 -0400)]
limit the number of goroutines we use for page rendering to gomaxprocs*4
Nate Finch [Thu, 11 Sep 2014 02:06:46 +0000 (22:06 -0400)]
remove unused field
Nate Finch [Thu, 11 Sep 2014 02:34:00 +0000 (22:34 -0400)]
make the value of the BuildDrafts flag available to templates.This can be useful for if you only want to show some specific information on your local machine and/or when showing drafts.
Nate Finch [Wed, 10 Sep 2014 19:33:49 +0000 (15:33 -0400)]
Sort by title if dates are the same
Alex Dunn [Wed, 10 Sep 2014 16:42:58 +0000 (09:42 -0700)]
more examples and explanation of go templating
Emphasizing to people (like me) who aren't familiar with Go that just because something's not mentioned in the Hugo docs doesn't mean it's not possible
Joel Scoble [Tue, 9 Sep 2014 21:57:14 +0000 (16:57 -0500)]
refactor handling of amber to AddTemplateFile as the TODO note stated. Used switch statement to make it easier to add other template support
Joel Scoble [Tue, 9 Sep 2014 20:58:02 +0000 (15:58 -0500)]
fix tags not being in lowercase, #491
Daniel Fairhead [Tue, 9 Sep 2014 13:26:51 +0000 (14:26 +0100)]
added "eq" function to docs.
bep [Wed, 10 Sep 2014 10:21:22 +0000 (12:21 +0200)]
Enable soft livereload of CSS and images
Prior to this commit a dummy JavaScript filename was sent to LiveReload when changing a static file (CSS, image etc.), forcing a full browser reload of the page.
This commit fixes this by sending the relative file path of the changed static resource, enabling partial live reloading for CSS- and image-changes. If more than one static file happens to end up in the same changeevent-batch, it will fall back to do a full refresh. To enable this logic, the change events with names ending with ".goutputstream*" is now filtered out as temporary.
Changes in dynamic content behaves like before.
Issue #490
Nate Finch [Tue, 9 Sep 2014 09:59:47 +0000 (05:59 -0400)]
Change all uses of sort.Sort to sort.Stable.Using sort.Stable ensures that even if the sort keys are the same, the order of the sort will not randomly change. Using the old sort.Sort, if you had pages with no date, the lists of those pages would randomly reorder every time you regenerate the list, causing spurious changes to the output. Now they'll always get ordered in the same way.
Tatsushi Demachi [Sat, 6 Sep 2014 01:38:36 +0000 (10:38 +0900)]
More error messages at syncing static contents
Nate Finch [Sat, 6 Sep 2014 12:03:03 +0000 (08:03 -0400)]
fix zero date
Tim Dumol [Sat, 6 Sep 2014 02:51:27 +0000 (10:51 +0800)]
Fix typo in Archetypes documentation.
Archetype was spelled archtype in one of the headers.
Nate Finch [Fri, 5 Sep 2014 10:57:32 +0000 (06:57 -0400)]
Add Node.Site.Pages to all nodes and ensure all pages from the site exist in the list before processing shortcodes.
Node.Site.Recent is not really just recent pages, but all pages, so I figured it was better to add a new parameter with a more informative name.
I also changed the code slightly so that all pages are added to the list of pages before we start rendering shortcodes... this way you can use a shortcode to refer to another page. Previosuly, this had been broken, because the list ofg pages would not be fully populated while the shortcodes were being processed. The code that does this is not reading from disk or doing any rendering, so it shouldn't take any more time to do.
Nate Finch [Thu, 4 Sep 2014 17:56:29 +0000 (13:56 -0400)]
add Name to File, which is the filename minus the extension
Jakub Turski [Wed, 3 Sep 2014 19:05:44 +0000 (20:05 +0100)]
Go back to lowercase slugs. Also, use MakePathToLower in TestMakeToLower.
go fmt