Matt Stratton
923e455731
Add Arrested DevOps site to Showcase
2015-11-20 10:16:04 -05:00
Steve Francia
97d0689580
Hugo server watch by default
2015-11-20 10:14:24 -05:00
Bjørn Erik Pedersen
35abd179e2
Add time.Time support in ge, gt, le, lt
...
Fixes #1593
2015-11-20 11:53:25 +01:00
Bjørn Erik Pedersen
8d8fa7222f
Remove some superficial tests
2015-11-19 20:27:02 +01:00
Bjørn Erik Pedersen
3f5ddd5242
Revert "Disable render-to-memory on Windows"
...
This reverts commit 91e0c2b1fe
.
This should now work.
2015-11-19 19:48:40 +01:00
Bjørn Erik Pedersen
91e0c2b1fe
Disable render-to-memory on Windows
...
See #1586
2015-11-18 23:10:56 +01:00
Bjørn Erik Pedersen
4679fbee41
Do not rebuild on extra Spotlight filesystem events
...
Write and rename operations are often followed by CHMOD.
There may be valid use cases for rebuilding the site on CHMOD,
but that will require more complex logic than this simple conditional.
On OS X this seems to be related to Spotlight, see:
https://github.com/go-fsnotify/fsnotify/issues/15
A workaround is to put your site(s) on the Spotlight exception list,
but that may be a little mysterious for most end users.
So, for now, we skip reload on CHMOD.
This small commit will be a 100% improvement for most OS X-users.
Fixes #1587
2015-11-18 22:59:32 +01:00
Bjørn Erik Pedersen
b08d9f26ae
Make replaceShortcodeTokens rewrite the input slice
...
Currently a `[]byte` copy is returned. In most cases this is the safe thing to do, but we should just modify/grow the slice as needed.
This is faster and consumes less memory:
```
benchmark old ns/op new ns/op delta
BenchmarkReplaceShortcodeTokens-4 7350 4419 -39.88%
benchmark old allocs new allocs delta
BenchmarkReplaceShortcodeTokens-4 5 1 -80.00%
benchmark old bytes new bytes delta
BenchmarkReplaceShortcodeTokens-4 4816 1152 -76.08%
```
This commit is aso a small spring cleaning of duplicated code in the different `PageConvert` methods.
Fixes #1516
2015-11-17 18:24:17 +01:00
Anthony Fok
4ecf56b891
Add latest review from Smashing Magazine to Press page
2015-11-16 22:54:15 -07:00
spf13
df824fa31b
Hugo server renders and serves from memory by default (30%+ improvement)
2015-11-16 22:00:11 -05:00
spf13
e1618e9d2f
permit the notimes flag on hugo server
2015-11-16 21:56:14 -05:00
spf13
cb48425f2d
No double slash when destination set to '/'
2015-11-16 21:56:14 -05:00
spf13
ef0b9b511c
Handle sync (file copy) errors better)
2015-11-16 21:56:14 -05:00
Anthony Fok
18a29964fa
Fix trivial typos in code
2015-11-16 07:15:17 -07:00
Anthony Fok
452ffab461
Copyedit docs/content/tools/index.md
2015-11-16 06:59:14 -07:00
Anthony Fok
2fec32a2da
Add @wicast’s "Hugo is cool" post to Press page
2015-11-16 06:51:57 -07:00
Anthony Fok
acd720df92
Add docs/data/titles.toml to set title "Site Showcase"
...
Idea from https://discuss.gohugo.io/t/how-to-name-list-templates/949
2015-11-16 06:48:20 -07:00
tuxy
5c6d8c57b9
Add ReadText project to Site Showcase
2015-11-16 06:14:32 -07:00
Richard Sumilang
39933111b9
Adding LosslessLife blog to showcase.
2015-11-16 06:03:28 -07:00
Bjørn Erik Pedersen
2843605963
Emphasize that commit message titles should start with a capital letter
2015-11-15 17:49:30 +01:00
spf13
619c16fd03
re-simplify SafeHTML function
2015-11-15 11:10:35 -05:00
digitalcraftsman
1a26e35136
Docs: add hugofy to tools
2015-11-15 11:05:17 -05:00
spf13
5c1204c24b
simplify rssuri logic
2015-11-15 11:05:16 -05:00
spf13
062f6c3383
rewrite safeHTML function
2015-11-15 11:05:16 -05:00
Bjørn Erik Pedersen
dcf1f96c2d
Revert "Update Go release version to 1.5.2 in Travis config"
...
This reverts commit 30ebf6b823
.
There is no Go 1.5.2... Where did I get that info!?
2015-11-14 16:59:45 +01:00
Bjørn Erik Pedersen
53a5932fa4
Get rid of allocation in the BenchmarkReplaceShortcodeTokens itself
...
So we can see the real numbers.
See #1516
2015-11-13 22:37:07 +01:00
digitalcraftsman
d7588fac21
Docs: fix typo in tools section
2015-11-13 11:19:55 -07:00
digitalcraftsman
b8effd8a17
Docs: add hugofy to tools
2015-11-13 04:25:34 -07:00
digitalcraftsman
b4ebd0eb57
Update release notes
...
Note the new built-in Google Analytics template.
2015-11-13 04:21:05 -07:00
Coders Digest
8e68a6487c
Adding article about moving to hugo
2015-11-13 03:51:13 -07:00
spf13
a50133ff38
Improve the server usage output
2015-11-12 10:23:41 -05:00
Bjørn Erik Pedersen
3bbd02a1ca
Print parse errors from Viper
2015-11-11 22:47:24 +01:00
Fabiano Frizzo
469d268cc8
doc: Add new article by Fabiano Frizzo to Press
2015-11-10 16:05:16 -07:00
Bjørn Erik Pedersen
30ebf6b823
Update Go release version to 1.5.2 in Travis config
2015-11-10 21:41:47 +01:00
Tatsushi Demachi
139be09f17
Fix GroupByParam to return original param string
...
Page.GroupByParam function internally uses Page.GetParam to get a
parameter value for a key of a page group but now Page.GetParam returns
a lowercase character string every time. It has no need to using
lowercase character string as a group key value and it confuse a
function user.
This fixes it to keep and return an original parameter string as a group
key value.
Fix #1564
2015-11-10 14:57:03 +01:00
spf13
bccf957e36
Add support for dynamic reloading of config file when watching
2015-11-09 23:31:52 -05:00
spf13
488966dcb2
Add hugo theme site to the sidebar
...
Also reorder the menu a bit and clarify a couple items.
2015-11-09 23:23:39 -05:00
Bjørn Erik Pedersen
570713a478
Use Identifier as last sort resort for default menu sort
...
Fixes #1562
2015-11-09 21:02:21 +01:00
Billy Burrows
01c87d2d23
Small Doc Changes
2015-11-07 20:13:20 -07:00
Bjørn Erik Pedersen
1758db29f5
Cosmetic change in README to trigger new build
2015-11-07 01:39:10 +01:00
digitalcraftsman
341dcc4765
Docs: fix broken links
2015-11-06 08:51:40 -05:00
digitalcraftsman
9dbb6dc50d
Add internal Google Analytics template
...
This commits also adds the GoogleAnalytics
variable to insert the tracking code.
Fixes #1424 .
2015-11-04 17:11:38 -05:00
Arjen Schwarz
ca55ea505a
Improvements to Automated Deployments tutorial
...
Prevent some frequently occurring problems
* Ensure version number is between quotes
* Ensure git and SSH are installed for the deployment step
* Focus extra attention on the wercker.yml verification site
2015-11-02 23:27:55 -07:00
Bjørn Erik Pedersen
5bda0398e7
Export Page.Layout
...
And at the same time rename and unexport the badly named `Layout()` func. That method is not very usable outside the package.
Fixes #1539
2015-11-02 17:24:50 +01:00
Anthony Fok
e1729935b5
doc: Add new article by Thomas Peham to Press
2015-10-31 10:54:55 -06:00
Timothy Hopper
08b3004fcb
Update link to S3 deploy instructions
...
Previous link goes to page with warning "This article is outdated"
2015-10-31 10:09:34 -06:00
Fabiano Frizzo
217ffa87c9
Fix doc render on Firefox
...
Fix #1523
2015-10-31 09:59:02 -06:00
Sergey Mudrik
c8f2a57430
Fixed link to Google Prettify
...
Google Prettify has been moved to github
2015-10-31 09:54:14 -06:00
Robert Aistleitner
42453357aa
add bugtrackers.io to hugo docs showcases
2015-10-31 09:50:42 -06:00
Arun Sori
277d0ae4a5
Fix spell mistake in variables.md
2015-10-31 09:47:07 -06:00