a small webapp to share collective expenses in a house - single account version - note, this version is now quite out of date and missing a lot of features of the multi-account version. There isn't really any advantage in using it.
Name: housetab
Version: 1.0
Author: Daniel Patterson <dbp@riseup.net>
Copyright: 2010 Daniel Patterson
Stability: Experimental
Category: Web
Synopsis: A webapp to share expenses among members of a house.
Description: This app allows many members to run their own collective tab, marking who pays for what and how it should be split, so that things can be handled equitably, eaqsily.
Cabal-version: >= 1.4.0.0
build-type: Custom
Flag base4
Description: Choose the even newer, even smaller, split-up base package.
Library
Exposed-Modules:
App.Control,
App.Logger,
App.State,
App.View,
HouseTab.Control,
HouseTab.Control.Entry,
HouseTab.Control.Person,
HouseTab.Control.Backup,
HouseTab.State,
HouseTab.View,
HouseTab.View.Entry,
HouseTab.View.Person,
HouseTab.Lib,
HouseTab.Backup
hs-source-dirs: src
GHC-Options: -threaded -Wall -Wwarn -O2 -fno-warn-name-shadowing -fno-warn-missing-signatures -fwarn-tabs -fno-warn-unused-binds -fno-warn-orphans -fwarn-unused-imports
Build-depends: happstack-state, happstack-server, hslogger, mtl, old-time, old-locale, hsx, hsp, happstack, utf8-string, happstack-data, extensible-exceptions, SHA, bytestring, split, containers
if flag(base4)
Build-Depends: base >= 4 && < 5, syb
Executable housetab-server
Main-Is: Main.hs
hs-source-dirs: src
GHC-options: -threaded -Wall -Wwarn -O2 -fno-warn-name-shadowing -fno-warn-missing-signatures -fwarn-tabs -fno-warn-unused-binds -fno-warn-orphans -fwarn-unused-imports
Build-depends: happstack-util
Build-Tools: trhsx |