Merge branch '1.10.x' of github.com:chamilo/chamilo-lms into 1.10.x

1.10.x
Julio Montoya 9 years ago
commit d5fc0aa2fe
  1. 52
      app/Migrations/Schema/V110/Version20151221150100.php
  2. 9
      documentation/changelog.html
  3. 7
      documentation/installation_guide.html
  4. 10
      main/admin/course_list.php
  5. 4
      main/admin/languages.php
  6. 20
      main/admin/settings.lib.php
  7. 4
      main/document/downloadfolder.inc.php
  8. 2
      main/exercice/hotspot.class.php
  9. 2
      main/exercice/question.class.php
  10. 1
      main/forum/viewthread.php
  11. BIN
      main/img/attendance.gif
  12. BIN
      main/img/blog_admin.gif
  13. BIN
      main/img/btn_next.png
  14. BIN
      main/img/btn_previous.png
  15. BIN
      main/img/btn_stats.png
  16. BIN
      main/img/chat.gif
  17. BIN
      main/img/course_progress.gif
  18. BIN
      main/img/faded_blue_horizontal.png
  19. BIN
      main/img/forum.gif
  20. BIN
      main/img/forum_new_small.gif
  21. BIN
      main/img/forumpost.gif
  22. BIN
      main/img/forumpostnew.gif
  23. BIN
      main/img/html.gif
  24. BIN
      main/img/icons/22/blog.png
  25. BIN
      main/img/icons/22/folder_chat.png
  26. BIN
      main/img/icons/32/folder_chat.png
  27. BIN
      main/img/icons/48/folder_chat.png
  28. 515
      main/img/icons/svg/folder_chat.svg
  29. BIN
      main/img/scorms.gif
  30. BIN
      main/img/scorms_na.gif
  31. BIN
      main/img/scormstatus.gif
  32. BIN
      main/img/screenshot_bandwidth.jpg
  33. BIN
      main/img/screenshot_conf.jpg
  34. BIN
      main/img/statistics.gif
  35. BIN
      main/img/visible.gif
  36. BIN
      main/img/works.gif
  37. BIN
      main/img/works_na.gif
  38. BIN
      main/img/works_new.gif
  39. BIN
      main/img/works_small.gif
  40. BIN
      main/img/wrong.gif
  41. 2
      main/inc/ajax/model.ajax.php
  42. 2
      main/inc/lib/document.lib.php
  43. 2
      main/inc/lib/exercise.lib.php
  44. 2
      main/inc/lib/link.lib.php
  45. 4
      main/inc/lib/myspace.lib.php
  46. 6
      main/inc/lib/tracking.lib.php
  47. 6
      main/install/version.php
  48. 92
      main/lang/brazilian/trad4all.inc.php
  49. 2
      main/mySpace/myStudents.php
  50. 4
      main/mySpace/student.php
  51. 14
      main/survey/survey.lib.php
  52. 2
      main/survey/survey.php
  53. 0
      tests/scripts/fix_migrations_1.9.x_1.10.0.php

@ -0,0 +1,52 @@
<?php
/* For licensing terms, see /license.txt */
namespace Application\Migrations\Schema\V110;
use Application\Migrations\AbstractMigrationChamilo;
use Doctrine\DBAL\Schema\Schema;
/**
* Fix c_quiz_answer's correct field for id_auto
*/
class Version20151221150100 extends AbstractMigrationChamilo
{
/**
* @param Schema $schema
*/
public function up(Schema $schema)
{
$this->addSql("
UPDATE track_e_attempt a
INNER JOIN c_quiz_answer qa
ON a.question_id = qa.question_id
INNER JOIN c_quiz_question q
ON qa.question_id = q.id
SET a.answer = qa.id_auto
WHERE
a.answer = qa.id AND
q.c_id = a.c_id AND
q.type IN (" . MATCHING . ", " . DRAGGABLE . ", " . MATCHING_DRAGGABLE . ")
");
$this->addSql("
UPDATE c_quiz_answer a
INNER JOIN c_quiz_answer b
ON a.question_id = b.question_id
INNER JOIN c_quiz_question q
ON b.question_id = q.id
SET a.correct = b.id_auto
WHERE
a.correct = b.id AND
q.c_id = a.c_id AND
q.type IN (" . MATCHING . ", " . DRAGGABLE . ", " . MATCHING_DRAGGABLE . ")
");
}
/**
* @param Schema $schema
*/
public function down(Schema $schema)
{
}
}

@ -48,7 +48,7 @@
<a name="1.10.2"></a>
<h1>Chamilo 1.10.2 - Alsted, 21st of December 2015</h1>
<h1>Chamilo 1.10.2 - Alsted, 22nd of December 2015</h1>
<h3>Release notes - summary</h3>
<p>Chamilo 1.10.2 is a minor, bugfix version of the 1.10.x branch, with a few new features and bugfixes on top of 1.10.0. Notably, this version enables the migration from 1.9.x to 1.10.2 (many bugs were reported in the migration from 1.9.x to 1.10.0, which were fixed within the 2 months to this minor version).</p>
<h3>Release name</h3>
@ -64,7 +64,7 @@
<h3>Notable new Features</h3>
<h4>For end-users, teachers and Chamilo admins</h4>
<ul>
<li>Migrations from 1.9.x is now possible without major issues.</li>
<li>Migrations from 1.9.x is now possible without major issue (that we know of).</li>
<li>(<a href="https://github.com/chamilo/chamilo-lms/commit/90e2852223d5aad04802f282b7919379084ec624">90e28522</a>) If chamilo exercise added in LP has pass % then change status to passed/failed</li>
<li>(<a href="https://github.com/chamilo/chamilo-lms/commit/edf83bdc0d778d347dcf3e37425369eaaecb1335">edf83bdc</a> - <a href="https://support.chamilo.org/issues/7768">#7768</a>) Add filter by user on sales report</li>
<li>(<a href="https://github.com/chamilo/chamilo-lms/commit/5b26584ff2b2db0b5a33a5c642a431b80ecb2c5b">5b26584f</a> - <a href="https://support.chamilo.org/issues/7768">#7768</a>) Display payment method on sale report</li>
@ -94,7 +94,7 @@
<li>(<a href="https://github.com/chamilo/chamilo-lms/commit/5ac54cf549bd9dfe15fb3f5b9ec977e24afe8c7c">5ac54cf5</a>) Remove deprecated javascript_service_displayed variable to avoid notice</li>
<li>(<a href="https://github.com/chamilo/chamilo-lms/commit/c8bc145b1bbebe0e8c2fdfd56e17fcfeebbffe98">c8bc145b</a>) Delete courses folder after migration if folder is empty.</li>
<li>(<a href="https://github.com/chamilo/chamilo-lms/commit/2b95a8c296a0bf9d2552c775c7a71fec7b574b1a">2b95a8c2</a>) Add "I am a {language} user" and expose background context for tests</li>
<li>(<a href="https://github.com/chamilo/chamilo-lms/commit/b6d11076a24ac3005ea0b5963b9f5e1ce1f34cc5">b6d11076</a> - <a href="https://support.chamilo.org/issues/7898">#7898</a>) Change of <i> to <em> for WCAG support</li>
<li>(<a href="https://github.com/chamilo/chamilo-lms/commit/b6d11076a24ac3005ea0b5963b9f5e1ce1f34cc5">b6d11076</a> - <a href="https://support.chamilo.org/issues/7898">#7898</a>) Change of &lt;i&gt; to &lt;em&gt; for WCAG support</li>
<li>(<a href="https://github.com/chamilo/chamilo-lms/commit/775ef96c85f853daedd93fb05118fcd936315953">775ef96c</a> - <a href="https://support.chamilo.org/issues/7910">#7910</a>) Add curl dependency</li>
<li>(<a href="https://github.com/chamilo/chamilo-lms/commit/a380a6905be8086ea6d22c1194bd5a40bf249852">a380a690</a>) Add possibility to use SVG logo for the platform</li>
<li>(<a href="https://github.com/chamilo/chamilo-lms/commit/2776c37887aa3b3d646a8a4501e823264f6de5cb">2776c378</a> - <a href="https://support.chamilo.org/issues/7909">#7909</a>) Add temporary indexes to speed up migration queries</li>
@ -246,6 +246,9 @@
<li>(<a href="https://github.com/chamilo/chamilo-lms/commit/d16ecc995ba6c9ca067f71002f04c01fb7e8b30a">d16ecc99</a> - <a href="https://support.chamilo.org/issues/8007">#8007</a>) Set Mozilla Firefox as able to play MP3 files</li>
<li>(<a href="https://github.com/chamilo/chamilo-lms/commit/d712139fd837eabf397695390fb34cbecb1fb3a5">d712139f</a> - <a href="https://support.chamilo.org/issues/8004">#8004</a>) fix scroll items forum lpview CT#8004</li>
<li>(<a href="https://github.com/chamilo/chamilo-lms/commit/6645ea2f74eb2c0e88fe34ac559f6caa7fa8b8a0">6645ea2f</a>) Add User Access Overview report</li>
<li>(<a href="https://github.com/chamilo/chamilo-lms/commit/ac29dcda0be27d206cdf50904a4d575cc5351a6c">ac29dcda</a> - <a href="https://support.chamilo.org/issues/8003">#8003</a>) Avoid the filter the Gravatar URL when images are displayed </li>
<li>(<a href="https://github.com/chamilo/chamilo-lms/commit/b9fe27560b89251ff7409ecbfaeb8f1cd7abcd2e">b9fe2756</a> - <a href="https://support.chamilo.org/issues/8013">#8013</a>) Fix SQL queries related to fulltext search engine</li>
<li>(<a href="https://github.com/chamilo/chamilo-lms/commit/4c6d2e9e4899d2544cb7c7ee1aae362c93fb28f7">4c6d2e9e</a>) Fix c_quiz_answer's correct field with id_auto</li>
</ul>
<h3>Stylesheets and theming</h3>
<ul>

@ -315,6 +315,13 @@ As this is only a minor version change from previous 1.10.* versions of Chamilo,
<li> you're done! No other upgrade procedure is required</li>
</ul>
Please note that if you (unluckily) upgraded from any of the 1.9 versions to 1.10.0 against our recommendations, we
provide a patch script that should get most of it in order. The script is available here:<br />
<a href="https://raw.githubusercontent.com/chamilo/chamilo-lms/1.10.x/tests/scripts/fix_migrations_1.9.x_1.10.0.php">https://raw.githubusercontent.com/chamilo/chamilo-lms/1.10.x/tests/scripts/fix_migrations_1.9.x_1.10.0.php</a> or, if
you are using a development version of Chamilo, directly into you tests/scripts/ folder. You should place the file
in the /tests/scripts/ folder, then edit it to remove the "die();" line, then launch it from your browser (after
connecting to your Chamilo site as admin). You should also remove the scripts afterwards.<br />
This script is provided without warranty. Please *always* take a backup before you use it.
<br />

@ -256,19 +256,19 @@ function get_course_visibility_icon($v) {
$style = 'margin-bottom:0;margin-right:5px;';
switch($v) {
case 0:
return Display::return_icon('bullet_red.gif', get_lang('CourseVisibilityClosed'), array('style' => $style));
return Display::return_icon('bullet_red.png', get_lang('CourseVisibilityClosed'), array('style' => $style));
break;
case 1:
return Display::return_icon('bullet_orange.gif', get_lang('Private'), array('style' => $style));
return Display::return_icon('bullet_orange.png', get_lang('Private'), array('style' => $style));
break;
case 2:
return Display::return_icon('bullet_green.gif', get_lang('OpenToThePlatform'), array('style' => $style));
return Display::return_icon('bullet_green.png', get_lang('OpenToThePlatform'), array('style' => $style));
break;
case 3:
return Display::return_icon('bullet_blue.gif', get_lang('OpenToTheWorld'), array('style' => $style));
return Display::return_icon('bullet_blue.png', get_lang('OpenToTheWorld'), array('style' => $style));
break;
case 4:
return Display::return_icon('bullet_grey.gif', get_lang('CourseVisibilityHidden'), array('style' => $style));
return Display::return_icon('bullet_grey.png', get_lang('CourseVisibilityHidden'), array('style' => $style));
break;
default:
return '';

@ -246,7 +246,7 @@ while ($row = Database::fetch_array($result_select)) {
$verified_if_is_father = SubLanguageManager::check_if_language_is_father($row['id']);
$allow_use_sub_language = "&nbsp;<a href='sub_language_add.php?action=definenewsublanguage&id=" . $row['id'] . "'>" . Display::return_icon('new_language.png', get_lang('CreateSubLanguage'), array(), ICON_SIZE_SMALL) . "</a>";
if ($verified_if_is_father === true) {
//$allow_add_term_sub_language = "&nbsp;<a href='sub_language.php?action=registersublanguage&id=".$row['id']."'>".Display::return_icon('2rightarrow.gif', get_lang('AddWordForTheSubLanguage'),array('width'=>ICON_SIZE_SMALL,'height'=>ICON_SIZE_SMALL))."</a>";
//$allow_add_term_sub_language = "&nbsp;<a href='sub_language.php?action=registersublanguage&id=".$row['id']."'>".Display::return_icon('2rightarrow.png', get_lang('AddWordForTheSubLanguage'),array('width'=>ICON_SIZE_SMALL,'height'=>ICON_SIZE_SMALL))."</a>";
$allow_add_term_sub_language = '';
} else {
$allow_add_term_sub_language = '';
@ -254,7 +254,7 @@ while ($row = Database::fetch_array($result_select)) {
} else {
$allow_use_sub_language = '';
$all_information_of_sub_language = SubLanguageManager::get_all_information_of_language($row['id']);
$allow_add_term_sub_language = "&nbsp;<a href='sub_language.php?action=registersublanguage&id=" . Security::remove_XSS($all_information_of_sub_language['parent_id']) . "&sub_language_id=" . Security::remove_XSS($row['id']) . "'>" . Display::return_icon('2rightarrow.gif', get_lang('AddWordForTheSubLanguage'), array('width' => ICON_SIZE_SMALL, 'height' => ICON_SIZE_SMALL)) . "</a>";
$allow_add_term_sub_language = "&nbsp;<a href='sub_language.php?action=registersublanguage&id=" . Security::remove_XSS($all_information_of_sub_language['parent_id']) . "&sub_language_id=" . Security::remove_XSS($row['id']) . "'>" . Display::return_icon('2rightarrow.png', get_lang('AddWordForTheSubLanguage'), array('width' => ICON_SIZE_SMALL, 'height' => ICON_SIZE_SMALL)) . "</a>";
$allow_delete_sub_language = "&nbsp;<a href='sub_language_add.php?action=deletesublanguage&id=" . Security::remove_XSS($all_information_of_sub_language['parent_id']) . "&sub_language_id=" . Security::remove_XSS($row['id']) . "'>" . Display::return_icon('delete.png', get_lang('DeleteSubLanguage'), array('width' => ICON_SIZE_SMALL, 'height' => ICON_SIZE_SMALL)) . "</a>";
}
} else {

@ -719,26 +719,26 @@ function handle_search()
}
*/
$xapian_loaded = Display::return_icon('bullet_green.gif', get_lang('Ok'));
$dir_exists = Display::return_icon('bullet_green.gif', get_lang('Ok'));
$dir_is_writable = Display::return_icon('bullet_green.gif', get_lang('Ok'));
$specific_fields_exists = Display::return_icon('bullet_green.gif', get_lang('Ok'));
$xapian_loaded = Display::return_icon('bullet_green.png', get_lang('Ok'));
$dir_exists = Display::return_icon('bullet_green.png', get_lang('Ok'));
$dir_is_writable = Display::return_icon('bullet_green.png', get_lang('Ok'));
$specific_fields_exists = Display::return_icon('bullet_green.png', get_lang('Ok'));
//Testing specific fields
if (empty($specific_fields)) {
$specific_fields_exists = Display::return_icon('bullet_red.gif', get_lang('AddSpecificSearchField'));
$specific_fields_exists = Display::return_icon('bullet_red.png', get_lang('AddSpecificSearchField'));
}
//Testing xapian extension
if (!extension_loaded('xapian')) {
$xapian_loaded = Display::return_icon('bullet_red.gif', get_lang('Error'));
$xapian_loaded = Display::return_icon('bullet_red.png', get_lang('Error'));
}
//Testing xapian searchdb path
if (!is_dir($xapian_path)) {
$dir_exists = Display::return_icon('bullet_red.gif', get_lang('Error'));
$dir_exists = Display::return_icon('bullet_red.png', get_lang('Error'));
}
//Testing xapian searchdb path is writable
if (!is_writable($xapian_path)) {
$dir_is_writable = Display::return_icon('bullet_red.gif', get_lang('Error'));
$dir_is_writable = Display::return_icon('bullet_red.png', get_lang('Error'));
}
$data[] = array(get_lang('XapianModuleInstalled'),$xapian_loaded);
@ -759,9 +759,9 @@ function handle_search()
foreach($list_of_programs as $program) {
$output = $ret_val = null;
exec("which $program", $output, $ret_val);
$icon = Display::return_icon('bullet_red.gif', get_lang('NotInstalled'));
$icon = Display::return_icon('bullet_red.png', get_lang('NotInstalled'));
if (!empty($output[0])) {
$icon = Display::return_icon('bullet_green.gif', get_lang('Installed'));
$icon = Display::return_icon('bullet_green.png', get_lang('Installed'));
}
$data2[]= array($program, $output[0], $icon);
}

@ -198,7 +198,7 @@ if (api_is_allowed_to_edit()) {
1st: Get all files that are visible in the given path
*/
$querypath = Database::escape_string($querypath);
$sql = "SELECT path, session_id, docs.id, props.to_group_id, docs.c_id
$sql = "SELECT path, docs.session_id, docs.id, props.to_group_id, docs.c_id
FROM $doc_table AS docs
INNER JOIN $prop_table AS props
ON
@ -235,7 +235,7 @@ if (api_is_allowed_to_edit()) {
}
// 2nd: Get all folders that are invisible in the given path
$sql = "SELECT path, session_id, docs.id, props.to_group_id, docs.c_id
$sql = "SELECT path, docs.session_id, docs.id, props.to_group_id, docs.c_id
FROM $doc_table AS docs INNER JOIN $prop_table AS props
ON
docs.id = props.ref AND

@ -34,7 +34,7 @@ class HotSpot extends Question
parent::createForm($form, $fck_config);
if (!isset($_GET['editQuestion'])) {
$form->addElement('file','imageUpload',array('<img src="../img/hotspots.png" />', get_lang('UploadJpgPicture')) );
$form->addElement('file','imageUpload',array('<img src="../img/icons/22/hotspots.png" />', get_lang('UploadJpgPicture')) );
// setting the save button here and not in the question class.php
// Saving a question

@ -965,7 +965,7 @@ abstract class Question
$tbl_se_ref = Database::get_main_table(TABLE_MAIN_SEARCH_ENGINE_REF);
if ($addQs || $rmQs) {
//there's only one row per question on normal db and one document per question on search engine db
$sql = 'SELECT * FROM %
$sql = 'SELECT * FROM %s
WHERE course_code=\'%s\' AND tool_id=\'%s\' AND ref_id_second_level=%s LIMIT 1';
$sql = sprintf($sql, $tbl_se_ref, $course_id, TOOL_QUIZ, $this->id);
} else {

@ -219,7 +219,6 @@ if ($my_message != 'PostDeletedSpecial') {
echo $my_url . '&view=flat">'
. Display::return_icon('forum_listview.png', get_lang('FlatView'), null, ICON_SIZE_MEDIUM)
. '</a>';
//echo $my_url.'&view=threaded">'.Display::return_icon('forum_threadedview.gif', get_lang('ThreadedView')).get_lang('ThreadedView').'</a>';
echo $my_url . '&view=nested">'
. Display::return_icon('forum_nestedview.png', get_lang('NestedView'), null, ICON_SIZE_MEDIUM)
. '</a>';

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 918 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 930 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

@ -585,7 +585,7 @@
id="base"
showgrid="false"
inkscape:zoom="2.9837863"
inkscape:cx="40.958906"
inkscape:cx="-35.215065"
inkscape:cy="36.357604"
inkscape:window-width="1920"
inkscape:window-height="1051"
@ -862,257 +862,262 @@ folder-1.ai</rdf:li></rdf:Alt></dc:title></rdf:Description><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata></x:xmpmeta><xpacket
id="xpacket8">
end='w'</xpacket></metadata><rect
style="opacity:0;fill:#ff9955;fill-opacity:1;stroke:none;stroke-width:0.88;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect6163"
width="102.4"
height="102.4"
x="0"
y="0.18958557"
ry="0" /><g
id="g6129"
transform="matrix(1.068514,0,0,1.068514,-7.0306255,-8.3444915)"><path
style="opacity:0.4"
d="m 101.14847,40.979967 c -0.32906,-0.384903 -0.83163,-0.580346 -1.336187,-0.512539 L 86.934994,42.184533 84.037256,21.130558 c -0.06781,-0.492596 -0.329062,-0.935334 -0.723936,-1.234481 -0.394875,-0.299147 -0.891459,-0.430772 -1.38206,-0.362965 0,0 -44.764377,6.164425 -48.20058,6.637078 -0.01795,-0.127636 -0.05783,-0.420801 -0.05783,-0.420801 -0.502567,-3.655578 -3.737345,-6.238214 -7.209446,-5.761573 l -11.130268,1.533627 c -1.621377,0.223363 -3.073238,1.080919 -4.086349,2.417109 -0.885476,1.168668 -1.3621168,2.634489 -1.3621168,4.126236 0,0.317096 0.02194,0.634192 0.06382,0.951288 l 0.6481518,4.700599 c 0,0 0.01595,0.09573 0.02593,0.14359 0.008,0.06382 5.610006,40.769765 5.610006,40.769765 0.03789,0.271227 0.131625,0.528494 0.279204,0.755845 2.201723,3.428227 4.830229,6.503459 7.811729,9.139942 0.408834,0.360971 0.955276,0.526499 1.493741,0.45271 l 63.907799,-8.800909 c 0.490601,-0.06781 0.935333,-0.327067 1.232486,-0.721942 0.02992,-0.03789 0.04587,-0.07778 0.07179,-0.117664 0.374931,-0.177494 0.678067,-0.496584 0.801715,-0.911402 l 9.608598,-32.042646 c 0.14957,-0.490601 0.0379,-1.0171 -0.29117,-1.403997 z"
id="path551"
inkscape:connector-curvature="0" /><path
style="fill:url(#radialGradient2986)"
d="m 98.023042,39.572819 -48.625368,6.48551 c -0.783766,0.103704 -1.348157,0.797725 -1.292316,1.587474 l 1.954428,27.72695 c 0.05783,0.815675 0.761828,1.435906 1.579497,1.388043 l 37.058346,-2.169814 c 0.626215,-0.03989 1.16468,-0.460687 1.346162,-1.06297 l 9.608606,-32.04464 c 0.145585,-0.486613 0.03789,-1.013112 -0.293164,-1.400009 -0.331056,-0.384902 -0.833623,-0.576356 -1.336191,-0.510544 z"
id="path560"
inkscape:connector-curvature="0" /><path
style="fill:url(#linearGradient2983)"
d="m 49.597105,47.542098 c 0.09174,1.300293 1.858701,26.36284 1.954428,27.726951 1.400008,-0.08177 36.063184,-2.111979 37.058346,-2.169814 0.283193,-0.941316 9.00034,-30.002463 9.610601,-32.042646 -2.161837,0.289175 -47.301145,6.308015 -48.623375,6.485509 z"
id="path567"
inkscape:connector-curvature="0" /><path
style="opacity:0.5;fill:url(#linearGradient2980)"
d="m 48.801374,48.766607 c 0.131624,1.87665 1.764968,25.040609 1.90457,27.010992 2.042177,-0.121653 34.970299,-2.048161 36.430137,-2.133916 0.40684,-1.364111 8.487801,-28.301313 9.367294,-31.236944 -3.145033,0.418806 -45.769511,6.100608 -47.702001,6.359868 z"
id="path574"
inkscape:connector-curvature="0" /><path
style="fill:url(#radialGradient2967)"
d="m 80.138033,18.638503 c 0,0 -44.764377,6.166419 -48.198586,6.639072 -0.01795,-0.127636 -0.05784,-0.420801 -0.05784,-0.420801 -0.502567,-3.655578 -3.737345,-6.240209 -7.207452,-5.761573 l -11.130267,1.533627 c -1.623372,0.221369 -3.073238,1.078924 -4.0863499,2.415115 -0.8854755,1.168668 -1.3641109,2.632495 -1.3641109,4.126236 0,0.317096 0.021937,0.634192 0.065812,0.951288 l 0.6481521,4.700598 c 0,0 0.015954,0.09573 0.023932,0.141597 0.00798,0.06382 5.6120007,40.769765 5.6120007,40.769765 0.03789,0.269232 0.131624,0.528493 0.279204,0.757839 2.203717,3.424238 4.832223,6.49947 7.811728,9.137948 0.408835,0.362965 0.953283,0.526499 1.493742,0.452709 L 87.933807,75.27902 c 0.490601,-0.06581 0.935333,-0.327067 1.23448,-0.719947 0.299147,-0.394874 0.430772,-0.893453 0.362966,-1.384054 L 82.244028,20.237943 c -0.06581,-0.492596 -0.327067,-0.935334 -0.719947,-1.236475 -0.396868,-0.299147 -0.895447,-0.430772 -1.386048,-0.362965 z"
id="path599"
inkscape:connector-curvature="0" /><path
style="fill:url(#radialGradient2963)"
d="m 80.393305,20.491221 -50.051304,6.89235 -0.313107,-2.273519 c -0.362965,-2.638477 -2.648449,-4.503161 -5.101456,-4.164128 l -11.130267,1.533628 c -2.453007,0.337039 -4.150168,2.750159 -3.785209,5.388637 l 0.646158,4.700598 c 0.004,0.03789 0.01396,0.07379 0.01994,0.111682 l 5.615989,40.79968 c 2.084059,3.242755 4.60886,6.210294 7.478678,8.751051 l 63.905805,-8.800909 -7.28523,-52.93907 z"
id="path610"
inkscape:connector-curvature="0" /><path
style="fill:url(#linearGradient2960)"
d="m 13.950733,23.590385 c -1.836763,0.253278 -3.107142,2.104001 -2.827938,4.124242 l 0.648153,4.700598 c 0.277209,2.020241 1.998302,3.458141 3.83706,3.204863 l 11.130268,-1.533627 c 1.838757,-0.251284 3.107141,-2.102008 2.827937,-4.124242 L 28.920055,25.26162 c -0.279204,-2.02024 -2.000297,-3.458141 -3.83706,-3.206857 l -11.132262,1.535622 z"
id="path621"
inkscape:connector-curvature="0" /><path
style="opacity:0.8;fill:url(#linearGradient2957)"
d="m 11.591459,31.096984 c 0.219375,1.591462 4.138202,30.068275 5.897187,42.837869 0.382909,0.510544 0.777783,1.009123 1.182629,1.499724 0.107693,-7.801757 3.306573,-15.836849 9.728264,-20.258244 9.953623,-7.191497 22.148854,-6.325964 33.753768,-9.742225 9.522851,-3.003437 16.219758,-11.730556 17.635721,-21.105827 -0.195443,-1.40998 -0.319091,-2.323376 -0.354988,-2.572665 -2.115968,0.29117 -65.722625,9.050198 -67.842581,9.341368 z"
id="path628"
inkscape:connector-curvature="0" /><path
style="fill:#ffffff"
d="m 25.029148,21.685815 -11.130267,1.533627 c -1.838758,0.253278 -3.107142,2.104002 -2.827938,4.124242 l 0.205415,1.481776 c -0.279204,-2.020241 0.991174,-3.870964 2.827937,-4.124242 L 25.234563,23.16759 c 1.836763,-0.253278 3.559851,1.184623 3.83706,3.204863 l -0.205414,-1.481775 c -0.27721,-2.020241 -1.998303,-3.458141 -3.837061,-3.204863 z"
id="path629"
inkscape:connector-curvature="0" /><path
style="fill:#ffffff"
d="m 11.308267,30.769916 5.861289,42.592568 c 0.434761,0.592312 0.88747,1.168669 1.356134,1.737048 L 13.129076,35.879349 c -0.321085,-2.327365 1.362116,-4.483218 3.759282,-4.81228 L 78.95341,22.519438 c 0.233335,-0.03191 0.464675,-0.03989 0.696016,-0.03789 L 79.497858,21.37869 11.308267,30.769916 Z"
id="path630"
inkscape:connector-curvature="0" /><polygon
transform="matrix(1.9943142,0,0,1.9943142,6.689435,-6.9704859)"
style="fill:#ff3600;fill-opacity:1"
points="31.627,42.053 41.232,40.73 39.817,30.447 38.722,32.001 "
id="polygon653" /><polygon
transform="matrix(1.9943142,0,0,1.9943142,6.689435,-6.9704859)"
style="fill:url(#XMLID_28_)"
points="40.388,40.089 39.334,32.434 33.236,41.074 "
id="polygon660" /><path
style="fill:#ffffff"
d="m 84.705012,61.907144 c -0.07977,-0.58234 -0.153562,-1.128782 -0.221369,-1.619384 -2.203717,3.149023 -7.416854,10.593798 -9.445072,13.495525 0.450715,-0.06182 0.957271,-0.131625 1.499725,-0.207409 2.092035,-2.991471 5.957016,-8.509739 8.166716,-11.668732 z"
id="path661"
inkscape:connector-curvature="0" /></g><g
id="g7358"
transform="matrix(0.61504071,0,0,0.61504071,-66.358754,38.336202)"><path
style="opacity:0.28999999"
d="m 112.10046,63.368639 c 0,10.659886 6.86176,20.702364 18.4946,27.263931 -2.66976,3.389363 -5.24372,5.810032 -7.05337,7.315233 l -5.25862,4.364447 6.82344,-0.37897 c 9.24836,-0.51095 16.92552,-2.21841 22.87181,-5.052104 4.18347,0.815406 8.49044,1.241205 12.82294,1.241205 26.85517,0 48.7008,-15.588514 48.7008,-34.751613 0,-19.160971 -21.84776,-34.751613 -48.7008,-34.751613 -26.85516,-0.0043 -48.7008,15.586384 -48.7008,34.749484 z"
id="path551-9"
inkscape:connector-curvature="0" /><path
style="fill:#aa1000;fill-opacity:0.8745098"
d="m 110.71662,61.412091 c 0,10.662015 6.86175,20.702364 18.49459,27.26606 -2.66976,3.387234 -5.24372,5.810032 -7.05336,7.313104 l -5.25863,4.364445 6.82344,-0.378963 c 9.24836,-0.510959 16.92552,-2.218415 22.87181,-5.052109 4.18348,0.815406 8.49044,1.241205 12.82507,1.241205 26.85304,0 48.7008,-15.588514 48.7008,-34.751613 0,-19.160971 -21.84776,-34.751613 -48.7008,-34.751613 -26.85516,-0.0043 -48.70292,15.586384 -48.70292,34.749484 z"
id="path559"
inkscape:connector-curvature="0" /><path
style="fill:url(#XMLID_14_)"
d="m 159.41954,28.915085 c -25.61183,0 -46.44619,14.577241 -46.44619,32.497006 0,10.934527 7.76445,20.617204 19.63148,26.508138 -3.15943,4.441087 -6.40828,7.647356 -9.00353,9.8019 10.81531,-0.598248 17.99216,-2.776211 22.69937,-5.143656 4.16432,0.860115 8.56495,1.328494 13.12313,1.328494 25.6097,0 46.44407,-14.579369 46.44407,-32.497005 -0.004,-17.917636 -20.83862,-32.494877 -46.44833,-32.494877 z"
id="path574-8"
inkscape:connector-curvature="0" /><path
style="opacity:0.45480006;fill:url(#XMLID_15_-7);fill-opacity:1"
d="m 143.34988,92.578473 c -4.21967,2.12261 -10.43422,4.089803 -19.46755,4.905209 -0.0937,0.07877 -0.18948,0.161804 -0.28315,0.238447 10.20641,-0.566313 17.17035,-2.535635 21.87757,-4.745533 -0.71322,-0.123482 -1.4243,-0.253351 -2.12687,-0.398123 z m 16.06966,-63.663388 c -0.49392,0 -0.98359,0.0064 -1.47326,0.01703 24.93055,0.547152 44.97293,14.905106 44.97293,32.477845 0,17.568481 -20.02961,31.922176 -44.95164,32.477844 0.48328,0.01064 0.96656,0.01916 1.45197,0.01916 25.60971,0 46.44407,-14.579369 46.44407,-32.497005 0,-17.917636 -20.83436,-32.494877 -46.44407,-32.494877 z"
id="path581"
inkscape:connector-curvature="0" /><path
style="fill:url(#XMLID_16_-4)"
d="m 148.64469,92.578473 c -0.21503,0.108579 -0.4407,0.215029 -0.66637,0.321479 3.66187,0.653602 7.49194,1.007015 11.44122,1.007015 0.43432,0 0.86864,-0.0043 1.30082,-0.01277 -4.1856,-0.066 -8.23283,-0.521604 -12.07567,-1.31572 z m -25.04551,5.143656 c 0.8814,-0.04897 1.72874,-0.112836 2.56331,-0.180964 2.56118,-2.152416 5.71635,-5.301202 8.7885,-9.623065 -11.8649,-5.893063 -19.62935,-15.573611 -19.62935,-26.508138 0,-17.645125 20.20205,-32.047788 45.27311,-32.486361 -0.39173,-0.0064 -0.78134,-0.01064 -1.17308,-0.01064 -25.61183,0 -46.44619,14.577241 -46.44619,32.497006 0,10.934527 7.76445,20.617204 19.63148,26.508138 -3.16369,4.443216 -6.41254,7.649485 -9.00778,9.804029 z"
id="path588"
inkscape:connector-curvature="0" /><path
style="opacity:0.66000001;fill:url(#XMLID_17_-3)"
d="m 125.19379,45.693708 c 13.72352,7.670775 29.36526,9.554937 45.37318,5.377846 3.3042,-0.919727 6.6595,-2.033192 9.90196,-3.112593 3.90884,-1.298688 7.93052,-2.616537 11.97135,-3.640585 -6.41466,-8.269023 -19.02897,-13.546806 -33.08886,-13.546806 -14.76034,0 -28.20282,5.94203 -34.15763,14.922138 z"
id="path601"
inkscape:connector-curvature="0" /><path
style="fill:#ea4e00;fill-opacity:1"
d="m 179.9963,69.331958 c -0.004,0 -41.00874,0 -41.01087,0 -0.85159,-0.183093 -1.69681,-0.0149 -2.33338,0.483283 -0.59612,0.468379 -0.93888,1.162432 -0.93888,1.903323 0,9.533647 10.66627,17.287453 23.77663,17.287453 13.11036,0 23.77877,-7.755935 23.77877,-17.287453 0,-0.740891 -0.34277,-1.434944 -0.93889,-1.903323 -0.63657,-0.496056 -1.48391,-0.666376 -2.33338,-0.483283 z"
id="path611"
inkscape:connector-curvature="0" /><path
style="fill:#ff6d00;fill-opacity:1"
d="m 179.9963,69.725823 c -0.004,0 -41.00874,0 -41.01087,0 -0.85159,-0.183094 -1.69681,-0.01703 -2.33338,0.481153 -0.59612,0.470508 -0.93888,1.162432 -0.93888,1.903323 0,9.533647 10.66627,17.287453 23.77663,17.287453 13.11036,0 23.77877,-7.755935 23.77877,-17.287453 0,-0.740891 -0.34277,-1.432815 -0.93889,-1.903323 -0.63657,-0.498185 -1.48391,-0.664247 -2.33338,-0.481153 z"
id="path621-2"
inkscape:connector-curvature="0" /><path
style="fill:url(#XMLID_20_-7)"
d="m 138.98331,70.74987 c -0.67064,0 -1.21566,0.432187 -1.21566,0.966565 0,8.535148 9.74442,15.479935 21.72428,15.479935 11.97774,0 21.72215,-6.944787 21.72215,-15.479935 0,-0.534378 -0.54289,-0.966565 -1.21352,-0.966565 l -41.01725,0 z"
id="path634"
inkscape:connector-curvature="0" /><g
transform="matrix(2.1289967,0,0,2.1289967,109.01342,13.388312)"
id="g635"><g
id="g636"><ellipse
cx="15.882"
cy="18.040001"
rx="3.9790001"
ry="5.8249998"
id="ellipse637"
style="fill:#aa1000;fill-opacity:0.8745098" /><ellipse
style="fill:#b1b1c5"
cx="15.886"
cy="18.098"
rx="3.467"
ry="5.0749998"
id="ellipse638" /><linearGradient
id="linearGradient7112"
gradientUnits="userSpaceOnUse"
x1="37.125"
y1="6.0458999"
x2="43.742199"
y2="6.0458999"
gradientTransform="matrix(0.9962,-0.0872,0.0872,0.9962,-24.7865,15.8203)"><stop
offset="0"
style="stop-color:#FFFFFF"
id="stop7114" /><stop
offset="1"
style="stop-color:#CECEDB"
id="stop7116" /><a:midPointStop
offset="0"
style="stop-color:#FFFFFF"
id="midPointStop642" /><a:midPointStop
offset="0.5"
style="stop-color:#FFFFFF"
id="midPointStop643" /><a:midPointStop
offset="1"
style="stop-color:#CECEDB"
id="midPointStop644" /></linearGradient><ellipse
style="fill:url(#XMLID_21_-2)"
cx="16.021"
cy="18.316999"
rx="3.309"
ry="4.8439999"
id="ellipse645" /><path
style="opacity:0.5;fill:#ffffff"
d="m 14.052,18.249 c 0.451,-2.174 1.952,-3.726 3.442,-3.637 -0.506,-0.419 -1.09,-0.64 -1.695,-0.587 -1.609,0.141 -2.746,2.165 -2.54,4.52 0.096,1.094 0.465,2.066 0.993,2.781 -0.34,-0.857 -0.435,-1.947 -0.2,-3.077 z"
id="path646"
inkscape:connector-curvature="0" /><circle
cx="16.830999"
cy="19.636"
r="1.733"
id="circle647" /><linearGradient
id="linearGradient7121"
gradientUnits="userSpaceOnUse"
x1="41.060501"
y1="4.3544998"
x2="41.060501"
y2="7.6606998"
gradientTransform="matrix(0.9962,-0.0872,0.0872,0.9962,-24.7865,15.8203)"><stop
offset="0"
style="stop-color:#FFFFFF"
id="stop7123" /><stop
offset="1"
style="stop-color:#000000"
id="stop7125" /><a:midPointStop
offset="0"
style="stop-color:#FFFFFF"
id="midPointStop651" /><a:midPointStop
offset="0.5"
style="stop-color:#FFFFFF"
id="midPointStop652" /><a:midPointStop
offset="1"
style="stop-color:#000000"
id="midPointStop653" /></linearGradient><circle
style="fill:url(#XMLID_22_-0)"
cx="16.746"
cy="19.412001"
r="1.353"
id="circle654" /></g><g
id="g655"><ellipse
cx="30.903999"
cy="18.040001"
rx="3.9790001"
ry="5.8249998"
id="ellipse656"
style="fill:#aa1000;fill-opacity:0.8745098" /><ellipse
style="fill:#b1b1c5"
cx="30.899"
cy="18.098"
rx="3.467"
ry="5.0749998"
id="ellipse657" /><linearGradient
id="linearGradient7131"
gradientUnits="userSpaceOnUse"
x1="536.08789"
y1="34.568401"
x2="542.70612"
y2="34.568401"
gradientTransform="matrix(-0.9962,-0.0872,-0.0872,0.9962,571.1264,30.916)"><stop
offset="0"
style="stop-color:#FFFFFF"
id="stop7133" /><stop
offset="1"
style="stop-color:#CECEDB"
id="stop7135" /><a:midPointStop
offset="0"
style="stop-color:#FFFFFF"
id="midPointStop661" /><a:midPointStop
offset="0.5"
style="stop-color:#FFFFFF"
id="midPointStop662" /><a:midPointStop
offset="1"
style="stop-color:#CECEDB"
id="midPointStop663" /></linearGradient><ellipse
style="fill:url(#XMLID_23_-3)"
cx="30.764999"
cy="18.316999"
rx="3.309"
ry="4.8439999"
id="ellipse664" /><path
style="opacity:0.5;fill:#ffffff"
d="m 32.733,18.249 c -0.45,-2.174 -1.95,-3.726 -3.442,-3.637 0.506,-0.419 1.091,-0.64 1.694,-0.587 1.61,0.141 2.748,2.165 2.542,4.52 -0.097,1.094 -0.465,2.066 -0.994,2.781 0.342,-0.857 0.436,-1.947 0.2,-3.077 z"
id="path665"
inkscape:connector-curvature="0" /><circle
cx="29.954"
cy="19.636"
r="1.734"
id="circle666" /><linearGradient
id="linearGradient7140"
gradientUnits="userSpaceOnUse"
x1="540.02441"
y1="32.877899"
x2="540.02441"
y2="36.183701"
gradientTransform="matrix(-0.9962,-0.0872,-0.0872,0.9962,571.1264,30.916)"><stop
offset="0"
style="stop-color:#FFFFFF"
id="stop7142" /><stop
offset="1"
style="stop-color:#000000"
id="stop7144" /><a:midPointStop
offset="0"
style="stop-color:#FFFFFF"
id="midPointStop670" /><a:midPointStop
offset="0.5"
style="stop-color:#FFFFFF"
id="midPointStop671" /><a:midPointStop
offset="1"
style="stop-color:#000000"
id="midPointStop672" /></linearGradient><circle
style="fill:url(#XMLID_24_)"
cx="30.039"
cy="19.412001"
r="1.353"
id="circle673" /></g></g></g></svg>
end='w'</xpacket></metadata><g
id="g3763"
transform="translate(0,-0.18958709)"
inkscape:export-filename="/var/www/chamilo/main/img/icons/48/folder_chat.png"
inkscape:export-xdpi="33.75"
inkscape:export-ydpi="33.75"><rect
ry="0"
y="0.18958557"
x="0"
height="102.4"
width="102.4"
id="rect6163"
style="opacity:0;fill:#ff9955;fill-opacity:1;stroke:none;stroke-width:0.88;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /><g
transform="matrix(1.068514,0,0,1.068514,-7.0306255,-8.3444915)"
id="g6129"><path
inkscape:connector-curvature="0"
id="path551"
d="m 101.14847,40.979967 c -0.32906,-0.384903 -0.83163,-0.580346 -1.336187,-0.512539 L 86.934994,42.184533 84.037256,21.130558 c -0.06781,-0.492596 -0.329062,-0.935334 -0.723936,-1.234481 -0.394875,-0.299147 -0.891459,-0.430772 -1.38206,-0.362965 0,0 -44.764377,6.164425 -48.20058,6.637078 -0.01795,-0.127636 -0.05783,-0.420801 -0.05783,-0.420801 -0.502567,-3.655578 -3.737345,-6.238214 -7.209446,-5.761573 l -11.130268,1.533627 c -1.621377,0.223363 -3.073238,1.080919 -4.086349,2.417109 -0.885476,1.168668 -1.3621168,2.634489 -1.3621168,4.126236 0,0.317096 0.02194,0.634192 0.06382,0.951288 l 0.6481518,4.700599 c 0,0 0.01595,0.09573 0.02593,0.14359 0.008,0.06382 5.610006,40.769765 5.610006,40.769765 0.03789,0.271227 0.131625,0.528494 0.279204,0.755845 2.201723,3.428227 4.830229,6.503459 7.811729,9.139942 0.408834,0.360971 0.955276,0.526499 1.493741,0.45271 l 63.907799,-8.800909 c 0.490601,-0.06781 0.935333,-0.327067 1.232486,-0.721942 0.02992,-0.03789 0.04587,-0.07778 0.07179,-0.117664 0.374931,-0.177494 0.678067,-0.496584 0.801715,-0.911402 l 9.608598,-32.042646 c 0.14957,-0.490601 0.0379,-1.0171 -0.29117,-1.403997 z"
style="opacity:0.4" /><path
inkscape:connector-curvature="0"
id="path560"
d="m 98.023042,39.572819 -48.625368,6.48551 c -0.783766,0.103704 -1.348157,0.797725 -1.292316,1.587474 l 1.954428,27.72695 c 0.05783,0.815675 0.761828,1.435906 1.579497,1.388043 l 37.058346,-2.169814 c 0.626215,-0.03989 1.16468,-0.460687 1.346162,-1.06297 l 9.608606,-32.04464 c 0.145585,-0.486613 0.03789,-1.013112 -0.293164,-1.400009 -0.331056,-0.384902 -0.833623,-0.576356 -1.336191,-0.510544 z"
style="fill:url(#radialGradient2986)" /><path
inkscape:connector-curvature="0"
id="path567"
d="m 49.597105,47.542098 c 0.09174,1.300293 1.858701,26.36284 1.954428,27.726951 1.400008,-0.08177 36.063184,-2.111979 37.058346,-2.169814 0.283193,-0.941316 9.00034,-30.002463 9.610601,-32.042646 -2.161837,0.289175 -47.301145,6.308015 -48.623375,6.485509 z"
style="fill:url(#linearGradient2983)" /><path
inkscape:connector-curvature="0"
id="path574"
d="m 48.801374,48.766607 c 0.131624,1.87665 1.764968,25.040609 1.90457,27.010992 2.042177,-0.121653 34.970299,-2.048161 36.430137,-2.133916 0.40684,-1.364111 8.487801,-28.301313 9.367294,-31.236944 -3.145033,0.418806 -45.769511,6.100608 -47.702001,6.359868 z"
style="opacity:0.5;fill:url(#linearGradient2980)" /><path
inkscape:connector-curvature="0"
id="path599"
d="m 80.138033,18.638503 c 0,0 -44.764377,6.166419 -48.198586,6.639072 -0.01795,-0.127636 -0.05784,-0.420801 -0.05784,-0.420801 -0.502567,-3.655578 -3.737345,-6.240209 -7.207452,-5.761573 l -11.130267,1.533627 c -1.623372,0.221369 -3.073238,1.078924 -4.0863499,2.415115 -0.8854755,1.168668 -1.3641109,2.632495 -1.3641109,4.126236 0,0.317096 0.021937,0.634192 0.065812,0.951288 l 0.6481521,4.700598 c 0,0 0.015954,0.09573 0.023932,0.141597 0.00798,0.06382 5.6120007,40.769765 5.6120007,40.769765 0.03789,0.269232 0.131624,0.528493 0.279204,0.757839 2.203717,3.424238 4.832223,6.49947 7.811728,9.137948 0.408835,0.362965 0.953283,0.526499 1.493742,0.452709 L 87.933807,75.27902 c 0.490601,-0.06581 0.935333,-0.327067 1.23448,-0.719947 0.299147,-0.394874 0.430772,-0.893453 0.362966,-1.384054 L 82.244028,20.237943 c -0.06581,-0.492596 -0.327067,-0.935334 -0.719947,-1.236475 -0.396868,-0.299147 -0.895447,-0.430772 -1.386048,-0.362965 z"
style="fill:url(#radialGradient2967)" /><path
inkscape:connector-curvature="0"
id="path610"
d="m 80.393305,20.491221 -50.051304,6.89235 -0.313107,-2.273519 c -0.362965,-2.638477 -2.648449,-4.503161 -5.101456,-4.164128 l -11.130267,1.533628 c -2.453007,0.337039 -4.150168,2.750159 -3.785209,5.388637 l 0.646158,4.700598 c 0.004,0.03789 0.01396,0.07379 0.01994,0.111682 l 5.615989,40.79968 c 2.084059,3.242755 4.60886,6.210294 7.478678,8.751051 l 63.905805,-8.800909 -7.28523,-52.93907 z"
style="fill:url(#radialGradient2963)" /><path
inkscape:connector-curvature="0"
id="path621"
d="m 13.950733,23.590385 c -1.836763,0.253278 -3.107142,2.104001 -2.827938,4.124242 l 0.648153,4.700598 c 0.277209,2.020241 1.998302,3.458141 3.83706,3.204863 l 11.130268,-1.533627 c 1.838757,-0.251284 3.107141,-2.102008 2.827937,-4.124242 L 28.920055,25.26162 c -0.279204,-2.02024 -2.000297,-3.458141 -3.83706,-3.206857 l -11.132262,1.535622 z"
style="fill:url(#linearGradient2960)" /><path
inkscape:connector-curvature="0"
id="path628"
d="m 11.591459,31.096984 c 0.219375,1.591462 4.138202,30.068275 5.897187,42.837869 0.382909,0.510544 0.777783,1.009123 1.182629,1.499724 0.107693,-7.801757 3.306573,-15.836849 9.728264,-20.258244 9.953623,-7.191497 22.148854,-6.325964 33.753768,-9.742225 9.522851,-3.003437 16.219758,-11.730556 17.635721,-21.105827 -0.195443,-1.40998 -0.319091,-2.323376 -0.354988,-2.572665 -2.115968,0.29117 -65.722625,9.050198 -67.842581,9.341368 z"
style="opacity:0.8;fill:url(#linearGradient2957)" /><path
inkscape:connector-curvature="0"
id="path629"
d="m 25.029148,21.685815 -11.130267,1.533627 c -1.838758,0.253278 -3.107142,2.104002 -2.827938,4.124242 l 0.205415,1.481776 c -0.279204,-2.020241 0.991174,-3.870964 2.827937,-4.124242 L 25.234563,23.16759 c 1.836763,-0.253278 3.559851,1.184623 3.83706,3.204863 l -0.205414,-1.481775 c -0.27721,-2.020241 -1.998303,-3.458141 -3.837061,-3.204863 z"
style="fill:#ffffff" /><path
inkscape:connector-curvature="0"
id="path630"
d="m 11.308267,30.769916 5.861289,42.592568 c 0.434761,0.592312 0.88747,1.168669 1.356134,1.737048 L 13.129076,35.879349 c -0.321085,-2.327365 1.362116,-4.483218 3.759282,-4.81228 L 78.95341,22.519438 c 0.233335,-0.03191 0.464675,-0.03989 0.696016,-0.03789 L 79.497858,21.37869 11.308267,30.769916 Z"
style="fill:#ffffff" /><polygon
id="polygon653"
points="41.232,40.73 39.817,30.447 38.722,32.001 31.627,42.053 "
style="fill:#ff3600;fill-opacity:1"
transform="matrix(1.9943142,0,0,1.9943142,6.689435,-6.9704859)" /><polygon
id="polygon660"
points="39.334,32.434 33.236,41.074 40.388,40.089 "
style="fill:url(#XMLID_28_)"
transform="matrix(1.9943142,0,0,1.9943142,6.689435,-6.9704859)" /><path
inkscape:connector-curvature="0"
id="path661"
d="m 84.705012,61.907144 c -0.07977,-0.58234 -0.153562,-1.128782 -0.221369,-1.619384 -2.203717,3.149023 -7.416854,10.593798 -9.445072,13.495525 0.450715,-0.06182 0.957271,-0.131625 1.499725,-0.207409 2.092035,-2.991471 5.957016,-8.509739 8.166716,-11.668732 z"
style="fill:#ffffff" /></g><g
transform="matrix(0.61504071,0,0,0.61504071,-66.358754,38.336202)"
id="g7358"><path
inkscape:connector-curvature="0"
id="path551-9"
d="m 112.10046,63.368639 c 0,10.659886 6.86176,20.702364 18.4946,27.263931 -2.66976,3.389363 -5.24372,5.810032 -7.05337,7.315233 l -5.25862,4.364447 6.82344,-0.37897 c 9.24836,-0.51095 16.92552,-2.21841 22.87181,-5.052104 4.18347,0.815406 8.49044,1.241205 12.82294,1.241205 26.85517,0 48.7008,-15.588514 48.7008,-34.751613 0,-19.160971 -21.84776,-34.751613 -48.7008,-34.751613 -26.85516,-0.0043 -48.7008,15.586384 -48.7008,34.749484 z"
style="opacity:0.28999999" /><path
inkscape:connector-curvature="0"
id="path559"
d="m 110.71662,61.412091 c 0,10.662015 6.86175,20.702364 18.49459,27.26606 -2.66976,3.387234 -5.24372,5.810032 -7.05336,7.313104 l -5.25863,4.364445 6.82344,-0.378963 c 9.24836,-0.510959 16.92552,-2.218415 22.87181,-5.052109 4.18348,0.815406 8.49044,1.241205 12.82507,1.241205 26.85304,0 48.7008,-15.588514 48.7008,-34.751613 0,-19.160971 -21.84776,-34.751613 -48.7008,-34.751613 -26.85516,-0.0043 -48.70292,15.586384 -48.70292,34.749484 z"
style="fill:#aa1000;fill-opacity:0.8745098" /><path
inkscape:connector-curvature="0"
id="path574-8"
d="m 159.41954,28.915085 c -25.61183,0 -46.44619,14.577241 -46.44619,32.497006 0,10.934527 7.76445,20.617204 19.63148,26.508138 -3.15943,4.441087 -6.40828,7.647356 -9.00353,9.8019 10.81531,-0.598248 17.99216,-2.776211 22.69937,-5.143656 4.16432,0.860115 8.56495,1.328494 13.12313,1.328494 25.6097,0 46.44407,-14.579369 46.44407,-32.497005 -0.004,-17.917636 -20.83862,-32.494877 -46.44833,-32.494877 z"
style="fill:url(#XMLID_14_)" /><path
inkscape:connector-curvature="0"
id="path581"
d="m 143.34988,92.578473 c -4.21967,2.12261 -10.43422,4.089803 -19.46755,4.905209 -0.0937,0.07877 -0.18948,0.161804 -0.28315,0.238447 10.20641,-0.566313 17.17035,-2.535635 21.87757,-4.745533 -0.71322,-0.123482 -1.4243,-0.253351 -2.12687,-0.398123 z m 16.06966,-63.663388 c -0.49392,0 -0.98359,0.0064 -1.47326,0.01703 24.93055,0.547152 44.97293,14.905106 44.97293,32.477845 0,17.568481 -20.02961,31.922176 -44.95164,32.477844 0.48328,0.01064 0.96656,0.01916 1.45197,0.01916 25.60971,0 46.44407,-14.579369 46.44407,-32.497005 0,-17.917636 -20.83436,-32.494877 -46.44407,-32.494877 z"
style="opacity:0.45480006;fill:url(#XMLID_15_-7);fill-opacity:1" /><path
inkscape:connector-curvature="0"
id="path588"
d="m 148.64469,92.578473 c -0.21503,0.108579 -0.4407,0.215029 -0.66637,0.321479 3.66187,0.653602 7.49194,1.007015 11.44122,1.007015 0.43432,0 0.86864,-0.0043 1.30082,-0.01277 -4.1856,-0.066 -8.23283,-0.521604 -12.07567,-1.31572 z m -25.04551,5.143656 c 0.8814,-0.04897 1.72874,-0.112836 2.56331,-0.180964 2.56118,-2.152416 5.71635,-5.301202 8.7885,-9.623065 -11.8649,-5.893063 -19.62935,-15.573611 -19.62935,-26.508138 0,-17.645125 20.20205,-32.047788 45.27311,-32.486361 -0.39173,-0.0064 -0.78134,-0.01064 -1.17308,-0.01064 -25.61183,0 -46.44619,14.577241 -46.44619,32.497006 0,10.934527 7.76445,20.617204 19.63148,26.508138 -3.16369,4.443216 -6.41254,7.649485 -9.00778,9.804029 z"
style="fill:url(#XMLID_16_-4)" /><path
inkscape:connector-curvature="0"
id="path601"
d="m 125.19379,45.693708 c 13.72352,7.670775 29.36526,9.554937 45.37318,5.377846 3.3042,-0.919727 6.6595,-2.033192 9.90196,-3.112593 3.90884,-1.298688 7.93052,-2.616537 11.97135,-3.640585 -6.41466,-8.269023 -19.02897,-13.546806 -33.08886,-13.546806 -14.76034,0 -28.20282,5.94203 -34.15763,14.922138 z"
style="opacity:0.66000001;fill:url(#XMLID_17_-3)" /><path
inkscape:connector-curvature="0"
id="path611"
d="m 179.9963,69.331958 c -0.004,0 -41.00874,0 -41.01087,0 -0.85159,-0.183093 -1.69681,-0.0149 -2.33338,0.483283 -0.59612,0.468379 -0.93888,1.162432 -0.93888,1.903323 0,9.533647 10.66627,17.287453 23.77663,17.287453 13.11036,0 23.77877,-7.755935 23.77877,-17.287453 0,-0.740891 -0.34277,-1.434944 -0.93889,-1.903323 -0.63657,-0.496056 -1.48391,-0.666376 -2.33338,-0.483283 z"
style="fill:#ea4e00;fill-opacity:1" /><path
inkscape:connector-curvature="0"
id="path621-2"
d="m 179.9963,69.725823 c -0.004,0 -41.00874,0 -41.01087,0 -0.85159,-0.183094 -1.69681,-0.01703 -2.33338,0.481153 -0.59612,0.470508 -0.93888,1.162432 -0.93888,1.903323 0,9.533647 10.66627,17.287453 23.77663,17.287453 13.11036,0 23.77877,-7.755935 23.77877,-17.287453 0,-0.740891 -0.34277,-1.432815 -0.93889,-1.903323 -0.63657,-0.498185 -1.48391,-0.664247 -2.33338,-0.481153 z"
style="fill:#ff6d00;fill-opacity:1" /><path
inkscape:connector-curvature="0"
id="path634"
d="m 138.98331,70.74987 c -0.67064,0 -1.21566,0.432187 -1.21566,0.966565 0,8.535148 9.74442,15.479935 21.72428,15.479935 11.97774,0 21.72215,-6.944787 21.72215,-15.479935 0,-0.534378 -0.54289,-0.966565 -1.21352,-0.966565 l -41.01725,0 z"
style="fill:url(#XMLID_20_-7)" /><g
id="g635"
transform="matrix(2.1289967,0,0,2.1289967,109.01342,13.388312)"><g
id="g636"><ellipse
style="fill:#aa1000;fill-opacity:0.8745098"
id="ellipse637"
ry="5.8249998"
rx="3.9790001"
cy="18.040001"
cx="15.882" /><ellipse
id="ellipse638"
ry="5.0749998"
rx="3.467"
cy="18.098"
cx="15.886"
style="fill:#b1b1c5" /><linearGradient
gradientTransform="matrix(0.9962,-0.0872,0.0872,0.9962,-24.7865,15.8203)"
y2="6.0458999"
x2="43.742199"
y1="6.0458999"
x1="37.125"
gradientUnits="userSpaceOnUse"
id="linearGradient7112"><stop
id="stop7114"
style="stop-color:#FFFFFF"
offset="0" /><stop
id="stop7116"
style="stop-color:#CECEDB"
offset="1" /><a:midPointStop
id="midPointStop642"
style="stop-color:#FFFFFF"
offset="0" /><a:midPointStop
id="midPointStop643"
style="stop-color:#FFFFFF"
offset="0.5" /><a:midPointStop
id="midPointStop644"
style="stop-color:#CECEDB"
offset="1" /></linearGradient><ellipse
id="ellipse645"
ry="4.8439999"
rx="3.309"
cy="18.316999"
cx="16.021"
style="fill:url(#XMLID_21_-2)" /><path
inkscape:connector-curvature="0"
id="path646"
d="m 14.052,18.249 c 0.451,-2.174 1.952,-3.726 3.442,-3.637 -0.506,-0.419 -1.09,-0.64 -1.695,-0.587 -1.609,0.141 -2.746,2.165 -2.54,4.52 0.096,1.094 0.465,2.066 0.993,2.781 -0.34,-0.857 -0.435,-1.947 -0.2,-3.077 z"
style="opacity:0.5;fill:#ffffff" /><circle
id="circle647"
r="1.733"
cy="19.636"
cx="16.830999" /><linearGradient
gradientTransform="matrix(0.9962,-0.0872,0.0872,0.9962,-24.7865,15.8203)"
y2="7.6606998"
x2="41.060501"
y1="4.3544998"
x1="41.060501"
gradientUnits="userSpaceOnUse"
id="linearGradient7121"><stop
id="stop7123"
style="stop-color:#FFFFFF"
offset="0" /><stop
id="stop7125"
style="stop-color:#000000"
offset="1" /><a:midPointStop
id="midPointStop651"
style="stop-color:#FFFFFF"
offset="0" /><a:midPointStop
id="midPointStop652"
style="stop-color:#FFFFFF"
offset="0.5" /><a:midPointStop
id="midPointStop653"
style="stop-color:#000000"
offset="1" /></linearGradient><circle
id="circle654"
r="1.353"
cy="19.412001"
cx="16.746"
style="fill:url(#XMLID_22_-0)" /></g><g
id="g655"><ellipse
style="fill:#aa1000;fill-opacity:0.8745098"
id="ellipse656"
ry="5.8249998"
rx="3.9790001"
cy="18.040001"
cx="30.903999" /><ellipse
id="ellipse657"
ry="5.0749998"
rx="3.467"
cy="18.098"
cx="30.899"
style="fill:#b1b1c5" /><linearGradient
gradientTransform="matrix(-0.9962,-0.0872,-0.0872,0.9962,571.1264,30.916)"
y2="34.568401"
x2="542.70612"
y1="34.568401"
x1="536.08789"
gradientUnits="userSpaceOnUse"
id="linearGradient7131"><stop
id="stop7133"
style="stop-color:#FFFFFF"
offset="0" /><stop
id="stop7135"
style="stop-color:#CECEDB"
offset="1" /><a:midPointStop
id="midPointStop661"
style="stop-color:#FFFFFF"
offset="0" /><a:midPointStop
id="midPointStop662"
style="stop-color:#FFFFFF"
offset="0.5" /><a:midPointStop
id="midPointStop663"
style="stop-color:#CECEDB"
offset="1" /></linearGradient><ellipse
id="ellipse664"
ry="4.8439999"
rx="3.309"
cy="18.316999"
cx="30.764999"
style="fill:url(#XMLID_23_-3)" /><path
inkscape:connector-curvature="0"
id="path665"
d="m 32.733,18.249 c -0.45,-2.174 -1.95,-3.726 -3.442,-3.637 0.506,-0.419 1.091,-0.64 1.694,-0.587 1.61,0.141 2.748,2.165 2.542,4.52 -0.097,1.094 -0.465,2.066 -0.994,2.781 0.342,-0.857 0.436,-1.947 0.2,-3.077 z"
style="opacity:0.5;fill:#ffffff" /><circle
id="circle666"
r="1.734"
cy="19.636"
cx="29.954" /><linearGradient
gradientTransform="matrix(-0.9962,-0.0872,-0.0872,0.9962,571.1264,30.916)"
y2="36.183701"
x2="540.02441"
y1="32.877899"
x1="540.02441"
gradientUnits="userSpaceOnUse"
id="linearGradient7140"><stop
id="stop7142"
style="stop-color:#FFFFFF"
offset="0" /><stop
id="stop7144"
style="stop-color:#000000"
offset="1" /><a:midPointStop
id="midPointStop670"
style="stop-color:#FFFFFF"
offset="0" /><a:midPointStop
id="midPointStop671"
style="stop-color:#FFFFFF"
offset="0.5" /><a:midPointStop
id="midPointStop672"
style="stop-color:#000000"
offset="1" /></linearGradient><circle
id="circle673"
r="1.353"
cy="19.412001"
cx="30.039"
style="fill:url(#XMLID_24_)" /></g></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 57 KiB

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 971 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 608 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1012 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 686 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 592 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 170 B

@ -960,7 +960,7 @@ switch ($action) {
'date' => $session_date_string,
'course_per_session' => $count_courses_in_session,
'student_per_session' => $count_users_in_session,
'details' => Display::url(Display::return_icon('2rightarrow.gif'), $sessionUrl)
'details' => Display::url(Display::return_icon('2rightarrow.png'), $sessionUrl)
);
}
}

@ -5505,7 +5505,7 @@ class DocumentManager
$basename = get_lang('Gallery');
}
} elseif ($path == '/chat_files') {
$icon = 'folder_chat.gif';
$icon = 'folder_chat.png';
if (api_is_allowed_to_edit()) {
$basename = get_lang('HelpFolderChat');
} else {

@ -141,7 +141,7 @@ class ExerciseLib
$select_items[0]['letter'] = '--';
$select_items[0]['answer'] = '';
foreach ($answer_matching as $id => $value) {
$select_items[$i]['id'] = $value['id'];
$select_items[$i]['id'] = $value['id_auto'];
$select_items[$i]['letter'] = $cpt1[$id];
$select_items[$i]['answer'] = $value['answer'];
$i++;

@ -306,7 +306,7 @@ class Link extends Model
$tbl_se_ref = Database:: get_main_table(
TABLE_MAIN_SEARCH_ENGINE_REF
);
$sql = 'INSERT INTO %s (c_id, id, course_code, tool_id, ref_id_high_level, search_did)
$sql = 'INSERT INTO %s (id, course_code, tool_id, ref_id_high_level, search_did)
VALUES (NULL , \'%s\', \'%s\', %s, %s)';
$sql = sprintf(
$sql,

@ -463,7 +463,7 @@ class MySpace
$table_row[] = $nb_students;
$table_row[] = $nb_courses;
$table_row[] = $nb_sessions;
$table_row[] = '<a href="session.php?id_coach='.$coaches['user_id'].'"><img src="'.api_get_path(WEB_IMG_PATH).'2rightarrow.gif" border="0" /></a>';
$table_row[] = '<a href="session.php?id_coach='.$coaches['user_id'].'"><img src="'.api_get_path(WEB_IMG_PATH).'icons/22/2rightarrow.png" border="0" /></a>';
$all_datas[] = $table_row;
if ($is_western_name_order) {
@ -2167,7 +2167,7 @@ class MySpace
//set the "from" value to know if I access the Reporting by the chamilo tab or the course link
$table_row[] = '<center><a href="../../tracking/courseLog.php?cidReq=' .$course_code.'&from=myspace&id_session='.$session_id.'">
<img src="'.api_get_path(WEB_IMG_PATH).'2rightarrow.gif" border="0" /></a>
<img src="'.api_get_path(WEB_IMG_PATH).'icons/22/2rightarrow.png" border="0" /></a>
</center>';
$csv_content[] = array(
api_html_entity_decode($row_course[1], ENT_QUOTES, $charset),

@ -4442,9 +4442,9 @@ class Tracking
$html .= Display::tag('td', ExerciseLib::convert_to_percentage($all_average));
if (isset($_GET['session_id']) && $my_session_id == $_GET['session_id']) {
$icon = Display::url(Display::return_icon('2rightarrow_na.gif', get_lang('Details')), '?session_id='.$my_session_id);
$icon = Display::url(Display::return_icon('2rightarrow_na.png', get_lang('Details')), '?session_id='.$my_session_id);
} else {
$icon = Display::url(Display::return_icon('2rightarrow.gif', get_lang('Details')), '?session_id='.$my_session_id);
$icon = Display::url(Display::return_icon('2rightarrow.png', get_lang('Details')), '?session_id='.$my_session_id);
}
$html .= Display::tag('td', $icon);
$html .= '</tr>';
@ -6363,7 +6363,7 @@ class TrackingCourseLog
$user['survey'] = (isset($survey_user_list[$user['user_id']]) ? $survey_user_list[$user['user_id']] : 0) .' / '.$total_surveys;
}
$user['link'] = '<center><a href="../mySpace/myStudents.php?student='.$user['user_id'].'&details=true&course='.$course_code.'&origin=tracking_course&id_session='.$session_id.'"><img src="'.api_get_path(WEB_IMG_PATH).'2rightarrow.gif" border="0" /></a></center>';
$user['link'] = '<center><a href="../mySpace/myStudents.php?student='.$user['user_id'].'&details=true&course='.$course_code.'&origin=tracking_course&id_session='.$session_id.'"><img src="'.api_get_path(WEB_IMG_PATH).'icons/22/2rightarrow.png" border="0" /></a></center>';
// store columns in array $users

@ -13,10 +13,10 @@
/**
* Variables used from the main/install/index.php
*/
$new_version = '1.10.0';
$new_version_status = 'alpha';
$new_version = '1.10.2';
$new_version_status = 'stable';
$new_version_last_id = 0;
$new_version_stable = false;
$new_version_stable = true;
$new_version_major = true;
$software_name = 'Chamilo';
$software_url = 'http://www.chamilo.org/';

@ -1132,6 +1132,7 @@ $AdminPass = "Senha do Administrador (<font color=\"red\">você poderá alterar
$EducationManager = "Gerente do projeto";
$CampusName = "Nome da sua plataforma";
$DBSettingIntro = "O script de instalação irá criar o(s) banco(s) de dados principal(is) do Doekos. Se você tiver permissão para usar apenas uma base de dados no seu Serviço de Hospedagem, o Chamilo não irá funcionar, a não ser que você escolher a opção \"Uma base de dados\".";
$TimeSpentByStudentsInCourses = "Tempo gasto por estudantes em cursos";
$Step3 = "Passo 3 de 6";
$Step4 = "Passo 4 de 6";
$Step5 = "Passo 5 de 6";
@ -1141,6 +1142,7 @@ $DBSetting = "Configurações da base de dados MySQL";
$MainLang = "Língua principal";
$Licence = "Licença";
$LastCheck = "Ultima verificação antes da instalação";
$AutoEvaluation = "Auto avaliação";
$DbPrefixForm = "Prefixo da base de dados MySQL";
$DbPrefixCom = "Deixe em branco se não for necessário";
$EncryptUserPass = "Encriptar senhas de usuário na base de dados";
@ -1396,6 +1398,7 @@ $NoCategories = "Não há categorias";
$AllowCoursesInCategory = "Permitir a adição de cursos nessa categoria ?";
$GoToForum = "Ir para o fórum";
$CategoryCode = "Código da categoria";
$MetaTwitterCreatorComment = "O Twitter Criador é uma conta no Twitter (por exemplo @ywarnier) que representa o ou a *pessoa* que criou o site. Este campo é opcional.";
$EditNode = "Editar esta categoria";
$OpenNode = "Abrir esta categoria";
$DeleteNode = "Excluir esta categoria";
@ -1406,6 +1409,7 @@ $TreeRecountedIn = "Diretório recontado em";
$RebuildTree = "Reconstruir diretórios";
$RefreshNbChildren = "Atualizar o número de subdiretórios";
$ShowTree = "Mostrar diretórios";
$MetaImagePathTitle = "Caminho de imagem Meta";
$LogDeleteCat = "Categoria excluida";
$RecountChildren = "Recontar subdiretórios";
$UpInSameLevel = "Subir para o mesmo nível";
@ -1462,6 +1466,7 @@ $CourseCreationSucceeded = "O curso foi criado com sucesso.";
$OnTheHardDisk = "no disco rígido";
$IsVirtualCourse = "É um curso virtual ?";
$AnnouncementUpdated = "O anúncio foi atualizado";
$MetaImagePathComment = "Este caminho Imagem Meta é o caminho para um arquivo dentro do seu diretório Chamilo (por exemplo, home/image.png) que devem aparecer em um cartão ou um cartão de Twitter OpenGraph ao mostrar um link para o seu LMS. Twitter recomenda uma imagem de 120x120 pixels, o que pode por vezes pode ser recortadas com 120x90.";
$PermissionsForNewFiles = "Permissões para novos arquivos";
$PermissionsForNewFilesComment = "A capacidade para definir permissões e atribuí-las aos arquivos recém criados aumenta a segurança contra ataques de hackers que podem colocar material perigoso na plataforma. O valor pré-definido (0660) deveria ser suficiente para proporcionar ao servidor um nível razoável de segurança. O formato fornecido usa a terminologia UNIX do Proprietário-Grupo-Público com as permissões de Leitura-Escrita-Execução. Se utiliza o Oogie, tome cuidado para que o usuários que iniciar o OpenOffice poderá escrever arquivos na pasta do curso.";
$Guest = "Convidado";
@ -1633,6 +1638,7 @@ $ShowOnlineUsers = "Exibir o número de de usuários online em todas as páginas
$ShowOnlineCourse = "Exibir o número de usuários online neste curso";
$ShowIconsInNavigationsMenuTitle = "Mostrar ícones no menu de navegação?";
$SeeAllRightsAllRolesForSpecificLocation = "Ver todas as funções e permissões para uma localização específica";
$MetaTwitterCreatorTitle = "Twitter Criador da conta";
$ClassesSubscribed = "As turmas selecionadas foram inscritas nos cursos selecionados";
$RoleId = "ID da função";
$RoleName = "Nome da função";
@ -1710,6 +1716,7 @@ $EnableToolIntroductionTitle = "Ativa as introduções das ferramentas";
$EnableToolIntroductionComment = "Ativa a introduções em cada ferramenta da página inicial";
$BreadCrumbsCourseHomepageTitle = "Barra de navegação da página principal do curso";
$BreadCrumbsCourseHomepageComment = "A barra de navegação é o sistema horizontal de ligações da navegação, normalmente localizado na parte esquerda do topo da página. Esta opção habilita a barra de navegação nas páginas dos cursos.";
$MetaTwitterSiteComment = "O site Twitter é uma conta no Twitter (por exemplo @chamilo_news) que está relacionado ao seu site. É geralmente uma conta de mais temporário do que o criador conta Twitter, ou representa uma empresa (em vez de uma pessoa). Este campo é obrigatório se você deseja que os campos do cartão meta do Twitter para mostrar.";
$LoginPageMainArea = "Área principal da página de acesso";
$LoginPageMenu = "Menu da página de acesso";
$CampusHomepageMainArea = "Área da página inicial da plataforma";
@ -1988,6 +1995,10 @@ $IsNotWritable = "não é editável";
$FieldMovedDown = "O campo foi movido para baixo";
$CannotMoveField = "Não se pode mover o campo";
$FieldMovedUp = "O campo foi movido para cima";
$MetaTitleTitle = "Abrir Gráfico do título da meta";
$MetaDescriptionComment = "Isto irá mostrar e um Abrir um Gráfico de Descrição da meta (og: Descrição) nos cabeçalhos do seu site";
$MetaDescriptionTitle = "Descrição da Meta";
$MetaTitleComment = "Isto irá mostrar uma meta e Abrir um Gráfico com o título (og: título) nos cabeçalhos do seu site";
$FieldDeleted = "O campo foi excluido";
$CannotDeleteField = "Não é possível excluir o campo";
$AddUsersByCoachTitle = "Registar usuário como tutor";
@ -4016,6 +4027,14 @@ $Authoring = "Autoria";
$SessionIdentifier = "Identificador da sessão";
$SessionCategory = "Categorias das sessões";
$ConvertToUniqueAnswer = "Converter para resposta única";
$ReportsRequiresNoSetting = "Este tipo de relatório não requer configurações";
$ShowWizard = "Mostrar assistente";
$ReportFormat = "Formato de relatório";
$ReportType = "Tipo de relatório";
$PleaseChooseReportType = "Por favor, escolha um tipo de relatório";
$PleaseFillFormToBuildReport = "Por favor, preencha o formulário para a construção do relatório";
$UnknownFormat = "Formato desconhecido";
$ErrorWhileBuildingReport = "Ocorreu um erro ao construir o relatório";
$WikiSearchResults = "Resultados da busca no Wiki";
$StartPage = "Página principal";
$EditThisPage = "Editar esta página";
@ -5225,6 +5244,7 @@ $PleaseSelectInstallationProcessLanguage = "Selecione, por favor, o idioma que g
$HereAreTheValuesYouEntered = "Aqui estão os valores que introduziu";
$PrintThisPageToRememberPassAndOthers = "Imprima esta página para se lembrar da senha e demais configurações";
$TheInstallScriptWillEraseAllTables = "O script de instalação apagará todas as tabelas das bases de dados selecionadas. Recomendamos que faça uma cópia de todas elas antes de confirmar a última etapa da instalação.";
$Published = "Publicados";
$ReadWarningBelow = "leia a mensagem abaixo";
$SecurityAdvice = "Informação de segurança";
$YouHaveMoreThanXCourses = "Tem mais de %d cursos na sua plataforma Chamilo! Somente %d cursos foram atualizados. Para atualizar os outros cursos, %s clique aqui %s";
@ -7193,4 +7213,76 @@ $DataTableSearch = "Procurar";
$HideColumn = "Ocultar coluna";
$DisplayColumn = "Mostrar coluna";
$LegalAgreementAccepted = "Acordo legal aceitado";
$WorkEmailAlertActivateOnlyForTeachers = "Ative somente para alerta de professores via e-mail sobre a nova submissão de trabalhos";
$WorkEmailAlertActivateOnlyForStudents = "Ative somente para alerta de estudantes via e-mail sobre a nova submissão de trabalhos";
$Uncategorized = "Sem categoria";
$NaturalYear = "Natural ano";
$AutoWeight = "Peso automática";
$AutoWeightExplanation = "Use a distribuição de peso automático para acelerar as coisas. O sistema irá distribuir o peso total uniformemente entre os itens de avaliação abaixo.";
$EditWeight = "Editar peso";
$TheSkillHasBeenCreated = "A habilidade foi criado";
$CreateSkill = "Criar habilidade";
$CannotCreateSkill = "Não é possível criar habilidade";
$SkillEdit = "Editar habilidade";
$TheSkillHasBeenUpdated = "A habilidade foi atualizado";
$CannotUpdateSkill = "Não é possível atualizar habilidade";
$BadgesManagement = "Gestão de emblemas";
$CurrentBadges = "Emblemas atuais";
$SaveBadge = "Salvar emblema";
$BadgeMeasuresXPixelsInPNG = "Emblema mede 200x200 pixels em PNG";
$SetTutor = "Definir como treinador";
$UniqueAnswerImage = "Imagem única resposta";
$TimeSpentByStudentsInCoursesGroupedByCode = "Tempo gasto por estudantes de cursos, agrupados por código";
$TestResultsByStudentsGroupesByCode = "Testes resultados por grupos de estudantes, por código";
$TestResultsByStudents = "Testes de resultados por aluno";
$SystemCouldNotLogYouIn = "O sistema não foi capaz de fazer seu login. Por favor, contate o administrador.";
$ShibbolethLogin = "Senha para Entrar";
$NewStatus = "Novo status";
$Reason = "Razão";
$RequestStatus = "Solicite novo status";
$StatusRequestMessage = "Você tem sido registrados com as permissões padrão. Você pode solicitar mais permissões, submetendo o seguinte pedido.";
$ReasonIsMandatory = "You reason field is mandatory. Please fill it in before submitting.";
$RequestSubmitted = "Your request has been submitted.";
$RequestFailed = "Nós não somos capazes de satisfazer o seu pedido neste momento. Entre em contato com o administrador.";
$InternalLogin = "Login interno";
$AlreadyLoggedIn = "Você já está logado";
$Draggable = "Sequência de ordenação";
$Incorrect = "Incorreto";
$YouNotYetAchievedCertificates = "Você não ter conseguiu qualquer certificado ainda. Continue em sua rota de aprendizagem para obter um!";
$SearchCertificates = "Pesquisar certificados";
$TheUserXNotYetAchievedCertificates = "Usuário %s que não adquiriu qualquer certificado ainda";
$CertificatesNotPublic = "Os certificados não estão disponíveis ao público";
$MatchingDraggable = "Jogo arrastando";
$ForumThreadPeerScoring = "Tópico marcado por pares";
$ForumThreadPeerScoringComment = "Se selecionado, esta opção irá necessitar cada aluno para se qualificar pelo menos 2 outros estudantes, a fim de obter a sua pontuação maior que 0 no Boletim.";
$ForumThreadPeerScoringStudentComment = "Para obter a pontuação esperada neste fórum, a sua contribuição terá de ser marcado por um outro estudante, e você terá que marcar as contribuições de outros pelo menos 2 dos alunos. Até chegar a esse objetivo, mesmo que marcou, sua contribuição vai mostrar como uma pontuação 0 nas séries globais para este curso.";
$Readable = "Legível";
$NotReadable = "Não pode ser lido";
$DefaultInstallAdminFirstname = "João";
$DefaultInstallAdminLastname = "Bogda";
$AttendanceUpdated = "Presenças atualizadas";
$HideHomeTopContentWhenLoggedInText = "Esconder conteúdo no topo da homepage quando logado";
$HideHomeTopContentWhenLoggedInComment = "Na página inicial da plataforma, esta opção permite que você esconda o bloco de introdução (deixar apenas os anúncios, por exemplo), para todos os usuários que já estão logados. O bloco introdução geral ainda vai aparecer para os usuários ainda que não estejam conectados.";
$HideGlobalAnnouncementsWhenNotLoggedInText = "Ocultar anúncios globais para anônimos";
$HideGlobalAnnouncementsWhenNotLoggedInComment = "Ocultar anúncios de plataforma de usuários anônimos, e apenas mostrá-los aos usuários autenticados.";
$CourseCreationUsesTemplateText = "Use curso modelo para novos cursos";
$CourseCreationUsesTemplateComment = "Defina esta opção para usar o mesmo curso de modelo (identificada por seu curso de identificação numérica no banco de dados) para todos os novos cursos que serão criados na plataforma. Por favor, note que, se não for devidamente planeado, esta definição pode ter um enorme impacto sobre a utilização do espaço. O curso de modelo será usado como se o professor fez uma cópia do curso com as ferramentas de backup é claro, por isso não o conteúdo do usuário é copiado, apenas o material professor. Todas as outras regras aplicam-curso backup. Deixe em branco (ou definido como 0) para desativar.";
$EnablePasswordStrengthCheckerText = "Verificador de força de senha";
$EnablePasswordStrengthCheckerComment = "Ative essa opção para adicionar um indicador visual de força da senha, quando o usuário muda seu/sua senha. Isto não impedirá senhas ruins para ser adicionado, ele só funciona como um auxiliar visual.";
$EnableCaptchaText = "CAPTCHA";
$EnableCaptchaComment = "Ativar um CAPTCHA no formulário de login para evitar martelar senha";
$CaptchaNumberOfMistakesBeforeBlockingAccountText = "Subsídio erros CAPTCHA";
$CaptchaNumberOfMistakesBeforeBlockingAccountComment = "O número de vezes que um usuário pode cometer um erro na caixa de CAPTCHA antes de sua conta está bloqueada.";
$CaptchaTimeAccountIsLockedText = "CAPTCHA conta o tempo de bloqueio";
$CaptchaTimeAccountIsLockedComment = "Se o usuário alcança o limite máximo para os erros de login (quando se utiliza o CAPTCHA), seu/sua conta será bloqueada para este número de minutos.";
$DRHAccessToAllSessionContentText = "Diretores de RH acessar todo o conteúdo da sessão";
$DRHAccessToAllSessionContentComment = "Se ativado, diretores de recursos humanos terá acesso a todo o conteúdo e os usuários das sessões (s) que ele segue.";
$ShowGroupForaInGeneralToolText = "Fóruns de grupos de exibição no fórum geral";
$ShowGroupForaInGeneralToolComment = "Fóruns de grupos de exibição na ferramenta fórum ao nível da disciplina. Essa opção é ativada por padrão (neste caso, fórum grupo visibilidades individuais ainda agem como um critério adicional). Se os fóruns forem desativado, o grupo só será visível através da ferramenta de grupo, sejam eles públicos ou não.";
$TutorsCanAssignStudentsToSessionsText = "Os tutores podem atribuir aos alunos umas sessões";
$TutorsCanAssignStudentsToSessionsComment = "Quando ativado, treinadores de curso / tutores em sessões podem se inscrever novos usuários à sua sessão. Esta opção é outra forma apenas disponível para administradores e administradores de sessão.";
$UniqueAnswerImagePreferredSize200x150 = "As imagens serão redimensionadas (para cima ou para baixo) para 200x150 pixels. Para uma melhor prestação de questão, recomenda-se fazer o upload apenas imagens deste tamanho.";
$AllowLearningPathReturnLinkTitle = "Mostrar caminhos de aprendizagem retornar ligação";
$AllowLearningPathReturnLinkComment = "Desative esta opção para ocultar o \"Return to homepage 'botão nos percursos de aprendizagem";
$Triesleft = "Tentativas a esquerda";
?>

@ -902,7 +902,7 @@ if (!empty($student_id)) {
$from ='&from=myspace';
}
$link = Display::url(
'<img src="../img/2rightarrow.gif" border="0" />',
'<img src="../img/icons/22/2rightarrow.png" border="0" />',
'lp_tracking.php?cidReq='.Security::remove_XSS($_GET['course']).'&course='.Security::remove_XSS($_GET['course']).$from.'&origin='.$origin.'&lp_id='.$learnpath['id'].'&student_id='.$user_info['user_id'].'&id_session='.$sessionId
);
echo Display::tag('td', $link);

@ -159,10 +159,10 @@ function get_users($from, $limit, $column, $direction)
if (isset($_GET['id_coach']) && intval($_GET['id_coach']) != 0) {
$detailsLink = '<a href="myStudents.php?student='.$student_id.'&id_coach='.$coach_id.'&id_session='.$_GET['id_session'].'">
<img src="'.api_get_path(WEB_IMG_PATH).'2rightarrow.gif" border="0" /></a>';
<img src="'.api_get_path(WEB_IMG_PATH).'icons/22/2rightarrow.png" border="0" /></a>';
} else {
$detailsLink = '<a href="myStudents.php?student='.$student_id.'">
<img src="'.api_get_path(WEB_IMG_PATH).'2rightarrow.gif" border="0" /></a>';
<img src="'.api_get_path(WEB_IMG_PATH).'icons/22/2rightarrow.png" border="0" /></a>';
}
$lostPasswordLink = '';

@ -882,16 +882,16 @@ class SurveyManager
// the images array
$icon_question = array(
'yesno' => 'yesno.gif',
'personality' => 'yesno.gif',
'yesno' => 'yesno.png',
'personality' => 'yesno.png',
'multiplechoice' => 'mcua.png',
'multipleresponse' => 'mcma.png',
'open' => 'open_answer.png',
'dropdown' => 'dropdown.gif',
'percentage' => 'percentagequestion.gif',
'score' => 'scorequestion.gif',
'comment' => 'commentquestion.gif',
'pagebreak' => 'page_end.gif',
'dropdown' => 'dropdown.png',
'percentage' => 'percentagequestion.png',
'score' => 'scorequestion.png',
'comment' => 'commentquestion.png',
'pagebreak' => 'page_end.png',
);
if (in_array($type, $possible_types)) {

@ -155,7 +155,7 @@ if ($survey_data['survey_type'] == 0) {
} else {
echo '<div class="panel panel-default">';
echo '<div class="panel-body">';
echo '<a href="'.api_get_path(WEB_CODE_PATH).'survey/question.php?'.api_get_cidreq().'&amp;action=add&type=personality&amp;survey_id='.$survey_id.'"><img src="../img/yesno.gif" /></a></div>';
echo '<a href="'.api_get_path(WEB_CODE_PATH).'survey/question.php?'.api_get_cidreq().'&amp;action=add&type=personality&amp;survey_id='.$survey_id.'"><img src="../img/icons/22/yesno.png" /></a></div>';
echo '</div>';
echo '</div>';
}

Loading…
Cancel
Save