packages feed

hledger-web 0.16.1 → 0.16.2

raw patch · 4 files changed

+15/−2 lines, 4 files

Files

Hledger/Web/Options.hs view
@@ -14,7 +14,8 @@ import Hledger.Web.Settings  progname = Hledger.Cli.progname ++ "-web"-progversion = progversionstr progname+-- progversion = progversionstr progname+progversion = progname ++ "-" ++ "0.16.2"  defbaseurlexample = (reverse $ drop 4 $ reverse $ defbaseurl defport) ++ "PORT" 
hledger-web.cabal view
@@ -1,5 +1,5 @@ name:           hledger-web-version: 0.16.1+version: 0.16.2 category:       Finance synopsis:       A web interface for the hledger accounting tool. description:    @@ -22,6 +22,8 @@ build-type:     Simple extra-tmp-files: extra-source-files:+                models+                routes                 static/style.css                 static/hledger.js                 static/jquery.js
+ models view
+ routes view
@@ -0,0 +1,10 @@+/static          StaticR         Static getStatic+/favicon.ico     FaviconR        GET+/robots.txt      RobotsR         GET+/                RootR           GET+/journal         JournalR        GET POST+/journal/entries JournalEntriesR GET POST+/journal/edit    JournalEditR    GET POST+/register        RegisterR       GET POST+/accounts        AccountsR       GET+/api/accounts    AccountsJsonR   GET