├── INSTALL ├── LICENSE ├── Makefile ├── NOTICE ├── README ├── doc └── logo.svg ├── graphics ├── delete-image-35-35.xcf └── frontpage.xcf ├── html ├── .gitignore ├── ajax │ ├── authenticate-user.php │ ├── create-account.php │ ├── create-project.php │ ├── create-task.php │ ├── delete-task.php │ ├── get-plot-data.php │ ├── get-project.php │ ├── logout.php │ ├── set-project-description.php │ ├── set-worked-per-week.php │ ├── update-task-name.php │ └── update-task-size.php ├── css │ ├── dashboard.css │ ├── frontpage.css │ ├── manage-project.css │ └── tasktaste.css ├── images │ ├── bottombar-repeated-background-1x130.png │ ├── delete-image-35-35.png │ ├── logo-334x130.png │ ├── logo-repeated-background-1x130.png │ ├── logo.png │ ├── repeated-background-1x425.png │ └── userbar-repeated-background-1x43.png ├── index.php ├── js │ ├── bottombar.js │ ├── dashboard.js │ ├── frontpage.js │ └── manage-project.js └── manage-project.php ├── includes ├── TaskTaste │ ├── ajax-object.php │ ├── authentication-result.php │ ├── authentication.php │ ├── constants.php │ ├── data-point.php │ ├── project.php │ ├── sql-query.php │ ├── sql.php │ ├── task.php │ ├── tasktaste.php │ ├── user.php │ └── utils.php ├── TaskTasteConfig │ └── config.php └── TaskTasteHtml │ ├── ajax-footer.php │ ├── ajax-header.php │ ├── bottombar.php │ ├── dashboard.php │ ├── frontpage.php │ └── userbar.php └── tests ├── ManualTests.txt ├── ProjectTests.php ├── SeleniumTests.py ├── UtilsTests.php └── purge-database.php /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/NOTICE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/README -------------------------------------------------------------------------------- /doc/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/doc/logo.svg -------------------------------------------------------------------------------- /graphics/delete-image-35-35.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/graphics/delete-image-35-35.xcf -------------------------------------------------------------------------------- /graphics/frontpage.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/graphics/frontpage.xcf -------------------------------------------------------------------------------- /html/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/.gitignore -------------------------------------------------------------------------------- /html/ajax/authenticate-user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/ajax/authenticate-user.php -------------------------------------------------------------------------------- /html/ajax/create-account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/ajax/create-account.php -------------------------------------------------------------------------------- /html/ajax/create-project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/ajax/create-project.php -------------------------------------------------------------------------------- /html/ajax/create-task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/ajax/create-task.php -------------------------------------------------------------------------------- /html/ajax/delete-task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/ajax/delete-task.php -------------------------------------------------------------------------------- /html/ajax/get-plot-data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/ajax/get-plot-data.php -------------------------------------------------------------------------------- /html/ajax/get-project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/ajax/get-project.php -------------------------------------------------------------------------------- /html/ajax/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/ajax/logout.php -------------------------------------------------------------------------------- /html/ajax/set-project-description.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/ajax/set-project-description.php -------------------------------------------------------------------------------- /html/ajax/set-worked-per-week.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/ajax/set-worked-per-week.php -------------------------------------------------------------------------------- /html/ajax/update-task-name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/ajax/update-task-name.php -------------------------------------------------------------------------------- /html/ajax/update-task-size.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/ajax/update-task-size.php -------------------------------------------------------------------------------- /html/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/css/dashboard.css -------------------------------------------------------------------------------- /html/css/frontpage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/css/frontpage.css -------------------------------------------------------------------------------- /html/css/manage-project.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/css/manage-project.css -------------------------------------------------------------------------------- /html/css/tasktaste.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/css/tasktaste.css -------------------------------------------------------------------------------- /html/images/bottombar-repeated-background-1x130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/images/bottombar-repeated-background-1x130.png -------------------------------------------------------------------------------- /html/images/delete-image-35-35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/images/delete-image-35-35.png -------------------------------------------------------------------------------- /html/images/logo-334x130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/images/logo-334x130.png -------------------------------------------------------------------------------- /html/images/logo-repeated-background-1x130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/images/logo-repeated-background-1x130.png -------------------------------------------------------------------------------- /html/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/images/logo.png -------------------------------------------------------------------------------- /html/images/repeated-background-1x425.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/images/repeated-background-1x425.png -------------------------------------------------------------------------------- /html/images/userbar-repeated-background-1x43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/images/userbar-repeated-background-1x43.png -------------------------------------------------------------------------------- /html/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/index.php -------------------------------------------------------------------------------- /html/js/bottombar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/js/bottombar.js -------------------------------------------------------------------------------- /html/js/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/js/dashboard.js -------------------------------------------------------------------------------- /html/js/frontpage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/js/frontpage.js -------------------------------------------------------------------------------- /html/js/manage-project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/js/manage-project.js -------------------------------------------------------------------------------- /html/manage-project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/html/manage-project.php -------------------------------------------------------------------------------- /includes/TaskTaste/ajax-object.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/includes/TaskTaste/ajax-object.php -------------------------------------------------------------------------------- /includes/TaskTaste/authentication-result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/includes/TaskTaste/authentication-result.php -------------------------------------------------------------------------------- /includes/TaskTaste/authentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/includes/TaskTaste/authentication.php -------------------------------------------------------------------------------- /includes/TaskTaste/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/includes/TaskTaste/constants.php -------------------------------------------------------------------------------- /includes/TaskTaste/data-point.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/includes/TaskTaste/data-point.php -------------------------------------------------------------------------------- /includes/TaskTaste/project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/includes/TaskTaste/project.php -------------------------------------------------------------------------------- /includes/TaskTaste/sql-query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/includes/TaskTaste/sql-query.php -------------------------------------------------------------------------------- /includes/TaskTaste/sql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/includes/TaskTaste/sql.php -------------------------------------------------------------------------------- /includes/TaskTaste/task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/includes/TaskTaste/task.php -------------------------------------------------------------------------------- /includes/TaskTaste/tasktaste.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/includes/TaskTaste/tasktaste.php -------------------------------------------------------------------------------- /includes/TaskTaste/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/includes/TaskTaste/user.php -------------------------------------------------------------------------------- /includes/TaskTaste/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/includes/TaskTaste/utils.php -------------------------------------------------------------------------------- /includes/TaskTasteConfig/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/includes/TaskTasteConfig/config.php -------------------------------------------------------------------------------- /includes/TaskTasteHtml/ajax-footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/includes/TaskTasteHtml/ajax-footer.php -------------------------------------------------------------------------------- /includes/TaskTasteHtml/ajax-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/includes/TaskTasteHtml/ajax-header.php -------------------------------------------------------------------------------- /includes/TaskTasteHtml/bottombar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/includes/TaskTasteHtml/bottombar.php -------------------------------------------------------------------------------- /includes/TaskTasteHtml/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/includes/TaskTasteHtml/dashboard.php -------------------------------------------------------------------------------- /includes/TaskTasteHtml/frontpage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/includes/TaskTasteHtml/frontpage.php -------------------------------------------------------------------------------- /includes/TaskTasteHtml/userbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/includes/TaskTasteHtml/userbar.php -------------------------------------------------------------------------------- /tests/ManualTests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/tests/ManualTests.txt -------------------------------------------------------------------------------- /tests/ProjectTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/tests/ProjectTests.php -------------------------------------------------------------------------------- /tests/SeleniumTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/tests/SeleniumTests.py -------------------------------------------------------------------------------- /tests/UtilsTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/tests/UtilsTests.php -------------------------------------------------------------------------------- /tests/purge-database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enselic/task-taste/HEAD/tests/purge-database.php --------------------------------------------------------------------------------