├── .gitattributes ├── .gitignore ├── LICENSE ├── Setup.hs ├── apps ├── mvc-todo-auto.hs └── mvc-todo.hs ├── index.html ├── mvc-todo.cabal ├── other ├── header.md ├── index.md ├── mvc-todo-auto.html ├── mvc-todo-auto.js ├── mvc-todo.html ├── mvc-todo.js └── node_modules │ ├── todomvc-app-css │ └── index.css │ └── todomvc-common │ ├── base.css │ └── base.js ├── readme.md ├── src └── Todo │ ├── Arbitrary.hs │ ├── Controllers.hs │ ├── Model.hs │ ├── Vanilla.hs │ └── Views.hs └── stack.yaml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archive567/mvc-todo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.stack-work/ 2 | TAGS 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archive567/mvc-todo/HEAD/LICENSE -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /apps/mvc-todo-auto.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archive567/mvc-todo/HEAD/apps/mvc-todo-auto.hs -------------------------------------------------------------------------------- /apps/mvc-todo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archive567/mvc-todo/HEAD/apps/mvc-todo.hs -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archive567/mvc-todo/HEAD/index.html -------------------------------------------------------------------------------- /mvc-todo.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archive567/mvc-todo/HEAD/mvc-todo.cabal -------------------------------------------------------------------------------- /other/header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archive567/mvc-todo/HEAD/other/header.md -------------------------------------------------------------------------------- /other/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archive567/mvc-todo/HEAD/other/index.md -------------------------------------------------------------------------------- /other/mvc-todo-auto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archive567/mvc-todo/HEAD/other/mvc-todo-auto.html -------------------------------------------------------------------------------- /other/mvc-todo-auto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archive567/mvc-todo/HEAD/other/mvc-todo-auto.js -------------------------------------------------------------------------------- /other/mvc-todo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archive567/mvc-todo/HEAD/other/mvc-todo.html -------------------------------------------------------------------------------- /other/mvc-todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archive567/mvc-todo/HEAD/other/mvc-todo.js -------------------------------------------------------------------------------- /other/node_modules/todomvc-app-css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archive567/mvc-todo/HEAD/other/node_modules/todomvc-app-css/index.css -------------------------------------------------------------------------------- /other/node_modules/todomvc-common/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archive567/mvc-todo/HEAD/other/node_modules/todomvc-common/base.css -------------------------------------------------------------------------------- /other/node_modules/todomvc-common/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archive567/mvc-todo/HEAD/other/node_modules/todomvc-common/base.js -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archive567/mvc-todo/HEAD/readme.md -------------------------------------------------------------------------------- /src/Todo/Arbitrary.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archive567/mvc-todo/HEAD/src/Todo/Arbitrary.hs -------------------------------------------------------------------------------- /src/Todo/Controllers.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archive567/mvc-todo/HEAD/src/Todo/Controllers.hs -------------------------------------------------------------------------------- /src/Todo/Model.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archive567/mvc-todo/HEAD/src/Todo/Model.hs -------------------------------------------------------------------------------- /src/Todo/Vanilla.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archive567/mvc-todo/HEAD/src/Todo/Vanilla.hs -------------------------------------------------------------------------------- /src/Todo/Views.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archive567/mvc-todo/HEAD/src/Todo/Views.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archive567/mvc-todo/HEAD/stack.yaml --------------------------------------------------------------------------------