├── .gitignore ├── Change_your_github_repo.md ├── LICENSE ├── README.md ├── __init__.py ├── __openerp__.py ├── content └── screen1.png ├── i18n ├── de.po ├── en_US.po ├── fr.po ├── gantt_improvement.pot └── sl.po ├── static ├── description │ ├── icon.png │ └── index.html ├── dhtmlxGantt │ ├── connector │ │ ├── base_connector.php │ │ ├── chart_connector.php │ │ ├── combo_connector.php │ │ ├── convert.php │ │ ├── crosslink_connector.php │ │ ├── data_connector.php │ │ ├── dataprocessor.php │ │ ├── dataview_connector.php │ │ ├── db_adodb.php │ │ ├── db_common.php │ │ ├── db_excel.php │ │ ├── db_filesystem.php │ │ ├── db_mssql.php │ │ ├── db_mysqli.php │ │ ├── db_oracle.php │ │ ├── db_pdo.php │ │ ├── db_phpcake.php │ │ ├── db_phpcake2.php │ │ ├── db_phpci.php │ │ ├── db_phpci2.php │ │ ├── db_phpyii.php │ │ ├── db_phpyii1.php │ │ ├── db_postgre.php │ │ ├── db_sasql.php │ │ ├── db_sqlite.php │ │ ├── db_sqlite3.php │ │ ├── db_sqlsrv.php │ │ ├── filesystem_item.php │ │ ├── form_connector.php │ │ ├── gantt_connector.php │ │ ├── grid_config.php │ │ ├── grid_connector.php │ │ ├── keygrid_connector.php │ │ ├── mixed_connector.php │ │ ├── options_connector.php │ │ ├── scheduler_connector.php │ │ ├── strategy.php │ │ ├── tools.php │ │ ├── tree_connector.php │ │ ├── treedatagroup_connector.php │ │ ├── treedatamultitable_connector.php │ │ ├── treegrid_connector.php │ │ ├── treegridgroup_connector.php │ │ ├── treegridmultitable_connector.php │ │ ├── treegroup_connector.php │ │ ├── treemultitable_connector.php │ │ ├── update.php │ │ └── xss_filter.php │ ├── dhtmlxgantt.css │ ├── dhtmlxgantt.js │ ├── ext │ │ ├── dhtmlxgantt_csp.js │ │ ├── dhtmlxgantt_fullscreen.js │ │ ├── dhtmlxgantt_marker.js │ │ ├── dhtmlxgantt_multiselect.js │ │ ├── dhtmlxgantt_quick_info.js │ │ └── dhtmlxgantt_tooltip.js │ ├── license.txt │ ├── locale │ │ ├── locale.js │ │ ├── locale_ar.js │ │ ├── locale_be.js │ │ ├── locale_ca.js │ │ ├── locale_cn.js │ │ ├── locale_cs.js │ │ ├── locale_da.js │ │ ├── locale_de.js │ │ ├── locale_el.js │ │ ├── locale_es.js │ │ ├── locale_fi.js │ │ ├── locale_fr.js │ │ ├── locale_he.js │ │ ├── locale_hu.js │ │ ├── locale_id.js │ │ ├── locale_it.js │ │ ├── locale_jp.js │ │ ├── locale_kr.js │ │ ├── locale_nb.js │ │ ├── locale_nl.js │ │ ├── locale_no.js │ │ ├── locale_pl.js │ │ ├── locale_pt.js │ │ ├── locale_ro.js │ │ ├── locale_ru.js │ │ ├── locale_si.js │ │ ├── locale_sk.js │ │ ├── locale_sv.js │ │ ├── locale_tr.js │ │ └── locale_ua.js │ ├── readme.txt │ ├── skins │ │ ├── dhtmlxgantt_broadway.css │ │ ├── dhtmlxgantt_meadow.css │ │ ├── dhtmlxgantt_skyblue.css │ │ └── dhtmlxgantt_terrace.css │ ├── sources │ │ ├── dhtmlxgantt.js │ │ ├── dhtmlxgantt.js.map │ │ ├── ext │ │ │ ├── dhtmlxgantt_csp.js │ │ │ ├── dhtmlxgantt_csp.js.map │ │ │ ├── dhtmlxgantt_fullscreen.js │ │ │ ├── dhtmlxgantt_fullscreen.js.map │ │ │ ├── dhtmlxgantt_marker.js │ │ │ ├── dhtmlxgantt_marker.js.map │ │ │ ├── dhtmlxgantt_multiselect.js │ │ │ ├── dhtmlxgantt_multiselect.js.map │ │ │ ├── dhtmlxgantt_quick_info.js │ │ │ ├── dhtmlxgantt_quick_info.js.map │ │ │ ├── dhtmlxgantt_tooltip.js │ │ │ └── dhtmlxgantt_tooltip.js.map │ │ ├── locale │ │ │ ├── locale.js │ │ │ ├── locale.js.map │ │ │ ├── locale_ar.js │ │ │ ├── locale_ar.js.map │ │ │ ├── locale_be.js │ │ │ ├── locale_be.js.map │ │ │ ├── locale_ca.js │ │ │ ├── locale_ca.js.map │ │ │ ├── locale_cn.js │ │ │ ├── locale_cn.js.map │ │ │ ├── locale_cs.js │ │ │ ├── locale_cs.js.map │ │ │ ├── locale_da.js │ │ │ ├── locale_da.js.map │ │ │ ├── locale_de.js │ │ │ ├── locale_de.js.map │ │ │ ├── locale_el.js │ │ │ ├── locale_el.js.map │ │ │ ├── locale_es.js │ │ │ ├── locale_es.js.map │ │ │ ├── locale_fi.js │ │ │ ├── locale_fi.js.map │ │ │ ├── locale_fr.js │ │ │ ├── locale_fr.js.map │ │ │ ├── locale_he.js │ │ │ ├── locale_he.js.map │ │ │ ├── locale_hu.js │ │ │ ├── locale_hu.js.map │ │ │ ├── locale_id.js │ │ │ ├── locale_id.js.map │ │ │ ├── locale_it.js │ │ │ ├── locale_it.js.map │ │ │ ├── locale_jp.js │ │ │ ├── locale_jp.js.map │ │ │ ├── locale_kr.js │ │ │ ├── locale_kr.js.map │ │ │ ├── locale_nb.js │ │ │ ├── locale_nb.js.map │ │ │ ├── locale_nl.js │ │ │ ├── locale_nl.js.map │ │ │ ├── locale_no.js │ │ │ ├── locale_no.js.map │ │ │ ├── locale_pl.js │ │ │ ├── locale_pl.js.map │ │ │ ├── locale_pt.js │ │ │ ├── locale_pt.js.map │ │ │ ├── locale_ro.js │ │ │ ├── locale_ro.js.map │ │ │ ├── locale_ru.js │ │ │ ├── locale_ru.js.map │ │ │ ├── locale_si.js │ │ │ ├── locale_si.js.map │ │ │ ├── locale_sk.js │ │ │ ├── locale_sk.js.map │ │ │ ├── locale_sv.js │ │ │ ├── locale_sv.js.map │ │ │ ├── locale_tr.js │ │ │ ├── locale_tr.js.map │ │ │ ├── locale_ua.js │ │ │ └── locale_ua.js.map │ │ └── skins │ │ │ ├── dhtmlxgantt_broadway.css │ │ │ ├── dhtmlxgantt_meadow.css │ │ │ ├── dhtmlxgantt_skyblue.css │ │ │ └── dhtmlxgantt_terrace.css │ └── whatsnew.txt └── src │ ├── css │ └── gantt.css │ ├── js │ └── gantt.js │ └── xml │ ├── gantt.xml │ └── gantt_config.xml └── views └── web_gantt.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/.gitignore -------------------------------------------------------------------------------- /Change_your_github_repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/Change_your_github_repo.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | # __init__.py 2 | -------------------------------------------------------------------------------- /__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/__openerp__.py -------------------------------------------------------------------------------- /content/screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/content/screen1.png -------------------------------------------------------------------------------- /i18n/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/i18n/de.po -------------------------------------------------------------------------------- /i18n/en_US.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/i18n/en_US.po -------------------------------------------------------------------------------- /i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/i18n/fr.po -------------------------------------------------------------------------------- /i18n/gantt_improvement.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/i18n/gantt_improvement.pot -------------------------------------------------------------------------------- /i18n/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/i18n/sl.po -------------------------------------------------------------------------------- /static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/description/icon.png -------------------------------------------------------------------------------- /static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/description/index.html -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/base_connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/base_connector.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/chart_connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/chart_connector.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/combo_connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/combo_connector.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/convert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/convert.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/crosslink_connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/crosslink_connector.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/data_connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/data_connector.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/dataprocessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/dataprocessor.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/dataview_connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/dataview_connector.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/db_adodb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/db_adodb.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/db_common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/db_common.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/db_excel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/db_excel.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/db_filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/db_filesystem.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/db_mssql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/db_mssql.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/db_mysqli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/db_mysqli.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/db_oracle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/db_oracle.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/db_pdo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/db_pdo.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/db_phpcake.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/db_phpcake.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/db_phpcake2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/db_phpcake2.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/db_phpci.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/db_phpci.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/db_phpci2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/db_phpci2.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/db_phpyii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/db_phpyii.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/db_phpyii1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/db_phpyii1.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/db_postgre.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/db_postgre.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/db_sasql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/db_sasql.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/db_sqlite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/db_sqlite.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/db_sqlite3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/db_sqlite3.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/db_sqlsrv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/db_sqlsrv.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/filesystem_item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/filesystem_item.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/form_connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/form_connector.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/gantt_connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/gantt_connector.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/grid_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/grid_config.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/grid_connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/grid_connector.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/keygrid_connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/keygrid_connector.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/mixed_connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/mixed_connector.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/options_connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/options_connector.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/scheduler_connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/scheduler_connector.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/strategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/strategy.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/tools.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/tree_connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/tree_connector.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/treedatagroup_connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/treedatagroup_connector.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/treedatamultitable_connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/treedatamultitable_connector.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/treegrid_connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/treegrid_connector.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/treegridgroup_connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/treegridgroup_connector.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/treegridmultitable_connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/treegridmultitable_connector.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/treegroup_connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/treegroup_connector.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/treemultitable_connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/treemultitable_connector.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/update.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/connector/xss_filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/connector/xss_filter.php -------------------------------------------------------------------------------- /static/dhtmlxGantt/dhtmlxgantt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/dhtmlxgantt.css -------------------------------------------------------------------------------- /static/dhtmlxGantt/dhtmlxgantt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/dhtmlxgantt.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/ext/dhtmlxgantt_csp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/ext/dhtmlxgantt_csp.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/ext/dhtmlxgantt_fullscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/ext/dhtmlxgantt_fullscreen.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/ext/dhtmlxgantt_marker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/ext/dhtmlxgantt_marker.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/ext/dhtmlxgantt_multiselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/ext/dhtmlxgantt_multiselect.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/ext/dhtmlxgantt_quick_info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/ext/dhtmlxgantt_quick_info.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/ext/dhtmlxgantt_tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/ext/dhtmlxgantt_tooltip.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/license.txt -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale_ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale_ar.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale_be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale_be.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale_ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale_ca.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale_cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale_cn.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale_cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale_cs.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale_da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale_da.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale_de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale_de.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale_el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale_el.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale_es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale_es.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale_fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale_fi.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale_fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale_fr.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale_he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale_he.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale_hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale_hu.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale_id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale_id.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale_it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale_it.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale_jp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale_jp.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale_kr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale_kr.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale_nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale_nb.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale_nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale_nl.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale_no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale_no.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale_pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale_pl.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale_pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale_pt.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale_ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale_ro.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale_ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale_ru.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale_si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale_si.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale_sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale_sk.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale_sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale_sv.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale_tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale_tr.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/locale/locale_ua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/locale/locale_ua.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/readme.txt -------------------------------------------------------------------------------- /static/dhtmlxGantt/skins/dhtmlxgantt_broadway.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/skins/dhtmlxgantt_broadway.css -------------------------------------------------------------------------------- /static/dhtmlxGantt/skins/dhtmlxgantt_meadow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/skins/dhtmlxgantt_meadow.css -------------------------------------------------------------------------------- /static/dhtmlxGantt/skins/dhtmlxgantt_skyblue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/skins/dhtmlxgantt_skyblue.css -------------------------------------------------------------------------------- /static/dhtmlxGantt/skins/dhtmlxgantt_terrace.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/skins/dhtmlxgantt_terrace.css -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/dhtmlxgantt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/dhtmlxgantt.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/dhtmlxgantt.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/dhtmlxgantt.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/ext/dhtmlxgantt_csp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/ext/dhtmlxgantt_csp.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/ext/dhtmlxgantt_csp.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/ext/dhtmlxgantt_csp.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/ext/dhtmlxgantt_fullscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/ext/dhtmlxgantt_fullscreen.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/ext/dhtmlxgantt_fullscreen.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/ext/dhtmlxgantt_fullscreen.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/ext/dhtmlxgantt_marker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/ext/dhtmlxgantt_marker.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/ext/dhtmlxgantt_marker.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/ext/dhtmlxgantt_marker.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/ext/dhtmlxgantt_multiselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/ext/dhtmlxgantt_multiselect.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/ext/dhtmlxgantt_multiselect.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/ext/dhtmlxgantt_multiselect.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/ext/dhtmlxgantt_quick_info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/ext/dhtmlxgantt_quick_info.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/ext/dhtmlxgantt_quick_info.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/ext/dhtmlxgantt_quick_info.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/ext/dhtmlxgantt_tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/ext/dhtmlxgantt_tooltip.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/ext/dhtmlxgantt_tooltip.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/ext/dhtmlxgantt_tooltip.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_ar.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_ar.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_ar.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_be.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_be.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_be.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_ca.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_ca.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_ca.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_cn.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_cn.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_cn.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_cs.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_cs.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_cs.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_da.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_da.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_da.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_de.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_de.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_de.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_el.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_el.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_el.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_es.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_es.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_es.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_fi.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_fi.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_fi.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_fr.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_fr.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_fr.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_he.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_he.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_he.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_hu.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_hu.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_hu.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_id.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_id.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_id.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_it.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_it.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_it.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_jp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_jp.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_jp.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_jp.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_kr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_kr.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_kr.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_kr.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_nb.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_nb.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_nb.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_nl.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_nl.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_nl.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_no.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_no.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_no.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_pl.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_pl.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_pl.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_pt.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_pt.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_pt.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_ro.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_ro.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_ro.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_ru.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_ru.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_ru.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_si.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_si.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_si.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_sk.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_sk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_sk.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_sv.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_sv.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_sv.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_tr.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_tr.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_tr.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_ua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_ua.js -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/locale/locale_ua.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/locale/locale_ua.js.map -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/skins/dhtmlxgantt_broadway.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/skins/dhtmlxgantt_broadway.css -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/skins/dhtmlxgantt_meadow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/skins/dhtmlxgantt_meadow.css -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/skins/dhtmlxgantt_skyblue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/skins/dhtmlxgantt_skyblue.css -------------------------------------------------------------------------------- /static/dhtmlxGantt/sources/skins/dhtmlxgantt_terrace.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/sources/skins/dhtmlxgantt_terrace.css -------------------------------------------------------------------------------- /static/dhtmlxGantt/whatsnew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/dhtmlxGantt/whatsnew.txt -------------------------------------------------------------------------------- /static/src/css/gantt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/src/css/gantt.css -------------------------------------------------------------------------------- /static/src/js/gantt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/src/js/gantt.js -------------------------------------------------------------------------------- /static/src/xml/gantt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/src/xml/gantt.xml -------------------------------------------------------------------------------- /static/src/xml/gantt_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/static/src/xml/gantt_config.xml -------------------------------------------------------------------------------- /views/web_gantt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodazziS/gantt_improvement/HEAD/views/web_gantt.xml --------------------------------------------------------------------------------