├── 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 |
| {t}Title{/t}: | 4 |5 | |
| {t}Title{/t}: | 4 |5 | |
| {t}Title{/t}: | 4 |5 | |
| {t}Title{/t}: | 4 |5 | |
| {t}Title{/t}: | 4 |5 | |
| {t}Title{/t}: | 4 |5 | |
| {t}Title{/t}: | 4 |5 | |
| {t}Title{/t}: | 4 |5 | |
| {t}Title{/t}: | 4 |5 | |
| {t}Title{/t}: | 4 |5 | |
| {t}Title{/t}: | 4 |5 | |
| {t}Title{/t}: | 4 |5 | |
| {t}Title{/t}: | 4 |5 | |
| {t}Title{/t}: | 4 |5 | |
| {t}Task ID{/t}: | 8 |{t}Display ExtRef instead of mantis_id{/t} |
9 |
| {t}Title{/t}: | 4 |5 | |
| {t}Interval{/t}: | 8 |9 | 13 | | 14 |
| {t}Title{/t}: | 4 |5 | |
| {t}Interval{/t}: | 8 |9 | 13 | | 14 |
{t}Fair play !{/t} |
8 | |
| {t}You are using CodevTT since{/t} {$codevInstall_date} 11 | {t}If you like this software, please consider making a donation.{/t} 12 | |
13 | {include file="tools/paypal.html"} | 14 | 15 |
| {t}Title{/t}: | 4 |5 | |
| {t}Interval{/t}: | 8 |9 | 13 | | 14 |
| {t}Title{/t}: | 4 |5 | |
| {t}Interval{/t}: | 8 |9 | 13 | | 14 |
| WBS Export: | 4 | 5 |6 | 7 | | 8 | 9 |
| {t}Date{/t} | 6 |{t}Backlog{/t} | 7 |
|---|---|
| {$name} | 13 |{$i.duration} | 14 |
| {t}Title{/t}: | 4 |5 | |
| {t}Interval{/t}: | 8 |9 | 14 | | 15 |
| {t}Title{/t}: | 4 |5 | |
| {t}Date range{/t}: | 8 |9 | 14 | | 15 |
| {t}Title{/t}: | 4 |5 | |
| {t}Timetrack filter{/t}: | 8 |{t}Only team members{/t} |
9 |
| {t}Display options{/t}: | 12 |Show tasks info | 13 |
| {t}Title{/t}: | 4 |5 | |
| {t}Size{/t}: | 8 |9 | 15 | | 16 |
| {t}Title{/t}: | 4 |5 | |
| {t}Interval{/t}: | 8 |9 | 15 | | 16 |
| {t}Title{/t}: | 4 |5 | |
| {t}Interval{/t}: | 8 |9 | 15 | | 16 |
| {t}Title{/t}: | 4 |5 | |
| {t}Timetrack filter{/t}: | 8 |{t}Only team members{/t} |
9 |
| {t}Interval{/t}: | 12 |13 | 17 | | 18 |
| {t}User{/t} | 6 |{t}Workforce{/t} | 7 |
|---|---|
| {$i.userName} | 13 |{$i.rangeWorkforce} | 14 |
| 20 | | {$availableWorkforceIndicator_rangeValue} | 21 |
| {t}Title{/t}: | 4 |5 | |
| {t}Timetrack filter{/t}: | 8 |{t}Only team members{/t} |
9 |
| {t}Interval{/t}: | 12 |13 | 17 | | 18 |
| {$i} | 10 | {/foreach} 11 |
|---|
| {$j} | 18 | {/foreach} 19 |
| {t}Title{/t}: | 4 |5 | |
| {t}Date range{/t}: | 8 |9 | 14 | | 15 |
| Show tasks info | 18 |
| {t}Line{/t} | 12 |{t}Log{/t} | 13 |
|---|---|
| {$line} | 19 |{$text} | 20 |
{$error}
27 | {/if} 28 || {t}Title{/t}: | 4 |5 | |
| {t}Timetrack filter{/t}: | 8 |{t}Only team members{/t} |
9 |
| {t}Display options{/t}: | 12 |
13 | {t}Display{/t} {t}Involved users{/t} 14 | {t}Display{/t} {t}Task list{/t} 15 | |
16 |
| MantisBT | 9 |: | 10 |http://localhost/mantis | 11 |
| CodevTT | 14 |: | 15 |http://localhost/codevtt | 16 |
| {t}Title{/t}: | 4 |5 | |
| {t}Task type filter{/t}: | 8 |9 | 14 | | 15 |
| {t}Display options{/t}: | 18 |{t}Display task list{/t} |
19 |
',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 | | {$i} | 7 | {/foreach} 8 |
|---|
| {$j} | 15 | {/foreach} 16 |
| {$i} | 23 | {/foreach} 24 |
| {t}Category{/t} | 7 |{t}Nb Days{/t} | 8 |% | 9 | {if $loadPerProjCategoryIndicator_isDisplayTasks} 10 |{t}Tasks{/t} | 11 | {/if} 12 |
|---|---|---|---|
| {$i.catName} | 18 |{$i.duration} | 19 |{$i.pcent} % | 20 | {if $loadPerProjCategoryIndicator_isDisplayTasks} 21 |{$i.formatedBugsPerCategory} | 22 | {/if} 23 |