├── README.rdoc ├── app ├── controllers │ ├── home_monitoring_controlling_project_controller.rb │ ├── mc_human_resource_mgmt_project_controller.rb │ └── mc_time_mgmt_project_controller.rb └── views │ ├── home_monitoring_controlling_project │ ├── _index.html.erb │ └── index.html.erb │ ├── mc_human_resource_mgmt_project │ ├── _scripts.html.erb │ └── index.html.erb │ ├── mc_menu │ ├── _contentHeader.html.erb │ ├── _mcmenu.html.erb │ └── _progressbar.html.erb │ └── mc_time_mgmt_project │ ├── _scripts.html.erb │ └── index.html.erb ├── assets ├── images │ └── loadingAnimation.gif ├── javascripts │ ├── exporting.js │ ├── highcharts.js │ ├── highstock.js │ ├── jquery.min.js │ ├── rails.js │ └── thickbox.js └── stylesheets │ ├── monitoringcontrolling.css │ └── thickbox.css ├── config ├── locales │ ├── de.yml │ ├── en.yml │ ├── fr.yml │ ├── pl.yml │ ├── pt-BR.yml │ ├── ru.yml │ ├── tr.yml │ └── zh.yml └── routes.rb ├── init.rb ├── lang └── en.yml ├── lib └── mc_tools.rb ├── license.txt ├── logo.png ├── screenshotEn.png ├── screenshotPt.png └── test └── test_helper.rb /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/README.rdoc -------------------------------------------------------------------------------- /app/controllers/home_monitoring_controlling_project_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/app/controllers/home_monitoring_controlling_project_controller.rb -------------------------------------------------------------------------------- /app/controllers/mc_human_resource_mgmt_project_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/app/controllers/mc_human_resource_mgmt_project_controller.rb -------------------------------------------------------------------------------- /app/controllers/mc_time_mgmt_project_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/app/controllers/mc_time_mgmt_project_controller.rb -------------------------------------------------------------------------------- /app/views/home_monitoring_controlling_project/_index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/app/views/home_monitoring_controlling_project/_index.html.erb -------------------------------------------------------------------------------- /app/views/home_monitoring_controlling_project/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/app/views/home_monitoring_controlling_project/index.html.erb -------------------------------------------------------------------------------- /app/views/mc_human_resource_mgmt_project/_scripts.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/app/views/mc_human_resource_mgmt_project/_scripts.html.erb -------------------------------------------------------------------------------- /app/views/mc_human_resource_mgmt_project/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/app/views/mc_human_resource_mgmt_project/index.html.erb -------------------------------------------------------------------------------- /app/views/mc_menu/_contentHeader.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/app/views/mc_menu/_contentHeader.html.erb -------------------------------------------------------------------------------- /app/views/mc_menu/_mcmenu.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/app/views/mc_menu/_mcmenu.html.erb -------------------------------------------------------------------------------- /app/views/mc_menu/_progressbar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/app/views/mc_menu/_progressbar.html.erb -------------------------------------------------------------------------------- /app/views/mc_time_mgmt_project/_scripts.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/app/views/mc_time_mgmt_project/_scripts.html.erb -------------------------------------------------------------------------------- /app/views/mc_time_mgmt_project/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/app/views/mc_time_mgmt_project/index.html.erb -------------------------------------------------------------------------------- /assets/images/loadingAnimation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/assets/images/loadingAnimation.gif -------------------------------------------------------------------------------- /assets/javascripts/exporting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/assets/javascripts/exporting.js -------------------------------------------------------------------------------- /assets/javascripts/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/assets/javascripts/highcharts.js -------------------------------------------------------------------------------- /assets/javascripts/highstock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/assets/javascripts/highstock.js -------------------------------------------------------------------------------- /assets/javascripts/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/assets/javascripts/jquery.min.js -------------------------------------------------------------------------------- /assets/javascripts/rails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/assets/javascripts/rails.js -------------------------------------------------------------------------------- /assets/javascripts/thickbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/assets/javascripts/thickbox.js -------------------------------------------------------------------------------- /assets/stylesheets/monitoringcontrolling.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/assets/stylesheets/monitoringcontrolling.css -------------------------------------------------------------------------------- /assets/stylesheets/thickbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/assets/stylesheets/thickbox.css -------------------------------------------------------------------------------- /config/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/config/locales/de.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/config/locales/fr.yml -------------------------------------------------------------------------------- /config/locales/pl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/config/locales/pl.yml -------------------------------------------------------------------------------- /config/locales/pt-BR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/config/locales/pt-BR.yml -------------------------------------------------------------------------------- /config/locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/config/locales/ru.yml -------------------------------------------------------------------------------- /config/locales/tr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/config/locales/tr.yml -------------------------------------------------------------------------------- /config/locales/zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/config/locales/zh.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/config/routes.rb -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/init.rb -------------------------------------------------------------------------------- /lang/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/lang/en.yml -------------------------------------------------------------------------------- /lib/mc_tools.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/lib/mc_tools.rb -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/license.txt -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/logo.png -------------------------------------------------------------------------------- /screenshotEn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/screenshotEn.png -------------------------------------------------------------------------------- /screenshotPt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/screenshotPt.png -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmonteiro/Redmine-Monitoring-Controlling/HEAD/test/test_helper.rb --------------------------------------------------------------------------------