diff --git a/.gitignore b/.gitignore old mode 100644 new mode 100755 diff --git a/.travis.yml b/.travis.yml old mode 100644 new mode 100755 diff --git a/404.php b/404.php old mode 100644 new mode 100755 diff --git a/README.txt b/README.txt old mode 100644 new mode 100755 diff --git a/apple-touch-icon.png b/apple-touch-icon.png old mode 100644 new mode 100755 diff --git a/certificates/index.php b/certificates/index.php old mode 100644 new mode 100755 diff --git a/composer.json b/composer.json old mode 100644 new mode 100755 diff --git a/custompages/README b/custompages/README old mode 100644 new mode 100755 diff --git a/custompages/first_login.php b/custompages/first_login.php old mode 100644 new mode 100755 diff --git a/custompages/images/footer.png b/custompages/images/footer.png old mode 100644 new mode 100755 diff --git a/custompages/images/header.png b/custompages/images/header.png old mode 100644 new mode 100755 diff --git a/custompages/images/login-form-submit-bg.jpg b/custompages/images/login-form-submit-bg.jpg old mode 100644 new mode 100755 diff --git a/custompages/images/page-background.png b/custompages/images/page-background.png old mode 100644 new mode 100755 diff --git a/custompages/index-logged.php b/custompages/index-logged.php old mode 100644 new mode 100755 diff --git a/custompages/index-unlogged.php b/custompages/index-unlogged.php old mode 100644 new mode 100755 diff --git a/custompages/language.inc.php b/custompages/language.inc.php old mode 100644 new mode 100755 diff --git a/custompages/language.php b/custompages/language.php old mode 100644 new mode 100755 diff --git a/custompages/loggedout.php b/custompages/loggedout.php old mode 100644 new mode 100755 diff --git a/custompages/lostpassword.php b/custompages/lostpassword.php old mode 100644 new mode 100755 diff --git a/custompages/registration-feedback.php b/custompages/registration-feedback.php old mode 100644 new mode 100755 diff --git a/custompages/registration.php b/custompages/registration.php old mode 100644 new mode 100755 diff --git a/custompages/style-ie6.css b/custompages/style-ie6.css old mode 100644 new mode 100755 diff --git a/custompages/style.css b/custompages/style.css old mode 100644 new mode 100755 diff --git a/custompages/url-images/README b/custompages/url-images/README old mode 100644 new mode 100755 diff --git a/documentation/changelog.html b/documentation/changelog.html old mode 100644 new mode 100755 diff --git a/documentation/credits.html b/documentation/credits.html old mode 100644 new mode 100755 diff --git a/documentation/default.css b/documentation/default.css old mode 100644 new mode 100755 diff --git a/documentation/dependencies.html b/documentation/dependencies.html old mode 100644 new mode 100755 diff --git a/documentation/index.html b/documentation/index.html old mode 100644 new mode 100755 diff --git a/documentation/installation_guide.html b/documentation/installation_guide.html old mode 100644 new mode 100755 diff --git a/documentation/installation_guide_es_ES.html b/documentation/installation_guide_es_ES.html old mode 100644 new mode 100755 diff --git a/documentation/license.html b/documentation/license.html old mode 100644 new mode 100755 diff --git a/documentation/migration-checklist.html b/documentation/migration-checklist.html old mode 100644 new mode 100755 diff --git a/documentation/optimization.html b/documentation/optimization.html old mode 100644 new mode 100755 diff --git a/documentation/readme.html b/documentation/readme.html old mode 100644 new mode 100755 diff --git a/documentation/security.html b/documentation/security.html old mode 100644 new mode 100755 diff --git a/favicon.ico b/favicon.ico old mode 100644 new mode 100755 diff --git a/htaccess b/htaccess old mode 100644 new mode 100755 diff --git a/index.php b/index.php old mode 100644 new mode 100755 diff --git a/license.txt b/license.txt old mode 100644 new mode 100755 diff --git a/main/admin/db.php b/main/admin/db.php old mode 100644 new mode 100755 diff --git a/main/admin/extra_field_options.php b/main/admin/extra_field_options.php old mode 100644 new mode 100755 diff --git a/main/admin/extra_field_workflow.php b/main/admin/extra_field_workflow.php old mode 100644 new mode 100755 diff --git a/main/admin/extra_fields.php b/main/admin/extra_fields.php old mode 100644 new mode 100755 diff --git a/main/auth/set_temp_password.php b/main/auth/set_temp_password.php old mode 100644 new mode 100755 diff --git a/main/chat/chat_message.php b/main/chat/chat_message.php index 834fdefa8b..86355b274a 100755 --- a/main/chat/chat_message.php +++ b/main/chat/chat_message.php @@ -215,21 +215,19 @@ if (!empty($course) && !empty($_user['user_id'])) { $fp = fopen($chat_path.$basename_chat.'.log.html', 'a'); // view user picture - $user_image = UserManager::get_user_picture_path_by_id($user_id, 'web', false, true); - $user_photo = $user_image['dir'].'medium_'.$user_image['file']; - $file_photo = ''; + $userImage = UserManager::get_user_picture_path_by_id($user_id, 'web', false, true); + if (substr($userImage['file'],0,7) != 'unknown') { + $userPhoto = $userImage['dir'].'medium_'.$userImage['file']; + } else { + $userPhoto = $userImage['dir'].$userImage['file']; + } + $filePhoto = ''; if ($isMaster) { - - // $photo = ''.get_lang('Teacher').''; - fputs($fp, '
'.$message.'
'.$timeNow.'
'.$file_photo.'
'."\n"); - //fputs($fp, '['.$timeNow.']'.$file_photo.' '.api_get_person_name($firstname, $lastname).' : '.$message.'
'."\n"); + fputs($fp, '
'.$message.'
'.$timeNow.'
'.$filePhoto.'
'."\n"); } else { - // $photo = ''.get_lang('Student').''; - //fputs($fp, '['.$timeNow.']'.$file_photo.' '.api_get_person_name($firstname, $lastname).' : '.$message.'
'."\n"); - fputs($fp, '
'.$file_photo.'
'.$message.'
'.$timeNow.'
'."\n"); + fputs($fp, '
'.$filePhoto.'
'.$message.'
'.$timeNow.'
'."\n"); } - fclose($fp); $chat_size = filesize($chat_path.$basename_chat.'.log.html'); @@ -250,7 +248,7 @@ if (!empty($course) && !empty($_user['user_id'])) { - + @@ -287,11 +285,6 @@ if (!empty($course) && !empty($_user['user_id'])) { ?> -
-
-
    +
    • - +
      - '18')).' '; else echo Display::return_icon('students.gif', get_lang('Student'), array('height' => '18')); ?> + '18')); + }else{ + echo Display::return_icon('students.gif', get_lang('Student'), array('height' => '18')); + } + ?>
      -
      - +
\ No newline at end of file diff --git a/main/chat/header_frame.inc.php b/main/chat/header_frame.inc.php index 78f034e4d0..615be79ae2 100755 --- a/main/chat/header_frame.inc.php +++ b/main/chat/header_frame.inc.php @@ -18,7 +18,7 @@ $bodyXtra = ' class="course_chat" dir="'.api_get_text_direction().'" '; if (FRAME == 'hidden') { $bodyXtra .= 'onload="javascript: updateChat(); updateConnected(); setTimeout(\'submitHiddenForm();\', 5000);"'; - // Change timeout to change refresh time of the chat window + // Change timeout to change refresh time of the chat window } elseif (FRAME == 'message') { $bodyXtra .= 'onload="javascript: eventMessage();"'; } @@ -45,91 +45,53 @@ header('Content-Type: text/html; charset='.api_get_system_encoding()); ?> - - Chat - - - - - + +Chat + + + - > \ No newline at end of file + > diff --git a/main/chat/sound/notification.mp3 b/main/chat/sound/notification.mp3 new file mode 100755 index 0000000000..8df4788ec6 Binary files /dev/null and b/main/chat/sound/notification.mp3 differ diff --git a/main/chat/sound/notification.ogg b/main/chat/sound/notification.ogg new file mode 100755 index 0000000000..af63db8730 Binary files /dev/null and b/main/chat/sound/notification.ogg differ diff --git a/main/chat/sound/notification.wav b/main/chat/sound/notification.wav new file mode 100755 index 0000000000..7e504a6366 Binary files /dev/null and b/main/chat/sound/notification.wav differ diff --git a/main/chat/sound/sonido_notificacion.mp3 b/main/chat/sound/sonido_notificacion.mp3 deleted file mode 100644 index 52bd455bcc..0000000000 Binary files a/main/chat/sound/sonido_notificacion.mp3 and /dev/null differ diff --git a/main/chat/sound/sonido_notificacion.ogg b/main/chat/sound/sonido_notificacion.ogg deleted file mode 100644 index b4027e5b3f..0000000000 Binary files a/main/chat/sound/sonido_notificacion.ogg and /dev/null differ diff --git a/main/chat/sound/sonido_notificacion.wav b/main/chat/sound/sonido_notificacion.wav deleted file mode 100644 index 36d2dba930..0000000000 Binary files a/main/chat/sound/sonido_notificacion.wav and /dev/null differ diff --git a/main/css/academica/images/user_icon.png b/main/css/academica/images/user_icon.png old mode 100644 new mode 100755 diff --git a/main/css/academica/images/user_password.png b/main/css/academica/images/user_password.png old mode 100644 new mode 100755 diff --git a/main/css/academica/scorm.css b/main/css/academica/scorm.css index b3efef17c6..43ed72c0eb 100755 --- a/main/css/academica/scorm.css +++ b/main/css/academica/scorm.css @@ -7,7 +7,6 @@ } .inner_lp_toc .scorm_item a { - font-weight: bold; font-size: 14px; margin-right: 1px; padding-bottom: 2px; @@ -105,7 +104,7 @@ .inner_lp_toc .scorm_item_section .scorm_item:before { - content : url('../../img/lp_section.png'); /* from main/newscorm/lp_controller.php file */ + content : url('../lp_section.png'); /* from main/newscorm/lp_controller.php file */ vertical-align: text-top; margin-right : 5px; } @@ -185,7 +184,6 @@ overflow: auto; background-color: #E0DFD8; height: 210px; - padding: 10px; } .inner_lp_toc .scorm_item a { @@ -233,7 +231,7 @@ } .inner_lp_toc .scorm_item { - font-size: 16px; + font-size: 14px; margin-left: 10px; margin-right:10px; text-decoration: none; @@ -439,7 +437,7 @@ opacity: 0.7; /*STYLES PROCESS LESSION*/ .inner_lp_toc .scorm_completed { background-image: url("images/blue_arrow.png") !important; - background-position: 255px center !important; + background-position: 270px center !important; background-repeat: no-repeat; } @@ -479,7 +477,7 @@ opacity: 0.7; .inner_lp_toc .scorm_item_highlight { background-color: #F58777; background-image: url("images/white_arrow.png") !important; - background-position: 255px center !important; + background-position: 270px center !important; background-repeat: no-repeat; border: 1px solid #F26C58; text-shadow:none; diff --git a/main/css/baby_orange/images/bg-button.png b/main/css/baby_orange/images/bg-button.png old mode 100644 new mode 100755 diff --git a/main/css/baby_orange/images/button_accept.png b/main/css/baby_orange/images/button_accept.png old mode 100644 new mode 100755 diff --git a/main/css/baby_orange/images/button_minus.png b/main/css/baby_orange/images/button_minus.png old mode 100644 new mode 100755 diff --git a/main/css/baby_orange/images/button_plus_blue.png b/main/css/baby_orange/images/button_plus_blue.png old mode 100644 new mode 100755 diff --git a/main/css/baby_orange/images/button_plus_green.png b/main/css/baby_orange/images/button_plus_green.png old mode 100644 new mode 100755 diff --git a/main/css/baby_orange/images/user_icon.png b/main/css/baby_orange/images/user_icon.png old mode 100644 new mode 100755 diff --git a/main/css/baby_orange/images/user_password.png b/main/css/baby_orange/images/user_password.png old mode 100644 new mode 100755 diff --git a/main/css/baby_orange/scorm.css b/main/css/baby_orange/scorm.css index ec495b7f40..d6fcaa4509 100755 --- a/main/css/baby_orange/scorm.css +++ b/main/css/baby_orange/scorm.css @@ -7,7 +7,6 @@ } .inner_lp_toc .scorm_item a { - font-weight: bold; font-size: 13px; margin-right: 1px; padding-bottom: 2px; @@ -105,7 +104,7 @@ .inner_lp_toc .scorm_item_section .scorm_item:before { - content : url('../../img/lp_section.png'); /* from main/newscorm/lp_controller.php file */ + content : url('../lp_section.png'); /* from main/newscorm/lp_controller.php file */ vertical-align: text-top; margin-right : 5px; } @@ -233,7 +232,7 @@ } .inner_lp_toc .scorm_item { - font-size: 16px; + font-size: 14px; margin-left: 10px; margin-right:10px; text-decoration: none; diff --git a/main/css/bg-scrollbar-thumb-y.png b/main/css/bg-scrollbar-thumb-y.png old mode 100644 new mode 100755 diff --git a/main/css/bg-scrollbar-track-y.png b/main/css/bg-scrollbar-track-y.png old mode 100644 new mode 100755 diff --git a/main/css/bg-scrollbar-trackend-y.png b/main/css/bg-scrollbar-trackend-y.png old mode 100644 new mode 100755 diff --git a/main/css/blue_lagoon/scorm.css b/main/css/blue_lagoon/scorm.css index d7129d1328..9e5ab66492 100755 --- a/main/css/blue_lagoon/scorm.css +++ b/main/css/blue_lagoon/scorm.css @@ -7,7 +7,6 @@ } .inner_lp_toc .scorm_item a { - font-weight: bold; font-size: 14px; margin-right: 1px; padding-bottom: 2px; @@ -105,7 +104,7 @@ .inner_lp_toc .scorm_item_section .scorm_item:before { - content : url('../../img/lp_section.png'); /* from main/newscorm/lp_controller.php file */ + content : url('../lp_section.png'); /* from main/newscorm/lp_controller.php file */ vertical-align: text-top; margin-right : 5px; } @@ -233,7 +232,7 @@ } .inner_lp_toc .scorm_item { - font-size: 16px; + font-size: 14px; margin-left: 10px; margin-right:10px; text-decoration: none; diff --git a/main/css/chamilo/images/bg-button.png b/main/css/chamilo/images/bg-button.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo/images/button_accept.png b/main/css/chamilo/images/button_accept.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo/images/button_minus.png b/main/css/chamilo/images/button_minus.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo/images/button_plus_blue.png b/main/css/chamilo/images/button_plus_blue.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo/images/button_plus_green.png b/main/css/chamilo/images/button_plus_green.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo/images/user_icon.png b/main/css/chamilo/images/user_icon.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo/images/user_password.png b/main/css/chamilo/images/user_password.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo_electric_blue/images/accept.png b/main/css/chamilo_electric_blue/images/accept.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo_electric_blue/images/accept_data.png b/main/css/chamilo_electric_blue/images/accept_data.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo_electric_blue/images/add.png b/main/css/chamilo_electric_blue/images/add.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo_electric_blue/images/buttom.png b/main/css/chamilo_electric_blue/images/buttom.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo_electric_blue/images/next.png b/main/css/chamilo_electric_blue/images/next.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo_electric_blue/images/previus.png b/main/css/chamilo_electric_blue/images/previus.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo_green/images/accept.png b/main/css/chamilo_green/images/accept.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo_green/images/accept_data.png b/main/css/chamilo_green/images/accept_data.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo_green/images/add.png b/main/css/chamilo_green/images/add.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo_green/images/buttom.png b/main/css/chamilo_green/images/buttom.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo_green/images/next.png b/main/css/chamilo_green/images/next.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo_green/images/previus.png b/main/css/chamilo_green/images/previus.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo_orange/images/accept.png b/main/css/chamilo_orange/images/accept.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo_orange/images/accept_data.png b/main/css/chamilo_orange/images/accept_data.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo_orange/images/add.png b/main/css/chamilo_orange/images/add.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo_orange/images/buttom.png b/main/css/chamilo_orange/images/buttom.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo_orange/images/next.png b/main/css/chamilo_orange/images/next.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo_orange/images/previus.png b/main/css/chamilo_orange/images/previus.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo_red/images/accept.png b/main/css/chamilo_red/images/accept.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo_red/images/accept_data.png b/main/css/chamilo_red/images/accept_data.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo_red/images/add.png b/main/css/chamilo_red/images/add.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo_red/images/buttom.png b/main/css/chamilo_red/images/buttom.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo_red/images/next.png b/main/css/chamilo_red/images/next.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo_red/images/previus.png b/main/css/chamilo_red/images/previus.png old mode 100644 new mode 100755 diff --git a/main/css/chamilo_red/scorm.css b/main/css/chamilo_red/scorm.css index 16cbfa6046..4770025b11 100755 --- a/main/css/chamilo_red/scorm.css +++ b/main/css/chamilo_red/scorm.css @@ -7,8 +7,7 @@ } .inner_lp_toc .scorm_item a { - font-weight: bold; - font-size: 14px; + font-size: 13px; margin-right: 1px; padding-bottom: 2px; text-decoration: none; @@ -105,7 +104,7 @@ .inner_lp_toc .scorm_item_section .scorm_item:before { - content : url('../../img/lp_section.png'); /* from main/newscorm/lp_controller.php file */ + content : url('../lp_section.png'); /* from main/newscorm/lp_controller.php file */ vertical-align: text-top; margin-right : 5px; } @@ -139,25 +138,27 @@ } .scorm_item_level_1 { - padding : 0 0.5em 0 1.5em; + padding : 0 1.5em 0 1.5em; } .scorm_item_level_2 { - padding : 0 0.5em 0 3em; + padding : 0 1.5em 0 3em; } - .scorm_item_level_3 { - padding : 0 0.5em 0 4.5em; + padding : 0 1.5em 0 4.5em; } .scorm_item_level_4 { - padding : 0 0.5em 0 6em; + padding : 0 1.5em 0 6em; } .scorm_item_level_5 { - padding : 0 0.5em 0 7.5em; + padding : 0 1.5em 0 7.5em; } +.scorm_item.scorm_item_level_2 > a, .scorm_item.scorm_item_level_3 > a, .scorm_item.scorm_item_level_4 > a, .scorm_item.scorm_item_level_5 > a{ + font-weight: normal; +} /* end of copy of default_scorm.css */ @@ -171,7 +172,6 @@ padding: 0px; margin-top: 0px; padding-top: 0px; - font-size: small; } .lp_toc { background-color: white; @@ -182,17 +182,15 @@ .inner_lp_toc { overflow: auto; - background-color: white; - height: 210px; + background-color: #F2F2EF; + height: 210px; + padding: 10px; } .inner_lp_toc .scorm_item a { - font-weight: normal; - font-size: 12px; margin-right: 1px; padding-bottom: 2px; text-decoration: none; - font-family: Helvetica,Arial,sans-serif; color: #2F3E46; } @@ -203,7 +201,6 @@ .inner_lp_toc .scorm_item_highlight { border:1px solid #00aad4; background:#00aad4; - font-weight:normal; background-image:none; margin-right: 0px; padding: 10px 0px 10px 0px; @@ -214,7 +211,6 @@ color:#fff; margin-right: 1px; text-decoration: none; - font-weight: normal; } .inner_lp_toc .scorm_item_section { @@ -236,7 +232,7 @@ } .inner_lp_toc .scorm_item { - font-size: 16px; + font-size: 14px; margin-left: 10px; margin-right:10px; text-decoration: none; @@ -250,12 +246,10 @@ color:#444; text-shadow:0 1px 1px #f6f6f6; background-image:none; - margin-right: 1px; padding: 10px 0px 10px 0px; text-decoration: none; font-weight: normal; - /* background:#FDFDFD; */ } .inner_lp_toc .scorm_item_2 { @@ -346,28 +340,43 @@ padding-left: 17px; padding-top: 4px; } - - - +.breadcrumb .divider { + color: #FFCC00; + padding-bottom: 0; + padding-left: 5px; + padding-right: 5px; + padding-top: 0; +} #learning_path_breadcrumb_zone .breadcrumb{ - background-image: none; - background-color: #2e75a3; + background: #ff3019; /* Old browsers */ + background: -moz-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff3019), color-stop(100%,#cf0404)); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, #ff3019 0%,#cf0404 100%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, #ff3019 0%,#cf0404 100%); /* Opera 11.10+ */ + background: -ms-linear-gradient(top, #ff3019 0%,#cf0404 100%); /* IE10+ */ + background: linear-gradient(to bottom, #ff3019 0%,#cf0404 100%); /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff3019', endColorstr='#cf0404',GradientType=0 ); /* IE6-9 */ color: #fff; text-transform: capitalize; + border:none; + -webkit-border-radius: 1px; + -moz-border-radius: 1px; + border-radius: 1px; } #learning_path_breadcrumb_zone .breadcrumb a{ color: #FFF; } #learning_path_breadcrumb_zone .breadcrumb a:hover{ - text-decoration: underline; + text-decoration: none; + opacity: 0.8; } #scorm_title { font-weight: bold; background:none; font-size: 20px; background-image: none; - color: #0088aa; - padding-top: 5px; + color: #cf0404; + padding-top: 15px; padding-bottom: 15px; } #learning_path_main #control { @@ -377,11 +386,11 @@ opacity: 0.7; } #author_image{ - background-color: #d7eef4; + background-color: #F2F2EF; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; - border: 1px solid #b4cbff; + border: 1px solid #CCCCCC; margin-top: 10px; } #author_icon img{ @@ -393,17 +402,16 @@ opacity: 0.7; } #author_image .progresstext{ font-size: 20px; - color: #0088aa; + color: #cf0404; font-weight: bold; } #learning_path_left_zone #header { - font-size: 14px; + font-size: 18px; margin-top: 10px; } #learning_path_left_zone .no-border{ background: none; - color: #2e75a3; - font-weight: normal; + color: #cf0404; } .progress { height: 18px; @@ -426,31 +434,23 @@ opacity: 0.7; box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3); } .progress-striped .bar { - background-color: #149BDF; - background-size: 40px 40px; - background-image: none; + background-color: #F86700; + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + -webkit-animation: progress-bar-stripes 2s linear infinite; + animation: progress-bar-stripes 2s linear infinite; } /*STYLES PROCESS LESSION*/ .inner_lp_toc .scorm_completed { - - background-image: url("images/blue_arrow.png") !important; - background-position: 250px center !important; - background-repeat: no-repeat; -} - -.inner_lp_toc .scorm_item_highlight { - background-color: #00aad4; - background-image: url("images/white_arrow.png") !important; - background-position: 250px center !important; + background-image: url("images/blue_arrow.png") !important; + background-position: 255px center !important; background-repeat: no-repeat; - border: 1px solid #00aad4; } - .inner_lp_toc .scorm_item_1 { - background-color: #d7eef4; - background-image: none; + background:none; + background-repeat: no-repeat; border-bottom-color: #CCCCCC; border-bottom-style: solid; border-bottom-width: 1px; @@ -479,4 +479,23 @@ opacity: 0.7; position: absolute; text-align: center; width: 100%; -} + border-top:1px solid #00AAD4; +} +.inner_lp_toc .scorm_item_highlight { + background-color: #cf0404; + background-image: url("images/white_arrow.png") !important; + background-position: 255px center !important; + background-repeat: no-repeat; + border: 1px solid #cf0404; + text-shadow:none; +} +#author_name { + color: #666666; + float: left; + font-size: 13px; + margin-top: 2px; + text-align: center; + width: 100%; + padding-top: 10px; + padding-bottom: 5px; +} \ No newline at end of file diff --git a/main/css/chat.css b/main/css/chat.css old mode 100644 new mode 100755 index 38b5f48bf2..3f1019f994 --- a/main/css/chat.css +++ b/main/css/chat.css @@ -8,17 +8,19 @@ body{ } .page-chat{ padding: 10px; - background: #2C2C2C; + background: #e5e5e5; /* Old browsers */ + background: -moz-linear-gradient(top, #e5e5e5 0%, #ffffff 99%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e5e5e5), color-stop(99%,#ffffff)); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, #e5e5e5 0%,#ffffff 99%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, #e5e5e5 0%,#ffffff 99%); /* Opera 11.10+ */ + background: -ms-linear-gradient(top, #e5e5e5 0%,#ffffff 99%); /* IE10+ */ + background: linear-gradient(to bottom, #e5e5e5 0%,#ffffff 99%); /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5e5e5', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */ } #clear-chat{ - /*position: absolute; - top:0; - left: 10px;*/ - background: #2C2C2C; - border:1px solid #2C2C2C; - width:140px; - padding: 5px; - font-size: 14px; + width:140px; + padding: 5px; + font-size: 14px; } #clear-chat img{ width: 20px; @@ -26,14 +28,14 @@ body{ margin-right: 5px; } #clear-chat a{ - color: #fff; + color: #0088AA; text-decoration: none; } #clear-chat a:hover{ opacity: 0.7; } #content-chat{ - background:#3E3E3E; + background:#ffffff; padding: 30px; -webkit-border-radius: 10px; -moz-border-radius: 10px; @@ -45,15 +47,15 @@ textarea { height: 100px; float: left; border: 0; - background-color: #434343; + background-color: #ffffff; font-size: 0.75em; font-family: Helvetica, arial, sans-serif; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; - border: 1px solid #434343; - color: #BDBDBA; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.075) inset; + border: 1px solid #EEEEEE; + color: #666; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35) inset; } .message-student .chat-image, .message-teacher .chat-image{ width: 80px; @@ -65,17 +67,17 @@ textarea { -moz-border-radius: 10px; border-radius: 10px; border:2px solid #fff; - box-shadow: 1px 1px 10px #484848; + box-shadow: 1px 1px 2px rgba(0,0,0,0.2); } .message-student .content-message{ - background-color: #FAEDCE; + background-color: #F9F2E0; color: #000; padding: 10px; margin-bottom: 15px; - border-top: 1px solid #FAEDCE; - border-left: 1px solid #FAEDCE; - border-right: 1px solid #FAEDCE; - border-bottom: 1px solid #FAEDCE; + border-top: 1px solid #F9F2E0; + border-left: 1px solid #F9F2E0; + border-right: 2px solid #F7E5B9; + border-bottom: 3px solid #F7E5B9; border-radius: 10px; display: inline-block; @@ -92,7 +94,7 @@ textarea { height: 0; border-top: 0px solid transparent; border-bottom: 15px solid transparent; - border-left: 15px solid #EFE856; + border-left: 15px solid #EBEFF3; } .message-student .icon-message{ display: inline-block; @@ -102,17 +104,17 @@ textarea { height: 0; border-top: 0px solid transparent; border-bottom: 15px solid transparent; - border-right: 15px solid #FAEDCE; + border-right: 15px solid #F9F2E0; } .message-teacher .content-message{ - background-color: #EFE856; + background-color: #EBEFF3; color: #000; padding: 10px; margin-bottom: 15px; - border-top: 1px solid #EFE856; - border-left: 1px solid #EFE856; - border-right: 1px solid #EFE856; - border-bottom: 1px solid #EFE856; + border-top: 1px solid #EBEFF3; + border-left: 2px solid #DEE1E5; + border-right: 1px solid #EBEFF3; + border-bottom: 3px solid #DEE1E5; border-radius: 10px; display: inline-block; font-size: 13px; @@ -132,24 +134,24 @@ textarea { color: #666; font-style: italic; font-size: 10px; - text-align: left; + text-align: right; margin-top: 10px; } -.user-online .perfil{ +.user-online .profile{ list-style: none; padding: 0; margin:0; } -.user-online .perfil li{ +.user-online .profile li{ margin-bottom: 5px; } -.user-online .perfil li a{ - color: #fff; +.user-online .profile li a{ + color: #0088AA; text-decoration: none; } .user-online .title{ background: url(chat.png) no-repeat 0 center; - color: #ffffff; + color: #0088AA; padding-top: 5px; padding-left: 30px; font-weight: bold; @@ -170,16 +172,19 @@ textarea { display: block; padding: 10px 15px; margin-bottom: -1px; - background-color: #3D3D3D; - border: 1px solid #3D3D3D; + background-color: #EEEEEE; + border: 1px solid #E2E2E2; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; color: #666; } + li.list-group-item:hover, li.list-group-item:focus { text-decoration: none; - background-color: #EEEEEE; + background-color: #E2E2E2; + cursor: pointer; + border: 1px solid #EEEEEE; } li.list-group-item:hover a{ color: #000; @@ -206,19 +211,19 @@ li.list-group-item:hover a{ #user-online-scroll .disable { display: none; } .noSelect { user-select: none; -o-user-select: none; -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; } -.btn-enviar { - background: #fc585d; /* Old browsers */ - background: -moz-linear-gradient(top, #fc585d 0%, #fd3746 99%); /* FF3.6+ */ - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fc585d), color-stop(99%,#fd3746)); /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(top, #fc585d 0%,#fd3746 99%); /* Chrome10+,Safari5.1+ */ - background: -o-linear-gradient(top, #fc585d 0%,#fd3746 99%); /* Opera 11.10+ */ - background: -ms-linear-gradient(top, #fc585d 0%,#fd3746 99%); /* IE10+ */ - background: linear-gradient(to bottom, #fc585d 0%,#fd3746 99%); /* W3C */ - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fc585d', endColorstr='#fd3746',GradientType=0 ); /* IE6-9 */ +.btn-send { + background: #87e0fd; /* Old browsers */ + background: -moz-linear-gradient(top, #87e0fd 0%, #53cbf1 40%, #05abe0 100%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#87e0fd), color-stop(40%,#53cbf1), color-stop(100%,#05abe0)); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, #87e0fd 0%,#53cbf1 40%,#05abe0 100%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, #87e0fd 0%,#53cbf1 40%,#05abe0 100%); /* Opera 11.10+ */ + background: -ms-linear-gradient(top, #87e0fd 0%,#53cbf1 40%,#05abe0 100%); /* IE10+ */ + background: linear-gradient(to bottom, #87e0fd 0%,#53cbf1 40%,#05abe0 100%); /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#87e0fd', endColorstr='#05abe0',GradientType=0 ); /* IE6-9 */ -webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px; - border:1px solid #FD3746; + border:1px solid #53cbf1; display:inline-block; color:#ffffff; font-family:Arial; @@ -232,15 +237,16 @@ li.list-group-item:hover a{ text-align:center; cursor: pointer; } -.btn-enviar:hover { +.btn-send:hover { opacity: 0.8; -}.btn-enviar:active { +} +.btn-send:active { position:relative; top:1px; } .emoticons-chat img{ - width: 24px; - border: none; + width: 24px; + border: none; } .message-form-chat{ margin-top: 20px; @@ -248,5 +254,5 @@ li.list-group-item:hover a{ -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; - background: #3D3D3D; + background: #EEEEEE; } diff --git a/main/css/chat.png b/main/css/chat.png old mode 100644 new mode 100755 index 91f02fbb98..0f94e1ed7b Binary files a/main/css/chat.png and b/main/css/chat.png differ diff --git a/main/css/corporate/scorm.css b/main/css/corporate/scorm.css index ffb2343707..8e6487e118 100755 --- a/main/css/corporate/scorm.css +++ b/main/css/corporate/scorm.css @@ -7,7 +7,6 @@ } .inner_lp_toc .scorm_item a { - font-weight: bold; font-size: 13px; margin-right: 1px; padding-bottom: 2px; @@ -105,7 +104,7 @@ .inner_lp_toc .scorm_item_section .scorm_item:before { - content : url('../../img/lp_section.png'); /* from main/newscorm/lp_controller.php file */ + content : url('../lp_section.png'); /* from main/newscorm/lp_controller.php file */ vertical-align: text-top; margin-right : 5px; } @@ -231,9 +230,8 @@ text-decoration: none; } - .inner_lp_toc .scorm_item { - font-size: 16px; + font-size: 14px; margin-left: 10px; margin-right:10px; text-decoration: none; diff --git a/main/css/cosmic_campus/scorm.css b/main/css/cosmic_campus/scorm.css index 4a21d7dd85..a979de1582 100755 --- a/main/css/cosmic_campus/scorm.css +++ b/main/css/cosmic_campus/scorm.css @@ -7,7 +7,6 @@ } .inner_lp_toc .scorm_item a { - font-weight: bold; font-size: 13px; margin-right: 1px; padding-bottom: 2px; @@ -105,7 +104,7 @@ .inner_lp_toc .scorm_item_section .scorm_item:before { - content : url('../../img/lp_section.png'); /* from main/newscorm/lp_controller.php file */ + content : url('../lp_section.png'); /* from main/newscorm/lp_controller.php file */ vertical-align: text-top; margin-right : 5px; } @@ -240,7 +239,7 @@ } .inner_lp_toc .scorm_item { - font-size: 16px; + font-size: 14px; margin-left: 10px; margin-right:10px; text-decoration: none; diff --git a/main/css/default_scorm.css b/main/css/default_scorm.css old mode 100644 new mode 100755 diff --git a/main/css/journal/dataTable.css b/main/css/journal/dataTable.css old mode 100644 new mode 100755 diff --git a/main/css/journal/frames.css b/main/css/journal/frames.css old mode 100644 new mode 100755 diff --git a/main/css/journal/images/2leftarrow.gif b/main/css/journal/images/2leftarrow.gif old mode 100644 new mode 100755 diff --git a/main/css/journal/images/2rightarrow.gif b/main/css/journal/images/2rightarrow.gif old mode 100644 new mode 100755 diff --git a/main/css/journal/images/accept.png b/main/css/journal/images/accept.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/accept_data.png b/main/css/journal/images/accept_data.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/add.png b/main/css/journal/images/add.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/bg-button.gif b/main/css/journal/images/bg-button.gif old mode 100644 new mode 100755 diff --git a/main/css/journal/images/bg-main.png b/main/css/journal/images/bg-main.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/blue_arrow.png b/main/css/journal/images/blue_arrow.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/bullet.gif b/main/css/journal/images/bullet.gif old mode 100644 new mode 100755 diff --git a/main/css/journal/images/buttom.png b/main/css/journal/images/buttom.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/button_accept.gif b/main/css/journal/images/button_accept.gif old mode 100644 new mode 100755 diff --git a/main/css/journal/images/button_add.gif b/main/css/journal/images/button_add.gif old mode 100644 new mode 100755 diff --git a/main/css/journal/images/button_back.gif b/main/css/journal/images/button_back.gif old mode 100644 new mode 100755 diff --git a/main/css/journal/images/button_delete.gif b/main/css/journal/images/button_delete.gif old mode 100644 new mode 100755 diff --git a/main/css/journal/images/button_login.gif b/main/css/journal/images/button_login.gif old mode 100644 new mode 100755 diff --git a/main/css/journal/images/button_minus.gif b/main/css/journal/images/button_minus.gif old mode 100644 new mode 100755 diff --git a/main/css/journal/images/button_next.gif b/main/css/journal/images/button_next.gif old mode 100644 new mode 100755 diff --git a/main/css/journal/images/button_refresh.gif b/main/css/journal/images/button_refresh.gif old mode 100644 new mode 100755 diff --git a/main/css/journal/images/button_search.gif b/main/css/journal/images/button_search.gif old mode 100644 new mode 100755 diff --git a/main/css/journal/images/button_upload.gif b/main/css/journal/images/button_upload.gif old mode 100644 new mode 100755 diff --git a/main/css/journal/images/chamilo-welcome.png b/main/css/journal/images/chamilo-welcome.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/course.png b/main/css/journal/images/course.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/dataTable/Sorting icons.psd b/main/css/journal/images/dataTable/Sorting icons.psd old mode 100644 new mode 100755 diff --git a/main/css/journal/images/dataTable/back_disabled.jpg b/main/css/journal/images/dataTable/back_disabled.jpg old mode 100644 new mode 100755 diff --git a/main/css/journal/images/dataTable/back_enabled.jpg b/main/css/journal/images/dataTable/back_enabled.jpg old mode 100644 new mode 100755 diff --git a/main/css/journal/images/dataTable/favicon.ico b/main/css/journal/images/dataTable/favicon.ico old mode 100644 new mode 100755 diff --git a/main/css/journal/images/dataTable/forward_disabled.jpg b/main/css/journal/images/dataTable/forward_disabled.jpg old mode 100644 new mode 100755 diff --git a/main/css/journal/images/dataTable/forward_enabled.jpg b/main/css/journal/images/dataTable/forward_enabled.jpg old mode 100644 new mode 100755 diff --git a/main/css/journal/images/dataTable/sort_asc.png b/main/css/journal/images/dataTable/sort_asc.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/dataTable/sort_asc_disabled.png b/main/css/journal/images/dataTable/sort_asc_disabled.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/dataTable/sort_both.png b/main/css/journal/images/dataTable/sort_both.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/dataTable/sort_desc.png b/main/css/journal/images/dataTable/sort_desc.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/dataTable/sort_desc_disabled.png b/main/css/journal/images/dataTable/sort_desc_disabled.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/header-logo.png b/main/css/journal/images/header-logo.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/help2.png b/main/css/journal/images/help2.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/history.png b/main/css/journal/images/history.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/icon-chamilo.png b/main/css/journal/images/icon-chamilo.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/inbox.png b/main/css/journal/images/inbox.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/install.png b/main/css/journal/images/install.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/invitation.png b/main/css/journal/images/invitation.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/list-course.png b/main/css/journal/images/list-course.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/loading.gif b/main/css/journal/images/loading.gif old mode 100644 new mode 100755 diff --git a/main/css/journal/images/new.png b/main/css/journal/images/new.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/next.png b/main/css/journal/images/next.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/order-course.png b/main/css/journal/images/order-course.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/perfil.png b/main/css/journal/images/perfil.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/portal.png b/main/css/journal/images/portal.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/previus.png b/main/css/journal/images/previus.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/refresh.png b/main/css/journal/images/refresh.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/sprite-icon-social.png b/main/css/journal/images/sprite-icon-social.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/sprite-icon.png b/main/css/journal/images/sprite-icon.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/start-level.png b/main/css/journal/images/start-level.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/vineta.png b/main/css/journal/images/vineta.png old mode 100644 new mode 100755 diff --git a/main/css/journal/images/white_arrow.png b/main/css/journal/images/white_arrow.png old mode 100644 new mode 100755 diff --git a/main/css/journal/learnpath.css b/main/css/journal/learnpath.css old mode 100644 new mode 100755 diff --git a/main/css/journal/print.css b/main/css/journal/print.css old mode 100644 new mode 100755 diff --git a/main/css/journal/scorm.css b/main/css/journal/scorm.css old mode 100644 new mode 100755 index ab0725a74d..151febe288 --- a/main/css/journal/scorm.css +++ b/main/css/journal/scorm.css @@ -7,7 +7,6 @@ } .inner_lp_toc .scorm_item a { - font-weight: bold; font-size: 13px; margin-right: 1px; padding-bottom: 2px; @@ -105,7 +104,7 @@ .inner_lp_toc .scorm_item_section .scorm_item:before { - content : url('../../img/lp_section.png'); /* from main/newscorm/lp_controller.php file */ + content : url('../lp_section.png'); /* from main/newscorm/lp_controller.php file */ vertical-align: text-top; margin-right : 5px; } @@ -185,7 +184,6 @@ overflow: auto; background-color: #E6E6E6; height: 210px; - padding: 10px; } .inner_lp_toc .scorm_item a { @@ -233,7 +231,7 @@ } .inner_lp_toc .scorm_item { - font-size: 16px; + font-size: 14px; margin-left: 10px; margin-right:10px; text-decoration: none; @@ -452,7 +450,7 @@ opacity: 0.7; /*STYLES PROCESS LESSION*/ .inner_lp_toc .scorm_completed { background-image: url("images/blue_arrow.png") !important; - background-position: 255px center !important; + background-position: 270px center !important; background-repeat: no-repeat; } @@ -492,7 +490,7 @@ opacity: 0.7; .inner_lp_toc .scorm_item_highlight { background-color: #777777; background-image: url("images/white_arrow.png") !important; - background-position: 255px center !important; + background-position: 270px center !important; background-repeat: no-repeat; border: 1px solid #777777; text-shadow:none; diff --git a/main/css/journal/scormfs.css b/main/css/journal/scormfs.css old mode 100644 new mode 100755 diff --git a/main/css/kiddy/scorm.css b/main/css/kiddy/scorm.css index a825267eb2..97ec1ac872 100755 --- a/main/css/kiddy/scorm.css +++ b/main/css/kiddy/scorm.css @@ -7,7 +7,6 @@ } .inner_lp_toc .scorm_item a { - font-weight: bold; font-size: 13px; margin-right: 1px; padding-bottom: 2px; @@ -105,7 +104,7 @@ .inner_lp_toc .scorm_item_section .scorm_item:before { - content : url('../../img/lp_section.png'); /* from main/newscorm/lp_controller.php file */ + content : url('../lp_section.png'); /* from main/newscorm/lp_controller.php file */ vertical-align: text-top; margin-right : 5px; } @@ -185,7 +184,6 @@ overflow: auto; background-color: #D7EEF4; height: 210px; - padding: 10px; } .inner_lp_toc .scorm_item a { @@ -233,7 +231,7 @@ } .inner_lp_toc .scorm_item { - font-size: 16px; + font-size: 14px; margin-left: 10px; margin-right:10px; text-decoration: none; @@ -441,7 +439,7 @@ opacity: 0.7; /*STYLES PROCESS LESSION*/ .inner_lp_toc .scorm_completed { background-image: url("images/blue_arrow.png") !important; - background-position: 255px center !important; + background-position: 270px center !important; background-repeat: no-repeat; } @@ -481,7 +479,7 @@ opacity: 0.7; .inner_lp_toc .scorm_item_highlight { background-color: #00aad4; background-image: url("images/white_arrow.png") !important; - background-position: 255px center !important; + background-position: 270px center !important; background-repeat: no-repeat; border: 1px solid #00aad4; text-shadow:none; diff --git a/main/css/lp_section.png b/main/css/lp_section.png new file mode 100755 index 0000000000..fe5080decc Binary files /dev/null and b/main/css/lp_section.png differ diff --git a/main/img/archive.png b/main/img/archive.png old mode 100644 new mode 100755 diff --git a/main/img/emoticons/flag_green_small.png b/main/img/emoticons/flag_green_small.png old mode 100644 new mode 100755 diff --git a/main/img/emoticons/flag_red_small.png b/main/img/emoticons/flag_red_small.png old mode 100644 new mode 100755 diff --git a/main/img/emoticons/flag_yellow_small.png b/main/img/emoticons/flag_yellow_small.png old mode 100644 new mode 100755 diff --git a/main/img/emoticons/icon_angry.png b/main/img/emoticons/icon_angry.png old mode 100644 new mode 100755 diff --git a/main/img/emoticons/icon_arrow.png b/main/img/emoticons/icon_arrow.png old mode 100644 new mode 100755 diff --git a/main/img/emoticons/icon_biggrin.png b/main/img/emoticons/icon_biggrin.png old mode 100644 new mode 100755 diff --git a/main/img/emoticons/icon_confused.png b/main/img/emoticons/icon_confused.png old mode 100644 new mode 100755 diff --git a/main/img/emoticons/icon_cool.png b/main/img/emoticons/icon_cool.png old mode 100644 new mode 100755 diff --git a/main/img/emoticons/icon_eek.png b/main/img/emoticons/icon_eek.png old mode 100644 new mode 100755 diff --git a/main/img/emoticons/icon_exclaim.png b/main/img/emoticons/icon_exclaim.png old mode 100644 new mode 100755 diff --git a/main/img/emoticons/icon_hand.png b/main/img/emoticons/icon_hand.png old mode 100644 new mode 100755 diff --git a/main/img/emoticons/icon_idea.png b/main/img/emoticons/icon_idea.png old mode 100644 new mode 100755 diff --git a/main/img/emoticons/icon_mourn.png b/main/img/emoticons/icon_mourn.png old mode 100644 new mode 100755 diff --git a/main/img/emoticons/icon_neutral.png b/main/img/emoticons/icon_neutral.png old mode 100644 new mode 100755 diff --git a/main/img/emoticons/icon_question.png b/main/img/emoticons/icon_question.png old mode 100644 new mode 100755 diff --git a/main/img/emoticons/icon_razz.png b/main/img/emoticons/icon_razz.png old mode 100644 new mode 100755 diff --git a/main/img/emoticons/icon_redface.png b/main/img/emoticons/icon_redface.png old mode 100644 new mode 100755 diff --git a/main/img/emoticons/icon_sad.png b/main/img/emoticons/icon_sad.png old mode 100644 new mode 100755 diff --git a/main/img/emoticons/icon_shhh.png b/main/img/emoticons/icon_shhh.png old mode 100644 new mode 100755 diff --git a/main/img/emoticons/icon_silenced.png b/main/img/emoticons/icon_silenced.png old mode 100644 new mode 100755 diff --git a/main/img/emoticons/icon_smile.png b/main/img/emoticons/icon_smile.png old mode 100644 new mode 100755 diff --git a/main/img/emoticons/icon_surprised.png b/main/img/emoticons/icon_surprised.png old mode 100644 new mode 100755 diff --git a/main/img/emoticons/icon_think.png b/main/img/emoticons/icon_think.png old mode 100644 new mode 100755 diff --git a/main/img/emoticons/icon_wink.png b/main/img/emoticons/icon_wink.png old mode 100644 new mode 100755 diff --git a/main/img/emoticons/waiting.png b/main/img/emoticons/waiting.png old mode 100644 new mode 100755 diff --git a/main/img/icons/22/learnpath_na.png b/main/img/icons/22/learnpath_na.png old mode 100644 new mode 100755 diff --git a/main/img/icons/32/eyes-invisible.png b/main/img/icons/32/eyes-invisible.png old mode 100644 new mode 100755 diff --git a/main/img/icons/32/eyes-visible.png b/main/img/icons/32/eyes-visible.png old mode 100644 new mode 100755 diff --git a/main/img/invisible.png b/main/img/invisible.png old mode 100644 new mode 100755 diff --git a/main/img/visible.png b/main/img/visible.png old mode 100644 new mode 100755 diff --git a/main/inc/ajax/extra_field.ajax.php b/main/inc/ajax/extra_field.ajax.php old mode 100644 new mode 100755 diff --git a/main/inc/lib/course.lib.php b/main/inc/lib/course.lib.php index 8cd11a18ef..053a38bab1 100755 --- a/main/inc/lib/course.lib.php +++ b/main/inc/lib/course.lib.php @@ -3206,7 +3206,8 @@ class CourseManager $my_course_image = new Image($source_file); $result = $my_course_image->send_image($course_image, -1, 'png'); - //Redimension image to 100x85 + //Redimension image to 100x85 (should be 85x85 but 100x85 visually gives + // better results for most images people put as course icon) if ($result) { $medium = new Image($course_image); //$picture_infos = $medium->get_image_size(); diff --git a/main/inc/lib/extra_field.lib.php b/main/inc/lib/extra_field.lib.php old mode 100644 new mode 100755 diff --git a/main/inc/lib/extra_field_option.lib.php b/main/inc/lib/extra_field_option.lib.php old mode 100644 new mode 100755 diff --git a/main/inc/lib/extra_field_value.lib.php b/main/inc/lib/extra_field_value.lib.php old mode 100644 new mode 100755 diff --git a/main/inc/lib/fckeditor/editor/plugins/media/lang/nl.js b/main/inc/lib/fckeditor/editor/plugins/media/lang/nl.js old mode 100644 new mode 100755 diff --git a/main/inc/lib/formvalidator/Rule/DateTimeRule.php b/main/inc/lib/formvalidator/Rule/DateTimeRule.php old mode 100644 new mode 100755 diff --git a/main/inc/lib/javascript/jquery.tinyscrollbar.js b/main/inc/lib/javascript/jquery.tinyscrollbar.js old mode 100644 new mode 100755 diff --git a/main/inc/lib/svg-edit/custom.css b/main/inc/lib/svg-edit/custom.css old mode 100644 new mode 100755 diff --git a/main/newscorm/learnpath.class.php b/main/newscorm/learnpath.class.php index 756a02a2e6..a190ab55fb 100755 --- a/main/newscorm/learnpath.class.php +++ b/main/newscorm/learnpath.class.php @@ -9042,29 +9042,27 @@ class learnpath if (is_array($links_to_create)) { foreach ($links_to_create as $file => $link) { - $file_content = ' - - - '.$link['title'].' - - -
- '.$link['title'].'
- -'; + $file_content = ' + + '.$link['title'].' + + +
+ '.$link['title'].'
+ + '; file_put_contents($archive_path.$temp_dir_short.'/'.$file, $file_content); } } // Add non exportable message explanation. $lang_not_exportable = get_lang('ThisItemIsNotExportable'); - $file_content = ' - - - '.$lang_not_exportable.' - - - '; + $file_content = ' + + '.$lang_not_exportable.' + + + '; $file_content .= << diff --git a/main/template/default/auth/set_temp_password.tpl b/main/template/default/auth/set_temp_password.tpl old mode 100644 new mode 100755 diff --git a/main/template/default/layout/hot_course_item.tpl b/main/template/default/layout/hot_course_item.tpl index 8ee52a1e0b..6d7a465935 100755 --- a/main/template/default/layout/hot_course_item.tpl +++ b/main/template/default/layout/hot_course_item.tpl @@ -1,10 +1,10 @@ {% for hot_course in hot_courses %} {% if hot_course.extra_info.title %} -
-
+
+
-
-
+
+
diff --git a/main/template/default/layout/main_header.tpl b/main/template/default/layout/main_header.tpl index 59dfbdf64d..3f4d002d94 100755 --- a/main/template/default/layout/main_header.tpl +++ b/main/template/default/layout/main_header.tpl @@ -28,9 +28,7 @@ {# topbar #} {% include "default/layout/topbar.tpl" %} -
- -
+
{# logo #} @@ -76,14 +74,17 @@
{% endif %} - +
{# menu #} {% include "default/layout/menu.tpl" %} - +
{# breadcrumb #} {{ breadcrumb }}
+ +
+
{# course navigation links/shortcuts need to be activated by the admin #} diff --git a/main/user/add_users_to_session.php b/main/user/add_users_to_session.php old mode 100644 new mode 100755 diff --git a/main/user/resume_session.php b/main/user/resume_session.php old mode 100644 new mode 100755 diff --git a/main/user/session_list.php b/main/user/session_list.php old mode 100644 new mode 100755 diff --git a/news_list.php b/news_list.php old mode 100644 new mode 100755 diff --git a/plugin/add_cas_login_button/css.css b/plugin/add_cas_login_button/css.css old mode 100644 new mode 100755 diff --git a/plugin/add_cas_login_button/index.php b/plugin/add_cas_login_button/index.php old mode 100644 new mode 100755 diff --git a/plugin/add_cas_login_button/plugin.php b/plugin/add_cas_login_button/plugin.php old mode 100644 new mode 100755 diff --git a/plugin/add_cas_login_button/readme.txt b/plugin/add_cas_login_button/readme.txt old mode 100644 new mode 100755 diff --git a/plugin/add_cas_login_button/template.tpl b/plugin/add_cas_login_button/template.tpl old mode 100644 new mode 100755 diff --git a/plugin/add_cas_logout_button/css.css b/plugin/add_cas_logout_button/css.css old mode 100644 new mode 100755 diff --git a/plugin/add_cas_logout_button/index.php b/plugin/add_cas_logout_button/index.php old mode 100644 new mode 100755 diff --git a/plugin/add_cas_logout_button/plugin.php b/plugin/add_cas_logout_button/plugin.php old mode 100644 new mode 100755 diff --git a/plugin/add_cas_logout_button/readme.txt b/plugin/add_cas_logout_button/readme.txt old mode 100644 new mode 100755 diff --git a/plugin/add_cas_logout_button/template.tpl b/plugin/add_cas_logout_button/template.tpl old mode 100644 new mode 100755 diff --git a/plugin/add_facebook_login_button/css.css b/plugin/add_facebook_login_button/css.css old mode 100644 new mode 100755 diff --git a/plugin/add_facebook_login_button/img/index.html b/plugin/add_facebook_login_button/img/index.html old mode 100644 new mode 100755 diff --git a/plugin/add_facebook_login_button/index.php b/plugin/add_facebook_login_button/index.php old mode 100644 new mode 100755 diff --git a/plugin/add_facebook_login_button/plugin.php b/plugin/add_facebook_login_button/plugin.php old mode 100644 new mode 100755 diff --git a/plugin/add_facebook_login_button/readme.txt b/plugin/add_facebook_login_button/readme.txt old mode 100644 new mode 100755 diff --git a/plugin/add_facebook_login_button/template.tpl b/plugin/add_facebook_login_button/template.tpl old mode 100644 new mode 100755 diff --git a/plugin/add_shibboleth_login_button/css.css b/plugin/add_shibboleth_login_button/css.css old mode 100644 new mode 100755 diff --git a/plugin/add_shibboleth_login_button/index.php b/plugin/add_shibboleth_login_button/index.php old mode 100644 new mode 100755 diff --git a/plugin/add_shibboleth_login_button/plugin.php b/plugin/add_shibboleth_login_button/plugin.php old mode 100644 new mode 100755 diff --git a/plugin/add_shibboleth_login_button/readme.txt b/plugin/add_shibboleth_login_button/readme.txt old mode 100644 new mode 100755 diff --git a/plugin/add_shibboleth_login_button/template.tpl b/plugin/add_shibboleth_login_button/template.tpl old mode 100644 new mode 100755 diff --git a/plugin/bbb/config.php b/plugin/bbb/config.php old mode 100644 new mode 100755 diff --git a/plugin/bbb/course_index.php b/plugin/bbb/course_index.php old mode 100644 new mode 100755 diff --git a/plugin/bbb/index.php b/plugin/bbb/index.php old mode 100644 new mode 100755 diff --git a/plugin/bbb/install.php b/plugin/bbb/install.php old mode 100644 new mode 100755 diff --git a/plugin/bbb/lang/english.php b/plugin/bbb/lang/english.php old mode 100644 new mode 100755 diff --git a/plugin/bbb/lang/french.php b/plugin/bbb/lang/french.php old mode 100644 new mode 100755 diff --git a/plugin/bbb/lang/spanish.php b/plugin/bbb/lang/spanish.php old mode 100644 new mode 100755 diff --git a/plugin/bbb/lib/bbb.lib.php b/plugin/bbb/lib/bbb.lib.php old mode 100644 new mode 100755 diff --git a/plugin/bbb/lib/bbb_api.php b/plugin/bbb/lib/bbb_api.php old mode 100644 new mode 100755 diff --git a/plugin/bbb/lib/bbb_plugin.class.php b/plugin/bbb/lib/bbb_plugin.class.php old mode 100644 new mode 100755 diff --git a/plugin/bbb/listing.php b/plugin/bbb/listing.php old mode 100644 new mode 100755 diff --git a/plugin/bbb/listing.tpl b/plugin/bbb/listing.tpl old mode 100644 new mode 100755 diff --git a/plugin/bbb/plugin.php b/plugin/bbb/plugin.php old mode 100644 new mode 100755 diff --git a/plugin/bbb/readme.txt b/plugin/bbb/readme.txt old mode 100644 new mode 100755 diff --git a/plugin/bbb/start.php b/plugin/bbb/start.php old mode 100644 new mode 100755 diff --git a/plugin/bbb/uninstall.php b/plugin/bbb/uninstall.php old mode 100644 new mode 100755 diff --git a/plugin/before_login/index.php b/plugin/before_login/index.php old mode 100644 new mode 100755 diff --git a/plugin/before_login/plugin.php b/plugin/before_login/plugin.php old mode 100644 new mode 100755 diff --git a/plugin/before_login/readme.txt b/plugin/before_login/readme.txt old mode 100644 new mode 100755 diff --git a/plugin/before_login/template.tpl b/plugin/before_login/template.tpl old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_course/block_course.class.php b/plugin/dashboard/block_course/block_course.class.php old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_course/css/index.html b/plugin/dashboard/block_course/css/index.html old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_course/index.html b/plugin/dashboard/block_course/index.html old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_daily/block_daily.class.php b/plugin/dashboard/block_daily/block_daily.class.php old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_daily/block_daily.info b/plugin/dashboard/block_daily/block_daily.info old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_daily/css/default.css b/plugin/dashboard/block_daily/css/default.css old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_daily/css/index.html b/plugin/dashboard/block_daily/css/index.html old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_daily/index.html b/plugin/dashboard/block_daily/index.html old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_evaluation_graph/block_evaluation_graph.class.php b/plugin/dashboard/block_evaluation_graph/block_evaluation_graph.class.php old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_evaluation_graph/block_evaluation_graph.info b/plugin/dashboard/block_evaluation_graph/block_evaluation_graph.info old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_evaluation_graph/css/default.css b/plugin/dashboard/block_evaluation_graph/css/default.css old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_global_info/block_global_info.class.php b/plugin/dashboard/block_global_info/block_global_info.class.php old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_global_info/block_global_info.info b/plugin/dashboard/block_global_info/block_global_info.info old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_global_info/css/default.css b/plugin/dashboard/block_global_info/css/default.css old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_global_info/css/index.html b/plugin/dashboard/block_global_info/css/index.html old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_global_info/index.html b/plugin/dashboard/block_global_info/index.html old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_session/block_session.class.php b/plugin/dashboard/block_session/block_session.class.php old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_session/css/default.css b/plugin/dashboard/block_session/css/default.css old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_session/css/index.html b/plugin/dashboard/block_session/css/index.html old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_session/index.html b/plugin/dashboard/block_session/index.html old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_student/block_student.class.php b/plugin/dashboard/block_student/block_student.class.php old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_student/css/default.css b/plugin/dashboard/block_student/css/default.css old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_student/css/index.html b/plugin/dashboard/block_student/css/index.html old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_student/index.html b/plugin/dashboard/block_student/index.html old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_student_graph/block_student_graph.class.php b/plugin/dashboard/block_student_graph/block_student_graph.class.php old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_teacher/block_teacher.class.php b/plugin/dashboard/block_teacher/block_teacher.class.php old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_teacher/css/default.css b/plugin/dashboard/block_teacher/css/default.css old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_teacher/css/index.html b/plugin/dashboard/block_teacher/css/index.html old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_teacher/index.html b/plugin/dashboard/block_teacher/index.html old mode 100644 new mode 100755 diff --git a/plugin/dashboard/block_teacher_graph/block_teacher_graph.class.php b/plugin/dashboard/block_teacher_graph/block_teacher_graph.class.php old mode 100644 new mode 100755 diff --git a/plugin/dashboard/index.html b/plugin/dashboard/index.html old mode 100644 new mode 100755 diff --git a/plugin/date/index.dsp.php b/plugin/date/index.dsp.php old mode 100644 new mode 100755 diff --git a/plugin/date/plugin.php b/plugin/date/plugin.php old mode 100644 new mode 100755 diff --git a/plugin/follow_buttons/index.php b/plugin/follow_buttons/index.php old mode 100644 new mode 100755 diff --git a/plugin/follow_buttons/plugin.php b/plugin/follow_buttons/plugin.php old mode 100644 new mode 100755 diff --git a/plugin/follow_buttons/readme.txt b/plugin/follow_buttons/readme.txt old mode 100644 new mode 100755 diff --git a/plugin/follow_buttons/template.tpl b/plugin/follow_buttons/template.tpl old mode 100644 new mode 100755 diff --git a/plugin/formLogin_hide_unhide/css.css b/plugin/formLogin_hide_unhide/css.css old mode 100644 new mode 100755 diff --git a/plugin/formLogin_hide_unhide/index.php b/plugin/formLogin_hide_unhide/index.php old mode 100644 new mode 100755 diff --git a/plugin/formLogin_hide_unhide/plugin.php b/plugin/formLogin_hide_unhide/plugin.php old mode 100644 new mode 100755 diff --git a/plugin/formLogin_hide_unhide/readme.txt b/plugin/formLogin_hide_unhide/readme.txt old mode 100644 new mode 100755 diff --git a/plugin/formLogin_hide_unhide/template.tpl b/plugin/formLogin_hide_unhide/template.tpl old mode 100644 new mode 100755 diff --git a/plugin/hello_world/index.php b/plugin/hello_world/index.php old mode 100644 new mode 100755 diff --git a/plugin/hello_world/install.php b/plugin/hello_world/install.php old mode 100644 new mode 100755 diff --git a/plugin/hello_world/lang/english.php b/plugin/hello_world/lang/english.php old mode 100644 new mode 100755 diff --git a/plugin/hello_world/lang/french.php b/plugin/hello_world/lang/french.php old mode 100644 new mode 100755 diff --git a/plugin/hello_world/lang/spanish.php b/plugin/hello_world/lang/spanish.php old mode 100644 new mode 100755 diff --git a/plugin/hello_world/plugin.php b/plugin/hello_world/plugin.php old mode 100644 new mode 100755 diff --git a/plugin/hello_world/readme.txt b/plugin/hello_world/readme.txt old mode 100644 new mode 100755 diff --git a/plugin/hello_world/uninstall.php b/plugin/hello_world/uninstall.php old mode 100644 new mode 100755 diff --git a/plugin/jcapture/JCaptureApplet.html b/plugin/jcapture/JCaptureApplet.html old mode 100644 new mode 100755 diff --git a/plugin/jcapture/action.php b/plugin/jcapture/action.php old mode 100644 new mode 100755 diff --git a/plugin/jcapture/applet.php b/plugin/jcapture/applet.php old mode 100644 new mode 100755 diff --git a/plugin/jcapture/camera.png b/plugin/jcapture/camera.png old mode 100644 new mode 100755 diff --git a/plugin/jcapture/jcapture.jnlp b/plugin/jcapture/jcapture.jnlp old mode 100644 new mode 100755 diff --git a/plugin/jcapture/lib/apache-mime4j-0.6.jar b/plugin/jcapture/lib/apache-mime4j-0.6.jar old mode 100644 new mode 100755 diff --git a/plugin/jcapture/lib/commons-codec-1.3.jar b/plugin/jcapture/lib/commons-codec-1.3.jar old mode 100644 new mode 100755 diff --git a/plugin/jcapture/lib/commons-logging-1.1.1.jar b/plugin/jcapture/lib/commons-logging-1.1.1.jar old mode 100644 new mode 100755 diff --git a/plugin/jcapture/lib/httpclient-4.0.1.jar b/plugin/jcapture/lib/httpclient-4.0.1.jar old mode 100644 new mode 100755 diff --git a/plugin/jcapture/lib/httpcore-4.0.1.jar b/plugin/jcapture/lib/httpcore-4.0.1.jar old mode 100644 new mode 100755 diff --git a/plugin/jcapture/lib/httpmime-4.0.1.jar b/plugin/jcapture/lib/httpmime-4.0.1.jar old mode 100644 new mode 100755 diff --git a/plugin/jcapture/lib/jcapture.jar b/plugin/jcapture/lib/jcapture.jar old mode 100644 new mode 100755 diff --git a/plugin/jcapture/lib/transform-3.0.2.jar b/plugin/jcapture/lib/transform-3.0.2.jar old mode 100644 new mode 100755 diff --git a/plugin/jcapture/license.txt b/plugin/jcapture/license.txt old mode 100644 new mode 100755 diff --git a/plugin/jcapture/plugin.php b/plugin/jcapture/plugin.php old mode 100644 new mode 100755 diff --git a/plugin/jcapture/plugin_applet.php b/plugin/jcapture/plugin_applet.php old mode 100644 new mode 100755 diff --git a/plugin/jcapture/script.js b/plugin/jcapture/script.js old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/META-INF/services/com.hammurapi.jcapture.VideoEncoder b/plugin/jcapture/src/META-INF/services/com.hammurapi.jcapture.VideoEncoder old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/com/hammurapi/jcapture/AWTUtilitiesTranslucener.java b/plugin/jcapture/src/com/hammurapi/jcapture/AWTUtilitiesTranslucener.java old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/com/hammurapi/jcapture/AbstractCaptureApplet.java b/plugin/jcapture/src/com/hammurapi/jcapture/AbstractCaptureApplet.java old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/com/hammurapi/jcapture/ButtonManager.java b/plugin/jcapture/src/com/hammurapi/jcapture/ButtonManager.java old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/com/hammurapi/jcapture/CaptureConfig.java b/plugin/jcapture/src/com/hammurapi/jcapture/CaptureConfig.java old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/com/hammurapi/jcapture/CaptureFrame.java b/plugin/jcapture/src/com/hammurapi/jcapture/CaptureFrame.java old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/com/hammurapi/jcapture/CaptureOptionsDialog.java b/plugin/jcapture/src/com/hammurapi/jcapture/CaptureOptionsDialog.java old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/com/hammurapi/jcapture/ComponentMover.java b/plugin/jcapture/src/com/hammurapi/jcapture/ComponentMover.java old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/com/hammurapi/jcapture/ComponentResizer.java b/plugin/jcapture/src/com/hammurapi/jcapture/ComponentResizer.java old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/com/hammurapi/jcapture/FragmentImpl.java b/plugin/jcapture/src/com/hammurapi/jcapture/FragmentImpl.java old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/com/hammurapi/jcapture/FrameImpl.java b/plugin/jcapture/src/com/hammurapi/jcapture/FrameImpl.java old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/com/hammurapi/jcapture/GraphicsDeviceTranslucener.java b/plugin/jcapture/src/com/hammurapi/jcapture/GraphicsDeviceTranslucener.java old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/com/hammurapi/jcapture/ImageToolTip.java b/plugin/jcapture/src/com/hammurapi/jcapture/ImageToolTip.java old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/com/hammurapi/jcapture/JCaptureApplet.java b/plugin/jcapture/src/com/hammurapi/jcapture/JCaptureApplet.java old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/com/hammurapi/jcapture/MappedImage.java b/plugin/jcapture/src/com/hammurapi/jcapture/MappedImage.java old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/com/hammurapi/jcapture/Movie.java b/plugin/jcapture/src/com/hammurapi/jcapture/Movie.java old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/com/hammurapi/jcapture/MovieEditorDialog.java b/plugin/jcapture/src/com/hammurapi/jcapture/MovieEditorDialog.java old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/com/hammurapi/jcapture/RecordingControlsFrame.java b/plugin/jcapture/src/com/hammurapi/jcapture/RecordingControlsFrame.java old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/com/hammurapi/jcapture/Region.java b/plugin/jcapture/src/com/hammurapi/jcapture/Region.java old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/com/hammurapi/jcapture/ScreenRecorder.java b/plugin/jcapture/src/com/hammurapi/jcapture/ScreenRecorder.java old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/com/hammurapi/jcapture/ScreenShot.java b/plugin/jcapture/src/com/hammurapi/jcapture/ScreenShot.java old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/com/hammurapi/jcapture/ShapeImpl.java b/plugin/jcapture/src/com/hammurapi/jcapture/ShapeImpl.java old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/com/hammurapi/jcapture/SwfEncoder.java b/plugin/jcapture/src/com/hammurapi/jcapture/SwfEncoder.java old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/com/hammurapi/jcapture/Translucener.java b/plugin/jcapture/src/com/hammurapi/jcapture/Translucener.java old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/com/hammurapi/jcapture/VideoEncoder.java b/plugin/jcapture/src/com/hammurapi/jcapture/VideoEncoder.java old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/com/hammurapi/jcapture/WavFile.java b/plugin/jcapture/src/com/hammurapi/jcapture/WavFile.java old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/com/hammurapi/jcapture/WavFileException.java b/plugin/jcapture/src/com/hammurapi/jcapture/WavFileException.java old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/com/hammurapi/jcapture/camera.png b/plugin/jcapture/src/com/hammurapi/jcapture/camera.png old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/com/hammurapi/jcapture/mouse.png b/plugin/jcapture/src/com/hammurapi/jcapture/mouse.png old mode 100644 new mode 100755 diff --git a/plugin/jcapture/src/com/hammurapi/jcapture/toolbar_buttons.swf b/plugin/jcapture/src/com/hammurapi/jcapture/toolbar_buttons.swf old mode 100644 new mode 100755 diff --git a/plugin/jcapture/upload.php b/plugin/jcapture/upload.php old mode 100644 new mode 100755 diff --git a/plugin/olpc_peru_filter/config.php b/plugin/olpc_peru_filter/config.php old mode 100644 new mode 100755 diff --git a/plugin/olpc_peru_filter/index.php b/plugin/olpc_peru_filter/index.php old mode 100644 new mode 100755 diff --git a/plugin/olpc_peru_filter/install.php b/plugin/olpc_peru_filter/install.php old mode 100644 new mode 100755 diff --git a/plugin/olpc_peru_filter/lang/english.php b/plugin/olpc_peru_filter/lang/english.php old mode 100644 new mode 100755 diff --git a/plugin/olpc_peru_filter/lang/spanish.php b/plugin/olpc_peru_filter/lang/spanish.php old mode 100644 new mode 100755 diff --git a/plugin/olpc_peru_filter/lib/olpc_peru_filter_plugin.class.php b/plugin/olpc_peru_filter/lib/olpc_peru_filter_plugin.class.php old mode 100644 new mode 100755 diff --git a/plugin/olpc_peru_filter/plugin.php b/plugin/olpc_peru_filter/plugin.php old mode 100644 new mode 100755 diff --git a/plugin/olpc_peru_filter/readme.txt b/plugin/olpc_peru_filter/readme.txt old mode 100644 new mode 100755 diff --git a/plugin/olpc_peru_filter/uninstall.php b/plugin/olpc_peru_filter/uninstall.php old mode 100644 new mode 100755 diff --git a/plugin/openmeetings/config.php b/plugin/openmeetings/config.php old mode 100644 new mode 100755 diff --git a/plugin/openmeetings/course_index.php b/plugin/openmeetings/course_index.php old mode 100644 new mode 100755 diff --git a/plugin/openmeetings/index.php b/plugin/openmeetings/index.php old mode 100644 new mode 100755 diff --git a/plugin/openmeetings/install.php b/plugin/openmeetings/install.php old mode 100644 new mode 100755 diff --git a/plugin/openmeetings/lang/english.php b/plugin/openmeetings/lang/english.php old mode 100644 new mode 100755 diff --git a/plugin/openmeetings/lang/french.php b/plugin/openmeetings/lang/french.php old mode 100644 new mode 100755 diff --git a/plugin/openmeetings/lang/spanish.php b/plugin/openmeetings/lang/spanish.php old mode 100644 new mode 100755 diff --git a/plugin/openmeetings/lib/openmeetings.class.php b/plugin/openmeetings/lib/openmeetings.class.php old mode 100644 new mode 100755 diff --git a/plugin/openmeetings/lib/openmeetings_api.php b/plugin/openmeetings/lib/openmeetings_api.php old mode 100644 new mode 100755 diff --git a/plugin/openmeetings/lib/openmeetings_gateway.php b/plugin/openmeetings/lib/openmeetings_gateway.php old mode 100644 new mode 100755 diff --git a/plugin/openmeetings/lib/openmeetings_plugin.class.php b/plugin/openmeetings/lib/openmeetings_plugin.class.php old mode 100644 new mode 100755 diff --git a/plugin/openmeetings/lib/openmeetings_rest_service.php b/plugin/openmeetings/lib/openmeetings_rest_service.php old mode 100644 new mode 100755 diff --git a/plugin/openmeetings/lib/room.class.php b/plugin/openmeetings/lib/room.class.php old mode 100644 new mode 100755 diff --git a/plugin/openmeetings/lib/session.class.php b/plugin/openmeetings/lib/session.class.php old mode 100644 new mode 100755 diff --git a/plugin/openmeetings/lib/user.class.php b/plugin/openmeetings/lib/user.class.php old mode 100644 new mode 100755 diff --git a/plugin/openmeetings/listing.php b/plugin/openmeetings/listing.php old mode 100644 new mode 100755 diff --git a/plugin/openmeetings/listing.tpl b/plugin/openmeetings/listing.tpl old mode 100644 new mode 100755 diff --git a/plugin/openmeetings/plugin.php b/plugin/openmeetings/plugin.php old mode 100644 new mode 100755 diff --git a/plugin/openmeetings/readme.txt b/plugin/openmeetings/readme.txt old mode 100644 new mode 100755 diff --git a/plugin/openmeetings/start.php b/plugin/openmeetings/start.php old mode 100644 new mode 100755 diff --git a/plugin/openmeetings/uninstall.php b/plugin/openmeetings/uninstall.php old mode 100644 new mode 100755 diff --git a/plugin/rss/index.php b/plugin/rss/index.php old mode 100644 new mode 100755 diff --git a/plugin/rss/lang/english.php b/plugin/rss/lang/english.php old mode 100644 new mode 100755 diff --git a/plugin/rss/lang/french.php b/plugin/rss/lang/french.php old mode 100644 new mode 100755 diff --git a/plugin/rss/lang/spanish.php b/plugin/rss/lang/spanish.php old mode 100644 new mode 100755 diff --git a/plugin/rss/lib/rss_plugin.class.php b/plugin/rss/lib/rss_plugin.class.php old mode 100644 new mode 100755 diff --git a/plugin/rss/plugin.php b/plugin/rss/plugin.php old mode 100644 new mode 100755 diff --git a/plugin/rss/readme.txt b/plugin/rss/readme.txt old mode 100644 new mode 100755 diff --git a/plugin/rss/resources/arrow-bullet.png b/plugin/rss/resources/arrow-bullet.png old mode 100644 new mode 100755 diff --git a/plugin/rss/resources/color.css b/plugin/rss/resources/color.css old mode 100644 new mode 100755 diff --git a/plugin/rss/resources/rss.css b/plugin/rss/resources/rss.css old mode 100644 new mode 100755 diff --git a/plugin/search_course/index.php b/plugin/search_course/index.php old mode 100644 new mode 100755 diff --git a/plugin/search_course/lang/english.php b/plugin/search_course/lang/english.php old mode 100644 new mode 100755 diff --git a/plugin/search_course/lang/french.php b/plugin/search_course/lang/french.php old mode 100644 new mode 100755 diff --git a/plugin/search_course/lib/register_course_widget.class.php b/plugin/search_course/lib/register_course_widget.class.php old mode 100644 new mode 100755 diff --git a/plugin/search_course/lib/search_course_plugin.class.php b/plugin/search_course/lib/search_course_plugin.class.php old mode 100644 new mode 100755 diff --git a/plugin/search_course/lib/search_course_widget.class.php b/plugin/search_course/lib/search_course_widget.class.php old mode 100644 new mode 100755 diff --git a/plugin/search_course/plugin.php b/plugin/search_course/plugin.php old mode 100644 new mode 100755 diff --git a/plugin/search_course/readme.txt b/plugin/search_course/readme.txt old mode 100644 new mode 100755 diff --git a/plugin/share_buttons/index.php b/plugin/share_buttons/index.php old mode 100644 new mode 100755 diff --git a/plugin/share_buttons/readme.txt b/plugin/share_buttons/readme.txt old mode 100644 new mode 100755 diff --git a/plugin/show_regions/index.php b/plugin/show_regions/index.php old mode 100644 new mode 100755 diff --git a/plugin/show_regions/plugin.php b/plugin/show_regions/plugin.php old mode 100644 new mode 100755 diff --git a/plugin/show_regions/readme.txt b/plugin/show_regions/readme.txt old mode 100644 new mode 100755 diff --git a/plugin/show_user_info/index.php b/plugin/show_user_info/index.php old mode 100644 new mode 100755 diff --git a/plugin/show_user_info/lang/english.php b/plugin/show_user_info/lang/english.php old mode 100644 new mode 100755 diff --git a/plugin/show_user_info/lang/spanish.php b/plugin/show_user_info/lang/spanish.php old mode 100644 new mode 100755 diff --git a/plugin/show_user_info/plugin.php b/plugin/show_user_info/plugin.php old mode 100644 new mode 100755 diff --git a/plugin/show_user_info/readme.txt b/plugin/show_user_info/readme.txt old mode 100644 new mode 100755 diff --git a/plugin/show_user_info/template.tpl b/plugin/show_user_info/template.tpl old mode 100644 new mode 100755 diff --git a/plugin/static/index.php b/plugin/static/index.php old mode 100644 new mode 100755 diff --git a/plugin/static/lang/english.php b/plugin/static/lang/english.php old mode 100644 new mode 100755 diff --git a/plugin/static/lang/french.php b/plugin/static/lang/french.php old mode 100644 new mode 100755 diff --git a/plugin/static/lib/static_plugin.class.php b/plugin/static/lib/static_plugin.class.php old mode 100644 new mode 100755 diff --git a/plugin/static/plugin.php b/plugin/static/plugin.php old mode 100644 new mode 100755 diff --git a/plugin/static/readme.txt b/plugin/static/readme.txt old mode 100644 new mode 100755 diff --git a/plugin/static/resources/static.css b/plugin/static/resources/static.css old mode 100644 new mode 100755 diff --git a/plugin/ticket/config.install.php b/plugin/ticket/config.install.php old mode 100644 new mode 100755 diff --git a/plugin/ticket/config.php b/plugin/ticket/config.php old mode 100644 new mode 100755 diff --git a/plugin/ticket/database.php b/plugin/ticket/database.php old mode 100644 new mode 100755 diff --git a/plugin/ticket/lang/english.php b/plugin/ticket/lang/english.php old mode 100644 new mode 100755 diff --git a/plugin/ticket/lang/french.php b/plugin/ticket/lang/french.php old mode 100644 new mode 100755 diff --git a/plugin/ticket/src/assign_tickets.php b/plugin/ticket/src/assign_tickets.php old mode 100644 new mode 100755 diff --git a/plugin/ticket/src/course_user_list.php b/plugin/ticket/src/course_user_list.php old mode 100644 new mode 100755 diff --git a/plugin/ticket/src/download.php b/plugin/ticket/src/download.php old mode 100644 new mode 100755 diff --git a/plugin/ticket/src/index.php b/plugin/ticket/src/index.php old mode 100644 new mode 100755 diff --git a/plugin/ticket/src/myticket.php b/plugin/ticket/src/myticket.php old mode 100644 new mode 100755 diff --git a/plugin/ticket/src/new_ticket.php b/plugin/ticket/src/new_ticket.php old mode 100644 new mode 100755 diff --git a/plugin/ticket/src/report.php b/plugin/ticket/src/report.php old mode 100644 new mode 100755 diff --git a/plugin/ticket/src/send_ticket.php b/plugin/ticket/src/send_ticket.php old mode 100644 new mode 100755 diff --git a/plugin/ticket/src/test.html b/plugin/ticket/src/test.html old mode 100644 new mode 100755 diff --git a/plugin/ticket/src/ticket.class.php b/plugin/ticket/src/ticket.class.php old mode 100644 new mode 100755 diff --git a/plugin/ticket/src/ticket_assign_log.php b/plugin/ticket/src/ticket_assign_log.php old mode 100644 new mode 100755 diff --git a/plugin/ticket/src/ticket_details.php b/plugin/ticket/src/ticket_details.php old mode 100644 new mode 100755 diff --git a/plugin/ticket/src/ticket_plugin.class.php b/plugin/ticket/src/ticket_plugin.class.php old mode 100644 new mode 100755 diff --git a/plugin/ticket/src/tutor.php b/plugin/ticket/src/tutor.php old mode 100644 new mode 100755 diff --git a/plugin/ticket/src/tutor_report.lib.php b/plugin/ticket/src/tutor_report.lib.php old mode 100644 new mode 100755 diff --git a/plugin/ticket/src/update_report.php b/plugin/ticket/src/update_report.php old mode 100644 new mode 100755 diff --git a/tests/api/README.txt b/tests/api/README.txt old mode 100644 new mode 100755 diff --git a/tests/build.phing.xml b/tests/build.phing.xml old mode 100644 new mode 100755 diff --git a/tests/build.xml b/tests/build.xml old mode 100644 new mode 100755 diff --git a/tests/datafiller/data_courses.php b/tests/datafiller/data_courses.php old mode 100644 new mode 100755 diff --git a/tests/datafiller/fill_courses.php b/tests/datafiller/fill_courses.php old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/640x480/admin.png b/tests/history/1.8.8.2/640x480/admin.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/640x480/agenda.png b/tests/history/1.8.8.2/640x480/agenda.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/640x480/catalog.png b/tests/history/1.8.8.2/640x480/catalog.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/640x480/course-home1.png b/tests/history/1.8.8.2/640x480/course-home1.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/640x480/dashboard.png b/tests/history/1.8.8.2/640x480/dashboard.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/640x480/documents.png b/tests/history/1.8.8.2/640x480/documents.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/640x480/home.png b/tests/history/1.8.8.2/640x480/home.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/640x480/lp.png b/tests/history/1.8.8.2/640x480/lp.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/640x480/online.png b/tests/history/1.8.8.2/640x480/online.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/640x480/portal.png b/tests/history/1.8.8.2/640x480/portal.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/640x480/reporting.png b/tests/history/1.8.8.2/640x480/reporting.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/640x480/reporting2.png b/tests/history/1.8.8.2/640x480/reporting2.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/640x480/reporting3.png b/tests/history/1.8.8.2/640x480/reporting3.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/640x480/sessions.png b/tests/history/1.8.8.2/640x480/sessions.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/640x480/social-profile.png b/tests/history/1.8.8.2/640x480/social-profile.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/640x480/social.png b/tests/history/1.8.8.2/640x480/social.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/640x480/student-session-dashboard.png b/tests/history/1.8.8.2/640x480/student-session-dashboard.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/admin.png b/tests/history/1.8.8.2/admin.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/agenda.png b/tests/history/1.8.8.2/agenda.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/catalog.png b/tests/history/1.8.8.2/catalog.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/course-home1.png b/tests/history/1.8.8.2/course-home1.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/dashboard.png b/tests/history/1.8.8.2/dashboard.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/documents.png b/tests/history/1.8.8.2/documents.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/home.png b/tests/history/1.8.8.2/home.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/lp.png b/tests/history/1.8.8.2/lp.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/online.png b/tests/history/1.8.8.2/online.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/portal.png b/tests/history/1.8.8.2/portal.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/reporting.png b/tests/history/1.8.8.2/reporting.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/reporting2.png b/tests/history/1.8.8.2/reporting2.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/reporting3.png b/tests/history/1.8.8.2/reporting3.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/sessions.png b/tests/history/1.8.8.2/sessions.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/social-profile.png b/tests/history/1.8.8.2/social-profile.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/social.png b/tests/history/1.8.8.2/social.png old mode 100644 new mode 100755 diff --git a/tests/history/1.8.8.2/student-session-dashboard.png b/tests/history/1.8.8.2/student-session-dashboard.png old mode 100644 new mode 100755 diff --git a/tests/history/1.9.0/640x480/course-home1.png b/tests/history/1.9.0/640x480/course-home1.png old mode 100644 new mode 100755 diff --git a/tests/history/1.9.0/chamilito-2d.svg b/tests/history/1.9.0/chamilito-2d.svg old mode 100644 new mode 100755 diff --git a/tests/history/1.9.0/chamilito-3d.blend b/tests/history/1.9.0/chamilito-3d.blend old mode 100644 new mode 100755 diff --git a/tests/history/1.9.0/chamilo-logo-transparent.png b/tests/history/1.9.0/chamilo-logo-transparent.png old mode 100644 new mode 100755 diff --git a/tests/history/1.9.0/chamilo-logo.svg b/tests/history/1.9.0/chamilo-logo.svg old mode 100644 new mode 100755 diff --git a/tests/logs/code-browser/README.txt b/tests/logs/code-browser/README.txt old mode 100644 new mode 100755 diff --git a/tests/logs/index.html b/tests/logs/index.html old mode 100644 new mode 100755 diff --git a/tests/logs/jdepend.xml b/tests/logs/jdepend.xml old mode 100644 new mode 100755 diff --git a/tests/logs/junit.xml b/tests/logs/junit.xml old mode 100644 new mode 100755 diff --git a/tests/main/inc/lib/login.lib.test.php b/tests/main/inc/lib/login.lib.test.php old mode 100644 new mode 100755 diff --git a/tests/phpDocumentor.ini b/tests/phpDocumentor.ini old mode 100644 new mode 100755 diff --git a/tests/phpmd.xml b/tests/phpmd.xml old mode 100644 new mode 100755 diff --git a/tests/phpunit/README.txt b/tests/phpunit/README.txt old mode 100644 new mode 100755 diff --git a/tests/phpunit/autoload.php b/tests/phpunit/autoload.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/AccessTest.class.php b/tests/phpunit/classes/AccessTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/AccessurleditcoursestourlTest.lib.php b/tests/phpunit/classes/AccessurleditcoursestourlTest.lib.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/AccessurledituserstourlTest.lib.php b/tests/phpunit/classes/AccessurledituserstourlTest.lib.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/AddCourseToSessionTest.lib.php b/tests/phpunit/classes/AddCourseToSessionTest.lib.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/AddManySessionToCategoryFunctionsTest.lib.php b/tests/phpunit/classes/AddManySessionToCategoryFunctionsTest.lib.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/AppPluginTest.class.php b/tests/phpunit/classes/AppPluginTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/AppendIteratorTest.class.php b/tests/phpunit/classes/AppendIteratorTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/ArrayIteratorTest.class.php b/tests/phpunit/classes/ArrayIteratorTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/ArrayObjectTest.class.php b/tests/phpunit/classes/ArrayObjectTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/CacheTest.class.php b/tests/phpunit/classes/CacheTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/ConditionalLoginTest.class.php b/tests/phpunit/classes/ConditionalLoginTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/CustomPagesTest.class.php b/tests/phpunit/classes/CustomPagesTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/DateTimeTest.class.php b/tests/phpunit/classes/DateTimeTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/DirectoryTest.class.php b/tests/phpunit/classes/DirectoryTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/DisplayTest.lib.php b/tests/phpunit/classes/DisplayTest.lib.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/EmptyIteratorTest.class.php b/tests/phpunit/classes/EmptyIteratorTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/ErrorExceptionTest.class.php b/tests/phpunit/classes/ErrorExceptionTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/EventsMailTest.class.php b/tests/phpunit/classes/EventsMailTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/ExceptionTest.class.php b/tests/phpunit/classes/ExceptionTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/ImportTest.class.php b/tests/phpunit/classes/ImportTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/JavascriptTest.class.php b/tests/phpunit/classes/JavascriptTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/LocaleTest.class.php b/tests/phpunit/classes/LocaleTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/LoginRedirectionTest.class.php b/tests/phpunit/classes/LoginRedirectionTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/MultipleIteratorTest.class.php b/tests/phpunit/classes/MultipleIteratorTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/NormalizerTest.class.php b/tests/phpunit/classes/NormalizerTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/PageTest.class.php b/tests/phpunit/classes/PageTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/ResponseTest.class.php b/tests/phpunit/classes/ResponseTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/RightsTest.class.php b/tests/phpunit/classes/RightsTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/SessionHandlerTest.class.php b/tests/phpunit/classes/SessionHandlerTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/SessionManager.lib.php b/tests/phpunit/classes/SessionManager.lib.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/TableSortTest.class.php b/tests/phpunit/classes/TableSortTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/UriTest.class.php b/tests/phpunit/classes/UriTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/UserApiKeyManagerTest.class.php b/tests/phpunit/classes/UserApiKeyManagerTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/UserManagerTest.lib.php b/tests/phpunit/classes/UserManagerTest.lib.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/XMLReaderTest.class.php b/tests/phpunit/classes/XMLReaderTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/XMLWriterTest.class.php b/tests/phpunit/classes/XMLWriterTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/ZipArchiveTest.class.php b/tests/phpunit/classes/ZipArchiveTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/ZipTest.class.php b/tests/phpunit/classes/ZipTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/finfoTest.class.php b/tests/phpunit/classes/finfoTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/classes/php_user_filterTest.class.php b/tests/phpunit/classes/php_user_filterTest.class.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/generate_test_classes.php b/tests/phpunit/generate_test_classes.php old mode 100644 new mode 100755 diff --git a/tests/phpunit/phpunit.xml b/tests/phpunit/phpunit.xml old mode 100644 new mode 100755 diff --git a/tests/simpletest_to_junit.xsl b/tests/simpletest_to_junit.xsl old mode 100644 new mode 100755 diff --git a/tests/test_webservices.php b/tests/test_webservices.php old mode 100644 new mode 100755 diff --git a/tests/wipe-out.php b/tests/wipe-out.php old mode 100644 new mode 100755 diff --git a/tests/xhprof/footer.php b/tests/xhprof/footer.php old mode 100644 new mode 100755 diff --git a/tests/xhprof/header.php b/tests/xhprof/header.php old mode 100644 new mode 100755 diff --git a/tests/xhprof/xhprof_html/callgraph.php b/tests/xhprof/xhprof_html/callgraph.php old mode 100644 new mode 100755 diff --git a/tests/xhprof/xhprof_html/css/xhprof.css b/tests/xhprof/xhprof_html/css/xhprof.css old mode 100644 new mode 100755 diff --git a/tests/xhprof/xhprof_html/docs/index.html b/tests/xhprof/xhprof_html/docs/index.html old mode 100644 new mode 100755 diff --git a/tests/xhprof/xhprof_html/docs/sample-callgraph-image.jpg b/tests/xhprof/xhprof_html/docs/sample-callgraph-image.jpg old mode 100644 new mode 100755 diff --git a/tests/xhprof/xhprof_html/docs/sample-diff-report-flat-view.jpg b/tests/xhprof/xhprof_html/docs/sample-diff-report-flat-view.jpg old mode 100644 new mode 100755 diff --git a/tests/xhprof/xhprof_html/docs/sample-diff-report-parent-child-view.jpg b/tests/xhprof/xhprof_html/docs/sample-diff-report-parent-child-view.jpg old mode 100644 new mode 100755 diff --git a/tests/xhprof/xhprof_html/docs/sample-flat-view.jpg b/tests/xhprof/xhprof_html/docs/sample-flat-view.jpg old mode 100644 new mode 100755 diff --git a/tests/xhprof/xhprof_html/docs/sample-parent-child-view.jpg b/tests/xhprof/xhprof_html/docs/sample-parent-child-view.jpg old mode 100644 new mode 100755 diff --git a/tests/xhprof/xhprof_html/index.php b/tests/xhprof/xhprof_html/index.php old mode 100644 new mode 100755 diff --git a/tests/xhprof/xhprof_html/jquery/indicator.gif b/tests/xhprof/xhprof_html/jquery/indicator.gif old mode 100644 new mode 100755 diff --git a/tests/xhprof/xhprof_html/jquery/jquery-1.2.6.js b/tests/xhprof/xhprof_html/jquery/jquery-1.2.6.js old mode 100644 new mode 100755 diff --git a/tests/xhprof/xhprof_html/jquery/jquery.autocomplete.css b/tests/xhprof/xhprof_html/jquery/jquery.autocomplete.css old mode 100644 new mode 100755 diff --git a/tests/xhprof/xhprof_html/jquery/jquery.autocomplete.js b/tests/xhprof/xhprof_html/jquery/jquery.autocomplete.js old mode 100644 new mode 100755 diff --git a/tests/xhprof/xhprof_html/jquery/jquery.tooltip.css b/tests/xhprof/xhprof_html/jquery/jquery.tooltip.css old mode 100644 new mode 100755 diff --git a/tests/xhprof/xhprof_html/jquery/jquery.tooltip.js b/tests/xhprof/xhprof_html/jquery/jquery.tooltip.js old mode 100644 new mode 100755 diff --git a/tests/xhprof/xhprof_html/js/xhprof_report.js b/tests/xhprof/xhprof_html/js/xhprof_report.js old mode 100644 new mode 100755 diff --git a/tests/xhprof/xhprof_html/typeahead.php b/tests/xhprof/xhprof_html/typeahead.php old mode 100644 new mode 100755 diff --git a/tests/xhprof/xhprof_lib/display/typeahead_common.php b/tests/xhprof/xhprof_lib/display/typeahead_common.php old mode 100644 new mode 100755 diff --git a/tests/xhprof/xhprof_lib/display/xhprof.php b/tests/xhprof/xhprof_lib/display/xhprof.php old mode 100644 new mode 100755 diff --git a/tests/xhprof/xhprof_lib/utils/callgraph_utils.php b/tests/xhprof/xhprof_lib/utils/callgraph_utils.php old mode 100644 new mode 100755 diff --git a/tests/xhprof/xhprof_lib/utils/xhprof_lib.php b/tests/xhprof/xhprof_lib/utils/xhprof_lib.php old mode 100644 new mode 100755 diff --git a/tests/xhprof/xhprof_lib/utils/xhprof_runs.php b/tests/xhprof/xhprof_lib/utils/xhprof_runs.php old mode 100644 new mode 100755 diff --git a/user.php b/user.php old mode 100644 new mode 100755 diff --git a/user_portal.php b/user_portal.php old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/.travis.yml b/vendor/alchemy/binary-driver/.travis.yml old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/CHANGELOG.md b/vendor/alchemy/binary-driver/CHANGELOG.md old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/LICENSE b/vendor/alchemy/binary-driver/LICENSE old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/README.md b/vendor/alchemy/binary-driver/README.md old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/composer.json b/vendor/alchemy/binary-driver/composer.json old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/phpunit.xml.dist b/vendor/alchemy/binary-driver/phpunit.xml.dist old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/AbstractBinary.php b/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/AbstractBinary.php old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/BinaryDriverTestCase.php b/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/BinaryDriverTestCase.php old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/BinaryInterface.php b/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/BinaryInterface.php old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/Configuration.php b/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/Configuration.php old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/ConfigurationAwareInterface.php b/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/ConfigurationAwareInterface.php old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/ConfigurationInterface.php b/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/ConfigurationInterface.php old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/Exception/ExceptionInterface.php b/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/Exception/ExceptionInterface.php old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/Exception/ExecutableNotFoundException.php b/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/Exception/ExecutableNotFoundException.php old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/Exception/ExecutionFailureException.php b/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/Exception/ExecutionFailureException.php old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/Exception/InvalidArgumentException.php b/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/Exception/InvalidArgumentException.php old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/Listeners/DebugListener.php b/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/Listeners/DebugListener.php old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/Listeners/ListenerInterface.php b/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/Listeners/ListenerInterface.php old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/Listeners/Listeners.php b/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/Listeners/Listeners.php old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/ProcessBuilderFactory.php b/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/ProcessBuilderFactory.php old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/ProcessBuilderFactoryAwareInterface.php b/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/ProcessBuilderFactoryAwareInterface.php old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/ProcessBuilderFactoryInterface.php b/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/ProcessBuilderFactoryInterface.php old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/ProcessRunner.php b/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/ProcessRunner.php old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/ProcessRunnerAwareInterface.php b/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/ProcessRunnerAwareInterface.php old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/ProcessRunnerInterface.php b/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/ProcessRunnerInterface.php old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/tests/Alchemy/Tests/BinaryDriver/AbstractBinaryTest.php b/vendor/alchemy/binary-driver/tests/Alchemy/Tests/BinaryDriver/AbstractBinaryTest.php old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/tests/Alchemy/Tests/BinaryDriver/AbstractProcessBuilderFactoryTest.php b/vendor/alchemy/binary-driver/tests/Alchemy/Tests/BinaryDriver/AbstractProcessBuilderFactoryTest.php old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/tests/Alchemy/Tests/BinaryDriver/ConfigurationTest.php b/vendor/alchemy/binary-driver/tests/Alchemy/Tests/BinaryDriver/ConfigurationTest.php old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/tests/Alchemy/Tests/BinaryDriver/LTSProcessBuilderFactoryTest.php b/vendor/alchemy/binary-driver/tests/Alchemy/Tests/BinaryDriver/LTSProcessBuilderFactoryTest.php old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/tests/Alchemy/Tests/BinaryDriver/Listeners/DebugListenerTest.php b/vendor/alchemy/binary-driver/tests/Alchemy/Tests/BinaryDriver/Listeners/DebugListenerTest.php old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/tests/Alchemy/Tests/BinaryDriver/Listeners/ListenersTest.php b/vendor/alchemy/binary-driver/tests/Alchemy/Tests/BinaryDriver/Listeners/ListenersTest.php old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/tests/Alchemy/Tests/BinaryDriver/NONLTSProcessBuilderFactoryTest.php b/vendor/alchemy/binary-driver/tests/Alchemy/Tests/BinaryDriver/NONLTSProcessBuilderFactoryTest.php old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/tests/Alchemy/Tests/BinaryDriver/ProcessRunnerTest.php b/vendor/alchemy/binary-driver/tests/Alchemy/Tests/BinaryDriver/ProcessRunnerTest.php old mode 100644 new mode 100755 diff --git a/vendor/alchemy/binary-driver/tests/bootstrap.php b/vendor/alchemy/binary-driver/tests/bootstrap.php old mode 100644 new mode 100755 diff --git a/vendor/autoload.php b/vendor/autoload.php old mode 100644 new mode 100755 diff --git a/vendor/composer/ClassLoader.php b/vendor/composer/ClassLoader.php old mode 100644 new mode 100755 diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php old mode 100644 new mode 100755 diff --git a/vendor/composer/autoload_namespaces.php b/vendor/composer/autoload_namespaces.php old mode 100644 new mode 100755 diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php old mode 100644 new mode 100755 diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/.travis.yml b/vendor/doctrine/cache/.travis.yml old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/LICENSE b/vendor/doctrine/cache/LICENSE old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/README.md b/vendor/doctrine/cache/README.md old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/composer.json b/vendor/doctrine/cache/composer.json old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/lib/Doctrine/Common/Cache/ApcCache.php b/vendor/doctrine/cache/lib/Doctrine/Common/Cache/ApcCache.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/lib/Doctrine/Common/Cache/ArrayCache.php b/vendor/doctrine/cache/lib/Doctrine/Common/Cache/ArrayCache.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/lib/Doctrine/Common/Cache/Cache.php b/vendor/doctrine/cache/lib/Doctrine/Common/Cache/Cache.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/lib/Doctrine/Common/Cache/CacheProvider.php b/vendor/doctrine/cache/lib/Doctrine/Common/Cache/CacheProvider.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/lib/Doctrine/Common/Cache/CouchbaseCache.php b/vendor/doctrine/cache/lib/Doctrine/Common/Cache/CouchbaseCache.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/lib/Doctrine/Common/Cache/FileCache.php b/vendor/doctrine/cache/lib/Doctrine/Common/Cache/FileCache.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/lib/Doctrine/Common/Cache/FilesystemCache.php b/vendor/doctrine/cache/lib/Doctrine/Common/Cache/FilesystemCache.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/lib/Doctrine/Common/Cache/MemcacheCache.php b/vendor/doctrine/cache/lib/Doctrine/Common/Cache/MemcacheCache.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/lib/Doctrine/Common/Cache/MemcachedCache.php b/vendor/doctrine/cache/lib/Doctrine/Common/Cache/MemcachedCache.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/lib/Doctrine/Common/Cache/PhpFileCache.php b/vendor/doctrine/cache/lib/Doctrine/Common/Cache/PhpFileCache.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/lib/Doctrine/Common/Cache/RedisCache.php b/vendor/doctrine/cache/lib/Doctrine/Common/Cache/RedisCache.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/lib/Doctrine/Common/Cache/RiakCache.php b/vendor/doctrine/cache/lib/Doctrine/Common/Cache/RiakCache.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/lib/Doctrine/Common/Cache/WinCacheCache.php b/vendor/doctrine/cache/lib/Doctrine/Common/Cache/WinCacheCache.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/lib/Doctrine/Common/Cache/XcacheCache.php b/vendor/doctrine/cache/lib/Doctrine/Common/Cache/XcacheCache.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/lib/Doctrine/Common/Cache/ZendDataCache.php b/vendor/doctrine/cache/lib/Doctrine/Common/Cache/ZendDataCache.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/phpunit.xml.dist b/vendor/doctrine/cache/phpunit.xml.dist old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/ApcCacheTest.php b/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/ApcCacheTest.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/ArrayCacheTest.php b/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/ArrayCacheTest.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/CacheTest.php b/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/CacheTest.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/CouchbaseCacheTest.php b/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/CouchbaseCacheTest.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/FileCacheTest.php b/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/FileCacheTest.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/FilesystemCacheTest.php b/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/FilesystemCacheTest.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/MemcacheCacheTest.php b/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/MemcacheCacheTest.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/MemcachedCacheTest.php b/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/MemcachedCacheTest.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/PhpFileCacheTest.php b/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/PhpFileCacheTest.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/RedisCacheTest.php b/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/RedisCacheTest.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/RiakCacheTest.php b/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/RiakCacheTest.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/WinCacheCacheTest.php b/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/WinCacheCacheTest.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/XcacheCacheTest.php b/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/XcacheCacheTest.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/ZendDataCacheTest.php b/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/ZendDataCacheTest.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/tests/Doctrine/Tests/DoctrineTestCase.php b/vendor/doctrine/cache/tests/Doctrine/Tests/DoctrineTestCase.php old mode 100644 new mode 100755 diff --git a/vendor/doctrine/cache/tests/Doctrine/Tests/TestInit.php b/vendor/doctrine/cache/tests/Doctrine/Tests/TestInit.php old mode 100644 new mode 100755 diff --git a/vendor/evenement/evenement/.travis.yml b/vendor/evenement/evenement/.travis.yml old mode 100644 new mode 100755 diff --git a/vendor/evenement/evenement/LICENSE b/vendor/evenement/evenement/LICENSE old mode 100644 new mode 100755 diff --git a/vendor/evenement/evenement/README.md b/vendor/evenement/evenement/README.md old mode 100644 new mode 100755 diff --git a/vendor/evenement/evenement/composer.json b/vendor/evenement/evenement/composer.json old mode 100644 new mode 100755 diff --git a/vendor/evenement/evenement/phpunit.xml.dist b/vendor/evenement/evenement/phpunit.xml.dist old mode 100644 new mode 100755 diff --git a/vendor/evenement/evenement/src/Evenement/EventEmitter.php b/vendor/evenement/evenement/src/Evenement/EventEmitter.php old mode 100644 new mode 100755 diff --git a/vendor/evenement/evenement/src/Evenement/EventEmitter2.php b/vendor/evenement/evenement/src/Evenement/EventEmitter2.php old mode 100644 new mode 100755 diff --git a/vendor/evenement/evenement/src/Evenement/EventEmitterInterface.php b/vendor/evenement/evenement/src/Evenement/EventEmitterInterface.php old mode 100644 new mode 100755 diff --git a/vendor/evenement/evenement/tests/Evenement/Tests/EventEmitter2Test.php b/vendor/evenement/evenement/tests/Evenement/Tests/EventEmitter2Test.php old mode 100644 new mode 100755 diff --git a/vendor/evenement/evenement/tests/Evenement/Tests/EventEmitterTest.php b/vendor/evenement/evenement/tests/Evenement/Tests/EventEmitterTest.php old mode 100644 new mode 100755 diff --git a/vendor/evenement/evenement/tests/Evenement/Tests/Listener.php b/vendor/evenement/evenement/tests/Evenement/Tests/Listener.php old mode 100644 new mode 100755 diff --git a/vendor/evenement/evenement/tests/bootstrap.php b/vendor/evenement/evenement/tests/bootstrap.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/CHANGELOG.mdown b/vendor/monolog/monolog/CHANGELOG.mdown old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/LICENSE b/vendor/monolog/monolog/LICENSE old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/README.mdown b/vendor/monolog/monolog/README.mdown old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/composer.json b/vendor/monolog/monolog/composer.json old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/doc/extending.md b/vendor/monolog/monolog/doc/extending.md old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/doc/sockets.md b/vendor/monolog/monolog/doc/sockets.md old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/doc/usage.md b/vendor/monolog/monolog/doc/usage.md old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/phpunit.xml.dist b/vendor/monolog/monolog/phpunit.xml.dist old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/ErrorHandler.php b/vendor/monolog/monolog/src/Monolog/ErrorHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php b/vendor/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php b/vendor/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php b/vendor/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php b/vendor/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Formatter/LineFormatter.php b/vendor/monolog/monolog/src/Monolog/Formatter/LineFormatter.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Formatter/LogstashFormatter.php b/vendor/monolog/monolog/src/Monolog/Formatter/LogstashFormatter.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php b/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php b/vendor/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/AbstractHandler.php b/vendor/monolog/monolog/src/Monolog/Handler/AbstractHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php b/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/AmqpHandler.php b/vendor/monolog/monolog/src/Monolog/Handler/AmqpHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/BufferHandler.php b/vendor/monolog/monolog/src/Monolog/Handler/BufferHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php b/vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php b/vendor/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/CubeHandler.php b/vendor/monolog/monolog/src/Monolog/Handler/CubeHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php b/vendor/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/ErrorLogHandler.php b/vendor/monolog/monolog/src/Monolog/Handler/ErrorLogHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php b/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php b/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php b/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php b/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php b/vendor/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/GelfHandler.php b/vendor/monolog/monolog/src/Monolog/Handler/GelfHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/GroupHandler.php b/vendor/monolog/monolog/src/Monolog/Handler/GroupHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/HandlerInterface.php b/vendor/monolog/monolog/src/Monolog/Handler/HandlerInterface.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/HipChatHandler.php b/vendor/monolog/monolog/src/Monolog/Handler/HipChatHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/MailHandler.php b/vendor/monolog/monolog/src/Monolog/Handler/MailHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php b/vendor/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php b/vendor/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/NativeMailerHandler.php b/vendor/monolog/monolog/src/Monolog/Handler/NativeMailerHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php b/vendor/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/NullHandler.php b/vendor/monolog/monolog/src/Monolog/Handler/NullHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/PushoverHandler.php b/vendor/monolog/monolog/src/Monolog/Handler/PushoverHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/RavenHandler.php b/vendor/monolog/monolog/src/Monolog/Handler/RavenHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/RedisHandler.php b/vendor/monolog/monolog/src/Monolog/Handler/RedisHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php b/vendor/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/SocketHandler.php b/vendor/monolog/monolog/src/Monolog/Handler/SocketHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php b/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php b/vendor/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/SyslogHandler.php b/vendor/monolog/monolog/src/Monolog/Handler/SyslogHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/TestHandler.php b/vendor/monolog/monolog/src/Monolog/Handler/TestHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php b/vendor/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Logger.php b/vendor/monolog/monolog/src/Monolog/Logger.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php b/vendor/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php b/vendor/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php b/vendor/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php b/vendor/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php b/vendor/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php b/vendor/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Processor/UidProcessor.php b/vendor/monolog/monolog/src/Monolog/Processor/UidProcessor.php old mode 100644 new mode 100755 diff --git a/vendor/monolog/monolog/src/Monolog/Processor/WebProcessor.php b/vendor/monolog/monolog/src/Monolog/Processor/WebProcessor.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/CHANGELOG.md b/vendor/php-ffmpeg/php-ffmpeg/CHANGELOG.md old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/LICENSE b/vendor/php-ffmpeg/php-ffmpeg/LICENSE old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/README.md b/vendor/php-ffmpeg/php-ffmpeg/README.md old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/composer.json b/vendor/php-ffmpeg/php-ffmpeg/composer.json old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/phpunit-functional.xml.dist b/vendor/php-ffmpeg/php-ffmpeg/phpunit-functional.xml.dist old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/phpunit.xml.dist b/vendor/php-ffmpeg/php-ffmpeg/phpunit.xml.dist old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Coordinate/AspectRatio.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Coordinate/AspectRatio.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Coordinate/Dimension.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Coordinate/Dimension.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Coordinate/FrameRate.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Coordinate/FrameRate.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Coordinate/Point.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Coordinate/Point.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Coordinate/TimeCode.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Coordinate/TimeCode.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Driver/FFMpegDriver.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Driver/FFMpegDriver.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Driver/FFProbeDriver.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Driver/FFProbeDriver.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Exception/ExceptionInterface.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Exception/ExceptionInterface.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Exception/ExecutableNotFoundException.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Exception/ExecutableNotFoundException.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Exception/InvalidArgumentException.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Exception/InvalidArgumentException.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Exception/LogicException.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Exception/LogicException.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Exception/RuntimeException.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Exception/RuntimeException.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/FFMpeg.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/FFMpeg.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/FFMpegServiceProvider.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/FFMpegServiceProvider.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/FFProbe.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/FFProbe.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/FFProbe/DataMapping/AbstractData.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/FFProbe/DataMapping/AbstractData.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/FFProbe/DataMapping/Format.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/FFProbe/DataMapping/Format.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/FFProbe/DataMapping/Stream.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/FFProbe/DataMapping/Stream.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/FFProbe/DataMapping/StreamCollection.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/FFProbe/DataMapping/StreamCollection.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/FFProbe/Mapper.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/FFProbe/Mapper.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/FFProbe/MapperInterface.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/FFProbe/MapperInterface.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/FFProbe/OptionsTester.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/FFProbe/OptionsTester.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/FFProbe/OptionsTesterInterface.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/FFProbe/OptionsTesterInterface.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/FFProbe/OutputParser.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/FFProbe/OutputParser.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/FFProbe/OutputParserInterface.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/FFProbe/OutputParserInterface.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/Audio/AudioFilterInterface.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/Audio/AudioFilterInterface.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/Audio/AudioFilters.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/Audio/AudioFilters.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/Audio/AudioResamplableFilter.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/Audio/AudioResamplableFilter.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/Audio/SimpleFilter.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/Audio/SimpleFilter.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/FilterInterface.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/FilterInterface.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/FiltersCollection.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/FiltersCollection.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/Frame/DisplayRatioFixerFilter.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/Frame/DisplayRatioFixerFilter.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/Frame/FrameFilterInterface.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/Frame/FrameFilterInterface.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/Frame/FrameFilters.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/Frame/FrameFilters.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/Video/FrameRateFilter.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/Video/FrameRateFilter.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/Video/ResizeFilter.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/Video/ResizeFilter.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/Video/SynchronizeFilter.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/Video/SynchronizeFilter.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/Video/VideoFilterInterface.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/Video/VideoFilterInterface.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/Video/VideoFilters.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/Video/VideoFilters.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/Audio/DefaultAudio.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/Audio/DefaultAudio.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/Audio/Flac.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/Audio/Flac.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/Audio/Mp3.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/Audio/Mp3.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/Audio/Vorbis.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/Audio/Vorbis.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/AudioInterface.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/AudioInterface.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/FormatInterface.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/FormatInterface.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/FrameInterface.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/FrameInterface.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/ProgressListener/AbstractProgressListener.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/ProgressListener/AbstractProgressListener.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/ProgressListener/AudioProgressListener.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/ProgressListener/AudioProgressListener.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/ProgressListener/VideoProgressListener.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/ProgressListener/VideoProgressListener.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/ProgressableInterface.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/ProgressableInterface.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/Video/DefaultVideo.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/Video/DefaultVideo.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/Video/Ogg.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/Video/Ogg.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/Video/WMV.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/Video/WMV.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/Video/WMV3.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/Video/WMV3.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/Video/WebM.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/Video/WebM.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/Video/X264.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/Video/X264.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/VideoInterface.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/VideoInterface.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Media/AbstractMediaType.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Media/AbstractMediaType.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Media/AbstractStreamableMedia.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Media/AbstractStreamableMedia.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Media/Audio.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Media/Audio.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Media/Frame.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Media/Frame.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Media/MediaTypeInterface.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Media/MediaTypeInterface.php old mode 100644 new mode 100755 diff --git a/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Media/Video.php b/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Media/Video.php old mode 100644 new mode 100755 diff --git a/vendor/psr/log/LICENSE b/vendor/psr/log/LICENSE old mode 100644 new mode 100755 diff --git a/vendor/psr/log/Psr/Log/AbstractLogger.php b/vendor/psr/log/Psr/Log/AbstractLogger.php old mode 100644 new mode 100755 diff --git a/vendor/psr/log/Psr/Log/InvalidArgumentException.php b/vendor/psr/log/Psr/Log/InvalidArgumentException.php old mode 100644 new mode 100755 diff --git a/vendor/psr/log/Psr/Log/LogLevel.php b/vendor/psr/log/Psr/Log/LogLevel.php old mode 100644 new mode 100755 diff --git a/vendor/psr/log/Psr/Log/LoggerAwareInterface.php b/vendor/psr/log/Psr/Log/LoggerAwareInterface.php old mode 100644 new mode 100755 diff --git a/vendor/psr/log/Psr/Log/LoggerAwareTrait.php b/vendor/psr/log/Psr/Log/LoggerAwareTrait.php old mode 100644 new mode 100755 diff --git a/vendor/psr/log/Psr/Log/LoggerInterface.php b/vendor/psr/log/Psr/Log/LoggerInterface.php old mode 100644 new mode 100755 diff --git a/vendor/psr/log/Psr/Log/LoggerTrait.php b/vendor/psr/log/Psr/Log/LoggerTrait.php old mode 100644 new mode 100755 diff --git a/vendor/psr/log/Psr/Log/NullLogger.php b/vendor/psr/log/Psr/Log/NullLogger.php old mode 100644 new mode 100755 diff --git a/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php b/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php old mode 100644 new mode 100755 diff --git a/vendor/psr/log/README.md b/vendor/psr/log/README.md old mode 100644 new mode 100755 diff --git a/vendor/psr/log/composer.json b/vendor/psr/log/composer.json old mode 100644 new mode 100755 diff --git a/vendor/symfony/process/Symfony/Component/Process/CHANGELOG.md b/vendor/symfony/process/Symfony/Component/Process/CHANGELOG.md old mode 100644 new mode 100755 diff --git a/vendor/symfony/process/Symfony/Component/Process/Exception/ExceptionInterface.php b/vendor/symfony/process/Symfony/Component/Process/Exception/ExceptionInterface.php old mode 100644 new mode 100755 diff --git a/vendor/symfony/process/Symfony/Component/Process/Exception/InvalidArgumentException.php b/vendor/symfony/process/Symfony/Component/Process/Exception/InvalidArgumentException.php old mode 100644 new mode 100755 diff --git a/vendor/symfony/process/Symfony/Component/Process/Exception/LogicException.php b/vendor/symfony/process/Symfony/Component/Process/Exception/LogicException.php old mode 100644 new mode 100755 diff --git a/vendor/symfony/process/Symfony/Component/Process/Exception/ProcessFailedException.php b/vendor/symfony/process/Symfony/Component/Process/Exception/ProcessFailedException.php old mode 100644 new mode 100755 diff --git a/vendor/symfony/process/Symfony/Component/Process/Exception/RuntimeException.php b/vendor/symfony/process/Symfony/Component/Process/Exception/RuntimeException.php old mode 100644 new mode 100755 diff --git a/vendor/symfony/process/Symfony/Component/Process/ExecutableFinder.php b/vendor/symfony/process/Symfony/Component/Process/ExecutableFinder.php old mode 100644 new mode 100755 diff --git a/vendor/symfony/process/Symfony/Component/Process/LICENSE b/vendor/symfony/process/Symfony/Component/Process/LICENSE old mode 100644 new mode 100755 diff --git a/vendor/symfony/process/Symfony/Component/Process/PhpExecutableFinder.php b/vendor/symfony/process/Symfony/Component/Process/PhpExecutableFinder.php old mode 100644 new mode 100755 diff --git a/vendor/symfony/process/Symfony/Component/Process/PhpProcess.php b/vendor/symfony/process/Symfony/Component/Process/PhpProcess.php old mode 100644 new mode 100755 diff --git a/vendor/symfony/process/Symfony/Component/Process/Process.php b/vendor/symfony/process/Symfony/Component/Process/Process.php old mode 100644 new mode 100755 diff --git a/vendor/symfony/process/Symfony/Component/Process/ProcessBuilder.php b/vendor/symfony/process/Symfony/Component/Process/ProcessBuilder.php old mode 100644 new mode 100755 diff --git a/vendor/symfony/process/Symfony/Component/Process/ProcessUtils.php b/vendor/symfony/process/Symfony/Component/Process/ProcessUtils.php old mode 100644 new mode 100755 diff --git a/vendor/symfony/process/Symfony/Component/Process/README.md b/vendor/symfony/process/Symfony/Component/Process/README.md old mode 100644 new mode 100755 diff --git a/vendor/symfony/process/Symfony/Component/Process/Tests/AbstractProcessTest.php b/vendor/symfony/process/Symfony/Component/Process/Tests/AbstractProcessTest.php old mode 100644 new mode 100755 diff --git a/vendor/symfony/process/Symfony/Component/Process/Tests/NonStopableProcess.php b/vendor/symfony/process/Symfony/Component/Process/Tests/NonStopableProcess.php old mode 100644 new mode 100755 diff --git a/vendor/symfony/process/Symfony/Component/Process/Tests/PhpExecutableFinderTest.php b/vendor/symfony/process/Symfony/Component/Process/Tests/PhpExecutableFinderTest.php old mode 100644 new mode 100755 diff --git a/vendor/symfony/process/Symfony/Component/Process/Tests/PhpProcessTest.php b/vendor/symfony/process/Symfony/Component/Process/Tests/PhpProcessTest.php old mode 100644 new mode 100755 diff --git a/vendor/symfony/process/Symfony/Component/Process/Tests/ProcessBuilderTest.php b/vendor/symfony/process/Symfony/Component/Process/Tests/ProcessBuilderTest.php old mode 100644 new mode 100755 diff --git a/vendor/symfony/process/Symfony/Component/Process/Tests/ProcessFailedExceptionTest.php b/vendor/symfony/process/Symfony/Component/Process/Tests/ProcessFailedExceptionTest.php old mode 100644 new mode 100755 diff --git a/vendor/symfony/process/Symfony/Component/Process/Tests/ProcessInSigchildEnvironment.php b/vendor/symfony/process/Symfony/Component/Process/Tests/ProcessInSigchildEnvironment.php old mode 100644 new mode 100755 diff --git a/vendor/symfony/process/Symfony/Component/Process/Tests/ProcessUtilsTest.php b/vendor/symfony/process/Symfony/Component/Process/Tests/ProcessUtilsTest.php old mode 100644 new mode 100755 diff --git a/vendor/symfony/process/Symfony/Component/Process/Tests/SigchildDisabledProcessTest.php b/vendor/symfony/process/Symfony/Component/Process/Tests/SigchildDisabledProcessTest.php old mode 100644 new mode 100755 diff --git a/vendor/symfony/process/Symfony/Component/Process/Tests/SigchildEnabledProcessTest.php b/vendor/symfony/process/Symfony/Component/Process/Tests/SigchildEnabledProcessTest.php old mode 100644 new mode 100755 diff --git a/vendor/symfony/process/Symfony/Component/Process/Tests/SignalListener.php b/vendor/symfony/process/Symfony/Component/Process/Tests/SignalListener.php old mode 100644 new mode 100755 diff --git a/vendor/symfony/process/Symfony/Component/Process/Tests/SimpleProcessTest.php b/vendor/symfony/process/Symfony/Component/Process/Tests/SimpleProcessTest.php old mode 100644 new mode 100755 diff --git a/vendor/symfony/process/Symfony/Component/Process/composer.json b/vendor/symfony/process/Symfony/Component/Process/composer.json old mode 100644 new mode 100755 diff --git a/vendor/symfony/process/Symfony/Component/Process/phpunit.xml.dist b/vendor/symfony/process/Symfony/Component/Process/phpunit.xml.dist old mode 100644 new mode 100755 diff --git a/whoisonline.php b/whoisonline.php old mode 100644 new mode 100755