brevno-suite/hugo
11 years agoSummary can now contain short codes when using <!--more--> to define end of summary.
spf13 [Fri, 4 Oct 2013 20:07:24 +0000 (16:07 -0400)]
Summary can now contain short codes when using <!--more--> to define end of summary.

11 years agoserver defaults to localhost unless overridden by command line flags
spf13 [Fri, 4 Oct 2013 20:03:13 +0000 (16:03 -0400)]
server defaults to localhost unless overridden by command line flags

11 years agoRestoring former snippet behavior & adding test to ensure future behavior
spf13 [Fri, 4 Oct 2013 16:28:28 +0000 (12:28 -0400)]
Restoring former snippet behavior & adding test to ensure future behavior

11 years agoEnabling Nitro ('--stepAnalysis') again. Fix #58
spf13 [Thu, 3 Oct 2013 13:44:45 +0000 (09:44 -0400)]
Enabling Nitro ('--stepAnalysis') again. Fix #58

11 years agoSwitching to the rjson library which is more friendly to human generated json.
spf13 [Wed, 2 Oct 2013 02:45:24 +0000 (22:45 -0400)]
Switching to the rjson library which is more friendly to human generated json.

11 years agofixed #85
spf13 [Tue, 1 Oct 2013 02:40:15 +0000 (22:40 -0400)]
fixed #85

11 years agoUpdating usage documentation to new interface
spf13 [Tue, 1 Oct 2013 02:39:06 +0000 (22:39 -0400)]
Updating usage documentation to new interface

11 years agoRestoring build and watch functionality
spf13 [Tue, 1 Oct 2013 02:38:32 +0000 (22:38 -0400)]
Restoring build and watch functionality

11 years agominor documentation cleanup.
Kyle Mahan [Mon, 30 Sep 2013 02:37:29 +0000 (19:37 -0700)]
minor documentation cleanup.
- changed it's -> its where appropriate.
- added post/ parent directory above happy/ to the organization examples

Signed-off-by: Noah Campbell <noahcampbell@gmail.com>
11 years agoUpdate filesystem.go
windch [Mon, 30 Sep 2013 01:05:19 +0000 (14:05 +1300)]
Update filesystem.go

bugfix: .Files() called twice in line 253, 256 in site.go. thus source files captured twice.

Signed-off-by: Noah Campbell <noahcampbell@gmail.com>
11 years agoChange the interface to use commands and flags instead of just flags.
spf13 [Sun, 29 Sep 2013 06:09:03 +0000 (02:09 -0400)]
Change the interface to use commands and flags instead of just flags.
Better organization of main (controller style) code.

11 years agogo fmt so code
spf13 [Sun, 29 Sep 2013 06:07:41 +0000 (02:07 -0400)]
go fmt so code

11 years agoBetter error message when no source content is found.
spf13 [Sun, 29 Sep 2013 06:07:05 +0000 (02:07 -0400)]
Better error message when no source content is found.

11 years agoAdd the ability to set navbar li class to active
Noah Campbell [Sun, 29 Sep 2013 06:05:16 +0000 (23:05 -0700)]
Add the ability to set navbar li class to active

First cut at doing post html processing.  This utility can be used to
mark pages as active.

11 years agoSupport index.html indexes in content directory
Noah Campbell [Wed, 25 Sep 2013 04:24:49 +0000 (21:24 -0700)]
Support index.html indexes in content directory

If a file named index.html exists in a directory, or root, it will be
rendered as if ugly urls are turned on.  This allows for top level
content to not need a supporting layout file and content in content.
This change should not affect anyone who is using the perscribed way.

I also cleaned up a bunch of one off functions in site.go.

11 years agoFixes #80 - Homepage now renders correctly
Noah Campbell [Tue, 24 Sep 2013 21:41:21 +0000 (14:41 -0700)]
Fixes #80 - Homepage now renders correctly

I mistakenly make RenderHomePage a NOP.  Bad programmer.

11 years agosource: Fix failing build on windows
Noah Campbell [Tue, 24 Sep 2013 21:36:22 +0000 (14:36 -0700)]
source: Fix failing build on windows

The +build directive was not being picked up.  Apparently needs a space
after the +build line.

11 years agoFix breaking test cases on unix platform
Noah Campbell [Sat, 21 Sep 2013 03:05:20 +0000 (20:05 -0700)]
Fix breaking test cases on unix platform

Rename platform parameter file to agnostic name. Both darwin and linux
can share the same paramters.

11 years agoCreate a TargetPath() method that provides OutFile
Noah Campbell [Sat, 21 Sep 2013 00:24:25 +0000 (17:24 -0700)]
Create a TargetPath() method that provides OutFile

Moved the generation of the target path to the page breaking all
dependecies on Site.

11 years agoSection is determined by the source, not the url
Noah Campbell [Sat, 21 Sep 2013 00:03:43 +0000 (17:03 -0700)]
Section is determined by the source, not the url

This change allows for top level html content to exists.

11 years agoFix fragments being AbsUrlified in final html
Noah Campbell [Wed, 18 Sep 2013 22:48:36 +0000 (15:48 -0700)]
Fix fragments being AbsUrlified in final html

Found that fragments were getting the BaseURL applied creating a proper
anchor url and redirecting off the page.

11 years agoAllow non-markdown content in content directory
Noah Campbell [Wed, 18 Sep 2013 21:21:27 +0000 (14:21 -0700)]
Allow non-markdown content in content directory

Allow content that is not markdown and does not need to be rendered to
exists in the content directory.  Currently any valid html or xml
document can exist.  Templates are applied to these documents as well.
If you need to have content that doesn't have templates or AbsUrlify
like operations, then continue to put this content in static and it will
be copied over.

11 years agoMore expressive --check output
Noah Campbell [Wed, 18 Sep 2013 18:52:30 +0000 (11:52 -0700)]
More expressive --check output

11 years agoAdd renderer information to --check
Noah Campbell [Wed, 18 Sep 2013 17:27:56 +0000 (10:27 -0700)]
Add renderer information to --check

Now reports if the page will be rendered or not and by which render
engine.

11 years agoAdd IsRenderable to Page
Noah Campbell [Wed, 18 Sep 2013 17:17:43 +0000 (10:17 -0700)]
Add IsRenderable to Page

As pages are read from the target, they will be assessed if they should
be rendered or not.  The logic for IsRenderable is in the parser/page.go
and looks for anything exception '<'.

11 years agoFix parsing edge case of frontmatter
Noah Campbell [Wed, 18 Sep 2013 16:15:46 +0000 (09:15 -0700)]
Fix parsing edge case of frontmatter

When the frontmatter contains a - (or other delimiter) close to the
closing frontmatter delimiter, frontmatter detection would fail.

11 years agoMerge remote-tracking branch 'origin/parser' into mrg_praser
Noah Campbell [Tue, 17 Sep 2013 22:52:40 +0000 (15:52 -0700)]
Merge remote-tracking branch 'origin/parser' into mrg_praser

Also brought in parse for github.com/noahcampbell/akebia

Conflicts:
hugolib/page.go
hugolib/page_test.go

11 years agoMove AbUrlify to post content transformation
Noah Campbell [Tue, 17 Sep 2013 21:16:06 +0000 (14:16 -0700)]
Move AbUrlify to post content transformation

Currently the a@href and script@src elements will have BaseUrl applied
to their elements prior to being written to disk.

11 years agoAdd a transform step
Noah Campbell [Tue, 17 Sep 2013 20:04:28 +0000 (13:04 -0700)]
Add a transform step

This allows for the manipulation of the DOM.  This is expected to be
applied after the templates are rendered.

11 years agoFix alias documentation.
Noah Campbell [Fri, 13 Sep 2013 23:06:39 +0000 (16:06 -0700)]
Fix alias documentation.

Fixes #79

11 years agoInitialize HTMLRedirectAlias before ShowPlan()
Noah Campbell [Fri, 13 Sep 2013 22:06:37 +0000 (15:06 -0700)]
Initialize HTMLRedirectAlias before ShowPlan()

Without it, no alias information is generated when running --check

11 years agoAdd /index.html to unadorned alias paths
Noah Campbell [Fri, 13 Sep 2013 21:46:34 +0000 (14:46 -0700)]
Add /index.html to unadorned alias paths

Bring code to be better in line with documentation.

11 years agoRemove RenderedContent from page.
Noah Campbell [Fri, 13 Sep 2013 17:30:27 +0000 (10:30 -0700)]
Remove RenderedContent from page.

The output is written directly to disk after being written.  Not
entirely sure why it was split into two steps.

11 years agoMove alias logic to target module
Noah Campbell [Fri, 13 Sep 2013 04:18:13 +0000 (21:18 -0700)]
Move alias logic to target module

I want to move all logic to writing aliases to target so I can pave the
way for writing aliases specific to other runtimes (like .htaccess for
apache or a script for updating AWS or symlinking on a filesystem).

11 years agoMove alias rendering to target
Noah Campbell [Thu, 12 Sep 2013 23:17:53 +0000 (16:17 -0700)]
Move alias rendering to target

11 years agoNormalize paths within hugo
Noah Campbell [Thu, 12 Sep 2013 17:48:59 +0000 (10:48 -0700)]
Normalize paths within hugo

filepath was used inconsistently throughout the hugolib.  With the
introduction of source and target modules, all path are normalized to
"/".  This simplifies the processing of paths.  It does mean that
contributors need to be aware of using path/filepath in any module other
than source or target is not recommended.  The current exception is
hugolib/config.go

11 years agoAdded safeHtml template function
Nelson Silva [Mon, 9 Sep 2013 11:43:30 +0000 (12:43 +0100)]
Added safeHtml template function

11 years agoHomepage "/" respects PublishDir
Noah Campbell [Thu, 5 Sep 2013 16:57:25 +0000 (09:57 -0700)]
Homepage "/" respects PublishDir

It wasn't taking the value of PublishDir into consideration for the
special case of the homepage "/".

Fixes #75

11 years agoIntroduce source.Filesystem
Noah Campbell [Thu, 5 Sep 2013 05:28:59 +0000 (22:28 -0700)]
Introduce source.Filesystem

This provides an abstraction over how files are processed by Hugo.  This
allows for alternatives like CMS systems or Dropbox, etc.

11 years agoRemove page module dependence on opening files
Noah Campbell [Wed, 4 Sep 2013 23:57:17 +0000 (16:57 -0700)]
Remove page module dependence on opening files

The site is responsible for reading files, page only operates on
buffers.

11 years agoExpand the ShowPlan functionality
Noah Campbell [Wed, 4 Sep 2013 03:52:50 +0000 (20:52 -0700)]
Expand the ShowPlan functionality

11 years agoMove to target.Filesystem
Noah Campbell [Sun, 1 Sep 2013 16:56:58 +0000 (09:56 -0700)]
Move to target.Filesystem

Moving the ugly urls logic to the target.  There is still UglyUrl logic
in page for the permlink but this is dealing with the generate of urls.

11 years agoAdd Translate to target
Noah Campbell [Sun, 1 Sep 2013 16:24:03 +0000 (09:24 -0700)]
Add Translate to target

Translate handles Ugly Urls.

11 years agoAdd file reporting to planner
Noah Campbell [Sun, 1 Sep 2013 14:43:29 +0000 (07:43 -0700)]
Add file reporting to planner

11 years agoAdding Planner
Noah Campbell [Sun, 1 Sep 2013 04:13:04 +0000 (21:13 -0700)]
Adding Planner

11 years agoCode reorg, helpers.go has been decomposed.
Noah Campbell [Tue, 3 Sep 2013 22:38:20 +0000 (15:38 -0700)]
Code reorg, helpers.go has been decomposed.

It started with wanting to move templates in template bundles and the
rest followed.  I did my best to start grouping related functions
together, but there are some that I missed.  There is also the method
Urlize that seems to be a special function used in both worlds.  I'll
need to revisit this method.

11 years agoDate rendering unit tests in pages
Noah Campbell [Tue, 3 Sep 2013 21:51:06 +0000 (14:51 -0700)]
Date rendering unit tests in pages

Tests to ensure rendering dates in templates is working correctly.
Actually, I was running into invalid templates not giving warnings when
I was trying to render a date.

11 years agoRemove hugolib.HTML and hugolib.URL types
Noah Campbell [Tue, 3 Sep 2013 19:41:13 +0000 (12:41 -0700)]
Remove hugolib.HTML and hugolib.URL types

These types were not be rendered correctly by the html/template package.
Removing them gets the correct behavior.

Fixes #74

11 years agoInclude building hugo docs as part of test.
Noah Campbell [Sun, 1 Sep 2013 19:02:05 +0000 (12:02 -0700)]
Include building hugo docs as part of test.

If the building of the doc fails, tarvis will fail.  This will help with
pull requests.

11 years agoInclude building hugo docs as part of test.
Noah Campbell [Sun, 1 Sep 2013 19:02:05 +0000 (12:02 -0700)]
Include building hugo docs as part of test.

If the building of the doc fails, tarvis will fail.  This will help with
pull requests.

11 years agoAdd support for amber files
Fabrizio (Misto) Milo [Sun, 1 Sep 2013 00:47:21 +0000 (17:47 -0700)]
Add support for amber files

If a layout file ends with .amber it will interpreted as a Amber file

Signed-off-by: Noah Campbell <noahcampbell@gmail.com>
11 years agoAbstract html/template dependency
Fabrizio (Misto) Milo [Sun, 1 Sep 2013 00:35:17 +0000 (17:35 -0700)]
Abstract html/template dependency

Signed-off-by: Noah Campbell <noahcampbell@gmail.com>
11 years agoUse s everywhere for consistency
Fabrizio (Misto) Milo [Sun, 1 Sep 2013 00:29:19 +0000 (17:29 -0700)]
Use s everywhere for consistency

Signed-off-by: Noah Campbell <noahcampbell@gmail.com>
11 years agoReturn an error (other than 0) when ./hugo fails
Noah Campbell [Sun, 1 Sep 2013 18:39:32 +0000 (11:39 -0700)]
Return an error (other than 0) when ./hugo fails

Being a good OS citizen so folks can compose hugo into their tool chain.
Also helps with git bisect run.

11 years agoThe <!--more--> (summary divider) now works even if it is on the same line as content
Mark Sanborn [Sun, 1 Sep 2013 04:07:22 +0000 (21:07 -0700)]
The <!--more--> (summary divider) now works even if it is on the same line as content

Signed-off-by: Noah Campbell <noahcampbell@gmail.com>
11 years agoSmall code cleanup
Noah Campbell [Sun, 1 Sep 2013 03:00:57 +0000 (20:00 -0700)]
Small code cleanup

11 years agoReturn an error with WritePublic
Noah Campbell [Sat, 31 Aug 2013 04:24:25 +0000 (21:24 -0700)]
Return an error with WritePublic

11 years agoRemoving site.Directories.
Noah Campbell [Sat, 31 Aug 2013 04:13:50 +0000 (21:13 -0700)]
Removing site.Directories.

Please revert if this is used somewhere.

11 years agoExternalize the writing of content to a target
Noah Campbell [Sat, 31 Aug 2013 00:18:05 +0000 (17:18 -0700)]
Externalize the writing of content to a target

Introducing the target module in hugo.  This provides the simple
interface for writing content given a label (filename) and a io.Reader
containing the content to be written.

If site.Target is not set, it defaults back to the original behavior of
writing to file system.

In hugolib/site_url_test.go I have an InMemoryTarget for testing
purposes and use it to see if the final output of a render matches.

11 years agoEnsure Section is set before returning Page object.
Noah Campbell [Sat, 31 Aug 2013 00:14:36 +0000 (17:14 -0700)]
Ensure Section is set before returning Page object.

11 years agoRevert "Return errors when rendering"
Noah Campbell [Sat, 31 Aug 2013 03:06:18 +0000 (20:06 -0700)]
Revert "Return errors when rendering"

This reverts commit e66ba5d2a7dd1a043a24bf86a271a5440b7b1385.

Fixed #69

11 years agoCleanup formatting - go fmt ./...
Noah Campbell [Fri, 30 Aug 2013 21:38:33 +0000 (14:38 -0700)]
Cleanup formatting - go fmt ./...

Remember to run go fmt ./... before committing.  Looks sternly in mirror

11 years agoFixed bug where Url specified in front matter as pretty url wouldnt render
Mark Sanborn [Thu, 29 Aug 2013 16:37:37 +0000 (09:37 -0700)]
Fixed bug where Url specified in front matter as pretty url wouldnt render

Signed-off-by: Noah Campbell <noahcampbell@gmail.com>
11 years agoAdding .Summary to page variables
Daniel Alan Miller [Thu, 29 Aug 2013 12:22:19 +0000 (21:52 +0930)]
Adding .Summary to page variables

Signed-off-by: Noah Campbell <noahcampbell@gmail.com>
11 years agoclean up logic
Fabrizio (Misto) Milo [Wed, 28 Aug 2013 16:33:10 +0000 (09:33 -0700)]
clean up logic

Signed-off-by: Noah Campbell <noahcampbell@gmail.com>
11 years agoRefactored added RenderThingOrDefault and tests
Ross Lawley [Tue, 27 Aug 2013 09:09:50 +0000 (10:09 +0100)]
Refactored added RenderThingOrDefault and tests

Signed-off-by: Noah Campbell <noahcampbell@gmail.com>
Conflicts:
hugolib/site.go

11 years agoUsing new parser.
Noah Campbell [Sun, 25 Aug 2013 04:27:41 +0000 (21:27 -0700)]
Using new parser.

11 years agoReturn any error reported by RenderHomePage
Hugo Duncan [Tue, 20 Aug 2013 13:40:33 +0000 (09:40 -0400)]
Return any error reported by RenderHomePage

Signed-off-by: Noah Campbell <noahcampbell@gmail.com>
11 years agoWordpress summaries
Ross Lawley [Wed, 21 Aug 2013 09:37:14 +0000 (10:37 +0100)]
Wordpress summaries

Allow full control of summaries which can be rendered as html rather
than text.  Using a `<!--more-->` html comment in your markdown / rst
you can indiciate where the summary should end and have the summary
converted to html.

Signed-off-by: Noah Campbell <noahcampbell@gmail.com>
Conflicts:
hugolib/page_test.go

11 years agoAdd 404.html for gh-pages
Ross Lawley [Wed, 21 Aug 2013 16:21:53 +0000 (17:21 +0100)]
Add 404.html for gh-pages

Signed-off-by: Noah Campbell <noahcampbell@gmail.com>
11 years agoRenderThing test cases
Noah Campbell [Fri, 23 Aug 2013 21:47:03 +0000 (14:47 -0700)]
RenderThing test cases

Provide unit test support RenderThing.

One observation is that creating the site.Tmpl variable is a one time
event.  site.Tmpl doesn't like additional templates with the same name.
This means that updating a template while in --watch mode requires
throwing away the entire Site object and creating a new one.  Not that
this is a bad idea, but it is something I discovered while working on
these unit tests.

11 years agoTest cases for ignoreDotFile
Noah Campbell [Fri, 23 Aug 2013 21:40:02 +0000 (14:40 -0700)]
Test cases for ignoreDotFile

Meant to commit this earlier, but it's a basic unit test.

11 years agoUpdate .gitignore to ignore *.swo files
Noah Campbell [Fri, 23 Aug 2013 21:44:43 +0000 (14:44 -0700)]
Update .gitignore to ignore *.swo files

For the fellow vim user.

11 years agoFix benchmark so the buffer is read each time.
Noah Campbell [Tue, 20 Aug 2013 23:56:18 +0000 (16:56 -0700)]
Fix benchmark so the buffer is read each time.

The bytes.Buffer was exhausted after the first read.  Creating a new
reader each invocation catpures the correctly timing.

11 years agoRemoving GetSection
Noah Campbell [Wed, 14 Aug 2013 22:22:57 +0000 (15:22 -0700)]
Removing GetSection

Using GetXXX is not idiomatic to Go.  Also added a bunch of unit testing
around this method.

11 years agoSkip "dot" files in layout
Noah Campbell [Fri, 23 Aug 2013 20:51:59 +0000 (13:51 -0700)]
Skip "dot" files in layout

As a vim user, .filename.swp files pop up.  This change prevents hugo
from reading those files.

11 years agoMerge pull request #53 from hugoduncan/feature/print-error-on-invalid-index
Steve Francia [Wed, 21 Aug 2013 03:56:33 +0000 (20:56 -0700)]
Merge pull request #53 from hugoduncan/feature/print-error-on-invalid-index

Print error if index value in a page is wrong type

11 years agoMerge pull request #52 from rozza/StaticSync
Steve Francia [Wed, 21 Aug 2013 03:55:56 +0000 (20:55 -0700)]
Merge pull request #52 from rozza/StaticSync

Static changes shouldn't be destructive to existing files

11 years agoMerge pull request #51 from cabello/patch-3
Steve Francia [Wed, 21 Aug 2013 03:54:51 +0000 (20:54 -0700)]
Merge pull request #51 from cabello/patch-3

Remove extra quotes from meta data

11 years agoMerge pull request #50 from cabello/patch-2
Steve Francia [Wed, 21 Aug 2013 03:54:31 +0000 (20:54 -0700)]
Merge pull request #50 from cabello/patch-2

Check .Prev and .Next pointers before using it

11 years agoMerge pull request #49 from cabello/patch-1
Steve Francia [Wed, 21 Aug 2013 03:54:06 +0000 (20:54 -0700)]
Merge pull request #49 from cabello/patch-1

Fix broken link to Index page

11 years agoPrint error if index value in a page is wrong type
Hugo Duncan [Tue, 20 Aug 2013 20:39:26 +0000 (16:39 -0400)]
Print error if index value in a page is wrong type

This was causing a panic with no information displayed about the
page causing the error.

11 years agoStatic changes shouldn't be destructive to existing files
Ross Lawley [Tue, 20 Aug 2013 19:32:32 +0000 (20:32 +0100)]
Static changes shouldn't be destructive to existing files

Currently changing css deletes all the site published html when it copies.
Refs #46

11 years agoRemove extra quotes from meta data
Danilo Cabello [Tue, 20 Aug 2013 17:52:51 +0000 (13:52 -0400)]
Remove extra quotes from meta data

11 years agoCheck .Prev and .Next pointers before using it
Danilo Cabello [Tue, 20 Aug 2013 16:13:27 +0000 (12:13 -0400)]
Check .Prev and .Next pointers before using it

11 years agoFix broken link to Index page
Danilo Cabello [Tue, 20 Aug 2013 15:56:55 +0000 (11:56 -0400)]
Fix broken link to Index page

11 years agoMerge pull request #46 from rawfalafel/sync_static
Steve Francia [Mon, 19 Aug 2013 12:32:36 +0000 (05:32 -0700)]
Merge pull request #46 from rawfalafel/sync_static

Sync files that have changed in the static directory

11 years agoWatch StaticDir and sync to PublishDir on change
rawfalafel [Mon, 19 Aug 2013 05:17:37 +0000 (01:17 -0400)]
Watch StaticDir and sync to PublishDir on change
New behavior adds a special case for file changes inside the static directory to fsync PublishDir

11 years agoMerge pull request #44 from cactus/avoid-redirect-with-slugs
Steve Francia [Sun, 18 Aug 2013 04:04:51 +0000 (21:04 -0700)]
Merge pull request #44 from cactus/avoid-redirect-with-slugs

avoid possible redirects with non-ugly slug urls

11 years agoMerge pull request #43 from hugoduncan/feature/allow-xhtml-aliases
Steve Francia [Sun, 18 Aug 2013 04:04:14 +0000 (21:04 -0700)]
Merge pull request #43 from hugoduncan/feature/allow-xhtml-aliases

Enable aliases from .xhtml paths

11 years agoMerge pull request #41 from rozza/skipStatic
Steve Francia [Sun, 18 Aug 2013 03:59:07 +0000 (20:59 -0700)]
Merge pull request #41 from rozza/skipStatic

Skip Static directory if its in your content directory

11 years agoMerge branch 'noahcampbell-index_reporting'
spf13 [Sun, 18 Aug 2013 03:53:35 +0000 (23:53 -0400)]
Merge branch 'noahcampbell-index_reporting'

11 years agoFormatting cleanup
Noah Campbell [Tue, 13 Aug 2013 21:58:50 +0000 (14:58 -0700)]
Formatting cleanup

11 years agoRemoving the use of slash
Noah Campbell [Tue, 13 Aug 2013 21:47:14 +0000 (14:47 -0700)]
Removing the use of slash

An oversight on my behalf.  The FromSlash method is used when writing
out the public file name.  There is one place where the slashes are
required which is setting the output file.  I replaced those instances
with filepath.Join which should do the right thing depending on the OS.

11 years agoDetect missed index from front matter
Noah Campbell [Tue, 13 Aug 2013 17:46:05 +0000 (10:46 -0700)]
Detect missed index from front matter

11 years agoReturn errors when rendering
Noah Campbell [Tue, 13 Aug 2013 17:44:40 +0000 (10:44 -0700)]
Return errors when rendering

11 years agoRemoving extra links on homepage
spf13 [Sun, 18 Aug 2013 01:49:17 +0000 (21:49 -0400)]
Removing extra links on homepage

11 years agoAdding "fork me on github" banner
spf13 [Sat, 17 Aug 2013 12:40:18 +0000 (08:40 -0400)]
Adding "fork me on github" banner

11 years agoComplete overhaul of the docs
spf13 [Sat, 17 Aug 2013 12:34:25 +0000 (08:34 -0400)]
Complete overhaul of the docs

11 years agoMerge pull request #40 from VonC/clarify_uglyurls_flag
Steve Francia [Sat, 17 Aug 2013 13:35:31 +0000 (06:35 -0700)]
Merge pull request #40 from VonC/clarify_uglyurls_flag

Clarify uglyurls flag.