├── .babelrc ├── .gitignore ├── BUILDING.rst ├── CHANGES.rst ├── Dockerfile ├── README.rst ├── bootstrap.py ├── client ├── app.jsx ├── demo │ ├── baseapi.js │ ├── boardapi.js │ ├── default-states.json │ ├── indexeddb.js │ ├── intro.html │ ├── intro.jsx │ ├── sample.json │ ├── siteapi.js │ └── ui.jsx ├── emailpw │ └── ui.jsx ├── kb.html ├── model │ ├── apibase.js │ ├── board.js │ ├── boardapi.js │ ├── hastext.js │ ├── site.js │ └── siteapi.js ├── styles │ └── app.scss ├── tests │ ├── sample.json │ ├── testboard.js │ ├── testdemoboardapi.js │ └── testdemositeapi.js ├── ui │ ├── admin.jsx │ ├── app.jsx │ ├── board.jsx │ ├── dialog.jsx │ ├── dnd.jsx │ ├── frame.jsx │ ├── intro.html │ ├── intro.jsx │ ├── project.jsx │ ├── revealbutton.jsx │ ├── search.jsx │ ├── site.jsx │ ├── tasks.jsx │ ├── thebag.jsx │ ├── util.jsx │ └── who.jsx └── version.js ├── default-states.json ├── demo └── index.html ├── doc ├── Makefile ├── conf.py ├── contents.rst ├── index.rst ├── sample-board.png ├── try.rst └── valuenator.rst ├── docker ├── README.rst ├── build.cfg ├── start.cfg └── start.sh ├── express ├── README.rst ├── package.json └── server.js ├── karma.conf.js ├── package.json ├── postcss.config.js ├── raven.cfg ├── release.cfg ├── release.py ├── requirements.txt ├── rpm.cfg ├── rpm.spec ├── screenshot.png ├── server └── twotieredkanban │ ├── __init__.py │ ├── apibase.py │ ├── apiboard.py │ ├── apisite.py │ ├── apiutil.py │ ├── auth.text │ ├── board.py │ ├── default-states.json │ ├── emailpw-templates │ ├── base.html │ ├── emailpw.css │ ├── forgot.html │ ├── login.html │ ├── message.html │ ├── pw.html │ └── request.html │ ├── emailpw.py │ ├── favicon.ico │ ├── initializedb.py │ ├── interfaces.py │ ├── jwtauth.py │ ├── kb.html │ ├── server.py │ ├── ses.py │ ├── site.py │ ├── smtp.py │ ├── sql │ ├── __init__.py │ └── evolve1.sql │ └── tests │ ├── __init__.py │ ├── auth.py │ ├── sample-export.json │ ├── sample.json │ ├── sample.py │ ├── testapi.py │ ├── testboard.py │ ├── testemailpw.py │ ├── testsearch.py │ ├── testsite.py │ └── testtask.py ├── setup.py ├── stage-build ├── test.js ├── versions.cfg ├── webpack ├── webpack.config-test.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ['react', 'es2015'] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILDING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/BUILDING.rst -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/README.rst -------------------------------------------------------------------------------- /bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/bootstrap.py -------------------------------------------------------------------------------- /client/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/app.jsx -------------------------------------------------------------------------------- /client/demo/baseapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/demo/baseapi.js -------------------------------------------------------------------------------- /client/demo/boardapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/demo/boardapi.js -------------------------------------------------------------------------------- /client/demo/default-states.json: -------------------------------------------------------------------------------- 1 | ../../default-states.json -------------------------------------------------------------------------------- /client/demo/indexeddb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/demo/indexeddb.js -------------------------------------------------------------------------------- /client/demo/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/demo/intro.html -------------------------------------------------------------------------------- /client/demo/intro.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/demo/intro.jsx -------------------------------------------------------------------------------- /client/demo/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/demo/sample.json -------------------------------------------------------------------------------- /client/demo/siteapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/demo/siteapi.js -------------------------------------------------------------------------------- /client/demo/ui.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/demo/ui.jsx -------------------------------------------------------------------------------- /client/emailpw/ui.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/emailpw/ui.jsx -------------------------------------------------------------------------------- /client/kb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/kb.html -------------------------------------------------------------------------------- /client/model/apibase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/model/apibase.js -------------------------------------------------------------------------------- /client/model/board.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/model/board.js -------------------------------------------------------------------------------- /client/model/boardapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/model/boardapi.js -------------------------------------------------------------------------------- /client/model/hastext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/model/hastext.js -------------------------------------------------------------------------------- /client/model/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/model/site.js -------------------------------------------------------------------------------- /client/model/siteapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/model/siteapi.js -------------------------------------------------------------------------------- /client/styles/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/styles/app.scss -------------------------------------------------------------------------------- /client/tests/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/tests/sample.json -------------------------------------------------------------------------------- /client/tests/testboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/tests/testboard.js -------------------------------------------------------------------------------- /client/tests/testdemoboardapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/tests/testdemoboardapi.js -------------------------------------------------------------------------------- /client/tests/testdemositeapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/tests/testdemositeapi.js -------------------------------------------------------------------------------- /client/ui/admin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/ui/admin.jsx -------------------------------------------------------------------------------- /client/ui/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/ui/app.jsx -------------------------------------------------------------------------------- /client/ui/board.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/ui/board.jsx -------------------------------------------------------------------------------- /client/ui/dialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/ui/dialog.jsx -------------------------------------------------------------------------------- /client/ui/dnd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/ui/dnd.jsx -------------------------------------------------------------------------------- /client/ui/frame.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/ui/frame.jsx -------------------------------------------------------------------------------- /client/ui/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/ui/intro.html -------------------------------------------------------------------------------- /client/ui/intro.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/ui/intro.jsx -------------------------------------------------------------------------------- /client/ui/project.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/ui/project.jsx -------------------------------------------------------------------------------- /client/ui/revealbutton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/ui/revealbutton.jsx -------------------------------------------------------------------------------- /client/ui/search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/ui/search.jsx -------------------------------------------------------------------------------- /client/ui/site.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/ui/site.jsx -------------------------------------------------------------------------------- /client/ui/tasks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/ui/tasks.jsx -------------------------------------------------------------------------------- /client/ui/thebag.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/ui/thebag.jsx -------------------------------------------------------------------------------- /client/ui/util.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/ui/util.jsx -------------------------------------------------------------------------------- /client/ui/who.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/client/ui/who.jsx -------------------------------------------------------------------------------- /client/version.js: -------------------------------------------------------------------------------- 1 | export default '0.15.2'; 2 | -------------------------------------------------------------------------------- /default-states.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/default-states.json -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/demo/index.html -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/doc/contents.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/sample-board.png: -------------------------------------------------------------------------------- 1 | ../screenshot.png -------------------------------------------------------------------------------- /doc/try.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/doc/try.rst -------------------------------------------------------------------------------- /doc/valuenator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/doc/valuenator.rst -------------------------------------------------------------------------------- /docker/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/docker/README.rst -------------------------------------------------------------------------------- /docker/build.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/docker/build.cfg -------------------------------------------------------------------------------- /docker/start.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/docker/start.cfg -------------------------------------------------------------------------------- /docker/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/docker/start.sh -------------------------------------------------------------------------------- /express/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/express/README.rst -------------------------------------------------------------------------------- /express/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/express/package.json -------------------------------------------------------------------------------- /express/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/express/server.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/postcss.config.js -------------------------------------------------------------------------------- /raven.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/raven.cfg -------------------------------------------------------------------------------- /release.cfg: -------------------------------------------------------------------------------- 1 | [buildout] 2 | release = 0.15.2 3 | -------------------------------------------------------------------------------- /release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/release.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/requirements.txt -------------------------------------------------------------------------------- /rpm.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/rpm.cfg -------------------------------------------------------------------------------- /rpm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/rpm.spec -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/screenshot.png -------------------------------------------------------------------------------- /server/twotieredkanban/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/twotieredkanban/apibase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/apibase.py -------------------------------------------------------------------------------- /server/twotieredkanban/apiboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/apiboard.py -------------------------------------------------------------------------------- /server/twotieredkanban/apisite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/apisite.py -------------------------------------------------------------------------------- /server/twotieredkanban/apiutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/apiutil.py -------------------------------------------------------------------------------- /server/twotieredkanban/auth.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/auth.text -------------------------------------------------------------------------------- /server/twotieredkanban/board.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/board.py -------------------------------------------------------------------------------- /server/twotieredkanban/default-states.json: -------------------------------------------------------------------------------- 1 | ../../default-states.json -------------------------------------------------------------------------------- /server/twotieredkanban/emailpw-templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/emailpw-templates/base.html -------------------------------------------------------------------------------- /server/twotieredkanban/emailpw-templates/emailpw.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/emailpw-templates/emailpw.css -------------------------------------------------------------------------------- /server/twotieredkanban/emailpw-templates/forgot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/emailpw-templates/forgot.html -------------------------------------------------------------------------------- /server/twotieredkanban/emailpw-templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/emailpw-templates/login.html -------------------------------------------------------------------------------- /server/twotieredkanban/emailpw-templates/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/emailpw-templates/message.html -------------------------------------------------------------------------------- /server/twotieredkanban/emailpw-templates/pw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/emailpw-templates/pw.html -------------------------------------------------------------------------------- /server/twotieredkanban/emailpw-templates/request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/emailpw-templates/request.html -------------------------------------------------------------------------------- /server/twotieredkanban/emailpw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/emailpw.py -------------------------------------------------------------------------------- /server/twotieredkanban/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/favicon.ico -------------------------------------------------------------------------------- /server/twotieredkanban/initializedb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/initializedb.py -------------------------------------------------------------------------------- /server/twotieredkanban/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/interfaces.py -------------------------------------------------------------------------------- /server/twotieredkanban/jwtauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/jwtauth.py -------------------------------------------------------------------------------- /server/twotieredkanban/kb.html: -------------------------------------------------------------------------------- 1 | ../../client/kb.html -------------------------------------------------------------------------------- /server/twotieredkanban/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/server.py -------------------------------------------------------------------------------- /server/twotieredkanban/ses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/ses.py -------------------------------------------------------------------------------- /server/twotieredkanban/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/site.py -------------------------------------------------------------------------------- /server/twotieredkanban/smtp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/smtp.py -------------------------------------------------------------------------------- /server/twotieredkanban/sql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/sql/__init__.py -------------------------------------------------------------------------------- /server/twotieredkanban/sql/evolve1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/sql/evolve1.sql -------------------------------------------------------------------------------- /server/twotieredkanban/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/twotieredkanban/tests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/tests/auth.py -------------------------------------------------------------------------------- /server/twotieredkanban/tests/sample-export.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/tests/sample-export.json -------------------------------------------------------------------------------- /server/twotieredkanban/tests/sample.json: -------------------------------------------------------------------------------- 1 | ../../../client/tests/sample.json -------------------------------------------------------------------------------- /server/twotieredkanban/tests/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/tests/sample.py -------------------------------------------------------------------------------- /server/twotieredkanban/tests/testapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/tests/testapi.py -------------------------------------------------------------------------------- /server/twotieredkanban/tests/testboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/tests/testboard.py -------------------------------------------------------------------------------- /server/twotieredkanban/tests/testemailpw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/tests/testemailpw.py -------------------------------------------------------------------------------- /server/twotieredkanban/tests/testsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/tests/testsearch.py -------------------------------------------------------------------------------- /server/twotieredkanban/tests/testsite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/tests/testsite.py -------------------------------------------------------------------------------- /server/twotieredkanban/tests/testtask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/server/twotieredkanban/tests/testtask.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/setup.py -------------------------------------------------------------------------------- /stage-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/stage-build -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/test.js -------------------------------------------------------------------------------- /versions.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/versions.cfg -------------------------------------------------------------------------------- /webpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/webpack -------------------------------------------------------------------------------- /webpack.config-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/webpack.config-test.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feature-flow/twotieredkanban/HEAD/webpack.config.js --------------------------------------------------------------------------------