├── lib ├── jpgraph │ ├── VERSION │ └── src │ │ ├── flags.dat │ │ ├── fonts │ │ ├── FF_FONT0.gdf │ │ ├── FF_FONT1.gdf │ │ ├── FF_FONT2.gdf │ │ ├── DejaVuSans.ttf │ │ ├── FF_FONT0-Bold.gdf │ │ ├── FF_FONT1-Bold.gdf │ │ ├── FF_FONT2-Bold.gdf │ │ ├── DejaVuSans-Bold.ttf │ │ ├── DejaVuSans-Oblique.ttf │ │ └── DejaVuSans-BoldOblique.ttf │ │ ├── flags_thumb35x35.dat │ │ ├── flags_thumb60x60.dat │ │ └── flags_thumb100x100.dat ├── adodb │ ├── vendor │ │ ├── composer │ │ │ ├── installed.json │ │ │ ├── autoload_psr4.php │ │ │ ├── autoload_classmap.php │ │ │ ├── autoload_namespaces.php │ │ │ ├── autoload_files.php │ │ │ └── autoload_static.php │ │ └── autoload.php │ ├── docs │ │ ├── adodb.gif │ │ ├── adodb2.gif │ │ └── README.md │ ├── session │ │ ├── adodb-sessions.oracle.clob.sql │ │ ├── adodb-sessions.oracle.sql │ │ ├── adodb-sessions.mysql.sql │ │ ├── adodb-encrypt-sha1.php │ │ ├── session_schema.xml │ │ ├── adodb-session-clob.php │ │ ├── adodb-session-clob2.php │ │ ├── adodb-cryptsession.php │ │ ├── adodb-cryptsession2.php │ │ └── session_schema2.xml │ ├── adodb-php4.inc.php │ ├── pear │ │ ├── readme.Auth.txt │ │ └── auth_adodb_example.php │ ├── composer.lock │ ├── drivers │ │ ├── adodb-postgres.inc.php │ │ ├── adodb-odbc_mssql2012.inc.php │ │ └── adodb-proxy.inc.php │ ├── composer.json │ └── adodb-iterator.inc.php ├── index.php ├── jquery.bbq │ └── src.zip ├── colorpicker │ ├── src.zip │ └── images │ │ ├── Thumbs.db │ │ ├── blank.gif │ │ ├── select.png │ │ ├── select2.png │ │ ├── slider.png │ │ ├── custom_hex.png │ │ ├── custom_hsb_b.png │ │ ├── custom_hsb_h.png │ │ ├── custom_hsb_s.png │ │ ├── custom_indic.gif │ │ ├── custom_rgb_b.png │ │ ├── custom_rgb_g.png │ │ ├── custom_rgb_r.png │ │ ├── custom_submit.png │ │ ├── colorpicker_hex.png │ │ ├── colorpicker_hsb_b.png │ │ ├── colorpicker_hsb_h.png │ │ ├── colorpicker_hsb_s.png │ │ ├── colorpicker_indic.gif │ │ ├── colorpicker_rgb_b.png │ │ ├── colorpicker_rgb_g.png │ │ ├── colorpicker_rgb_r.png │ │ ├── colorpicker_select.gif │ │ ├── colorpicker_submit.png │ │ ├── custom_background.png │ │ ├── colorpicker_overlay.png │ │ └── colorpicker_background.png ├── inettuts │ ├── source.zip │ └── img │ │ ├── buttons.gif │ │ ├── head-bg.png │ │ ├── inettuts.png │ │ ├── column-bg-left.png │ │ ├── column-bg-right.png │ │ └── widget-content-bg.png ├── jquery.jqplot │ ├── src.zip │ └── plugins │ │ └── src.zip ├── select2 │ ├── select2.png │ ├── select2x2.png │ └── select2-spinner.gif ├── dhtmlxGantt_v4.0.0.zip ├── jquery.bgiframe │ └── src.zip ├── jquery.powertip │ └── src.zip ├── contextmenu │ ├── images │ │ ├── cut.png │ │ ├── door.png │ │ ├── page_white_add.png │ │ ├── page_white_copy.png │ │ ├── page_white_edit.png │ │ ├── page_white_delete.png │ │ └── page_white_paste.png │ └── README.txt ├── jquery.jeditable │ └── src.zip ├── odtphp │ └── tests │ │ ├── tutoriel1.odt │ │ ├── tutoriel2.odt │ │ ├── tutoriel2.php │ │ ├── tutoriel3.odt │ │ ├── tutoriel3.php │ │ ├── tutoriel4.odt │ │ ├── tutoriel5.odt │ │ ├── tutoriel5.php │ │ ├── tutoriel6.odt │ │ ├── tutoriel6.php │ │ ├── tutoriel7.odt │ │ ├── tutoriel7.php │ │ ├── images │ │ ├── php.gif │ │ ├── anaska.gif │ │ ├── anaska.jpg │ │ ├── apache.gif │ │ └── mysql.gif │ │ └── simplecheck.odt ├── dynatree │ └── dist │ │ └── skin │ │ ├── blank.png │ │ ├── icons.gif │ │ ├── vline.gif │ │ ├── loading.gif │ │ ├── icons-rtl.gif │ │ └── vline-rtl.gif ├── dhtmlxScheduler │ ├── imgs │ │ ├── databg.png │ │ ├── icon.png │ │ ├── images.png │ │ ├── buttons.png │ │ ├── calendar.gif │ │ ├── controls.gif │ │ ├── loading.gif │ │ ├── but_repeat.gif │ │ ├── clock_big.gif │ │ ├── clock_small.gif │ │ ├── databg_now.png │ │ ├── export_ical.png │ │ ├── export_pdf.png │ │ ├── resize_dots.png │ │ └── collapse_expand_icon.gif │ ├── imgs_flat │ │ ├── clock.png │ │ ├── databg.png │ │ ├── calendar.gif │ │ ├── controls.png │ │ ├── resizing.png │ │ ├── agenda_bg.gif │ │ ├── arrow_left.png │ │ ├── arrow_right.png │ │ ├── but_repeat.gif │ │ ├── clock_big.gif │ │ ├── clock_small.gif │ │ ├── close_icon.png │ │ ├── databg_now.png │ │ ├── export_ical.png │ │ ├── export_pdf.png │ │ ├── resize_dots.png │ │ └── collapse_expand_icon.gif │ ├── imgs_glossy │ │ ├── icon.png │ │ ├── move.png │ │ ├── databg.png │ │ ├── blue_tab.png │ │ ├── buttons.gif │ │ ├── calendar.gif │ │ ├── clock_big.png │ │ ├── event-bg.png │ │ ├── lightbox.png │ │ ├── loading.gif │ │ ├── white_tab.png │ │ ├── but_repeat.gif │ │ ├── clock_small.png │ │ ├── controlls5.png │ │ ├── databg_now.png │ │ ├── export_ical.png │ │ ├── export_pdf.png │ │ ├── top-days-bg.png │ │ ├── blue_tab_wide.png │ │ ├── left-separator.png │ │ ├── left-time-bg.png │ │ ├── multi-days-bg.png │ │ ├── top-separator.gif │ │ ├── white_tab_wide.png │ │ ├── second-top-days-bg.png │ │ └── collapse_expand_icon.gif │ ├── connector │ │ ├── filesystem_item.php │ │ ├── chart_connector.php │ │ ├── mixed_connector.php │ │ ├── db_sqlite3.php │ │ └── db_sqlite.php │ └── ext │ │ ├── dhtmlxscheduler_multisource.js │ │ ├── dhtmlxscheduler_wp.js │ │ ├── dhtmlxscheduler_html_templates.js │ │ └── dhtmlxscheduler_monthheight.js ├── DataTables │ ├── media │ │ └── images │ │ │ ├── favicon.ico │ │ │ ├── sort_asc.png │ │ │ ├── sort_both.png │ │ │ ├── sort_desc.png │ │ │ ├── Sorting icons.psd │ │ │ ├── back_disabled.png │ │ │ ├── back_enabled.png │ │ │ ├── forward_enabled.png │ │ │ ├── back_enabled_hover.png │ │ │ ├── forward_disabled.png │ │ │ ├── sort_asc_disabled.png │ │ │ ├── sort_desc_disabled.png │ │ │ └── forward_enabled_hover.png │ ├── extensions │ │ └── TableTools │ │ │ ├── images │ │ │ ├── copy.png │ │ │ ├── csv.png │ │ │ ├── pdf.png │ │ │ ├── xls.png │ │ │ ├── print.png │ │ │ ├── csv_hover.png │ │ │ ├── pdf_hover.png │ │ │ ├── xls_hover.png │ │ │ ├── background.png │ │ │ ├── collection.png │ │ │ ├── copy_hover.png │ │ │ ├── print_hover.png │ │ │ ├── psd │ │ │ │ ├── printer.psd │ │ │ │ ├── collection.psd │ │ │ │ ├── file_types.psd │ │ │ │ └── copy document.psd │ │ │ └── collection_hover.png │ │ │ └── swf │ │ │ ├── copy_csv_xls.swf │ │ │ └── copy_csv_xls_pdf.swf │ ├── bower.json │ ├── composer.json │ └── dataTables.jquery.json ├── jquery │ └── css │ │ └── Aristo │ │ └── images │ │ ├── bg_fallback.png │ │ ├── icon_sprite.png │ │ ├── progress_bar.gif │ │ ├── slider_handles.png │ │ ├── ui-icons_222222_256x240.png │ │ └── ui-icons_454545_256x240.png ├── jquery.scrollTo │ └── jquery.scrollTo.js.src.zip ├── dhtmlxGantt │ ├── connector │ │ ├── filesystem_item.php │ │ ├── chart_connector.php │ │ ├── db_sqlite3.php │ │ └── db_sqlite.php │ └── readme.txt └── Smarty │ ├── sysplugins │ ├── smartyexception.php │ ├── smarty_internal_compile_continue.php │ ├── smarty_internal_compile_block_child.php │ ├── smarty_internal_compile_parent.php │ ├── smarty_undefined_variable.php │ ├── smarty_internal_compile_block_parent.php │ ├── smarty_internal_method_getdebugtemplate.php │ └── smarty_internal_method_getdefaultmodifiers.php │ ├── plugins │ ├── modifiercompiler.noprint.php │ ├── variablefilter.htmlspecialchars.php │ ├── modifiercompiler.string_format.php │ ├── modifiercompiler.cat.php │ ├── modifiercompiler.count_paragraphs.php │ ├── modifiercompiler.upper.php │ ├── modifiercompiler.indent.php │ ├── modifiercompiler.strip_tags.php │ ├── modifiercompiler.lower.php │ ├── modifier.spacify.php │ ├── modifiercompiler.count_sentences.php │ ├── modifiercompiler.to_charset.php │ ├── modifiercompiler.from_charset.php │ ├── modifiercompiler.default.php │ └── modifiercompiler.strip.php │ └── bootstrap.php ├── doc ├── index.php ├── phpdoc │ └── html │ │ └── .gitkeep ├── fr │ ├── CodevTT_FR_user_guide.pdf │ ├── CodevTT_Kit_demarrage.odt │ ├── CodevTT_Kit_demarrage.pdf │ ├── CodevTT_FR_Presentation.odp │ ├── CodevTT_FR_Presentation.pdf │ ├── CodevTT_FR_user_guide.docx │ ├── CodevTT_bonnes_pratiques.ods │ ├── reponse_dfuzeau_commandes.odt │ └── Archives │ │ ├── CoDev Timetracking.odp │ │ ├── CodevTT_5a7_20120315.odp │ │ ├── CodevTT_5a7_20120315.pdf │ │ ├── CodevTT_FDJ_20120719.odp │ │ ├── CodevTT_FDJ_20120719.pdf │ │ └── Codev_Timetracking.pdf ├── docker │ ├── mantis_codevtt160_demo.zip │ ├── mantis_codevtt_demo_v1.5.0.sql.zip │ ├── mantis_codevtt_demo_v1.3.0.2.sql.zip │ ├── mantis_codevtt_freshInstall_v1.6.0.zip │ ├── mantis_codevtt_freshInstall_v1.7.0.zip │ ├── mantis_codevtt_freshInstall_v1.8.0.zip │ ├── mantis_codevtt_freshInstall_v1.8.1.zip │ ├── mantis_codevtt_freshInstall_v1.3.0.2.sql.zip │ ├── mantis_codevtt_freshInstall_v1.4.0.sql.zip │ ├── mantis_codevtt_freshInstall_v1.5.0.sql.zip │ ├── phpmyadmin_config │ │ └── config.user.inc.php │ ├── mantis_config │ │ └── custom_constants_inc.php │ └── index.html ├── en │ ├── CodevTT_Quick_start_guide.odt │ └── CodevTT_Quick_start_guide.pdf ├── mantis_config │ ├── SourceIntegrationPlugin │ │ ├── mantis_sourceControlIntegrationPlugin_01.png │ │ ├── mantis_sourceControlIntegrationPlugin_02.png │ │ ├── mantis_sourceControlIntegrationPlugin_04.png │ │ └── mantis_sourceControlIntegrationPlugin_05.png │ └── custom_constants_inc.php ├── codevtt_current_version.ini ├── apache │ ├── codevtt.vhost │ └── prjmngt.conf ├── git_config │ └── .gitconfig └── architecture │ └── TopCased │ └── Models │ └── genericModeling.uml ├── i18n ├── index.php └── locale │ ├── ar │ └── LC_MESSAGES │ │ └── codev.mo │ ├── br │ └── LC_MESSAGES │ │ └── codev.mo │ ├── da │ └── LC_MESSAGES │ │ └── codev.mo │ ├── el │ └── LC_MESSAGES │ │ └── codev.mo │ ├── eo │ └── LC_MESSAGES │ │ └── codev.mo │ ├── fr │ └── LC_MESSAGES │ │ └── codev.mo │ ├── hu │ └── LC_MESSAGES │ │ └── codev.mo │ ├── ko │ └── LC_MESSAGES │ │ └── codev.mo │ ├── lb │ └── LC_MESSAGES │ │ └── codev.mo │ ├── lt │ └── LC_MESSAGES │ │ └── codev.mo │ ├── mg │ └── LC_MESSAGES │ │ └── codev.mo │ ├── oc │ └── LC_MESSAGES │ │ └── codev.mo │ ├── ru │ └── LC_MESSAGES │ │ └── codev.mo │ ├── sd │ └── LC_MESSAGES │ │ └── codev.mo │ ├── sl │ └── LC_MESSAGES │ │ └── codev.mo │ ├── tr │ └── LC_MESSAGES │ │ └── codev.mo │ ├── uk │ └── LC_MESSAGES │ │ └── codev.mo │ ├── diq │ └── LC_MESSAGES │ │ └── codev.mo │ ├── pms │ └── LC_MESSAGES │ │ └── codev.mo │ ├── qqq │ └── LC_MESSAGES │ │ └── codev.mo │ ├── de_DE │ └── LC_MESSAGES │ │ └── codev.mo │ ├── es_ES │ └── LC_MESSAGES │ │ └── codev.mo │ ├── fr_FR │ └── LC_MESSAGES │ │ └── codev.mo │ ├── it_IT │ └── LC_MESSAGES │ │ └── codev.mo │ ├── nl_NL │ └── LC_MESSAGES │ │ ├── codev.mo │ │ └── codevtt.mo │ ├── pt_BR │ └── LC_MESSAGES │ │ └── codev.mo │ ├── sv_SE │ └── LC_MESSAGES │ │ └── codev.mo │ ├── zh_CN │ └── LC_MESSAGES │ │ └── codev.mo │ └── zh_TW │ └── LC_MESSAGES │ └── codev.mo ├── js ├── index.php ├── ajax.js ├── helpdialog.js ├── select.js ├── progress.js └── colorpicker.js ├── classes ├── index.php └── model.php ├── filters └── index.php ├── gantt └── index.php ├── graphs └── index.php ├── images ├── index.php ├── hide.ico ├── b_add.png ├── b_add2.gif ├── b_drop.png ├── b_edit.png ├── b_goto.png ├── b_hide.png ├── b_info.png ├── b_note.png ├── b_save.png ├── b_star.png ├── blank.png ├── flags.png ├── import.ico ├── b_browse.png ├── b_config.png ├── b_disable.png ├── b_drop2.png ├── b_error.png ├── b_ghost.png ├── b_refresh.png ├── b_unhide.png ├── b_warning.png ├── ball_red.png ├── calendar.png ├── copyleft.png ├── download.png ├── favicon.ico ├── help_icon.gif ├── im-filter.png ├── sort_asc.png ├── sort_both.png ├── sort_desc.png ├── spinner.gif ├── time_line.jpg ├── zoom_in.png ├── zoom_out.png ├── Mantis_main.jpg ├── b_note_grey.png ├── ball_green.png ├── ball_yellow.png ├── chrono_high.png ├── chrono_low.png ├── chrono_med.png ├── delete_icon.png ├── loader-bar.gif ├── mantis_ico.gif ├── spinner_div.gif ├── time_is_up.png ├── arrow_down_red.png ├── b_export_csv.png ├── b_export_xls.gif ├── b_markAsRead.png ├── b_note_green.png ├── b_refresh_grey.png ├── filter_button.png ├── giantSpinner.gif ├── timeline_stop.jpg ├── arrow_down_black.png ├── arrow_down_blue.png ├── arrow_down_green.png ├── arrow_down_grey.png ├── codevtt_logo_01.png ├── codevtt_logo_02.png ├── codevtt_logo_02.sumo ├── codevtt_logo_03.png ├── codevtt_logo_03.xcf ├── im-filter-active.png ├── b_markAsRead_grey.png ├── codevtt_logo_fall.png ├── codevtt_logo_fall.xcf ├── codevtt_logo_summer.png ├── codevtt_logo_summer.xcf ├── codevtt_logo_03_mini.png ├── codevtt_logo_covid19.png ├── codevtt_logo_covid19.xcf ├── codevtt_logo_03_template.png ├── logo_codevtt_chandeleur.jpeg ├── codevtt_logo_03_april_1st.jpg ├── codevtt_logo_03_christmas.png ├── codevtt_logo_03_christmas.xcf ├── codevtt_logo_03_halloween.png ├── codevtt_logo_03_halloween.psd ├── codevtt_logo_03_mini_beta.png ├── codevtt_logo_03_stpatrick.jpg ├── codevtt_logo_03_stvalentin.png ├── codevtt_logo_03_happynewyear.png ├── codevtt_logo_03_happynewyear.xcf ├── codevtt_logo_03_template_mini.png └── dropdown-icons_808080_256x240.png ├── import ├── index.php └── import_provisions_template.xls ├── include ├── index.php └── session.inc.php ├── install ├── index.php ├── custom_constants_inc.codevtt.php ├── mantis_perf.sql ├── codevtt_update_v13_v14.sql ├── codevtt_update_v11_v12.sql ├── custom_strings_inc.codevtt.php ├── codevtt_update_v21_v22.sql ├── codevtt_update_v15_v16.sql └── codevtt_update_v19_v20.sql ├── js_min ├── index.php ├── ajax.min.js ├── helpdialog.min.js ├── select.min.js ├── progress.min.js ├── colorpicker.min.js ├── dropdown.min.js ├── js_error_catch.min.js ├── user_info.min.js ├── tooltip.min.js ├── editable.min.js └── datatable.min.js ├── plugins ├── index.php ├── ImportUsers │ ├── import_users_template.xls │ ├── ImportUsers_cfg.html │ └── import_users_template.csv ├── ImportIssueCsv │ ├── import_issue_template.xls │ ├── ImportIssueCsv_cfg.html │ └── import_issue_template.csv ├── LoadPerUserGroups │ ├── loadPerUserGroups_template.xlsx │ ├── loadPerUserGroups_template.csv │ └── LoadPerUserGroups_cfg.html ├── CostsIndicator │ └── CostsIndicator_cfg.html ├── CustomUserData │ └── CustomUserData_cfg.html ├── UserTeamList │ └── UserTeamList_cfg.html ├── ResetDashboard │ └── ResetDashboard_cfg.html ├── AdminTools │ └── AdminTools_cfg.html ├── ManagementCosts │ └── ManagementCosts_cfg.html ├── TasksPivotTable │ ├── TasksPivotTable_cfg.html │ └── TasksPivotTable.css ├── DeadlineAlertIndicator │ └── DeadlineAlertIndicator_cfg.html ├── MoveIssueTimetracks │ └── MoveIssueTimetracks_cfg.html ├── TimePerStatusIndicator │ └── TimePerStatusIndicator_cfg.html ├── IssueConsistencyCheck │ └── IssueConsistencyCheck_cfg.html ├── TimetrackDetailsIndicator │ └── TimetrackDetailsIndicator_cfg.html ├── FillPeriodWithTimetracks │ └── FillPeriodWithTimetracks_cfg.html ├── IssueBacklogVariationIndicator │ └── IssueBacklogVariationIndicator_cfg.html ├── ImportRelationshipTreeToCommand │ └── ImportRelationshipTreeToCommand_cfg.html ├── DriftAlertIndicator │ └── DriftAlertIndicator_cfg.html ├── BacklogPerUserIndicator │ └── BacklogPerUserIndicator_cfg.html ├── BurnDownChart │ ├── BurnDownChart_cfg.html │ └── BurnDownChart_ajax.html ├── AvailableWorkforceIndicator │ ├── AvailableWorkforceIndicator_cfg.html │ ├── AvailableWorkforceIndicator_ajax2.html │ └── AvailableWorkforceIndicator_ajax.html ├── ManagementLoadHistoryIndicator │ └── ManagementLoadHistoryIndicator_cfg.html ├── SubmittedResolvedHistoryIndicator │ └── SubmittedResolvedHistoryIndicator_cfg.html ├── WBSExport │ ├── WBSExport_cfg.html │ └── WBSExport_ajax.html ├── ProgressHistoryIndicator2 │ └── ProgressHistoryIndicator2_cfg.html ├── LoadPerProjectIndicator │ └── LoadPerProjectIndicator_cfg.html ├── LoadPerCustomfieldValues │ └── LoadPerCustomfieldValues_cfg.html ├── BlogPlugin │ └── BlogPlugin_cfg.html ├── ReopenedRateIndicator2 │ └── ReopenedRateIndicator2_cfg.html ├── BudgetDriftHistoryIndicator2 │ └── BudgetDriftHistoryIndicator2_cfg.html ├── EffortEstimReliabilityIndicator2 │ └── EffortEstimReliabilityIndicator2_cfg.html ├── LoadHistoryIndicator │ └── LoadHistoryIndicator_cfg.html ├── TimetrackingAnalysis │ └── TimetrackingAnalysis_cfg.html ├── LoadPerProjCategoryIndicator │ ├── LoadPerProjCategoryIndicator_cfg.html │ └── LoadPerProjCategoryIndicator_ajax.html ├── LoadPerJobIndicator2 │ └── LoadPerJobIndicator2_cfg.html └── IssueSeniorityIndicator │ └── IssueSeniorityIndicator_cfg.html ├── reports └── index.php ├── scheduler └── index.php ├── tests ├── index.php └── odtphp_template.odt ├── tools ├── index.php └── uglifyjs_codevtt.sh ├── management └── index.php ├── mantis_plugin ├── index.php ├── README.txt ├── mantis_1_2 │ ├── CodevTT │ │ ├── pages │ │ │ └── assign_command.php │ │ └── lang │ │ │ ├── strings_english.txt │ │ │ └── strings_french.txt │ └── FilterBugList │ │ └── README.txt ├── mantis_1_3 │ ├── CodevTT │ │ ├── pages │ │ │ └── assign_command.php │ │ └── lang │ │ │ ├── strings_english.txt │ │ │ └── strings_french.txt │ └── FilterBugList │ │ └── README.txt └── mantis_2_0 │ └── CodevTT │ ├── pages │ └── assign_command.php │ └── lang │ ├── strings_english.txt │ └── strings_french.txt ├── odt_templates ├── index.php ├── atos_dinf_01.odt ├── atos_tasks_with_notes_01.odt └── atos_tasks_without_notes_01.odt ├── timetracking └── index.php ├── tpl ├── codev_adminguide.html ├── indicator.html ├── admin_dashboard.html ├── import_dashboard.html ├── plugin.html ├── adodb.html ├── form │ ├── yearSelector.html │ ├── bugSelector.html │ ├── projectSelector.html │ ├── teamSelector.html │ └── teamForm.html ├── ajax │ └── projectDetails.html ├── modal │ └── fairplay.html ├── logs.html └── bvi.html ├── indicator_plugins ├── index.php ├── README.txt └── StatusHistoryIndicator │ └── StatusHistoryIndicator.html ├── .htaccess ├── .buildpath ├── .gitignore └── admin └── index.php /lib/jpgraph/VERSION: -------------------------------------------------------------------------------- 1 | Version: v3.5.0b1 2 | -------------------------------------------------------------------------------- /lib/adodb/vendor/composer/installed.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /doc/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /i18n/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /js/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /lib/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /classes/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /filters/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /gantt/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /graphs/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /images/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /import/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /include/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /install/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /js_min/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /plugins/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /reports/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /scheduler/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /tests/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /tools/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /doc/phpdoc/html/.gitkeep: -------------------------------------------------------------------------------- 1 | Doxygen html files will be generated in here. 2 | -------------------------------------------------------------------------------- /images/hide.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/hide.ico -------------------------------------------------------------------------------- /management/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /mantis_plugin/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /odt_templates/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /timetracking/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /tpl/codev_adminguide.html: -------------------------------------------------------------------------------- 1 |
2 | coming soon... 3 |
4 | -------------------------------------------------------------------------------- /images/b_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/b_add.png -------------------------------------------------------------------------------- /images/b_add2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/b_add2.gif -------------------------------------------------------------------------------- /images/b_drop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/b_drop.png -------------------------------------------------------------------------------- /images/b_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/b_edit.png -------------------------------------------------------------------------------- /images/b_goto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/b_goto.png -------------------------------------------------------------------------------- /images/b_hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/b_hide.png -------------------------------------------------------------------------------- /images/b_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/b_info.png -------------------------------------------------------------------------------- /images/b_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/b_note.png -------------------------------------------------------------------------------- /images/b_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/b_save.png -------------------------------------------------------------------------------- /images/b_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/b_star.png -------------------------------------------------------------------------------- /images/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/blank.png -------------------------------------------------------------------------------- /images/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/flags.png -------------------------------------------------------------------------------- /images/import.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/import.ico -------------------------------------------------------------------------------- /indicator_plugins/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /images/b_browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/b_browse.png -------------------------------------------------------------------------------- /images/b_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/b_config.png -------------------------------------------------------------------------------- /images/b_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/b_disable.png -------------------------------------------------------------------------------- /images/b_drop2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/b_drop2.png -------------------------------------------------------------------------------- /images/b_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/b_error.png -------------------------------------------------------------------------------- /images/b_ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/b_ghost.png -------------------------------------------------------------------------------- /images/b_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/b_refresh.png -------------------------------------------------------------------------------- /images/b_unhide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/b_unhide.png -------------------------------------------------------------------------------- /images/b_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/b_warning.png -------------------------------------------------------------------------------- /images/ball_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/ball_red.png -------------------------------------------------------------------------------- /images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/calendar.png -------------------------------------------------------------------------------- /images/copyleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/copyleft.png -------------------------------------------------------------------------------- /images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/download.png -------------------------------------------------------------------------------- /images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/favicon.ico -------------------------------------------------------------------------------- /images/help_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/help_icon.gif -------------------------------------------------------------------------------- /images/im-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/im-filter.png -------------------------------------------------------------------------------- /images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/sort_asc.png -------------------------------------------------------------------------------- /images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/sort_both.png -------------------------------------------------------------------------------- /images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/sort_desc.png -------------------------------------------------------------------------------- /images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/spinner.gif -------------------------------------------------------------------------------- /images/time_line.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/time_line.jpg -------------------------------------------------------------------------------- /images/zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/zoom_in.png -------------------------------------------------------------------------------- /images/zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/zoom_out.png -------------------------------------------------------------------------------- /images/Mantis_main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/Mantis_main.jpg -------------------------------------------------------------------------------- /images/b_note_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/b_note_grey.png -------------------------------------------------------------------------------- /images/ball_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/ball_green.png -------------------------------------------------------------------------------- /images/ball_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/ball_yellow.png -------------------------------------------------------------------------------- /images/chrono_high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/chrono_high.png -------------------------------------------------------------------------------- /images/chrono_low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/chrono_low.png -------------------------------------------------------------------------------- /images/chrono_med.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/chrono_med.png -------------------------------------------------------------------------------- /images/delete_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/delete_icon.png -------------------------------------------------------------------------------- /images/loader-bar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/loader-bar.gif -------------------------------------------------------------------------------- /images/mantis_ico.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/mantis_ico.gif -------------------------------------------------------------------------------- /images/spinner_div.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/spinner_div.gif -------------------------------------------------------------------------------- /images/time_is_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/time_is_up.png -------------------------------------------------------------------------------- /lib/jquery.bbq/src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/jquery.bbq/src.zip -------------------------------------------------------------------------------- /images/arrow_down_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/arrow_down_red.png -------------------------------------------------------------------------------- /images/b_export_csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/b_export_csv.png -------------------------------------------------------------------------------- /images/b_export_xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/b_export_xls.gif -------------------------------------------------------------------------------- /images/b_markAsRead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/b_markAsRead.png -------------------------------------------------------------------------------- /images/b_note_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/b_note_green.png -------------------------------------------------------------------------------- /images/b_refresh_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/b_refresh_grey.png -------------------------------------------------------------------------------- /images/filter_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/filter_button.png -------------------------------------------------------------------------------- /images/giantSpinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/giantSpinner.gif -------------------------------------------------------------------------------- /images/timeline_stop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/timeline_stop.jpg -------------------------------------------------------------------------------- /lib/adodb/docs/adodb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/adodb/docs/adodb.gif -------------------------------------------------------------------------------- /lib/adodb/docs/adodb2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/adodb/docs/adodb2.gif -------------------------------------------------------------------------------- /lib/colorpicker/src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/colorpicker/src.zip -------------------------------------------------------------------------------- /lib/inettuts/source.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/inettuts/source.zip -------------------------------------------------------------------------------- /lib/jpgraph/src/flags.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/jpgraph/src/flags.dat -------------------------------------------------------------------------------- /lib/jquery.jqplot/src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/jquery.jqplot/src.zip -------------------------------------------------------------------------------- /lib/select2/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/select2/select2.png -------------------------------------------------------------------------------- /lib/select2/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/select2/select2x2.png -------------------------------------------------------------------------------- /tests/odtphp_template.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/tests/odtphp_template.odt -------------------------------------------------------------------------------- /images/arrow_down_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/arrow_down_black.png -------------------------------------------------------------------------------- /images/arrow_down_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/arrow_down_blue.png -------------------------------------------------------------------------------- /images/arrow_down_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/arrow_down_green.png -------------------------------------------------------------------------------- /images/arrow_down_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/arrow_down_grey.png -------------------------------------------------------------------------------- /images/codevtt_logo_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/codevtt_logo_01.png -------------------------------------------------------------------------------- /images/codevtt_logo_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/codevtt_logo_02.png -------------------------------------------------------------------------------- /images/codevtt_logo_02.sumo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/codevtt_logo_02.sumo -------------------------------------------------------------------------------- /images/codevtt_logo_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/codevtt_logo_03.png -------------------------------------------------------------------------------- /images/codevtt_logo_03.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/codevtt_logo_03.xcf -------------------------------------------------------------------------------- /images/im-filter-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/im-filter-active.png -------------------------------------------------------------------------------- /lib/dhtmlxGantt_v4.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxGantt_v4.0.0.zip -------------------------------------------------------------------------------- /lib/jquery.bgiframe/src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/jquery.bgiframe/src.zip -------------------------------------------------------------------------------- /lib/jquery.powertip/src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/jquery.powertip/src.zip -------------------------------------------------------------------------------- /images/b_markAsRead_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/b_markAsRead_grey.png -------------------------------------------------------------------------------- /images/codevtt_logo_fall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/codevtt_logo_fall.png -------------------------------------------------------------------------------- /images/codevtt_logo_fall.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/codevtt_logo_fall.xcf -------------------------------------------------------------------------------- /images/codevtt_logo_summer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/codevtt_logo_summer.png -------------------------------------------------------------------------------- /images/codevtt_logo_summer.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/codevtt_logo_summer.xcf -------------------------------------------------------------------------------- /lib/contextmenu/images/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/contextmenu/images/cut.png -------------------------------------------------------------------------------- /lib/inettuts/img/buttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/inettuts/img/buttons.gif -------------------------------------------------------------------------------- /lib/inettuts/img/head-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/inettuts/img/head-bg.png -------------------------------------------------------------------------------- /lib/inettuts/img/inettuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/inettuts/img/inettuts.png -------------------------------------------------------------------------------- /lib/jquery.jeditable/src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/jquery.jeditable/src.zip -------------------------------------------------------------------------------- /lib/odtphp/tests/tutoriel1.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/odtphp/tests/tutoriel1.odt -------------------------------------------------------------------------------- /lib/odtphp/tests/tutoriel2.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/odtphp/tests/tutoriel2.odt -------------------------------------------------------------------------------- /lib/odtphp/tests/tutoriel2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/odtphp/tests/tutoriel2.php -------------------------------------------------------------------------------- /lib/odtphp/tests/tutoriel3.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/odtphp/tests/tutoriel3.odt -------------------------------------------------------------------------------- /lib/odtphp/tests/tutoriel3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/odtphp/tests/tutoriel3.php -------------------------------------------------------------------------------- /lib/odtphp/tests/tutoriel4.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/odtphp/tests/tutoriel4.odt -------------------------------------------------------------------------------- /lib/odtphp/tests/tutoriel5.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/odtphp/tests/tutoriel5.odt -------------------------------------------------------------------------------- /lib/odtphp/tests/tutoriel5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/odtphp/tests/tutoriel5.php -------------------------------------------------------------------------------- /lib/odtphp/tests/tutoriel6.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/odtphp/tests/tutoriel6.odt -------------------------------------------------------------------------------- /lib/odtphp/tests/tutoriel6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/odtphp/tests/tutoriel6.php -------------------------------------------------------------------------------- /lib/odtphp/tests/tutoriel7.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/odtphp/tests/tutoriel7.odt -------------------------------------------------------------------------------- /lib/odtphp/tests/tutoriel7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/odtphp/tests/tutoriel7.php -------------------------------------------------------------------------------- /odt_templates/atos_dinf_01.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/odt_templates/atos_dinf_01.odt -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | # Block all ini files 2 | 3 | Order allow,deny 4 | Deny from all 5 | 6 | -------------------------------------------------------------------------------- /doc/fr/CodevTT_FR_user_guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/doc/fr/CodevTT_FR_user_guide.pdf -------------------------------------------------------------------------------- /doc/fr/CodevTT_Kit_demarrage.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/doc/fr/CodevTT_Kit_demarrage.odt -------------------------------------------------------------------------------- /doc/fr/CodevTT_Kit_demarrage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/doc/fr/CodevTT_Kit_demarrage.pdf -------------------------------------------------------------------------------- /images/codevtt_logo_03_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/codevtt_logo_03_mini.png -------------------------------------------------------------------------------- /images/codevtt_logo_covid19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/codevtt_logo_covid19.png -------------------------------------------------------------------------------- /images/codevtt_logo_covid19.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/codevtt_logo_covid19.xcf -------------------------------------------------------------------------------- /lib/colorpicker/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/colorpicker/images/Thumbs.db -------------------------------------------------------------------------------- /lib/colorpicker/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/colorpicker/images/blank.gif -------------------------------------------------------------------------------- /lib/contextmenu/images/door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/contextmenu/images/door.png -------------------------------------------------------------------------------- /lib/dynatree/dist/skin/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dynatree/dist/skin/blank.png -------------------------------------------------------------------------------- /lib/dynatree/dist/skin/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dynatree/dist/skin/icons.gif -------------------------------------------------------------------------------- /lib/dynatree/dist/skin/vline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dynatree/dist/skin/vline.gif -------------------------------------------------------------------------------- /lib/odtphp/tests/images/php.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/odtphp/tests/images/php.gif -------------------------------------------------------------------------------- /lib/odtphp/tests/simplecheck.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/odtphp/tests/simplecheck.odt -------------------------------------------------------------------------------- /lib/select2/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/select2/select2-spinner.gif -------------------------------------------------------------------------------- /doc/fr/CodevTT_FR_Presentation.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/doc/fr/CodevTT_FR_Presentation.odp -------------------------------------------------------------------------------- /doc/fr/CodevTT_FR_Presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/doc/fr/CodevTT_FR_Presentation.pdf -------------------------------------------------------------------------------- /doc/fr/CodevTT_FR_user_guide.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/doc/fr/CodevTT_FR_user_guide.docx -------------------------------------------------------------------------------- /doc/fr/CodevTT_bonnes_pratiques.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/doc/fr/CodevTT_bonnes_pratiques.ods -------------------------------------------------------------------------------- /i18n/locale/ar/LC_MESSAGES/codev.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/ar/LC_MESSAGES/codev.mo -------------------------------------------------------------------------------- /i18n/locale/br/LC_MESSAGES/codev.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/br/LC_MESSAGES/codev.mo -------------------------------------------------------------------------------- /i18n/locale/da/LC_MESSAGES/codev.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/da/LC_MESSAGES/codev.mo -------------------------------------------------------------------------------- /i18n/locale/el/LC_MESSAGES/codev.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/el/LC_MESSAGES/codev.mo -------------------------------------------------------------------------------- /i18n/locale/eo/LC_MESSAGES/codev.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/eo/LC_MESSAGES/codev.mo -------------------------------------------------------------------------------- /i18n/locale/fr/LC_MESSAGES/codev.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/fr/LC_MESSAGES/codev.mo -------------------------------------------------------------------------------- /i18n/locale/hu/LC_MESSAGES/codev.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/hu/LC_MESSAGES/codev.mo -------------------------------------------------------------------------------- /i18n/locale/ko/LC_MESSAGES/codev.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/ko/LC_MESSAGES/codev.mo -------------------------------------------------------------------------------- /i18n/locale/lb/LC_MESSAGES/codev.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/lb/LC_MESSAGES/codev.mo -------------------------------------------------------------------------------- /i18n/locale/lt/LC_MESSAGES/codev.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/lt/LC_MESSAGES/codev.mo -------------------------------------------------------------------------------- /i18n/locale/mg/LC_MESSAGES/codev.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/mg/LC_MESSAGES/codev.mo -------------------------------------------------------------------------------- /i18n/locale/oc/LC_MESSAGES/codev.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/oc/LC_MESSAGES/codev.mo -------------------------------------------------------------------------------- /i18n/locale/ru/LC_MESSAGES/codev.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/ru/LC_MESSAGES/codev.mo -------------------------------------------------------------------------------- /i18n/locale/sd/LC_MESSAGES/codev.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/sd/LC_MESSAGES/codev.mo -------------------------------------------------------------------------------- /i18n/locale/sl/LC_MESSAGES/codev.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/sl/LC_MESSAGES/codev.mo -------------------------------------------------------------------------------- /i18n/locale/tr/LC_MESSAGES/codev.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/tr/LC_MESSAGES/codev.mo -------------------------------------------------------------------------------- /i18n/locale/uk/LC_MESSAGES/codev.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/uk/LC_MESSAGES/codev.mo -------------------------------------------------------------------------------- /images/codevtt_logo_03_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/codevtt_logo_03_template.png -------------------------------------------------------------------------------- /images/logo_codevtt_chandeleur.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/logo_codevtt_chandeleur.jpeg -------------------------------------------------------------------------------- /lib/colorpicker/images/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/colorpicker/images/select.png -------------------------------------------------------------------------------- /lib/colorpicker/images/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/colorpicker/images/select2.png -------------------------------------------------------------------------------- /lib/colorpicker/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/colorpicker/images/slider.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs/databg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs/databg.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs/icon.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs/images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs/images.png -------------------------------------------------------------------------------- /lib/dynatree/dist/skin/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dynatree/dist/skin/loading.gif -------------------------------------------------------------------------------- /lib/inettuts/img/column-bg-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/inettuts/img/column-bg-left.png -------------------------------------------------------------------------------- /lib/jpgraph/src/fonts/FF_FONT0.gdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/jpgraph/src/fonts/FF_FONT0.gdf -------------------------------------------------------------------------------- /lib/jpgraph/src/fonts/FF_FONT1.gdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/jpgraph/src/fonts/FF_FONT1.gdf -------------------------------------------------------------------------------- /lib/jpgraph/src/fonts/FF_FONT2.gdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/jpgraph/src/fonts/FF_FONT2.gdf -------------------------------------------------------------------------------- /lib/jquery.jqplot/plugins/src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/jquery.jqplot/plugins/src.zip -------------------------------------------------------------------------------- /lib/odtphp/tests/images/anaska.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/odtphp/tests/images/anaska.gif -------------------------------------------------------------------------------- /lib/odtphp/tests/images/anaska.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/odtphp/tests/images/anaska.jpg -------------------------------------------------------------------------------- /lib/odtphp/tests/images/apache.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/odtphp/tests/images/apache.gif -------------------------------------------------------------------------------- /lib/odtphp/tests/images/mysql.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/odtphp/tests/images/mysql.gif -------------------------------------------------------------------------------- /doc/docker/mantis_codevtt160_demo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/doc/docker/mantis_codevtt160_demo.zip -------------------------------------------------------------------------------- /doc/en/CodevTT_Quick_start_guide.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/doc/en/CodevTT_Quick_start_guide.odt -------------------------------------------------------------------------------- /doc/en/CodevTT_Quick_start_guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/doc/en/CodevTT_Quick_start_guide.pdf -------------------------------------------------------------------------------- /doc/fr/reponse_dfuzeau_commandes.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/doc/fr/reponse_dfuzeau_commandes.odt -------------------------------------------------------------------------------- /i18n/locale/diq/LC_MESSAGES/codev.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/diq/LC_MESSAGES/codev.mo -------------------------------------------------------------------------------- /i18n/locale/pms/LC_MESSAGES/codev.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/pms/LC_MESSAGES/codev.mo -------------------------------------------------------------------------------- /i18n/locale/qqq/LC_MESSAGES/codev.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/qqq/LC_MESSAGES/codev.mo -------------------------------------------------------------------------------- /images/codevtt_logo_03_april_1st.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/codevtt_logo_03_april_1st.jpg -------------------------------------------------------------------------------- /images/codevtt_logo_03_christmas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/codevtt_logo_03_christmas.png -------------------------------------------------------------------------------- /images/codevtt_logo_03_christmas.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/codevtt_logo_03_christmas.xcf -------------------------------------------------------------------------------- /images/codevtt_logo_03_halloween.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/codevtt_logo_03_halloween.png -------------------------------------------------------------------------------- /images/codevtt_logo_03_halloween.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/codevtt_logo_03_halloween.psd -------------------------------------------------------------------------------- /images/codevtt_logo_03_mini_beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/codevtt_logo_03_mini_beta.png -------------------------------------------------------------------------------- /images/codevtt_logo_03_stpatrick.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/codevtt_logo_03_stpatrick.jpg -------------------------------------------------------------------------------- /images/codevtt_logo_03_stvalentin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/codevtt_logo_03_stvalentin.png -------------------------------------------------------------------------------- /import/import_provisions_template.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/import/import_provisions_template.xls -------------------------------------------------------------------------------- /lib/colorpicker/images/custom_hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/colorpicker/images/custom_hex.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs/buttons.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs/calendar.gif -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs/controls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs/controls.gif -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs/loading.gif -------------------------------------------------------------------------------- /lib/dynatree/dist/skin/icons-rtl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dynatree/dist/skin/icons-rtl.gif -------------------------------------------------------------------------------- /lib/dynatree/dist/skin/vline-rtl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dynatree/dist/skin/vline-rtl.gif -------------------------------------------------------------------------------- /lib/inettuts/img/column-bg-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/inettuts/img/column-bg-right.png -------------------------------------------------------------------------------- /lib/jpgraph/src/flags_thumb35x35.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/jpgraph/src/flags_thumb35x35.dat -------------------------------------------------------------------------------- /lib/jpgraph/src/flags_thumb60x60.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/jpgraph/src/flags_thumb60x60.dat -------------------------------------------------------------------------------- /lib/jpgraph/src/fonts/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/jpgraph/src/fonts/DejaVuSans.ttf -------------------------------------------------------------------------------- /doc/fr/Archives/CoDev Timetracking.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/doc/fr/Archives/CoDev Timetracking.odp -------------------------------------------------------------------------------- /doc/fr/Archives/CodevTT_5a7_20120315.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/doc/fr/Archives/CodevTT_5a7_20120315.odp -------------------------------------------------------------------------------- /doc/fr/Archives/CodevTT_5a7_20120315.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/doc/fr/Archives/CodevTT_5a7_20120315.pdf -------------------------------------------------------------------------------- /doc/fr/Archives/CodevTT_FDJ_20120719.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/doc/fr/Archives/CodevTT_FDJ_20120719.odp -------------------------------------------------------------------------------- /doc/fr/Archives/CodevTT_FDJ_20120719.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/doc/fr/Archives/CodevTT_FDJ_20120719.pdf -------------------------------------------------------------------------------- /doc/fr/Archives/Codev_Timetracking.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/doc/fr/Archives/Codev_Timetracking.pdf -------------------------------------------------------------------------------- /i18n/locale/de_DE/LC_MESSAGES/codev.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/de_DE/LC_MESSAGES/codev.mo -------------------------------------------------------------------------------- /i18n/locale/es_ES/LC_MESSAGES/codev.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/es_ES/LC_MESSAGES/codev.mo -------------------------------------------------------------------------------- /i18n/locale/fr_FR/LC_MESSAGES/codev.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/fr_FR/LC_MESSAGES/codev.mo -------------------------------------------------------------------------------- /i18n/locale/it_IT/LC_MESSAGES/codev.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/it_IT/LC_MESSAGES/codev.mo -------------------------------------------------------------------------------- /i18n/locale/nl_NL/LC_MESSAGES/codev.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/nl_NL/LC_MESSAGES/codev.mo -------------------------------------------------------------------------------- /i18n/locale/nl_NL/LC_MESSAGES/codevtt.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/nl_NL/LC_MESSAGES/codevtt.mo -------------------------------------------------------------------------------- /i18n/locale/pt_BR/LC_MESSAGES/codev.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/pt_BR/LC_MESSAGES/codev.mo -------------------------------------------------------------------------------- /i18n/locale/sv_SE/LC_MESSAGES/codev.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/sv_SE/LC_MESSAGES/codev.mo -------------------------------------------------------------------------------- /i18n/locale/zh_CN/LC_MESSAGES/codev.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/zh_CN/LC_MESSAGES/codev.mo -------------------------------------------------------------------------------- /i18n/locale/zh_TW/LC_MESSAGES/codev.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/i18n/locale/zh_TW/LC_MESSAGES/codev.mo -------------------------------------------------------------------------------- /images/codevtt_logo_03_happynewyear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/codevtt_logo_03_happynewyear.png -------------------------------------------------------------------------------- /images/codevtt_logo_03_happynewyear.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/codevtt_logo_03_happynewyear.xcf -------------------------------------------------------------------------------- /images/codevtt_logo_03_template_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/codevtt_logo_03_template_mini.png -------------------------------------------------------------------------------- /images/dropdown-icons_808080_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/images/dropdown-icons_808080_256x240.png -------------------------------------------------------------------------------- /js_min/ajax.min.js: -------------------------------------------------------------------------------- 1 | function updateWidgets(context){applyProgresBar(context);applyTooltip(context);applySelect2(context)} 2 | -------------------------------------------------------------------------------- /lib/DataTables/media/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/media/images/favicon.ico -------------------------------------------------------------------------------- /lib/DataTables/media/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/media/images/sort_asc.png -------------------------------------------------------------------------------- /lib/colorpicker/images/custom_hsb_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/colorpicker/images/custom_hsb_b.png -------------------------------------------------------------------------------- /lib/colorpicker/images/custom_hsb_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/colorpicker/images/custom_hsb_h.png -------------------------------------------------------------------------------- /lib/colorpicker/images/custom_hsb_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/colorpicker/images/custom_hsb_s.png -------------------------------------------------------------------------------- /lib/colorpicker/images/custom_indic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/colorpicker/images/custom_indic.gif -------------------------------------------------------------------------------- /lib/colorpicker/images/custom_rgb_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/colorpicker/images/custom_rgb_b.png -------------------------------------------------------------------------------- /lib/colorpicker/images/custom_rgb_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/colorpicker/images/custom_rgb_g.png -------------------------------------------------------------------------------- /lib/colorpicker/images/custom_rgb_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/colorpicker/images/custom_rgb_r.png -------------------------------------------------------------------------------- /lib/colorpicker/images/custom_submit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/colorpicker/images/custom_submit.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs/but_repeat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs/but_repeat.gif -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs/clock_big.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs/clock_big.gif -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs/clock_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs/clock_small.gif -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs/databg_now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs/databg_now.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs/export_ical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs/export_ical.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs/export_pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs/export_pdf.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs/resize_dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs/resize_dots.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_flat/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_flat/clock.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_flat/databg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_flat/databg.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_glossy/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_glossy/icon.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_glossy/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_glossy/move.png -------------------------------------------------------------------------------- /lib/inettuts/img/widget-content-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/inettuts/img/widget-content-bg.png -------------------------------------------------------------------------------- /lib/jpgraph/src/flags_thumb100x100.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/jpgraph/src/flags_thumb100x100.dat -------------------------------------------------------------------------------- /lib/jpgraph/src/fonts/FF_FONT0-Bold.gdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/jpgraph/src/fonts/FF_FONT0-Bold.gdf -------------------------------------------------------------------------------- /lib/jpgraph/src/fonts/FF_FONT1-Bold.gdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/jpgraph/src/fonts/FF_FONT1-Bold.gdf -------------------------------------------------------------------------------- /lib/jpgraph/src/fonts/FF_FONT2-Bold.gdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/jpgraph/src/fonts/FF_FONT2-Bold.gdf -------------------------------------------------------------------------------- /lib/DataTables/media/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/media/images/sort_both.png -------------------------------------------------------------------------------- /lib/DataTables/media/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/media/images/sort_desc.png -------------------------------------------------------------------------------- /lib/colorpicker/images/colorpicker_hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/colorpicker/images/colorpicker_hex.png -------------------------------------------------------------------------------- /lib/contextmenu/images/page_white_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/contextmenu/images/page_white_add.png -------------------------------------------------------------------------------- /lib/contextmenu/images/page_white_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/contextmenu/images/page_white_copy.png -------------------------------------------------------------------------------- /lib/contextmenu/images/page_white_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/contextmenu/images/page_white_edit.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_flat/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_flat/calendar.gif -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_flat/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_flat/controls.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_flat/resizing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_flat/resizing.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_glossy/databg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_glossy/databg.png -------------------------------------------------------------------------------- /lib/jpgraph/src/fonts/DejaVuSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/jpgraph/src/fonts/DejaVuSans-Bold.ttf -------------------------------------------------------------------------------- /odt_templates/atos_tasks_with_notes_01.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/odt_templates/atos_tasks_with_notes_01.odt -------------------------------------------------------------------------------- /tpl/indicator.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
6 | 7 | {include file="plugin/status_history_indicator.html"} 8 | 9 | -------------------------------------------------------------------------------- /doc/docker/mantis_codevtt_demo_v1.5.0.sql.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/doc/docker/mantis_codevtt_demo_v1.5.0.sql.zip -------------------------------------------------------------------------------- /indicator_plugins/README.txt: -------------------------------------------------------------------------------- 1 | This place contains deprecated (v1.0.x) old-style plugins. 2 | Please see ../plugins for v1.1.x plugins. 3 | -------------------------------------------------------------------------------- /lib/DataTables/media/images/Sorting icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/media/images/Sorting icons.psd -------------------------------------------------------------------------------- /lib/DataTables/media/images/back_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/media/images/back_disabled.png -------------------------------------------------------------------------------- /lib/DataTables/media/images/back_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/media/images/back_enabled.png -------------------------------------------------------------------------------- /lib/colorpicker/images/colorpicker_hsb_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/colorpicker/images/colorpicker_hsb_b.png -------------------------------------------------------------------------------- /lib/colorpicker/images/colorpicker_hsb_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/colorpicker/images/colorpicker_hsb_h.png -------------------------------------------------------------------------------- /lib/colorpicker/images/colorpicker_hsb_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/colorpicker/images/colorpicker_hsb_s.png -------------------------------------------------------------------------------- /lib/colorpicker/images/colorpicker_indic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/colorpicker/images/colorpicker_indic.gif -------------------------------------------------------------------------------- /lib/colorpicker/images/colorpicker_rgb_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/colorpicker/images/colorpicker_rgb_b.png -------------------------------------------------------------------------------- /lib/colorpicker/images/colorpicker_rgb_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/colorpicker/images/colorpicker_rgb_g.png -------------------------------------------------------------------------------- /lib/colorpicker/images/colorpicker_rgb_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/colorpicker/images/colorpicker_rgb_r.png -------------------------------------------------------------------------------- /lib/colorpicker/images/colorpicker_select.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/colorpicker/images/colorpicker_select.gif -------------------------------------------------------------------------------- /lib/colorpicker/images/colorpicker_submit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/colorpicker/images/colorpicker_submit.png -------------------------------------------------------------------------------- /lib/colorpicker/images/custom_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/colorpicker/images/custom_background.png -------------------------------------------------------------------------------- /lib/contextmenu/images/page_white_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/contextmenu/images/page_white_delete.png -------------------------------------------------------------------------------- /lib/contextmenu/images/page_white_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/contextmenu/images/page_white_paste.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_flat/agenda_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_flat/agenda_bg.gif -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_flat/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_flat/arrow_left.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_flat/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_flat/arrow_right.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_flat/but_repeat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_flat/but_repeat.gif -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_flat/clock_big.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_flat/clock_big.gif -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_flat/clock_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_flat/clock_small.gif -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_flat/close_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_flat/close_icon.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_flat/databg_now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_flat/databg_now.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_flat/export_ical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_flat/export_ical.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_flat/export_pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_flat/export_pdf.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_flat/resize_dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_flat/resize_dots.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_glossy/blue_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_glossy/blue_tab.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_glossy/buttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_glossy/buttons.gif -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_glossy/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_glossy/calendar.gif -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_glossy/clock_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_glossy/clock_big.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_glossy/event-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_glossy/event-bg.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_glossy/lightbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_glossy/lightbox.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_glossy/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_glossy/loading.gif -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_glossy/white_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_glossy/white_tab.png -------------------------------------------------------------------------------- /lib/jpgraph/src/fonts/DejaVuSans-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/jpgraph/src/fonts/DejaVuSans-Oblique.ttf -------------------------------------------------------------------------------- /lib/jquery/css/Aristo/images/bg_fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/jquery/css/Aristo/images/bg_fallback.png -------------------------------------------------------------------------------- /lib/jquery/css/Aristo/images/icon_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/jquery/css/Aristo/images/icon_sprite.png -------------------------------------------------------------------------------- /lib/jquery/css/Aristo/images/progress_bar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/jquery/css/Aristo/images/progress_bar.gif -------------------------------------------------------------------------------- /odt_templates/atos_tasks_without_notes_01.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/odt_templates/atos_tasks_without_notes_01.odt -------------------------------------------------------------------------------- /plugins/ImportUsers/import_users_template.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/plugins/ImportUsers/import_users_template.xls -------------------------------------------------------------------------------- /doc/docker/mantis_codevtt_demo_v1.3.0.2.sql.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/doc/docker/mantis_codevtt_demo_v1.3.0.2.sql.zip -------------------------------------------------------------------------------- /lib/DataTables/media/images/forward_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/media/images/forward_enabled.png -------------------------------------------------------------------------------- /lib/colorpicker/images/colorpicker_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/colorpicker/images/colorpicker_overlay.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_glossy/but_repeat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_glossy/but_repeat.gif -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_glossy/clock_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_glossy/clock_small.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_glossy/controlls5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_glossy/controlls5.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_glossy/databg_now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_glossy/databg_now.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_glossy/export_ical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_glossy/export_ical.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_glossy/export_pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_glossy/export_pdf.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_glossy/top-days-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_glossy/top-days-bg.png -------------------------------------------------------------------------------- /lib/jquery.scrollTo/jquery.scrollTo.js.src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/jquery.scrollTo/jquery.scrollTo.js.src.zip -------------------------------------------------------------------------------- /lib/jquery/css/Aristo/images/slider_handles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/jquery/css/Aristo/images/slider_handles.png -------------------------------------------------------------------------------- /doc/docker/mantis_codevtt_freshInstall_v1.6.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/doc/docker/mantis_codevtt_freshInstall_v1.6.0.zip -------------------------------------------------------------------------------- /doc/docker/mantis_codevtt_freshInstall_v1.7.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/doc/docker/mantis_codevtt_freshInstall_v1.7.0.zip -------------------------------------------------------------------------------- /doc/docker/mantis_codevtt_freshInstall_v1.8.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/doc/docker/mantis_codevtt_freshInstall_v1.8.0.zip -------------------------------------------------------------------------------- /doc/docker/mantis_codevtt_freshInstall_v1.8.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/doc/docker/mantis_codevtt_freshInstall_v1.8.1.zip -------------------------------------------------------------------------------- /lib/DataTables/media/images/back_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/media/images/back_enabled_hover.png -------------------------------------------------------------------------------- /lib/DataTables/media/images/forward_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/media/images/forward_disabled.png -------------------------------------------------------------------------------- /lib/DataTables/media/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/media/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /lib/DataTables/media/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/media/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /lib/colorpicker/images/colorpicker_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/colorpicker/images/colorpicker_background.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs/collapse_expand_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs/collapse_expand_icon.gif -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_glossy/blue_tab_wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_glossy/blue_tab_wide.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_glossy/left-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_glossy/left-separator.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_glossy/left-time-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_glossy/left-time-bg.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_glossy/multi-days-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_glossy/multi-days-bg.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_glossy/top-separator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_glossy/top-separator.gif -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_glossy/white_tab_wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_glossy/white_tab_wide.png -------------------------------------------------------------------------------- /lib/jpgraph/src/fonts/DejaVuSans-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/jpgraph/src/fonts/DejaVuSans-BoldOblique.ttf -------------------------------------------------------------------------------- /plugins/ImportIssueCsv/import_issue_template.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/plugins/ImportIssueCsv/import_issue_template.xls -------------------------------------------------------------------------------- /tpl/admin_dashboard.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | {include file="tools/dashboard.html"} 4 |
-------------------------------------------------------------------------------- /lib/DataTables/extensions/TableTools/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/extensions/TableTools/images/copy.png -------------------------------------------------------------------------------- /lib/DataTables/extensions/TableTools/images/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/extensions/TableTools/images/csv.png -------------------------------------------------------------------------------- /lib/DataTables/extensions/TableTools/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/extensions/TableTools/images/pdf.png -------------------------------------------------------------------------------- /lib/DataTables/extensions/TableTools/images/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/extensions/TableTools/images/xls.png -------------------------------------------------------------------------------- /tpl/import_dashboard.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | {include file="tools/dashboard.html"} 4 |
5 | -------------------------------------------------------------------------------- /tpl/plugin.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | {include file="tools/dashboard.html"} 5 | 6 | 7 |
-------------------------------------------------------------------------------- /doc/docker/mantis_codevtt_freshInstall_v1.3.0.2.sql.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/doc/docker/mantis_codevtt_freshInstall_v1.3.0.2.sql.zip -------------------------------------------------------------------------------- /doc/docker/mantis_codevtt_freshInstall_v1.4.0.sql.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/doc/docker/mantis_codevtt_freshInstall_v1.4.0.sql.zip -------------------------------------------------------------------------------- /doc/docker/mantis_codevtt_freshInstall_v1.5.0.sql.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/doc/docker/mantis_codevtt_freshInstall_v1.5.0.sql.zip -------------------------------------------------------------------------------- /lib/DataTables/extensions/TableTools/images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/extensions/TableTools/images/print.png -------------------------------------------------------------------------------- /lib/DataTables/media/images/forward_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/media/images/forward_enabled_hover.png -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_flat/collapse_expand_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_flat/collapse_expand_icon.gif -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_glossy/second-top-days-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_glossy/second-top-days-bg.png -------------------------------------------------------------------------------- /lib/DataTables/extensions/TableTools/images/csv_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/extensions/TableTools/images/csv_hover.png -------------------------------------------------------------------------------- /lib/DataTables/extensions/TableTools/images/pdf_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/extensions/TableTools/images/pdf_hover.png -------------------------------------------------------------------------------- /lib/DataTables/extensions/TableTools/images/xls_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/extensions/TableTools/images/xls_hover.png -------------------------------------------------------------------------------- /lib/DataTables/extensions/TableTools/swf/copy_csv_xls.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/extensions/TableTools/swf/copy_csv_xls.swf -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/imgs_glossy/collapse_expand_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/dhtmlxScheduler/imgs_glossy/collapse_expand_icon.gif -------------------------------------------------------------------------------- /lib/jquery/css/Aristo/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/jquery/css/Aristo/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /lib/jquery/css/Aristo/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/jquery/css/Aristo/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /plugins/LoadPerUserGroups/loadPerUserGroups_template.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/plugins/LoadPerUserGroups/loadPerUserGroups_template.xlsx -------------------------------------------------------------------------------- /lib/DataTables/extensions/TableTools/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/extensions/TableTools/images/background.png -------------------------------------------------------------------------------- /lib/DataTables/extensions/TableTools/images/collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/extensions/TableTools/images/collection.png -------------------------------------------------------------------------------- /lib/DataTables/extensions/TableTools/images/copy_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/extensions/TableTools/images/copy_hover.png -------------------------------------------------------------------------------- /lib/DataTables/extensions/TableTools/images/print_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/extensions/TableTools/images/print_hover.png -------------------------------------------------------------------------------- /lib/DataTables/extensions/TableTools/images/psd/printer.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/extensions/TableTools/images/psd/printer.psd -------------------------------------------------------------------------------- /lib/DataTables/extensions/TableTools/images/psd/collection.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/extensions/TableTools/images/psd/collection.psd -------------------------------------------------------------------------------- /lib/DataTables/extensions/TableTools/images/psd/file_types.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/extensions/TableTools/images/psd/file_types.psd -------------------------------------------------------------------------------- /lib/DataTables/extensions/TableTools/swf/copy_csv_xls_pdf.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/extensions/TableTools/swf/copy_csv_xls_pdf.swf -------------------------------------------------------------------------------- /lib/DataTables/extensions/TableTools/images/collection_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/extensions/TableTools/images/collection_hover.png -------------------------------------------------------------------------------- /lib/DataTables/extensions/TableTools/images/psd/copy document.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbayle/codev/HEAD/lib/DataTables/extensions/TableTools/images/psd/copy document.psd -------------------------------------------------------------------------------- /tpl/adodb.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |
6 | 7 |
8 | 9 |
10 | -------------------------------------------------------------------------------- /mantis_plugin/README.txt: -------------------------------------------------------------------------------- 1 | To install the plugin: 2 | 3 | 1) copy the CodevTT directory in /var/www/html/mantis/plugins 4 | 2) proceed to standard plugin install as mantis administrator 5 | 6 | -------------------------------------------------------------------------------- /.buildpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /doc/docker/phpmyadmin_config/config.user.inc.php: -------------------------------------------------------------------------------- 1 | 2 | 2 | {foreach from=$years key=id item=i} 3 | 4 | {/foreach} 5 | 6 | -------------------------------------------------------------------------------- /lib/adodb/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | {t}Title{/t}: 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /lib/adodb/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | {t}Title{/t}: 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /plugins/ImportUsers/ImportUsers_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /plugins/UserTeamList/UserTeamList_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /lib/adodb/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | {t}Title{/t}: 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /plugins/ResetDashboard/ResetDashboard_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /install/custom_constants_inc.codevtt.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/AdminTools/AdminTools_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /plugins/ImportUsers/import_users_template.csv: -------------------------------------------------------------------------------- 1 | Lastname;Firstname;Email;Date of entry in team 2 | DE LA TOUR;Jean;jean.delatour@mail.fr;2016-05-02 3 | DUPOND;Marc;marc.dupont@mail.fr;2016-06-03 4 | MARTIN;Charles;charles.martin@mail.fr;2016-07-04 5 | -------------------------------------------------------------------------------- /plugins/ManagementCosts/ManagementCosts_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /mantis_plugin/mantis_1_2/CodevTT/pages/assign_command.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | {t}Title{/t}: 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /plugins/DeadlineAlertIndicator/DeadlineAlertIndicator_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /plugins/MoveIssueTimetracks/MoveIssueTimetracks_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /plugins/TimePerStatusIndicator/TimePerStatusIndicator_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /plugins/IssueConsistencyCheck/IssueConsistencyCheck_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /plugins/TimetrackDetailsIndicator/TimetrackDetailsIndicator_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /plugins/FillPeriodWithTimetracks/FillPeriodWithTimetracks_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /tpl/form/bugSelector.html: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /doc/mantis_config/custom_constants_inc.php: -------------------------------------------------------------------------------- 1 | ) will cause mantis to crash ! 9 | ?> -------------------------------------------------------------------------------- /plugins/IssueBacklogVariationIndicator/IssueBacklogVariationIndicator_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /plugins/LoadPerUserGroups/loadPerUserGroups_template.csv: -------------------------------------------------------------------------------- 1 | User;GroupName 2 | user-1;Architect 3 | user-2;Expert 4 | user-3;Developer 5 | user-4;Developer 6 | user-5;Developer 7 | user-6;Developer 8 | user-7;Qualifier 9 | user-8;Qualifier 10 | user-9;Qualifier 11 | user-10;Guru 12 | -------------------------------------------------------------------------------- /js_min/helpdialog.min.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function(){jQuery.each(jQuery(".help_link"),function(){jQuery(this).click(function(e){e.preventDefault();jQuery("#"+jQuery(this).attr("id").replace("_link","")).dialog("open")})});jQuery(".help_dialog").dialog({autoOpen:false,hide:"fade"})}); 2 | -------------------------------------------------------------------------------- /tpl/form/projectSelector.html: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /plugins/ImportRelationshipTreeToCommand/ImportRelationshipTreeToCommand_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /tpl/form/teamSelector.html: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /lib/adodb/vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- 1 | $baseDir . '/adodb.inc.php', 10 | ); 11 | -------------------------------------------------------------------------------- /js_min/select.min.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function(){var $select2=jQuery(".select2");if($select2.length>0){jQuery.ajax({url:"lib/select2/select2.full.min.js",dataType:"script",async:false,cache:true});applySelect2("body")}});function applySelect2(context){var $select2=jQuery(context).find("select.select2");if($select2.length>0){$select2.select2()}} 2 | -------------------------------------------------------------------------------- /lib/dhtmlxGantt/connector/filesystem_item.php: -------------------------------------------------------------------------------- 1 | data['is_folder'] == '1') { 11 | return true; 12 | } else { 13 | return false; 14 | } 15 | } 16 | 17 | } 18 | 19 | ?> -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/connector/filesystem_item.php: -------------------------------------------------------------------------------- 1 | data['is_folder'] == '1') { 11 | return true; 12 | } else { 13 | return false; 14 | } 15 | } 16 | 17 | } 18 | 19 | ?> -------------------------------------------------------------------------------- /plugins/TasksPivotTable/TasksPivotTable.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | .taskPivotTable_sortable { list-style-type: none; margin: 0; padding: 0; margin-right: 10px; background: #eee; padding: 5px; width: 170px;} 4 | .taskPivotTable_sortable li { margin: 5px; padding: 5px; font-size: 1.2em; width: 150px; } 5 | .taskPivotTable_sortable li:hover { cursor: pointer; } 6 | .taskPivotTable_sortable li { cursor: move; } -------------------------------------------------------------------------------- /doc/apache/codevtt.vhost: -------------------------------------------------------------------------------- 1 | 2 | 3 | ServerName codevtt.si.fr.atos.net 4 | 5 | SSLEngine on 6 | SSLCertificateFile /etc/pki/tls/certs/ca.crt 7 | SSLCertificateKeyFile /etc/pki/tls/private/ca.key 8 | 9 | DocumentRoot "/var/www/html/prjmngt/" 10 | 11 | ErrorLog logs/prjmngt.error.log 12 | CustomLog logs/prjmngt.access.log common 13 | 14 | 15 | -------------------------------------------------------------------------------- /lib/adodb/session/adodb-sessions.oracle.clob.sql: -------------------------------------------------------------------------------- 1 | -- $CVSHeader$ 2 | 3 | DROP TABLE adodb_sessions; 4 | 5 | CREATE TABLE sessions ( 6 | sesskey CHAR(32) DEFAULT '' NOT NULL, 7 | expiry INT DEFAULT 0 NOT NULL, 8 | expireref VARCHAR(64) DEFAULT '', 9 | data CLOB DEFAULT '', 10 | PRIMARY KEY (sesskey) 11 | ); 12 | 13 | CREATE INDEX ix_expiry ON sessions (expiry); 14 | 15 | QUIT; 16 | -------------------------------------------------------------------------------- /js_min/progress.min.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function(){applyProgresBar("body")});function applyProgresBar(context){jQuery(context).find(".progress").not(".ui-progressbar").each(function(){var progress=jQuery(this);var title=progress.text();var value=parseInt(title.replace("%",""));progress.text("");progress.progressbar({value:value});progress.find(".ui-progressbar-value").append("
"+title+"
")})} 2 | -------------------------------------------------------------------------------- /doc/docker/mantis_config/custom_constants_inc.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | {t}Title{/t}: 4 | 5 | 6 | 7 | {t}Display resolved issues{/t}
8 | 9 | 10 | -------------------------------------------------------------------------------- /lib/Smarty/sysplugins/smartyexception.php: -------------------------------------------------------------------------------- 1 | Smarty: ' . (self::$escape ? htmlentities($this->message) : $this->message) . ' <-- '; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /lib/dhtmlxGantt/connector/chart_connector.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /install/mantis_perf.sql: -------------------------------------------------------------------------------- 1 | -- 2 | -- Index pour la table `mantis_bug_history_table` 3 | -- 4 | ALTER TABLE `mantis_bug_history_table` 5 | ADD KEY `idx_bug_history_field_name` (`field_name`); 6 | 7 | 8 | -- Query SELECT * FROM `mantis_bug_history_table` WHERE field_name = (SELECT name FROM `mantis_custom_field_table` WHERE id = 7) AND bug_id = '8450' AND date_modified <= '1458514800' ORDER BY date_modified DESC LIMIT 1 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/connector/chart_connector.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/BacklogPerUserIndicator/BacklogPerUserIndicator_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /lib/Smarty/plugins/modifiercompiler.noprint.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | /** 11 | * Load and register Smarty Autoloader 12 | */ 13 | if (!class_exists('Smarty_Autoloader')) { 14 | include dirname(__FILE__) . '/Autoloader.php'; 15 | } 16 | Smarty_Autoloader::register(true); 17 | -------------------------------------------------------------------------------- /lib/adodb/adodb-php4.inc.php: -------------------------------------------------------------------------------- 1 | 0){jQuery.ajax({url:"lib/colorpicker/colorpicker.min.js",dataType:"script",async:false,cache:true});jQuery("#colorpicker").ColorPicker({onSubmit:function(hsb,hex,rgb,el){jQuery(el).val(hex);jQuery(el).css("background-color","#"+hex);jQuery(el).ColorPickerHide()},onBeforeShow:function(){jQuery(this).ColorPickerSetColor(this.value)}}).bind("keyup",function(){jQuery(this).ColorPickerSetColor(this.value)})}}); 2 | -------------------------------------------------------------------------------- /mantis_plugin/mantis_1_2/CodevTT/lang/strings_french.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {t}Category{/t} 5 | {t}Nb Days{/t} 6 | {t}Tasks{/t} 7 | 8 | 9 | 10 | {foreach from=$projectDetails key=id item=i} 11 | 12 | {$i.catName} 13 | {$i.duration} 14 | {$i.formatedBugsPerCategory} 15 | 16 | {/foreach} 17 | 18 | 19 | -------------------------------------------------------------------------------- /js_min/dropdown.min.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function(){var submenus=jQuery("ul.dropdown li");submenus.click(function(ev){if($(this).hasClass("dropdown-li-opened")){$(this).removeClass("dropdown-li-opened")}else{submenus.removeClass("dropdown-li-opened");$(this).addClass("dropdown-li-opened")}});jQuery(document).on("click",function(ev){var $menu=$(ev.target).parents(".dropdown");if($menu.length===0){submenus.removeClass("dropdown-li-opened")}});jQuery(".tabs").on("tabsselect",function(ev){submenus.removeClass("dropdown-li-opened")})}); 2 | -------------------------------------------------------------------------------- /js_min/js_error_catch.min.js: -------------------------------------------------------------------------------- 1 | window.onerror=null;window.onerror=function(desc,file,line){try{desc=desc||"";var url=document.getElementsByTagName("base")[0].href+"include/jsErrorCatch_ajax.php?"+"&no_cache="+encodeURIComponent(Math.random())+"&desc="+encodeURIComponent(desc)+"&line="+line+"&useragent="+encodeURIComponent(navigator.userAgent)+"&os="+encodeURIComponent(navigator.platform)+"&url="+encodeURIComponent(document.location.toString())+"&file="+encodeURIComponent(file);(new Image).src=url;onerror=null;return true}catch(e){onerror=null}}; 2 | -------------------------------------------------------------------------------- /plugins/BurnDownChart/BurnDownChart_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /js_min/user_info.min.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function(){if(userInfoSmartyData.datepickerLocale!="en"){jQuery.datepicker.setDefaults(jQuery.datepicker.regional[userInfoSmartyData.datepickerLocale])}jQuery("#datepickerStart").datepicker("setDate",userInfoSmartyData.datepickerStartDate);jQuery("#datepickerEnd").datepicker("setDate",userInfoSmartyData.datepickerEndDate);jQuery("#displayed_teamid").change(function(){jQuery("#displayTeamForm").submit()});jQuery("#btSetDateRange").click(function(){var form=jQuery("#formSetDateRange");form.submit()})}); 2 | -------------------------------------------------------------------------------- /js/helpdialog.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Help dialogBox 3 | * Convention : 4 | * - 5 | * -
6 | */ 7 | jQuery(document).ready(function(){ 8 | jQuery.each(jQuery(".help_link"),function() { 9 | jQuery(this).click(function(e) { 10 | e.preventDefault(); 11 | jQuery("#"+jQuery(this).attr("id").replace("_link","")).dialog("open"); 12 | }); 13 | }); 14 | jQuery(".help_dialog").dialog({ 15 | autoOpen: false, 16 | hide: "fade" 17 | }); 18 | }); 19 | -------------------------------------------------------------------------------- /lib/adodb/session/adodb-encrypt-sha1.php: -------------------------------------------------------------------------------- 1 | encrypt($data, $key); 17 | 18 | } 19 | 20 | 21 | function read($data, $key) 22 | { 23 | $sha1crypt = new SHA1Crypt(); 24 | return $sha1crypt->decrypt($data, $key); 25 | 26 | } 27 | } 28 | 29 | 30 | 31 | return 1; 32 | -------------------------------------------------------------------------------- /doc/apache/prjmngt.conf: -------------------------------------------------------------------------------- 1 | NameVirtualHost *:443 2 | 3 | 4 | # 5 | # ServerName codevtt.si.fr.atos.net 6 | # ServerAlias localhost 7 | # ServerAlias 127.0.0.1 8 | # DocumentRoot "/var/www/html/prjmngt" 9 | # Alias /phpmyadmin /usr/share/phpMyAdmin 10 | # 11 | # ErrorLog logs/prjmngt.error.log 12 | # CustomLog logs/prjmngt.access.log common 13 | # 14 | 15 | 16 | 17 | AllowOverride all 18 | # Require local 19 | 20 | 21 | Include /etc/httpd/conf.d/vhost/codevtt.vhost 22 | 23 | -------------------------------------------------------------------------------- /lib/adodb/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- 1 | __DIR__ . '/../..' . '/adodb.inc.php', 11 | ); 12 | 13 | public static function getInitializer(ClassLoader $loader) 14 | { 15 | return \Closure::bind(function () use ($loader) { 16 | 17 | }, null, ClassLoader::class); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /plugins/AvailableWorkforceIndicator/AvailableWorkforceIndicator_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tpl/modal/fairplay.html: -------------------------------------------------------------------------------- 1 | 4 |
5 | 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 17 |
-------------------------------------------------------------------------------- /plugins/ManagementLoadHistoryIndicator/ManagementLoadHistoryIndicator_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /install/codevtt_update_v13_v14.sql: -------------------------------------------------------------------------------- 1 | 2 | -- this script is to be executed to update CodevTT DB v13 to v14. 3 | SET SQL_MODE='ANSI'; 4 | 5 | -- -------------------------------------------------------- 6 | 7 | -- 8 | -- Structure de la table "codev_plugin_table" 9 | -- 10 | ALTER TABLE "codev_timetracking_table" ADD "committer_id" int(11) DEFAULT NULL AFTER "duration"; 11 | ALTER TABLE "codev_timetracking_table" ADD "commit_date" int(11) DEFAULT NULL AFTER "committer_id"; 12 | 13 | -- tag version 14 | UPDATE "codev_config_table" SET "value"='14' WHERE "config_id"='database_version'; 15 | -------------------------------------------------------------------------------- /lib/DataTables/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "datatables", 3 | "version": "1.10.5", 4 | "main": [ 5 | "media/js/jquery.dataTables.js", 6 | "media/css/jquery.dataTables.css", 7 | "media/images/*.png" 8 | ], 9 | "dependencies": { 10 | "jquery": ">=1.7.0" 11 | }, 12 | "license": "MIT", 13 | "keywords": [ 14 | "jquery", 15 | "datatables", 16 | "table", 17 | "javascript", 18 | "library" 19 | ], 20 | "ignore": [ 21 | "/.*", 22 | "examples", 23 | "media/unit_testing", 24 | "composer.json", 25 | "dataTables.jquery.json", 26 | "package.json" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /lib/Smarty/plugins/variablefilter.htmlspecialchars.php: -------------------------------------------------------------------------------- 1 | 0){jQuery.ajax({url:"lib/jquery.powertip/jquery.powertip.min.js",dataType:"script",async:false,cache:true});applyTooltip("body")}});function applyTooltip(context){jQuery(context).find(".haveTooltip").each(function(){var container=jQuery(this);var tooltip=container.next(".tooltip");if(tooltip.length>0){tooltip.remove();tooltip.removeClass("ui-helper-hidden");container.data("powertipjq",jQuery(tooltip.html()));container.powerTip({placement:"n",smartPlacement:true,mouseOnToPopup:true})}})} 2 | -------------------------------------------------------------------------------- /plugins/SubmittedResolvedHistoryIndicator/SubmittedResolvedHistoryIndicator_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /plugins/WBSExport/WBSExport_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 9 | 10 | 14 | 15 | -------------------------------------------------------------------------------- /lib/Smarty/sysplugins/smarty_internal_compile_continue.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | {foreach from=$BurnDownChart_tableData key=name item=i} 11 | 12 | 13 | 14 | 15 | {/foreach} 16 | 17 |
{t}Date{/t}{t}Backlog{/t}
{$name}{$i.duration}
18 |
19 | -------------------------------------------------------------------------------- /lib/DataTables/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "datatables/datatables", 3 | "version": "1.10.5", 4 | "description": "DataTables is a plug-in for the jQuery Javascript library. It is a highly flexible tool, based upon the foundations of progressive enhancement, which will add advanced interaction controls to any HTML table.", 5 | "homepage": "http://www.datatables.net/", 6 | "author": "SpryMedia", 7 | "license": [ 8 | "MIT" 9 | ], 10 | "prefer-stable": true, 11 | "support": { 12 | "forum": "https://datatables.net/forums", 13 | "source": "https://github.com/DataTables/DataTablesSrc/" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /plugins/ProgressHistoryIndicator2/ProgressHistoryIndicator2_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .project 2 | .settings 3 | *~ 4 | *.sublime-* 5 | config.ini 6 | log4php.xml 7 | config/config.ini 8 | config/log4php.xml 9 | constants.php 10 | mantis_monkey.user.js 11 | classmap.ser.old 12 | include/mysql_config.inc.php 13 | tools/backup_cronjob.sh 14 | lib/jpgraph/docs 15 | lib/jpgraph/src/Examples 16 | lib/jpgraph/src/barcode/examples 17 | lib/jpgraph/src/barcode/demoapp 18 | templates_c 19 | .idea 20 | 21 | /nbproject/private/ 22 | /nbproject/project.xml 23 | /nbproject/project.properties 24 | /lib/adodb/nbproject/private/ 25 | 26 | /doc/fdj 27 | /doc/phpdoc/html 28 | 29 | plugins/RsiTypeAnoLoadIndicator 30 | -------------------------------------------------------------------------------- /install/custom_strings_inc.codevtt.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Smarty/sysplugins/smarty_internal_compile_block_child.php: -------------------------------------------------------------------------------- 1 | 15 | */ 16 | class Smarty_Internal_Compile_Block_Child extends Smarty_Internal_Compile_Child 17 | { 18 | /** 19 | * Tag name 20 | * 21 | * @var string 22 | */ 23 | public $tag = 'block_child'; 24 | } 25 | -------------------------------------------------------------------------------- /plugins/LoadPerProjectIndicator/LoadPerProjectIndicator_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /lib/adodb/pear/readme.Auth.txt: -------------------------------------------------------------------------------- 1 | From: Rich Tango-Lowy (richtl#arscognita.com) 2 | Date: Sat, May 29, 2004 11:20 am 3 | 4 | OK, I hacked out an ADOdb container for PEAR-Auth. The error handling's 5 | a bit of a mess, but all the methods work. 6 | 7 | Copy ADOdb.php to your pear/Auth/Container/ directory. 8 | 9 | Use the ADOdb container exactly as you would the DB 10 | container, but specify 'ADOdb' instead of 'DB': 11 | 12 | $dsn = "mysql://myuser:mypass@localhost/authdb"; 13 | $a = new Auth("ADOdb", $dsn, "loginFunction"); 14 | 15 | 16 | ------------------- 17 | 18 | John Lim adds: 19 | 20 | See http://pear.php.net/manual/en/package.authentication.php 21 | -------------------------------------------------------------------------------- /lib/adodb/docs/README.md: -------------------------------------------------------------------------------- 1 | # ADOdb Documentation 2 | 3 | ADOdb documentation is available in the following locations: 4 | 5 | - [Online](https://adodb.org/) 6 | - [Download](https://sourceforge.net/projects/adodb/files/Documentation/) for offline use 7 | 8 | ## Legacy documentation 9 | 10 | The old HTML files are available in 11 | [GitHub](https://github.com/ADOdb/ADOdb/tree/8b8133771ecbe9c95e57abbe5dc3757f0226bfcd/docs), 12 | or in the release zip/tarballs for version 5.20 and before on 13 | [Sourceforge](https://sourceforge.net/projects/adodb/files/adodb-php5-only/). 14 | 15 | ## Changelog 16 | 17 | The full historical [Changelog](changelog.md) is available on GitHub. 18 | -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/connector/mixed_connector.php: -------------------------------------------------------------------------------- 1 | connectors[$name] = $conn; 14 | } 15 | 16 | public function render() { 17 | $result = "{"; 18 | $parts = array(); 19 | foreach($this->connectors as $name => $conn) { 20 | $conn->asString(true); 21 | $parts[] = "\"".$name."\":".($conn->render())."\n"; 22 | } 23 | $result .= implode(",\n", $parts)."}"; 24 | echo $result; 25 | } 26 | } 27 | 28 | ?> -------------------------------------------------------------------------------- /plugins/LoadPerCustomfieldValues/LoadPerCustomfieldValues_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /lib/adodb/session/session_schema.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | table for ADOdb session-management 5 | 6 | 7 | session key 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 |
27 | -------------------------------------------------------------------------------- /plugins/BlogPlugin/BlogPlugin_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /plugins/ReopenedRateIndicator2/ReopenedRateIndicator2_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 16 | 17 | -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/ext/dhtmlxscheduler_multisource.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | dhtmlxScheduler v.4.3.1 4 | 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | !function(){function e(e){var t=function(){};return t.prototype=e,t}var t=scheduler._load;scheduler._load=function(a,r){if(a=a||this._load_url,"object"==typeof a)for(var n=e(this._loaded),i=0;i... 5 | */ 6 | jQuery(document).ready(function() { 7 | var $select2 = jQuery('.select2'); 8 | if($select2.length > 0) { 9 | // Lib handle the history 10 | jQuery.ajax({ 11 | url: "lib/select2/select2.full.min.js", 12 | dataType: "script", 13 | async: false, 14 | cache: true 15 | }); 16 | 17 | applySelect2("body"); 18 | } 19 | }); 20 | 21 | function applySelect2(context) { 22 | var $select2 = jQuery(context).find('select.select2'); 23 | 24 | if($select2.length > 0) { 25 | $select2.select2(); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /plugins/BudgetDriftHistoryIndicator2/BudgetDriftHistoryIndicator2_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /lib/adodb/composer.lock: -------------------------------------------------------------------------------- 1 | { 2 | "_readme": [ 3 | "This file locks the dependencies of your project to a known state", 4 | "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", 5 | "This file is @generated automatically" 6 | ], 7 | "content-hash": "c7bf4b477958c6002fc59e6d1d14dfdb", 8 | "packages": [], 9 | "packages-dev": [], 10 | "aliases": [], 11 | "minimum-stability": "stable", 12 | "stability-flags": [], 13 | "prefer-stable": false, 14 | "prefer-lowest": false, 15 | "platform": { 16 | "php": "^5.5.9 || ^7.0" 17 | }, 18 | "platform-dev": [], 19 | "plugin-api-version": "1.1.0" 20 | } 21 | -------------------------------------------------------------------------------- /lib/dhtmlxGantt/readme.txt: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.4.1.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | 10 | 11 | Useful links 12 | ------------- 13 | 14 | - Online documentation 15 | http://docs.dhtmlx.com/gantt/ 16 | 17 | - Downloadable documentation 18 | CHM version 19 | http://dhtmlx.com/x/download/regular/dhtmlxgantt_chm.zip 20 | HTML version 21 | http://dhtmlx.com/x/download/regular/dhtmlxgantt_docs_html.zip 22 | 23 | - Support forum 24 | http://forum.dhtmlx.com/viewforum.php?f=15 -------------------------------------------------------------------------------- /lib/Smarty/plugins/modifiercompiler.string_format.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | {t}Title{/t}: 4 | 5 | 6 | 7 | {t}Interval{/t}: 8 | 9 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/ext/dhtmlxscheduler_wp.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | dhtmlxScheduler v.4.3.1 4 | 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | scheduler.attachEvent("onLightBox",function(){if(this._cover)try{this._cover.style.height=this.expanded?"100%":(document.body.parentNode||document.body).scrollHeight+"px"}catch(e){}}),scheduler.form_blocks.select.set_value=function(e,t,a){("undefined"==typeof t||""===t)&&(t=(e.firstChild.options[0]||{}).value),e.firstChild.value=t||""}; 10 | //# sourceMappingURL=../sources/ext/dhtmlxscheduler_wp.js.map -------------------------------------------------------------------------------- /install/codevtt_update_v21_v22.sql: -------------------------------------------------------------------------------- 1 | 2 | -- this script is to be executed to update CodevTT DB v21 to v22 (v1.6.0 to v1.7.0). 3 | SET SQL_MODE='ANSI'; 4 | 5 | -- enable new plugins 6 | -- INSERT INTO "codev_plugin_table" ("name", "status", "domains", "categories", "version", "description") VALUES 7 | -- ('LoadPerCustomfieldValues', 1, 'Team,Project,User,Command,CommandSet,ServiceContract', 'Activity', '1.0.0', 'Choose a customfield, return the elapsed time for each customField value'), 8 | -- ('ResetDashboard', 1, 'Admin', 'Admin', '1.0.0', 'Remove all plugins from a dashboard. This is usefull if a plugin crashes the page'); 9 | 10 | -- tag version 11 | UPDATE "codev_config_table" SET "value"='22' WHERE "config_id"='database_version'; 12 | 13 | -------------------------------------------------------------------------------- /lib/Smarty/sysplugins/smarty_internal_compile_parent.php: -------------------------------------------------------------------------------- 1 | 15 | */ 16 | class Smarty_Internal_Compile_Parent extends Smarty_Internal_Compile_Child 17 | { 18 | /** 19 | * Tag name 20 | * 21 | * @var string 22 | */ 23 | public $tag = 'parent'; 24 | 25 | /** 26 | * Block type 27 | * 28 | * @var string 29 | */ 30 | public $blockType = 'Parent'; 31 | } 32 | -------------------------------------------------------------------------------- /lib/Smarty/sysplugins/smarty_undefined_variable.php: -------------------------------------------------------------------------------- 1 | 15 | */ 16 | class Smarty_Internal_Compile_Block_Parent extends Smarty_Internal_Compile_Child 17 | { 18 | /** 19 | * Tag name 20 | * 21 | * @var string 22 | */ 23 | public $tag = 'block_parent'; 24 | 25 | /** 26 | * Block type 27 | * 28 | * @var string 29 | */ 30 | public $blockType = 'Parent'; 31 | } 32 | -------------------------------------------------------------------------------- /plugins/LoadHistoryIndicator/LoadHistoryIndicator_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /lib/adodb/session/adodb-session-clob.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | {foreach from=$availableWorkforceIndicator_rangeUserDetails key=id item=i} 11 | 12 | 13 | 14 | 15 | {/foreach} 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 |
{t}User{/t}{t}Workforce{/t}
{$i.userName}{$i.rangeWorkforce}
{$availableWorkforceIndicator_rangeValue}
24 | 25 | -------------------------------------------------------------------------------- /plugins/TimetrackingAnalysis/TimetrackingAnalysis_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /plugins/WBSExport/WBSExport_ajax.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 6 | 7 | 8 | {foreach from=$wbsExportTableHeaders item=i} 9 | 10 | {/foreach} 11 | 12 | 13 | 14 | {foreach from=$wbsExportTableRows key=id item=i} 15 | 16 | {foreach from=$i item=j} 17 | 18 | {/foreach} 19 | 20 | {/foreach} 21 | 22 |
{$i}
{$j}
23 |
24 | -------------------------------------------------------------------------------- /plugins/LoadPerProjCategoryIndicator/LoadPerProjCategoryIndicator_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /doc/architecture/TopCased/Models/genericModeling.uml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /js/progress.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Progress bar 3 | * Convention : 4 | * -
xx%
5 | */ 6 | jQuery(document).ready(function() { 7 | applyProgresBar("body"); 8 | }); 9 | 10 | function applyProgresBar(context) { 11 | // Transform a div in a jquery progressbar if it's not already a progressbar (ajax problem) 12 | jQuery(context).find(".progress").not(".ui-progressbar").each(function() { 13 | var progress = jQuery(this); 14 | var title = progress.text(); 15 | var value = parseInt(title.replace('%','')); 16 | progress.text(""); 17 | progress.progressbar({ 18 | value: value 19 | }); 20 | //progress.find(".ui-progressbar-value").attr('title',title); 21 | progress.find(".ui-progressbar-value").append("
"+title+"
"); 22 | }); 23 | } 24 | -------------------------------------------------------------------------------- /lib/Smarty/plugins/modifiercompiler.count_paragraphs.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | {t}Title{/t}: 4 | 5 | 6 | 7 | {t}Show Tasks{/t}: 8 | {t}Display task column{/t}
9 | 10 | 11 | {t}Date range{/t}: 12 | 13 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /admin/index.php: -------------------------------------------------------------------------------- 1 | . 17 | */ 18 | header('Location:admin.php'); 19 | ?> 20 | -------------------------------------------------------------------------------- /js_min/editable.min.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function(){jQuery.ajax({url:"lib/jquery.jeditable/jquery.jeditable.mini.js",dataType:"script",async:false,cache:true});jQuery.editable.addInputType("datepicker",{element:function(settings,original){var input=jQuery("");if(settings.width!="none"){input.width(settings.width)}if(settings.height!="none"){input.height(settings.height)}input.attr("autocomplete","off");jQuery(this).append(input);return input},plugin:function(settings,original){var form=jQuery(this);settings.onblur="ignore";form.find("input").datepicker({showWeek:true,showOtherMonths:true,showAnim:"slideDown",dateFormat:"yy-mm-dd",changeMonth:false,changeYear:false,selectOtherMonths:false}).bind("click",function(e){e.preventDefault();jQuery(this).datepicker("show")}).bind("dateSelected",function(e,selectedDate,$td){form.submit()})}})}); 2 | -------------------------------------------------------------------------------- /lib/Smarty/plugins/modifiercompiler.upper.php: -------------------------------------------------------------------------------- 1 | connection->query($sql); 15 | if ($res === false) 16 | throw new Exception("SQLLite - sql execution failed\n".$this->connection->lastErrorMsg()); 17 | 18 | return $res; 19 | } 20 | 21 | public function get_next($res){ 22 | return $res->fetchArray(); 23 | } 24 | 25 | public function get_new_id(){ 26 | return $this->connection->lastInsertRowID(); 27 | } 28 | 29 | public function escape($data){ 30 | return $this->connection->escapeString($data); 31 | } 32 | } 33 | ?> -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/connector/db_sqlite3.php: -------------------------------------------------------------------------------- 1 | connection->query($sql); 15 | if ($res === false) 16 | throw new Exception("SQLLite - sql execution failed\n".$this->connection->lastErrorMsg()); 17 | 18 | return $res; 19 | } 20 | 21 | public function get_next($res){ 22 | return $res->fetchArray(); 23 | } 24 | 25 | public function get_new_id(){ 26 | return $this->connection->lastInsertRowID(); 27 | } 28 | 29 | public function escape($data){ 30 | return $this->connection->escapeString($data); 31 | } 32 | } 33 | ?> -------------------------------------------------------------------------------- /tpl/logs.html: -------------------------------------------------------------------------------- 1 |
2 | {if isset($logs)} 3 | 4 |
5 | {t}Logfile:{/t} {$logFile} 6 |
7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | {foreach $logs as $line => $text} 17 | 18 | 19 | 20 | 21 | {/foreach} 22 | 23 |
{t}Line{/t}{t}Log{/t}
{$line}{$text}
24 |
25 | {else} 26 |

{$error}

27 | {/if} 28 |
29 | -------------------------------------------------------------------------------- /js/colorpicker.js: -------------------------------------------------------------------------------- 1 | // Colorpicker 2 | jQuery(document).ready(function() { 3 | var colorPicker = jQuery('.colorpicker'); 4 | if(colorPicker.length > 0) { 5 | jQuery.ajax({ 6 | url: "lib/colorpicker/colorpicker.min.js", 7 | dataType: "script", 8 | async: false, 9 | cache: true 10 | }); 11 | 12 | jQuery('#colorpicker').ColorPicker({ 13 | onSubmit: function(hsb, hex, rgb, el) { 14 | jQuery(el).val(hex); 15 | jQuery(el).css("background-color","#"+hex); 16 | jQuery(el).ColorPickerHide(); 17 | }, 18 | onBeforeShow: function () { 19 | jQuery(this).ColorPickerSetColor(this.value); 20 | } 21 | }).bind('keyup', function(){ 22 | jQuery(this).ColorPickerSetColor(this.value); 23 | }); 24 | } 25 | }); 26 | -------------------------------------------------------------------------------- /lib/adodb/drivers/adodb-odbc_mssql2012.inc.php: -------------------------------------------------------------------------------- 1 | 5 | jQuery(document).ready(function(){ 6 | var chart = jQuery('#chart1b'); 7 | 8 | var chartoptions = jQuery('#chart1b').data('plotoptions'); 9 | chartoptions.axes.xaxis.ticks = {$status_history_xaxis}; 10 | chartoptions.legend.location = 'nw'; 11 | chartoptions.legend.placement = 'inside'; 12 | chartoptions.seriesColors = {$status_history_data1Colors}; 13 | chartoptions.legend.labels = {$status_history_data1Labels}; 14 | 15 | chart.jqplot({$status_history_data1}, chartoptions); 16 | }); 17 | 18 | 19 |
20 | {else} 21 | {t}No data.{/t} 22 | {/if} 23 | -------------------------------------------------------------------------------- /plugins/LoadPerUserGroups/LoadPerUserGroups_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /lib/adodb/session/adodb-cryptsession.php: -------------------------------------------------------------------------------- 1 | ]*?>!', ' ', {$params[0]})"; 25 | } else { 26 | return 'strip_tags(' . $params[ 0 ] . ')'; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /classes/model.php: -------------------------------------------------------------------------------- 1 | . 17 | */ 18 | 19 | abstract class Model { 20 | 21 | public abstract function getId(); 22 | 23 | } 24 | -------------------------------------------------------------------------------- /lib/Smarty/plugins/modifiercompiler.lower.php: -------------------------------------------------------------------------------- 1 | 16 | * @author Uwe Tews 17 | * 18 | * @param array $params parameters 19 | * 20 | * @return string with compiled code 21 | */ 22 | function smarty_modifiercompiler_lower($params) 23 | { 24 | if (Smarty::$_MBSTRING) { 25 | return 'mb_strtolower(' . $params[ 0 ] . ', \'' . addslashes(Smarty::$_CHARSET) . '\')'; 26 | } 27 | // no MBString fallback 28 | return 'strtolower(' . $params[ 0 ] . ')'; 29 | } 30 | -------------------------------------------------------------------------------- /lib/adodb/pear/auth_adodb_example.php: -------------------------------------------------------------------------------- 1 | 7 |
8 | 9 | 10 | 11 |
12 | $dsn, 'table' => 'auth', 'cryptType' => 'none', 18 | 'usernamecol' => 'username', 'passwordcol' => 'password'); 19 | $a = new Auth("ADOdb", $params, "loginFunction"); 20 | $a->start(); 21 | 22 | if ($a->getAuth()) { 23 | echo "Success"; 24 | // * The output of your site goes here. 25 | } 26 | -------------------------------------------------------------------------------- /doc/docker/index.html: -------------------------------------------------------------------------------- 1 |
2 |

MantisBT / CodevTT

3 | docker container 4 |
5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 |
MantisBT  :  http://localhost/mantis
CodevTT  :  http://localhost/codevtt
18 |
19 |
20 | More information on  https://github.com/lbayle/codev 21 |
22 |
23 |
24 | Docker Hub 25 |
26 | -------------------------------------------------------------------------------- /lib/Smarty/plugins/modifier.spacify.php: -------------------------------------------------------------------------------- 1 | 16 | * 17 | * @param string $string input string 18 | * @param string $spacify_char string to insert between characters. 19 | * 20 | * @return string 21 | */ 22 | function smarty_modifier_spacify($string, $spacify_char = ' ') 23 | { 24 | // well… what about charsets besides latin and UTF-8? 25 | return implode($spacify_char, preg_split('//' . Smarty::$_UTF8_MODIFIER, $string, -1, PREG_SPLIT_NO_EMPTY)); 26 | } 27 | -------------------------------------------------------------------------------- /lib/Smarty/plugins/modifiercompiler.count_sentences.php: -------------------------------------------------------------------------------- 1 | $min_file" 30 | #echo "uglify $file -> ${DIR_MIN_JS_FILES}/$min_file" 31 | 32 | $BIN_UGLIFYJS $file > ${DIR_MIN_JS_FILES}/$min_file 33 | done 34 | 35 | -------------------------------------------------------------------------------- /lib/dhtmlxGantt/connector/db_sqlite.php: -------------------------------------------------------------------------------- 1 | connection,$sql); 15 | if ($res === false) 16 | throw new Exception("SQLLite - sql execution failed\n".sqlite_error_string(sqlite_last_error($this->connection))); 17 | 18 | return $res; 19 | } 20 | 21 | public function get_next($res){ 22 | $data = sqlite_fetch_array($res, SQLITE_ASSOC); 23 | return $data; 24 | } 25 | 26 | public function get_new_id(){ 27 | return sqlite_last_insert_rowid($this->connection); 28 | } 29 | 30 | public function escape($data){ 31 | return sqlite_escape_string($data); 32 | } 33 | } 34 | ?> -------------------------------------------------------------------------------- /plugins/IssueSeniorityIndicator/IssueSeniorityIndicator_cfg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /include/session.inc.php: -------------------------------------------------------------------------------- 1 | Execute("select * from adoxyz"); 17 | foreach($rs as $k => $v) { 18 | echo $k; print_r($v); echo "
"; 19 | } 20 | 21 | 22 | Iterator code based on http://cvs.php.net/cvs.php/php-src/ext/spl/examples/cachingiterator.inc?login=2 23 | 24 | 25 | Moved to adodb.inc.php to improve performance. 26 | */ 27 | -------------------------------------------------------------------------------- /lib/adodb/session/session_schema2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | table for ADOdb session-management 5 | 6 | 7 | session key 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 |
38 |
39 | -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/connector/db_sqlite.php: -------------------------------------------------------------------------------- 1 | connection,$sql); 15 | if ($res === false) 16 | throw new Exception("SQLLite - sql execution failed\n".sqlite_error_string(sqlite_last_error($this->connection))); 17 | 18 | return $res; 19 | } 20 | 21 | public function get_next($res){ 22 | $data = sqlite_fetch_array($res, SQLITE_ASSOC); 23 | return $data; 24 | } 25 | 26 | public function get_new_id(){ 27 | return sqlite_last_insert_rowid($this->connection); 28 | } 29 | 30 | public function escape($data){ 31 | return sqlite_escape_string($data); 32 | } 33 | } 34 | ?> -------------------------------------------------------------------------------- /install/codevtt_update_v15_v16.sql: -------------------------------------------------------------------------------- 1 | 2 | -- this script is to be executed to update CodevTT DB v15 to v16. 3 | -- CodevTT v1.1.0 -> v1.2.0 4 | SET SQL_MODE='ANSI'; 5 | 6 | -- -------------------------------------------------------- 7 | 8 | -- 9 | -- Table structure for table "codev_timetrack_note_table" 10 | -- 11 | 12 | CREATE TABLE IF NOT EXISTS "codev_timetrack_note_table" ( 13 | "timetrackid" int(11) NOT NULL, 14 | "noteid" int(11) NOT NULL, 15 | PRIMARY KEY ("timetrackid", "noteid") 16 | ) ENGINE=MyISAM DEFAULT CHARSET=utf8; 17 | 18 | 19 | -- activate all new plugins 20 | UPDATE "codev_plugin_table" SET "status"='1' WHERE "status"='0'; 21 | 22 | -- tag version 23 | UPDATE "codev_config_table" SET "value"='16' WHERE "config_id"='database_version'; 24 | 25 | -- prepare for blog plugin 26 | UPDATE "codev_config_table" SET "value"='1:General,2:Timetracking,3:Admin' WHERE "config_id"='blogCategories'; 27 | 28 | -------------------------------------------------------------------------------- /lib/Smarty/plugins/modifiercompiler.to_charset.php: -------------------------------------------------------------------------------- 1 | 2 | {if $teams} 3 |
4 | 11 | 12 |
13 |
14 | 15 | 21 | 22 |
23 |
24 |
25 | {/if} 26 | 27 | 28 | -------------------------------------------------------------------------------- /install/codevtt_update_v19_v20.sql: -------------------------------------------------------------------------------- 1 | 2 | -- this script is to be executed to update CodevTT DB v19 to v20. 3 | SET SQL_MODE='ANSI'; 4 | 5 | -- Declare new customField, for SalesPricePerPeriod plugin 6 | INSERT INTO "codev_config_table" 7 | ("config_id", "value", "type", "user_id", "project_id", "team_id", "servicecontract_id", "commandset_id", "command_id", "access_reqd", "description") VALUES 8 | ('customField_dailyPrice',(SELECT id FROM "mantis_custom_field_table" WHERE "name" = 'CodevTT_DailyPrice'),1,0,0,0,0,0,0,0,0); 9 | 10 | -- Activate new plugins 11 | -- UPDATE "codev_plugin_table" SET "status"='1' WHERE "name"='AdminTools'; 12 | -- UPDATE "codev_plugin_table" SET "status"='1' WHERE "name"='OngoingTasks'; 13 | -- UPDATE "codev_plugin_table" SET "status"='1' WHERE "name"='SellingPriceForPeriod'; 14 | 15 | -- tag version 16 | UPDATE "codev_config_table" SET "value"='20' WHERE "config_id"='database_version'; 17 | 18 | -------------------------------------------------------------------------------- /lib/Smarty/sysplugins/smarty_internal_method_getdebugtemplate.php: -------------------------------------------------------------------------------- 1 | _getSmartyObj(); 33 | return $smarty->debug_tpl; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /lib/Smarty/plugins/modifiercompiler.from_charset.php: -------------------------------------------------------------------------------- 1 | t'});jQuery(".datatable_csv, .datatable_csv_editable").dataTable({retrieve:true,sScrollY:"700px",bPaginate:false,bScrollCollapse:true,bFilter:true,bSort:true,bInfo:false,bAutoWidth:false,sDom:'<"H"Tfr>t',oTableTools:{aButtons:[{sExtends:"text",sButtonText:'',sFieldSeperator:";",sFieldBoundary:'"',mColumns:"visible",fnClick:function(button,conf){var content=this.fnGetTableData(conf);saveTextAs(content,"datatable.csv")}}]}})}); 2 | -------------------------------------------------------------------------------- /mantis_plugin/mantis_1_2/FilterBugList/README.txt: -------------------------------------------------------------------------------- 1 | FilterBugList 2 | ================ 3 | 4 | Plugin for Mantis allowing to filter by a set of bug IDs in the 'View all' page 5 | By Alain D'EURVEILHER (alain.deurveilher@gmail.com) 6 | 7 | +------------------------------------------------------------------------------+ 8 | Version 1.0.0: 9 | 10 | Creation of the plugin 11 | The filter can accept any kind of bug list as a string, using any non-numeric 12 | character as a separator. 13 | Such as for instance: 5079, #5073-5108 5107 49396{5006}} 14 | which will result in a filtering of the following bug IDs: 5079,5073,5108,5107,49396,5006 15 | 16 | The filter is also accessible via the FilterBugList_list query in the url, 17 | for instance: 18 | http://my.server/my-mantis/view_all_set.php?type=1&temporary=y&FilterBugList_list=5079,5073,5108,5107,49396,5006 19 | +------------------------------------------------------------------------------+ -------------------------------------------------------------------------------- /mantis_plugin/mantis_1_3/FilterBugList/README.txt: -------------------------------------------------------------------------------- 1 | FilterBugList 2 | ================ 3 | 4 | Plugin for Mantis allowing to filter by a set of bug IDs in the 'View all' page 5 | By Alain D'EURVEILHER (alain.deurveilher@gmail.com) 6 | 7 | +------------------------------------------------------------------------------+ 8 | Version 1.0.0: 9 | 10 | Creation of the plugin 11 | The filter can accept any kind of bug list as a string, using any non-numeric 12 | character as a separator. 13 | Such as for instance: 5079, #5073-5108 5107 49396{5006}} 14 | which will result in a filtering of the following bug IDs: 5079,5073,5108,5107,49396,5006 15 | 16 | The filter is also accessible via the FilterBugList_list query in the url, 17 | for instance: 18 | http://my.server/my-mantis/view_all_set.php?type=1&temporary=y&FilterBugList_list=5079,5073,5108,5107,49396,5006 19 | +------------------------------------------------------------------------------+ -------------------------------------------------------------------------------- /tpl/bvi.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |
6 |

{t}Average Backlog Variation{/t}

7 | 8 | {if isset($backlogVariation_graphData)} 9 | {include file="tools/graph.html"} 10 | 11 | 22 |
23 | 24 | {else} 25 | {t}No data.{/t} 26 | {/if} 27 | 28 |
29 | 30 | 31 | 32 |
33 | -------------------------------------------------------------------------------- /plugins/AvailableWorkforceIndicator/AvailableWorkforceIndicator_ajax.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | {foreach from=$availableWorkforceIndicator_tableHeader item=i} 6 | 7 | {/foreach} 8 | 9 | 10 | 11 | {foreach from=$availableWorkforceIndicator_tableData key=id item=i} 12 | 13 | {foreach from=$i item=j} 14 | 15 | {/foreach} 16 | 17 | {/foreach} 18 | 19 | 20 | 21 | {foreach from=$availableWorkforceIndicator_tableFooter item=i} 22 | 23 | {/foreach} 24 | 25 | 26 |
{$i}
{$j}
{$i}
27 |
28 | -------------------------------------------------------------------------------- /lib/Smarty/plugins/modifiercompiler.default.php: -------------------------------------------------------------------------------- 1 | _getSmartyObj(); 33 | return $smarty->default_modifiers; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /lib/dhtmlxScheduler/ext/dhtmlxscheduler_monthheight.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | dhtmlxScheduler v.4.3.1 4 | 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | scheduler.attachEvent("onTemplatesReady",function(){scheduler.xy.scroll_width=0;var e=scheduler.render_view_data;scheduler.render_view_data=function(){var t=this._els.dhx_cal_data[0];t.firstChild._h_fix=!0,e.apply(scheduler,arguments);var a=parseInt(t.style.height);t.style.height="1px",t.style.height=t.scrollHeight+"px",this._obj.style.height=this._obj.clientHeight+t.scrollHeight-a+"px"};var t=scheduler._reset_month_scale;scheduler._reset_month_scale=function(e,a,r){var n={clientHeight:100};t.apply(scheduler,[n,a,r]), 10 | e.innerHTML=n.innerHTML}}); 11 | //# sourceMappingURL=../sources/ext/dhtmlxscheduler_monthheight.js.map -------------------------------------------------------------------------------- /lib/Smarty/plugins/modifiercompiler.strip.php: -------------------------------------------------------------------------------- 1 | 2 | {if $loadPerProjCategoryIndicator_tableData} 3 | 4 | 5 | 6 | 7 | 8 | 9 | {if $loadPerProjCategoryIndicator_isDisplayTasks} 10 | 11 | {/if} 12 | 13 | 14 | 15 | {foreach from=$loadPerProjCategoryIndicator_tableData key=id item=i} 16 | 17 | 18 | 19 | 20 | {if $loadPerProjCategoryIndicator_isDisplayTasks} 21 | 22 | {/if} 23 | 24 | {/foreach} 25 | 26 |
{t}Category{/t}{t}Nb Days{/t}%{t}Tasks{/t}
{$i.catName}{$i.duration}{$i.pcent} %{$i.formatedBugsPerCategory}
27 | {else} 28 | {t}No data.{/t} 29 | {/if} 30 | 31 | 32 | -------------------------------------------------------------------------------- /lib/DataTables/dataTables.jquery.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "DataTables", 3 | "version": "1.10.5", 4 | "description": "DataTables enhances HTML tables with the ability to sort, filter and page the data in the table very easily. It provides a comprehensive API and set of configuration options, allowing you to consume data from virtually any data source.", 5 | "homepage": "http://datatables.net/", 6 | "docs": "http://datatables.net/", 7 | "demo": "http://datatables.net/examples", 8 | "download": "http://datatables.net/download", 9 | "author": { 10 | "name": "Allan Jardine", 11 | "url": "http://sprymedia.co.uk" 12 | }, 13 | "licenses": [ 14 | { 15 | "type": "MIT", 16 | "url": "http://datatables.net/license_bsd" 17 | } 18 | ], 19 | "dependencies": { 20 | "jquery": ">=1.7" 21 | }, 22 | "keywords": [ 23 | "DataTables", 24 | "DataTable", 25 | "table", 26 | "grid", 27 | "filter", 28 | "sort", 29 | "page", 30 | "internationalisable" 31 | ] 32 | } 33 | --------------------------------------------------------------------------------