summary |
shortlog | log |
commit |
commitdiff |
tree
first ⋅ prev ⋅ next
Steve Francia [Thu, 8 Aug 2013 22:52:50 +0000 (15:52 -0700)]
Merge pull request #20 from VonC/version
Make sure hugo --version prints the version and does *nothing* else.
VonC [Thu, 8 Aug 2013 20:18:37 +0000 (22:18 +0200)]
Make sure hugo --version prints the version and does *nothing* else.
Any program, when asks to print their version, only prints that, and then
stops.
hugo checks the config (and prints a warning message if not found), and
proceeds to generate the site!
Yet, the user just wanted to check the version.
This patch makes sure hugo stops after printing the version.
Steve Francia [Wed, 7 Aug 2013 21:05:07 +0000 (14:05 -0700)]
Merge pull request #19 from nsabine/master
Populated page Site metadata. Enables accessing Indexes from Page template.
Nick Sabine [Wed, 7 Aug 2013 18:23:24 +0000 (14:23 -0400)]
Populated page Site metadata. Enables accessing Indexes from Page template.
Steve Francia [Tue, 6 Aug 2013 15:05:18 +0000 (08:05 -0700)]
Merge pull request #15 from hhatto/update-doc
update document for content directory
spf13 [Mon, 5 Aug 2013 23:10:10 +0000 (01:10 +0200)]
Merge branch 'master' of github.com:spf13/hugo
spf13 [Mon, 5 Aug 2013 23:06:59 +0000 (01:06 +0200)]
fixing badlink on homepage
spf13 [Mon, 5 Aug 2013 23:05:50 +0000 (01:05 +0200)]
removing erroneous debugging output
Hideo Hattori [Mon, 5 Aug 2013 18:14:40 +0000 (03:14 +0900)]
update document for content directory
Steve Francia [Mon, 5 Aug 2013 14:13:42 +0000 (07:13 -0700)]
Merge pull request #12 from imrehg/docfix
Fix example in docs that wouldn't work in practice
Gergely Imreh [Mon, 5 Aug 2013 13:45:01 +0000 (21:45 +0800)]
Fix example in docs that wouldn't work in practice
The pflag package used in hugo has to use the "=" sign
for double dash options such as --source. Thus the original
example `--source ~/mysite` is already incorrect. Adding
the = sign though woul not fix things in this case, since
`--source=~/mysite` does not get resolved to /home/username/mysite,
but looks for the ./~/mysite directory within the current directory.
To resolve this, either the directory name has to be changed in
the docs not to use the "~" sign, or have to change to use the
single dash version of the command line flag. The latter seems
to be more in line with the rest of the example.
Leaving `--watch` as a double dash option to minimize the change,
though it could be either way, since the follow up example uses
the single dash version of both.
spf13 [Mon, 5 Aug 2013 09:12:39 +0000 (11:12 +0200)]
Fixing getting started link.
Steve Francia [Sat, 3 Aug 2013 14:29:16 +0000 (07:29 -0700)]
Merge pull request #11 from noahcampbell/master
Removing OSX files from repo. Updating .gitignore to not track these files
spf13 [Sat, 3 Aug 2013 07:33:39 +0000 (03:33 -0400)]
Fixing link to contributor page on github
spf13 [Sat, 3 Aug 2013 07:31:25 +0000 (03:31 -0400)]
Shrinking the readme to just the basics to avoid dupe with doc site
spf13 [Sat, 3 Aug 2013 07:30:34 +0000 (03:30 -0400)]
Updating a bunch of the docs
spf13 [Sat, 3 Aug 2013 07:29:49 +0000 (03:29 -0400)]
Including documentation on indexes
spf13 [Sat, 3 Aug 2013 07:29:24 +0000 (03:29 -0400)]
Renaming indexes template to indexes.html
spf13 [Sat, 3 Aug 2013 07:10:14 +0000 (03:10 -0400)]
Moved static content to /static
spf13 [Sat, 3 Aug 2013 07:09:28 +0000 (03:09 -0400)]
Added support for indexes of indexes & ordered indexes
spf13 [Fri, 2 Aug 2013 20:30:26 +0000 (16:30 -0400)]
adding previous next capabilities
Noah Campbell [Fri, 2 Aug 2013 17:00:25 +0000 (10:00 -0700)]
Removing OSX files from repo. Updating .gitignore to not track these files.
Steve Francia [Fri, 2 Aug 2013 05:04:03 +0000 (22:04 -0700)]
Merge pull request #8 from SebastianM/doc-json-fix
Fix JSON syntax error in example configuration
Steve Francia [Fri, 2 Aug 2013 05:00:58 +0000 (22:00 -0700)]
Merge pull request #10 from noahcampbell/master
Fixed section labels causing panic on windows.
Noah Campbell [Thu, 1 Aug 2013 18:55:18 +0000 (11:55 -0700)]
Adding error message when no content pages exists.
Noah Campbell [Tue, 30 Jul 2013 23:27:23 +0000 (16:27 -0700)]
Updating the .gitignore for windows and vim users.
Adding hugo.exe for us windows fanbois. Also adding gvim support.
Noah Campbell [Thu, 1 Aug 2013 20:27:07 +0000 (13:27 -0700)]
Fixed section labels causing panic on windows.
The filename path was being split using a unix specific path seperator. This fix uses the os.PathSeperator to ensure proper evaluation regardless of platform.
Sebastian Müller [Thu, 1 Aug 2013 18:52:00 +0000 (20:52 +0200)]
Fix JSON syntax error in example configuration
spf13 [Tue, 30 Jul 2013 05:26:02 +0000 (01:26 -0400)]
copying static content to destination
spf13 [Fri, 26 Jul 2013 22:10:03 +0000 (18:10 -0400)]
Using MkdirAll instead of my own logic
spf13 [Fri, 26 Jul 2013 22:06:13 +0000 (18:06 -0400)]
Adding support for destination dir, split out static
spf13 [Fri, 26 Jul 2013 13:51:07 +0000 (09:51 -0400)]
permalink now respects pretty urls
spf13 [Fri, 26 Jul 2013 13:28:26 +0000 (09:28 -0400)]
create content at any level of nesting
spf13 [Fri, 26 Jul 2013 13:27:22 +0000 (09:27 -0400)]
fixing issue with some urls missing '/'
spf13 [Fri, 26 Jul 2013 13:25:30 +0000 (09:25 -0400)]
fixing bug with server not finding right path
spf13 [Fri, 26 Jul 2013 13:24:35 +0000 (09:24 -0400)]
adding more verbose output to server functionality
spf13 [Fri, 26 Jul 2013 13:22:23 +0000 (09:22 -0400)]
create missing directories recurisvely
spf13 [Wed, 24 Jul 2013 15:47:58 +0000 (11:47 -0400)]
Fixing headers in readme
spf13 [Wed, 24 Jul 2013 15:43:23 +0000 (11:43 -0400)]
Improving installation instructions
spf13 [Wed, 24 Jul 2013 15:27:48 +0000 (11:27 -0400)]
Merge branch 'master' of github.com:spf13/hugo
spf13 [Wed, 24 Jul 2013 15:27:03 +0000 (11:27 -0400)]
Merge branch 'doc-fix' of https://github.com/brandonblack/hugo into brandonblack-doc-fix
Conflicts:
README.md
Brandon Black [Mon, 22 Jul 2013 17:32:25 +0000 (10:32 -0700)]
minor: adding some more instructions for building from source
Steve Francia [Sun, 21 Jul 2013 04:51:39 +0000 (00:51 -0400)]
Update README.md
fixing typo in readme.
spf13 [Fri, 19 Jul 2013 07:38:24 +0000 (00:38 -0700)]
Adding proper command line option parsing
spf13 [Fri, 19 Jul 2013 07:10:42 +0000 (00:10 -0700)]
Default is now pretty urls (without .html)
Adding --uglyurls option to retain previous behavior
spf13 [Fri, 19 Jul 2013 05:27:21 +0000 (22:27 -0700)]
Adding better source build instructions
spf13 [Tue, 16 Jul 2013 00:44:51 +0000 (17:44 -0700)]
GO -> Go
spf13 [Fri, 12 Jul 2013 03:29:14 +0000 (23:29 -0400)]
fixing typo in config readme
spf13 [Fri, 12 Jul 2013 03:26:03 +0000 (23:26 -0400)]
Render shortcodes before index and section rss feeds
spf13 [Fri, 12 Jul 2013 02:55:07 +0000 (22:55 -0400)]
proper BaseUrl handling (if has trailing slash or not)
spf13 [Fri, 12 Jul 2013 02:31:58 +0000 (22:31 -0400)]
Fixing some RSS issues
spf13 [Fri, 12 Jul 2013 02:16:29 +0000 (22:16 -0400)]
Accidentally left in debugging code
spf13 [Fri, 12 Jul 2013 02:04:57 +0000 (22:04 -0400)]
Now support for config files as yaml, json or toml
spf13 [Wed, 10 Jul 2013 21:58:32 +0000 (17:58 -0400)]
fixing incorrect import path
spf13 [Wed, 10 Jul 2013 21:57:28 +0000 (17:57 -0400)]
adding helper to create absolute url
spf13 [Wed, 10 Jul 2013 13:21:41 +0000 (09:21 -0400)]
Adding total time to generated stats.
spf13 [Wed, 10 Jul 2013 04:14:02 +0000 (00:14 -0400)]
Writing relative links to absolute so they work in feeds
spf13 [Tue, 9 Jul 2013 23:04:22 +0000 (19:04 -0400)]
Fix bug with JSON front matter parsing.
spf13 [Tue, 9 Jul 2013 22:53:08 +0000 (18:53 -0400)]
Better error handling for parsing front matter
Steve Francia [Tue, 9 Jul 2013 15:34:20 +0000 (08:34 -0700)]
Merge pull request #3 from tychoish/rst-fix
rst: fixing rst output processing
tycho garen [Tue, 9 Jul 2013 12:16:29 +0000 (08:16 -0400)]
rst: fixing rst output processing
spf13 [Tue, 9 Jul 2013 02:27:23 +0000 (22:27 -0400)]
Adding version number to command line options
spf13 [Tue, 9 Jul 2013 02:23:54 +0000 (22:23 -0400)]
Adding support for TOML, updating documentation
spf13 [Mon, 8 Jul 2013 21:57:01 +0000 (17:57 -0400)]
YAML support similar to jekyll (start and end with '---')
Steve Francia [Mon, 8 Jul 2013 19:59:44 +0000 (12:59 -0700)]
Merge pull request #2 from tychoish/yaml-rst-support
Switching to YAML and adding support for optional restructured text parsing
tycho garen [Sun, 7 Jul 2013 15:59:19 +0000 (11:59 -0400)]
minor: correcting example
tycho garen [Sun, 7 Jul 2013 14:01:53 +0000 (10:01 -0400)]
fix: changing terminal yaml line, generalizing forematter splitting
tycho garen [Sun, 7 Jul 2013 04:49:57 +0000 (00:49 -0400)]
fixes: returning json parsing, error messages, yaml header offsets
tycho garen [Sun, 7 Jul 2013 03:52:14 +0000 (23:52 -0400)]
revert: adding json support
tycho garen [Sun, 7 Jul 2013 02:58:08 +0000 (22:58 -0400)]
fix: parsing of yaml forematter
tycho garen [Sun, 7 Jul 2013 02:31:43 +0000 (22:31 -0400)]
changing to suport yaml rather than json and adding optional restructuredtext support
tycho garen [Sat, 6 Jul 2013 23:36:30 +0000 (19:36 -0400)]
sanity: move from json to yaml
Steve Francia [Sun, 7 Jul 2013 02:08:40 +0000 (19:08 -0700)]
Merge pull request #1 from tychoish/add-gitignore
gitignore: sanity
tycho garen [Sat, 6 Jul 2013 23:36:09 +0000 (19:36 -0400)]
gitignore: sanity
spf13 [Fri, 5 Jul 2013 16:03:47 +0000 (12:03 -0400)]
rendering shortcodes earlier for better performance
Steve Francia [Fri, 5 Jul 2013 04:37:59 +0000 (00:37 -0400)]
fixing typos
Steve Francia [Fri, 5 Jul 2013 04:37:26 +0000 (00:37 -0400)]
fixing two typos
Steve Francia [Fri, 5 Jul 2013 04:35:11 +0000 (00:35 -0400)]
better install instructions and fixing usage typo
spf13 [Thu, 4 Jul 2013 17:03:16 +0000 (13:03 -0400)]
adding better install directions
spf13 [Thu, 4 Jul 2013 15:34:22 +0000 (11:34 -0400)]
updating readme
spf13 [Thu, 4 Jul 2013 15:32:55 +0000 (11:32 -0400)]
adding hugo
Steve Francia [Thu, 4 Jul 2013 15:26:26 +0000 (08:26 -0700)]
Initial commit