32b8857eea
Merge pull request #461 from abiosoft/markdown-sitegen-panic
...
markdown: Fix panic on sitegen for request dependent template values.
2015-12-22 12:03:20 -07:00
9e163a655d
Use proper struct constructors instead.
2015-12-22 14:43:48 +01:00
4d867e848b
Markdown: Fix panic on sitegen for request dependent template values.
2015-12-22 13:32:27 +01:00
c748ef944b
Merge pull request #449 from abiosoft/master
...
Gzip: Fix missing gzip encoding headers.
2015-12-21 20:54:00 +01:00
55d22f4ead
Merge remote-tracking branch 'upstream/master'
2015-12-21 20:49:01 +01:00
3f787a20e3
Merge pull request #438 from captncraig/patch-1
...
Gzip: Append to Vary header instead of replacing.
2015-12-21 20:48:03 +01:00
6276be4e90
Merge pull request #457 from abiosoft/fcgi-hanging-bug
...
fastcgi: Close client connections when done.
2015-12-21 10:46:00 -07:00
f639d3cd68
FastCGI: Close client connections when done.
2015-12-21 11:57:20 +01:00
43020533f7
Merge remote-tracking branch 'upstream/master'
2015-12-19 21:58:24 +01:00
a5836aebfa
Merge pull request #412 from pavlik/master
...
tls: Remove ECDHE-RSA-3DES-EDE-CBC-SHA and RSA-3DES-EDE-CBC-SHA from the default TLS config
2015-12-19 11:57:45 -07:00
3dd4c0eb6a
Fix TestTLSParseBasic
2015-12-19 14:37:38 +03:00
1e27b5be89
Remove ECDHE-RSA-3DES-EDE-CBC-SHA and RSA-3DES-EDE-CBC-SHA from the default TLS config
2015-12-19 14:30:25 +03:00
a946d65fe6
Oops. Tests.
2015-12-18 21:25:06 +01:00
f04ff063ed
Gzip: Fix missing gzip encoding headers.
2015-12-18 20:58:23 +01:00
35ec61cc88
Merge pull request #441 from jungle-boogie/patch-1
...
Feek --> Feel
2015-12-17 21:50:04 -07:00
8f23c430ae
Feek --> Feel
...
unless you meant Freak
2015-12-17 13:12:22 -08:00
5eadea6615
Slack -> Gitter
2015-12-17 08:37:16 -07:00
34d3cd7c92
Gzip: Append to Vary header instead of replacing.
2015-12-15 08:56:44 -07:00
f11cd4d9dd
Merge pull request #429 from abiosoft/php-error-log
...
fastcgi: separate standard and error output responses.
2015-12-14 10:14:52 -07:00
a8c9d47805
Merge pull request #404 from abiosoft/master
...
gzip: support for min_length.
2015-12-14 10:11:22 -07:00
3966936bd6
Remove trailing new line for cleaner log output.
...
Return correct status code.
2015-12-13 12:58:21 +01:00
b7fd1f4e9e
FastCGI: separate standard and error output responses.
2015-12-12 14:04:48 +01:00
b65ddbc750
Merge remote-tracking branch 'upstream/master'
2015-12-10 02:37:19 +01:00
aba0ae358e
Merge pull request #415 from abiosoft/appveyor-fix
...
Fix race condition in test for AppVeyor
2015-12-09 15:50:51 -07:00
2e295b51b3
Use channel instead for a synchronous interval.
2015-12-09 20:18:18 +01:00
59dbea768c
Fix race condition on AppVeyor. Increase timeout a bit.
2015-12-09 19:22:20 +01:00
a44d59f1e5
Use ioutil.Discard instead for unneeded bytes.
2015-12-09 18:44:25 +01:00
e4ff77ed07
fix tls_test.go
2015-12-09 11:27:59 +03:00
b6c4178f0a
Remove ECDHE-RSA-3DES-EDE-CBC-SHA and RSA-3DES-EDE-CBC-SHA from the default TLS config
2015-12-09 11:10:55 +03:00
23631cfaca
Fix deleted Content-Length header bug.
2015-12-08 12:01:24 +01:00
8631f33940
remove minor ugly parenthesis
2015-12-07 23:27:57 +01:00
ab5087e215
Gzip: support for min_length.
2015-12-07 23:17:05 +01:00
41bdd77545
Merge pull request #381 from ReadmeCritic/master
...
Update README URLs based on HTTP redirects
2015-12-06 10:23:32 -07:00
b7827a342a
Merge pull request #387 from Moter8/patch-1
...
Latest Go 1.5 version
2015-12-05 09:38:15 -07:00
e17a18365d
Latest Go 1.5 version
2015-12-05 13:05:51 +01:00
b3f5e4d4ad
Update README URLs based on HTTP redirects
2015-12-04 07:20:56 -08:00
5b93799a62
Version 0.8.0
v0.8.0
2015-12-03 19:52:15 -07:00
fd14f257df
markdown: Add (currently failing) test for empty body
2015-12-02 17:09:43 -07:00
d044e497f6
Merge pull request #377 from abiosoft/master
...
markdown: Fix "metadata not closed" bug. More tests.
2015-12-02 17:04:16 -07:00
6f4835f91a
Markdown: Fix "metadata not closed" bug. More tests.
2015-12-03 00:41:12 +01:00
9002db2ae0
letsencrypt: Remote duplicate hosts from certificate request
...
Domain names must be unique in cert bundle request or really bad things happen (like, um, a panic)
2015-12-02 12:40:57 -07:00
19c6bbf6a2
Update changelist (env vars)
2015-12-02 11:42:50 -07:00
ef2ca1da3d
Merge pull request #357 from tw4452852/my_md
...
markdown: fix json front matter parse issue when body content is long
2015-11-27 00:07:19 -07:00
fbc18c5b85
markdown: fix json format parse issue
...
We can't use json meta parser's remaining buffered data as the markdown body
because it may not contain the entire original content.
Now we adopt the way like toml and yaml parser's way to extract the meta content
at first.
Also when spilting the meta data and content body, additional io.Copy is
unnecessary.
Fix issue #355
Signed-off-by: Tw <tw19881113@gmail.com >
2015-11-25 08:32:14 +08:00
d93fe53e84
Merge pull request #362 from jungle-boogie/patch-3
...
wrap lines to 80 characters
2015-11-24 13:42:21 -07:00
0a40970dea
Merge pull request #361 from jungle-boogie/patch-2
...
more copy edits
2015-11-24 13:34:39 -07:00
6478eee338
removed stray ) and spaces.
2015-11-24 11:16:05 -08:00
a60c739797
wrap lines to 80 characters
...
also linked to bug reporting article.
2015-11-24 11:09:35 -08:00
19ca7d812e
more copy edits
...
add links to inspired by projects and updated language with golang.
2015-11-24 11:04:15 -08:00
bc37cf0d1c
Merge pull request #360 from jungle-boogie/patch-1
...
copy edit to wrap around 80 chars
2015-11-24 11:24:24 -07:00