├── .github └── workflows │ ├── generatemo.yml │ ├── release.yml │ └── updatepot.yml ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── SECURITY.md ├── TODO.txt ├── ajax ├── addOptions.php ├── contextForm.php ├── dropdownState.php ├── dropdownTypeTasks.php ├── getTaskComment.php ├── getUserPicture.php ├── index.php ├── inputEntity.php ├── kanban.php ├── seetask.php └── updatetask.php ├── front ├── comment.form.php ├── index.php ├── kanban.php ├── preference.form.php ├── setup.templates.php ├── task.form.php ├── task.php ├── task_comment.form.php ├── ticket.form.php └── typevisibility.form.php ├── hook.php ├── index.php ├── locales ├── cs_CZ.mo ├── cs_CZ.po ├── en_GB.mo ├── en_GB.po ├── es_419.mo ├── es_419.po ├── es_EC.mo ├── es_EC.po ├── es_ES.mo ├── es_ES.po ├── es_MX.mo ├── es_MX.po ├── es_VE.mo ├── es_VE.po ├── fi_FI.mo ├── fi_FI.po ├── fr_FR.mo ├── fr_FR.po ├── glpi.pot ├── ja_JP.mo ├── ja_JP.po ├── pl_PL.mo ├── pl_PL.po ├── pt_BR.mo ├── pt_BR.po ├── ru_RU.mo └── ru_RU.po ├── public ├── kanban.css └── lib │ ├── jquery-ui │ ├── images │ │ ├── ui-icons_444444_256x240.png │ │ ├── ui-icons_555555_256x240.png │ │ ├── ui-icons_777620_256x240.png │ │ ├── ui-icons_777777_256x240.png │ │ ├── ui-icons_cc0000_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ ├── jquery-ui.min.css │ └── jquery-ui.min.js │ └── kanban │ ├── LICENSE │ ├── README.md │ ├── css │ └── kanban.css │ ├── images │ └── dragger.png │ └── js │ ├── Kanban.js │ ├── SearchTokenizer │ ├── SearchInput.js │ ├── SearchInput.min.js │ ├── SearchToken.js │ ├── SearchToken.min.js │ ├── SearchTokenizer.js │ ├── SearchTokenizer.min.js │ ├── SearchTokenizerResult.js │ └── SearchTokenizerResult.min.js │ └── kanban-actions.js ├── screenshots ├── Tasks list from Dashboard.png ├── addTask.png └── kanban.png ├── setup.php ├── sql ├── empty-1.0.0.sql ├── empty-1.3.0.sql ├── empty-1.4.0.sql ├── empty-1.5.1.sql ├── empty-1.6.0.sql ├── empty-1.6.1.sql ├── empty-2.0.0.sql ├── empty-2.0.4.sql ├── empty-2.1.0.sql ├── update-1.4.0.sql ├── update-1.4.1.sql ├── update-1.5.1.sql ├── update-1.6.0.sql ├── update-1.6.1.sql ├── update-2.0.0.sql ├── update-2.1.0.sql ├── update-2.1.4.sql └── update-2.1.5.sql ├── src ├── Dashboard.php ├── Item_Kanban.php ├── Kanban.php ├── Menu.php ├── NotificationTargetTask.php ├── Preference.php ├── Profile.php ├── Task.php ├── TaskState.php ├── TaskType.php ├── Task_Comment.php ├── Ticket.php └── TypeVisibility.php ├── tasklists.png ├── tasklists.xml ├── templates └── kanban.html.twig └── tools ├── extract_template.sh ├── update_mo.pl └── update_po.pl /.github/workflows/generatemo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/.github/workflows/generatemo.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/updatepot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/.github/workflows/updatepot.yml -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/SECURITY.md -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/TODO.txt -------------------------------------------------------------------------------- /ajax/addOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/ajax/addOptions.php -------------------------------------------------------------------------------- /ajax/contextForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/ajax/contextForm.php -------------------------------------------------------------------------------- /ajax/dropdownState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/ajax/dropdownState.php -------------------------------------------------------------------------------- /ajax/dropdownTypeTasks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/ajax/dropdownTypeTasks.php -------------------------------------------------------------------------------- /ajax/getTaskComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/ajax/getTaskComment.php -------------------------------------------------------------------------------- /ajax/getUserPicture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/ajax/getUserPicture.php -------------------------------------------------------------------------------- /ajax/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/ajax/index.php -------------------------------------------------------------------------------- /ajax/inputEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/ajax/inputEntity.php -------------------------------------------------------------------------------- /ajax/kanban.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/ajax/kanban.php -------------------------------------------------------------------------------- /ajax/seetask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/ajax/seetask.php -------------------------------------------------------------------------------- /ajax/updatetask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/ajax/updatetask.php -------------------------------------------------------------------------------- /front/comment.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/front/comment.form.php -------------------------------------------------------------------------------- /front/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/front/index.php -------------------------------------------------------------------------------- /front/kanban.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/front/kanban.php -------------------------------------------------------------------------------- /front/preference.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/front/preference.form.php -------------------------------------------------------------------------------- /front/setup.templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/front/setup.templates.php -------------------------------------------------------------------------------- /front/task.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/front/task.form.php -------------------------------------------------------------------------------- /front/task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/front/task.php -------------------------------------------------------------------------------- /front/task_comment.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/front/task_comment.form.php -------------------------------------------------------------------------------- /front/ticket.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/front/ticket.form.php -------------------------------------------------------------------------------- /front/typevisibility.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/front/typevisibility.form.php -------------------------------------------------------------------------------- /hook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/hook.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/index.php -------------------------------------------------------------------------------- /locales/cs_CZ.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/locales/cs_CZ.mo -------------------------------------------------------------------------------- /locales/cs_CZ.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/locales/cs_CZ.po -------------------------------------------------------------------------------- /locales/en_GB.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/locales/en_GB.mo -------------------------------------------------------------------------------- /locales/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/locales/en_GB.po -------------------------------------------------------------------------------- /locales/es_419.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/locales/es_419.mo -------------------------------------------------------------------------------- /locales/es_419.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/locales/es_419.po -------------------------------------------------------------------------------- /locales/es_EC.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/locales/es_EC.mo -------------------------------------------------------------------------------- /locales/es_EC.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/locales/es_EC.po -------------------------------------------------------------------------------- /locales/es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/locales/es_ES.mo -------------------------------------------------------------------------------- /locales/es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/locales/es_ES.po -------------------------------------------------------------------------------- /locales/es_MX.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/locales/es_MX.mo -------------------------------------------------------------------------------- /locales/es_MX.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/locales/es_MX.po -------------------------------------------------------------------------------- /locales/es_VE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/locales/es_VE.mo -------------------------------------------------------------------------------- /locales/es_VE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/locales/es_VE.po -------------------------------------------------------------------------------- /locales/fi_FI.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/locales/fi_FI.mo -------------------------------------------------------------------------------- /locales/fi_FI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/locales/fi_FI.po -------------------------------------------------------------------------------- /locales/fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/locales/fr_FR.mo -------------------------------------------------------------------------------- /locales/fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/locales/fr_FR.po -------------------------------------------------------------------------------- /locales/glpi.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/locales/glpi.pot -------------------------------------------------------------------------------- /locales/ja_JP.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/locales/ja_JP.mo -------------------------------------------------------------------------------- /locales/ja_JP.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/locales/ja_JP.po -------------------------------------------------------------------------------- /locales/pl_PL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/locales/pl_PL.mo -------------------------------------------------------------------------------- /locales/pl_PL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/locales/pl_PL.po -------------------------------------------------------------------------------- /locales/pt_BR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/locales/pt_BR.mo -------------------------------------------------------------------------------- /locales/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/locales/pt_BR.po -------------------------------------------------------------------------------- /locales/ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/locales/ru_RU.mo -------------------------------------------------------------------------------- /locales/ru_RU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/locales/ru_RU.po -------------------------------------------------------------------------------- /public/kanban.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/public/kanban.css -------------------------------------------------------------------------------- /public/lib/jquery-ui/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/public/lib/jquery-ui/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /public/lib/jquery-ui/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/public/lib/jquery-ui/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /public/lib/jquery-ui/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/public/lib/jquery-ui/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /public/lib/jquery-ui/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/public/lib/jquery-ui/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /public/lib/jquery-ui/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/public/lib/jquery-ui/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /public/lib/jquery-ui/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/public/lib/jquery-ui/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /public/lib/jquery-ui/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/public/lib/jquery-ui/jquery-ui.min.css -------------------------------------------------------------------------------- /public/lib/jquery-ui/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/public/lib/jquery-ui/jquery-ui.min.js -------------------------------------------------------------------------------- /public/lib/kanban/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/public/lib/kanban/LICENSE -------------------------------------------------------------------------------- /public/lib/kanban/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/public/lib/kanban/README.md -------------------------------------------------------------------------------- /public/lib/kanban/css/kanban.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/public/lib/kanban/css/kanban.css -------------------------------------------------------------------------------- /public/lib/kanban/images/dragger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/public/lib/kanban/images/dragger.png -------------------------------------------------------------------------------- /public/lib/kanban/js/Kanban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/public/lib/kanban/js/Kanban.js -------------------------------------------------------------------------------- /public/lib/kanban/js/SearchTokenizer/SearchInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/public/lib/kanban/js/SearchTokenizer/SearchInput.js -------------------------------------------------------------------------------- /public/lib/kanban/js/SearchTokenizer/SearchInput.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/public/lib/kanban/js/SearchTokenizer/SearchInput.min.js -------------------------------------------------------------------------------- /public/lib/kanban/js/SearchTokenizer/SearchToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/public/lib/kanban/js/SearchTokenizer/SearchToken.js -------------------------------------------------------------------------------- /public/lib/kanban/js/SearchTokenizer/SearchToken.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/public/lib/kanban/js/SearchTokenizer/SearchToken.min.js -------------------------------------------------------------------------------- /public/lib/kanban/js/SearchTokenizer/SearchTokenizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/public/lib/kanban/js/SearchTokenizer/SearchTokenizer.js -------------------------------------------------------------------------------- /public/lib/kanban/js/SearchTokenizer/SearchTokenizer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/public/lib/kanban/js/SearchTokenizer/SearchTokenizer.min.js -------------------------------------------------------------------------------- /public/lib/kanban/js/SearchTokenizer/SearchTokenizerResult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/public/lib/kanban/js/SearchTokenizer/SearchTokenizerResult.js -------------------------------------------------------------------------------- /public/lib/kanban/js/SearchTokenizer/SearchTokenizerResult.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/public/lib/kanban/js/SearchTokenizer/SearchTokenizerResult.min.js -------------------------------------------------------------------------------- /public/lib/kanban/js/kanban-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/public/lib/kanban/js/kanban-actions.js -------------------------------------------------------------------------------- /screenshots/Tasks list from Dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/screenshots/Tasks list from Dashboard.png -------------------------------------------------------------------------------- /screenshots/addTask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/screenshots/addTask.png -------------------------------------------------------------------------------- /screenshots/kanban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/screenshots/kanban.png -------------------------------------------------------------------------------- /setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/setup.php -------------------------------------------------------------------------------- /sql/empty-1.0.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/sql/empty-1.0.0.sql -------------------------------------------------------------------------------- /sql/empty-1.3.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/sql/empty-1.3.0.sql -------------------------------------------------------------------------------- /sql/empty-1.4.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/sql/empty-1.4.0.sql -------------------------------------------------------------------------------- /sql/empty-1.5.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/sql/empty-1.5.1.sql -------------------------------------------------------------------------------- /sql/empty-1.6.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/sql/empty-1.6.0.sql -------------------------------------------------------------------------------- /sql/empty-1.6.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/sql/empty-1.6.1.sql -------------------------------------------------------------------------------- /sql/empty-2.0.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/sql/empty-2.0.0.sql -------------------------------------------------------------------------------- /sql/empty-2.0.4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/sql/empty-2.0.4.sql -------------------------------------------------------------------------------- /sql/empty-2.1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/sql/empty-2.1.0.sql -------------------------------------------------------------------------------- /sql/update-1.4.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/sql/update-1.4.0.sql -------------------------------------------------------------------------------- /sql/update-1.4.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/sql/update-1.4.1.sql -------------------------------------------------------------------------------- /sql/update-1.5.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/sql/update-1.5.1.sql -------------------------------------------------------------------------------- /sql/update-1.6.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/sql/update-1.6.0.sql -------------------------------------------------------------------------------- /sql/update-1.6.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/sql/update-1.6.1.sql -------------------------------------------------------------------------------- /sql/update-2.0.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/sql/update-2.0.0.sql -------------------------------------------------------------------------------- /sql/update-2.1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/sql/update-2.1.0.sql -------------------------------------------------------------------------------- /sql/update-2.1.4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/sql/update-2.1.4.sql -------------------------------------------------------------------------------- /sql/update-2.1.5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/sql/update-2.1.5.sql -------------------------------------------------------------------------------- /src/Dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/src/Dashboard.php -------------------------------------------------------------------------------- /src/Item_Kanban.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/src/Item_Kanban.php -------------------------------------------------------------------------------- /src/Kanban.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/src/Kanban.php -------------------------------------------------------------------------------- /src/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/src/Menu.php -------------------------------------------------------------------------------- /src/NotificationTargetTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/src/NotificationTargetTask.php -------------------------------------------------------------------------------- /src/Preference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/src/Preference.php -------------------------------------------------------------------------------- /src/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/src/Profile.php -------------------------------------------------------------------------------- /src/Task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/src/Task.php -------------------------------------------------------------------------------- /src/TaskState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/src/TaskState.php -------------------------------------------------------------------------------- /src/TaskType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/src/TaskType.php -------------------------------------------------------------------------------- /src/Task_Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/src/Task_Comment.php -------------------------------------------------------------------------------- /src/Ticket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/src/Ticket.php -------------------------------------------------------------------------------- /src/TypeVisibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/src/TypeVisibility.php -------------------------------------------------------------------------------- /tasklists.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/tasklists.png -------------------------------------------------------------------------------- /tasklists.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/tasklists.xml -------------------------------------------------------------------------------- /templates/kanban.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/templates/kanban.html.twig -------------------------------------------------------------------------------- /tools/extract_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/tools/extract_template.sh -------------------------------------------------------------------------------- /tools/update_mo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/tools/update_mo.pl -------------------------------------------------------------------------------- /tools/update_po.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/tasklists/HEAD/tools/update_po.pl --------------------------------------------------------------------------------