Elliott Sales de Andrade
087f4d2092
Convert yesod-static to cryptonite.
2017-07-22 22:58:23 -04:00
Ian Duncan
274b5445a1
Code review fixes for #1404
2017-06-07 20:13:04 +09:00
Ian Duncan
ded136513c
Add support to yesod-static for mapping unfingerprinted files to their fingerprinted equivalents
2017-06-06 15:21:25 +09:00
Steven Shaw
13cea1e3f7
Fix Haddock formatting for staticFilesList
2017-05-04 11:54:17 +10:00
Michael Snoyman
aefd074efa
Cleanup GHC 8 redundant constraints
2017-02-05 13:35:12 +02:00
Michael Snoyman
3dc2d10b30
Compile with -Wall -Werror
2017-02-05 12:09:18 +02:00
Michael Snoyman
e92c1f0c3e
yesod-static applies Yesod middlewares #1286
2016-10-31 12:47:14 +02:00
Michael Snoyman
6228ccc351
Don't use lazy I/O in embedDirAt #149
2016-10-14 05:53:07 +03:00
Artem Chuprina
83299bf1be
urlParamRenderOverride method for Yesod class
...
this method replaces urlRenderOverride because the latter lacks support for query string
2016-08-09 22:54:24 +03:00
Maciej Pietrzak
d1b8ba0e8a
Fix parameter order for uglifyjs.
2015-08-02 17:40:49 +02:00
Michael Snoyman
48a3bdeadb
Drop system-filepath
2015-05-12 12:35:04 +03:00
Michael Snoyman
86ad70da6a
Make staticRoutes more resilient to missing imports
2014-11-19 21:41:46 +02:00
Michael Snoyman
ccab062f2d
Remove all conditional compilation for Yesod 1.4 release
...
Left in for GHC-bundled libraries (ghc, base, bytestring, binary)
2014-09-07 18:17:45 +03:00
Michael Snoyman
82de52e3d2
Various additional WAI 3.0 fixes
2014-05-22 21:04:28 +03:00
Greg Weber
c498c77cc3
test absolute file paths in a cross-platform way
2014-04-27 08:23:09 -07:00
Greg Weber
c5df0b0bf4
check for a colon and slashes after http
2014-04-25 07:54:04 -07:00
Greg Weber
22caf035ef
absolute url function returns lazy text
2014-04-21 22:07:21 -07:00
Greg Weber
a2e979ccda
expose url re-writing function
2014-04-21 22:07:21 -07:00
Greg Weber
c3976efea9
make relative css urls absolute
2014-04-21 22:07:20 -07:00
pseudonom
620e200c4d
Fixed old comment on CSS post-processing default
2014-04-11 17:26:39 -04:00
Michael Snoyman
d764464152
conduit 1.1
2014-03-27 16:38:52 +02:00
Michael Snoyman
7f1b06ecb3
Multiple threads for communicating with processes
2014-03-26 22:05:06 +02:00
Vincent Hanquez
31748ddbd0
Remove crypto-conduit in favor of the simpler cryptohash-conduit.
2014-03-18 06:59:20 +00:00
Michael Snoyman
98955ac161
Minor doc fix (thanks Toby)
2013-12-24 14:52:50 +02:00
Michael Snoyman
b81a9721fb
Disable CSS minification when combining stylesheets #623
2013-11-21 22:44:31 +02:00
John Lenz
a4690dd424
yesod-static: improve messages for embedded compression tools
...
When trying various compression tools, display some messages
to the user about which compression tool is used.
--HG--
extra : rebase_source : e90e6ed49317b91a0fbe90d94f437459926f59e7
2013-09-19 15:22:14 -05:00
John Lenz
380cdcd174
static: make Entry a setting type
...
In the future we might want to add new features to the
Entry. I am currently thinking about source maps, where
a new field will need to be added to the Entry. Therefore,
use Data.Default to make sure we don't need to bump the
major version for these features.
2013-09-17 11:03:00 -05:00
John Lenz
1a5aa23f13
static: fix the build on GHC 7.4
...
There were two build issues on GHC 7.4: using atomicModifyIORef'
and ByteString.Lazy.toStrict, both of which were missing. These
are now fixed.
In addition, looking at the IORef code more closely,
we want the quite a bit of strictness in the IORef.
The common case is that the widget content already exists in the map
(every reload of a page will call embedStaticContent), but until we
force the map the thunks holding the duplicated generated content will
be kept around, leaking memory. This will be the common situation since
the vast majority of the time the content already exists. Since
the containers module does not have a strict map until 0.5, use
unordered containers which does have a strict map.
2013-09-12 17:52:15 -05:00
John Lenz
8e16fd2227
static: update sample-embed.hs and point the old embedded static to the new one
2013-09-12 12:21:47 -05:00
John Lenz
2ad3977712
static: add several embedded generators
...
This constains the generators to embed files, directories,
and javascript compression
2013-09-12 12:21:47 -05:00
John Lenz
f8a35ce0a0
static: Add an embedded static subsite
...
This commit adds just the subsite itself. The subsite
works by running a list of generaters at compile time.
The entries produced by the generators are converted into
wai-app-static.WaiAppStatic.Storage.Embedded entries. Also,
addStaticContent is supported via an IORef. When a widget
produces static content (css, javascript), it is stuck into
the IORef inside the embedded static subsite. The embedded
static subsite will then serve it from the IORef, properly
using a 304 response if the client already has the content.
2013-09-12 12:21:33 -05:00
Alexey Kotlyarov
f0bef8005f
Update to cryptohash-cryptoapi
...
Crypto.Hash.MD5 no longer exports the MD5 type, switch to
cryptohash-cryptoapi.
2013-09-01 15:05:27 +10:00
Michael Snoyman
18dd77a1fe
Revert string packing in yesod-static
2013-04-25 13:55:45 +03:00
Michael Snoyman
d79fe24d4d
Fixes after merge
2013-04-24 22:00:56 +03:00
Michael Snoyman
98ededba28
Merge remote-tracking branch 'origin/yesod1.2'
...
Conflicts:
yesod-auth/Yesod/Auth.hs
yesod-auth/yesod-auth.cabal
yesod-core/yesod-core.cabal
yesod-static/Yesod/Static.hs
yesod-static/yesod-static.cabal
yesod/yesod.cabal
2013-04-24 19:00:03 +03:00
Michael Snoyman
d01d6fa61a
Static file combining #517
2013-04-21 11:14:18 +03:00
Michael Snoyman
91757320f3
Dedupe path pieces in yesod-static
2013-04-18 22:59:40 +03:00
Felipe Lessa
53fd20d239
Squash static strings into a single one.
2013-04-09 18:03:32 -03:00
Felipe Lessa
1a8767935e
Whitespace.
2013-04-09 18:03:17 -03:00
Michael Snoyman
0eda39f242
Added ParseRoute instance for Static
2013-03-19 15:53:03 +02:00
Michael Snoyman
8b9f8ea024
Some convenience re-exports
2013-03-15 05:54:09 +02:00
Michael Snoyman
2d93157e9a
Fixed Yesod.Static
2013-03-14 19:02:30 +02:00
Michael Snoyman
9c4cd573b4
Everything compiles
2013-03-14 09:28:51 +02:00
Michael Snoyman
099b96f178
Everything compiles
2013-03-13 13:35:11 +02:00
Michael Snoyman
617c1d724e
Removed some FIXMEs
2013-01-02 14:26:56 +02:00
Michael Snoyman
992f4e7893
staticFiles (in Yesod.Static) does not work without OverloadedStrings ( #437 )
2012-12-26 15:59:49 +02:00
Michael Snoyman
c26e5cd4eb
Cleaned up some warnings
2012-11-02 08:27:30 +02:00
Michael Snoyman
cd8a898115
No infinite redirects in yesod-static ( #442 )
2012-10-28 09:09:44 +02:00
Michael Snoyman
699d76d13a
Merge branch 'beta'
...
Conflicts:
yesod-core/yesod-core.cabal
yesod-json/yesod-json.cabal
yesod-test/Yesod/Test.hs
yesod-test/test/main.hs
yesod-test/yesod-test.cabal
2012-07-11 08:48:09 +03:00
Max Cantor
5c4e5d989f
Added warning about Static embed. Updated to address Felipe's very valid criticisms.
2012-07-05 09:45:47 -07:00