Merge pull request #965 from aragonc/1.10.x

fix icons restored mistakenly deleted CT#7359
1.10.x
Yannick Warnier 9 years ago
commit ddb2bbeff6
  1. 10
      main/admin/course_list.php
  2. 20
      main/admin/settings.lib.php
  3. BIN
      main/img/attendance.gif
  4. BIN
      main/img/blog_admin.gif
  5. BIN
      main/img/btn_next.png
  6. BIN
      main/img/btn_previous.png
  7. BIN
      main/img/btn_stats.png
  8. BIN
      main/img/chat.gif
  9. BIN
      main/img/course_progress.gif
  10. BIN
      main/img/faded_blue_horizontal.png
  11. BIN
      main/img/forum.gif
  12. BIN
      main/img/forum_new_small.gif
  13. BIN
      main/img/forumpost.gif
  14. BIN
      main/img/forumpostnew.gif
  15. BIN
      main/img/html.gif
  16. BIN
      main/img/icons/22/blog.png
  17. BIN
      main/img/icons/22/folder_chat.png
  18. BIN
      main/img/icons/32/folder_chat.png
  19. BIN
      main/img/icons/48/folder_chat.png
  20. 515
      main/img/icons/svg/folder_chat.svg
  21. BIN
      main/img/scorms.gif
  22. BIN
      main/img/scorms_na.gif
  23. BIN
      main/img/scormstatus.gif
  24. BIN
      main/img/screenshot_bandwidth.jpg
  25. BIN
      main/img/screenshot_conf.jpg
  26. BIN
      main/img/statistics.gif
  27. BIN
      main/img/visible.gif
  28. BIN
      main/img/works.gif
  29. BIN
      main/img/works_na.gif
  30. BIN
      main/img/works_new.gif
  31. BIN
      main/img/works_small.gif
  32. BIN
      main/img/wrong.gif
  33. 2
      main/inc/lib/document.lib.php
  34. 4
      main/survey/survey.lib.php
  35. 2
      main/survey/survey.php

@ -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 '';

@ -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);
}

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

@ -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 {

@ -882,8 +882,8 @@ 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',

@ -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