';
-print '| ';
-print '';
-print ' | ';
+foreach ($object->fields as $key => $val)
+{
+ if($key == 'statut'){ continue; }
+ $cssforfield = (empty($val['css']) ? '' : $val['css']);
+ if ($key == 'status') $cssforfield .= ($cssforfield ? ' ' : '').'center';
+ elseif (in_array($val['type'], array('date', 'datetime', 'timestamp'))) $cssforfield .= ($cssforfield ? ' ' : '').'center';
+ elseif (in_array($val['type'], array('timestamp'))) $cssforfield .= ($cssforfield ? ' ' : '').'nowrap';
+ elseif (in_array($val['type'], array('double(24,8)', 'double(6,3)', 'integer', 'real', 'price')) && $val['label'] != 'TechnicalID') $cssforfield .= ($cssforfield ? ' ' : '').'right';
+ if (!empty($arrayfields['e.'.$key]['checked']))
+ {
+ print '';
+ if (is_array($val['arrayofkeyval'])) print $form->selectarray('search_'.$key, $val['arrayofkeyval'], $search[$key], $val['notnull'], 0, 0, '', 1, 0, 0, '', 'maxwidth75');
+ elseif (strpos($val['type'], 'integer:') === 0 || strpos($val['type'], 'sellist:') === 0) {
+ print $object->showInputField($val, $key, $search[$key], '', '', 'search_', 'maxwidth150', 1);
+ }
+ elseif (! preg_match('/^(date|timestamp)/', $val['type'])) print '';
+ print ' | ';
+ }
+}
-print '';
-print '';
-print ' | ';
+if (!empty($arrayfields["stockqty"]['checked'])) {
+ print ' | ';
+}
-print ' | ';
-print ' | ';
-print ' | ';
+if (!empty($arrayfields["estimatedvalue"]['checked'])) {
+ print ' | ';
+}
+
+if (!empty($arrayfields["estimatedstockvaluesell"]['checked'])) {
+ print ' | ';
+}
// Extra fields
include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_input.tpl.php';
@@ -357,9 +385,11 @@ $reshook = $hookmanager->executeHooks('printFieldListOption', $parameters, $obje
print $hookmanager->resPrint;
// Status
-print '';
-print $form->selectarray('search_status', $warehouse->statuts, $search_status, 1, 0, 0, '', 1);
-print ' | ';
+if (!empty($arrayfields["e.statut"]['checked'])) {
+ print '';
+ print $form->selectarray('search_status', $warehouse->statuts, $search_status, 1, 0, 0, '', 1);
+ print ' | ';
+}
// Action column
print '';
@@ -371,18 +401,44 @@ print ''."\n";
// Fields title label
// --------------------------------------------------------------------
print ' | ';
-print_liste_field_titre("Ref", $_SERVER["PHP_SELF"], "e.ref", "", $param, "", $sortfield, $sortorder);
-print_liste_field_titre("LocationSummary", $_SERVER["PHP_SELF"], "e.lieu", "", $param, "", $sortfield, $sortorder);
-print_liste_field_titre("PhysicalStock", $_SERVER["PHP_SELF"], "stockqty", '', $param, '', $sortfield, $sortorder, 'right ');
-print_liste_field_titre("EstimatedStockValue", $_SERVER["PHP_SELF"], "estimatedvalue", '', $param, '', $sortfield, $sortorder, 'right ');
-print_liste_field_titre("EstimatedStockValueSell", $_SERVER["PHP_SELF"], "", '', $param, '', $sortfield, $sortorder, 'right ');
+
+foreach ($object->fields as $key => $val)
+{
+ if($key == 'statut'){ continue; }
+ $cssforfield = (empty($val['css']) ? '' : $val['css']);
+ if ($key == 'status') $cssforfield .= ($cssforfield ? ' ' : '').'center';
+ elseif (in_array($val['type'], array('date', 'datetime', 'timestamp'))) $cssforfield .= ($cssforfield ? ' ' : '').'center';
+ elseif (in_array($val['type'], array('timestamp'))) $cssforfield .= ($cssforfield ? ' ' : '').'nowrap';
+ elseif (in_array($val['type'], array('double(24,8)', 'double(6,3)', 'integer', 'real', 'price')) && $val['label'] != 'TechnicalID') $cssforfield .= ($cssforfield ? ' ' : '').'right';
+ if (!empty($arrayfields['e.'.$key]['checked']))
+ {
+ print getTitleFieldOfList($arrayfields['e.'.$key]['label'], 0, $_SERVER['PHP_SELF'], 'e.'.$key, '', $param, ($cssforfield ? 'class="'.$cssforfield.'"' : ''), $sortfield, $sortorder, ($cssforfield ? $cssforfield.' ' : ''))."\n";
+ }
+}
+
+if (!empty($arrayfields["stockqty"]['checked'])) {
+ print_liste_field_titre("PhysicalStock", $_SERVER["PHP_SELF"], "stockqty", '', $param, '', $sortfield, $sortorder, 'right ');
+}
+
+if (!empty($arrayfields["estimatedvalue"]['checked'])) {
+ print_liste_field_titre("EstimatedStockValue", $_SERVER["PHP_SELF"], "estimatedvalue", '', $param, '', $sortfield, $sortorder, 'right ');
+}
+
+if (!empty($arrayfields["estimatedstockvaluesell"]['checked'])) {
+ print_liste_field_titre("EstimatedStockValueSell", $_SERVER["PHP_SELF"], "", '', $param, '', $sortfield, $sortorder, 'right ');
+}
+
// Extra fields
include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_title.tpl.php';
// Hook fields
$parameters = array('arrayfields'=>$arrayfields, 'param'=>$param, 'sortfield'=>$sortfield, 'sortorder'=>$sortorder);
$reshook = $hookmanager->executeHooks('printFieldListTitle', $parameters, $object); // Note that $action and $object may have been modified by hook
print $hookmanager->resPrint;
-print_liste_field_titre("Status", $_SERVER["PHP_SELF"], "e.statut", '', $param, '', $sortfield, $sortorder, 'right ');
+
+if (!empty($arrayfields["e.statut"]['checked'])) {
+ print_liste_field_titre("Status", $_SERVER["PHP_SELF"], "e.statut", '', $param, '', $sortfield, $sortorder, 'right ');
+}
+
// Action column
print getTitleFieldOfList($selectedfields, 0, $_SERVER["PHP_SELF"], '', '', '', '', $sortfield, $sortorder, 'center maxwidthsearch ')."\n";
print '
'."\n";
@@ -390,12 +446,10 @@ print ''."\n";
// Loop on record
// --------------------------------------------------------------------
$i = 0;
-$totalarray = array();
if ($num)
{
$warehouse = new Entrepot($db);
- $totalarray = array();
while ($i < min($num, $limit))
{
$obj = $db->fetch_object($resql);
@@ -408,35 +462,70 @@ if ($num)
$warehouse->fk_parent = $obj->fk_parent;
$warehouse->statut = $obj->statut;
+ foreach ($object->fields as $key => $val){
+ $warehouse->{$key} = $obj->{$key};
+ }
+
+
// Show here line of result
print '';
- print '| '.$warehouse->getNomUrl(1).' | ';
- if (!$i) $totalarray['nbfield']++;
- // Location
- print ''.$obj->lieu.' | ';
- if (!$i) $totalarray['nbfield']++;
+
+ foreach ($warehouse->fields as $key => $val)
+ {
+ if($key == 'statut'){ continue; }
+ $cssforfield = (empty($val['css']) ? '' : $val['css']);
+ if (in_array($val['type'], array('date', 'datetime', 'timestamp'))) $cssforfield .= ($cssforfield ? ' ' : '').'center';
+ elseif ($key == 'status') $cssforfield .= ($cssforfield ? ' ' : '').'center';
+
+ if (in_array($val['type'], array('timestamp'))) $cssforfield .= ($cssforfield ? ' ' : '').'nowrap';
+ elseif ($key == 'ref') $cssforfield .= ($cssforfield ? ' ' : '').'nowrap';
+
+ if (in_array($val['type'], array('double(24,8)', 'double(6,3)', 'integer', 'real', 'price')) && $key != 'status') $cssforfield .= ($cssforfield ? ' ' : '').'right';
+
+ if (!empty($arrayfields['e.'.$key]['checked']))
+ {
+ print '';
+ if ($key == 'status') print $warehouse->getLibStatut(5);
+ else print $warehouse->showOutputField($val, $key, $warehouse->$key, '');
+ print ' | ';
+ if (!$i) $totalarray['nbfield']++;
+ if (!empty($val['isameasure']))
+ {
+ if (!$i) $totalarray['pos'][$totalarray['nbfield']] = 'e.'.$key;
+ $totalarray['val']['e.'.$key] += $warehouse->$key;
+ }
+ }
+ }
// Stock qty
- print ''.price2num($obj->stockqty, 5).' | ';
- if (!$i) $totalarray['nbfield']++;
+ if (!empty($arrayfields["stockqty"]['checked'])) {
+ print '' . price2num($obj->stockqty, 5) . ' | ';
+ if (!$i) $totalarray['nbfield']++;
+ if (!$i) $totalarray['pos'][$totalarray['nbfield']] = 'stockqty';
+ }
// PMP value
- print '';
- if (price2num($obj->estimatedvalue, 'MT')) print price(price2num($obj->estimatedvalue, 'MT'), 1);
- else print '';
- print ' | ';
- if (!$i) $totalarray['nbfield']++;
+ if (!empty($arrayfields["estimatedvalue"]['checked'])) {
+ print '';
+ if (price2num($obj->estimatedvalue, 'MT')) print price(price2num($obj->estimatedvalue, 'MT'), 1);
+ else print '';
+ print ' | ';
+ if (!$i) $totalarray['nbfield']++;
+ if (!$i) $totalarray['pos'][$totalarray['nbfield']] = 'estimatedvalue';
+ }
// Selling value
- print '';
- if (empty($conf->global->PRODUIT_MULTIPRICES)) print price(price2num($obj->sellvalue, 'MT'), 1);
- else
- {
- $htmltext = $langs->trans("OptionMULTIPRICESIsOn");
- print $form->textwithtooltip($langs->trans("Variable"), $htmltext);
+ if (!empty($arrayfields["estimatedstockvaluesell"]['checked'])) {
+ print ' | ';
+ if (empty($conf->global->PRODUIT_MULTIPRICES)) print price(price2num($obj->sellvalue, 'MT'), 1);
+ else {
+ $htmltext = $langs->trans("OptionMULTIPRICESIsOn");
+ print $form->textwithtooltip($langs->trans("Variable"), $htmltext);
+ }
+ print ' | ';
+ if (!$i) $totalarray['nbfield']++;
+ if (!$i) $totalarray['pos'][$totalarray['nbfield']] = 'estimatedstockvaluesell';
}
- print '';
- if (!$i) $totalarray['nbfield']++;
// Extra fields
include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_print_fields.tpl.php';
@@ -446,8 +535,10 @@ if ($num)
print $hookmanager->resPrint;
// Status
- print ''.$warehouse->LibStatut($obj->statut, 5).' | ';
- if (!$i) $totalarray['nbfield']++;
+ if (!empty($arrayfields["e.statut"]['checked'])) {
+ print '' . $warehouse->LibStatut($obj->statut, 5) . ' | ';
+ if (!$i) $totalarray['nbfield']++;
+ }
// Action column
print '';
@@ -468,7 +559,10 @@ if ($num)
if ($totalnboflines - $offset <= $limit)
{
- print ' |
';
+ // Show total line
+ include DOL_DOCUMENT_ROOT.'/core/tpl/list_print_total.tpl.php';
+
+ /*print '
';
print '| '.$langs->trans("Total").' | ';
print ''.price2num($totalStock, 5).' | ';
print ''.price(price2num($total, 'MT'), 1, $langs, 0, 0, -1, $conf->currency).' | ';
@@ -482,7 +576,7 @@ if ($num)
print '';
print ' | ';
print ' | ';
- print "
\n";
+ print "\n";*/
}
}
From 88297d5682db0ffda1e7267981afa99068f5b0da Mon Sep 17 00:00:00 2001
From: ATM john
Date: Mon, 6 Apr 2020 13:20:42 +0200
Subject: [PATCH 12/84] fix key
---
htdocs/product/stock/list.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/htdocs/product/stock/list.php b/htdocs/product/stock/list.php
index 91a335758c6..b84ddf9aad2 100644
--- a/htdocs/product/stock/list.php
+++ b/htdocs/product/stock/list.php
@@ -485,7 +485,7 @@ if ($num)
if (!empty($arrayfields['e.'.$key]['checked']))
{
print '';
- if ($key == 'status') print $warehouse->getLibStatut(5);
+ if ($key == 'statut') print $warehouse->getLibStatut(5);
else print $warehouse->showOutputField($val, $key, $warehouse->$key, '');
print ' | ';
if (!$i) $totalarray['nbfield']++;
From aec1c177e34109eecfa7b4e890248698ddbfee07 Mon Sep 17 00:00:00 2001
From: andreubisquerra
Date: Mon, 6 Apr 2020 16:07:05 +0200
Subject: [PATCH 13/84] Order printer with 'Receipt printers' module
---
htdocs/takepos/admin/terminal.php | 20 ++++++++++++++------
1 file changed, 14 insertions(+), 6 deletions(-)
diff --git a/htdocs/takepos/admin/terminal.php b/htdocs/takepos/admin/terminal.php
index fa62aff1bc3..c83f57173e5 100644
--- a/htdocs/takepos/admin/terminal.php
+++ b/htdocs/takepos/admin/terminal.php
@@ -229,23 +229,31 @@ if ($conf->global->TAKEPOS_PRINT_METHOD == "receiptprinter") {
foreach ($printer->listprinters as $key => $value) {
$printers[$value['rowid']] = $value['name'];
}
- print '| '.$langs->trans("TakeposTerminalPrinterToUse").' | ';
+ print '
| '.$langs->trans("MainPrinterToUse").' | ';
print '';
print $form->selectarray('TAKEPOS_PRINTER_TO_USE'.$terminal, $printers, (empty($conf->global->{'TAKEPOS_PRINTER_TO_USE'.$terminal}) ? '0' : $conf->global->{'TAKEPOS_PRINTER_TO_USE'.$terminal}), 1);
print ' |
';
+ if ($conf->global->TAKEPOS_ORDER_PRINTERS) {
+ print '| '.$langs->trans("OrderPrinterToUse").' | ';
+ print '';
+ print $form->selectarray('TAKEPOS_ORDER_PRINTER_TO_USE'.$terminal, $printers, (empty($conf->global->{'TAKEPOS_ORDER_PRINTER_TO_USE'.$terminal}) ? '0' : $conf->global->{'TAKEPOS_ORDER_PRINTER_TO_USE'.$terminal}), 1);
+ print ' |
';
+ }
$printer->listPrintersTemplates();
$templates = array();
foreach ($printer->listprinterstemplates as $key => $value) {
$templates[$value['rowid']] = $value['name'];
}
- print '| '.$langs->trans("TakeposTerminalTemplateToUseForInvoicesTicket").' | ';
+ print '
| '.$langs->trans("MainTemplateToUse").' | ';
print '';
print $form->selectarray('TAKEPOS_TEMPLATE_TO_USE_FOR_INVOICES'.$terminal, $templates, (empty($conf->global->{'TAKEPOS_TEMPLATE_TO_USE_FOR_INVOICES'.$terminal}) ? '0' : $conf->global->{'TAKEPOS_TEMPLATE_TO_USE_FOR_INVOICES'.$terminal}), 1);
print ' |
';
- print '| '.$langs->trans("TakeposTerminalTemplateToUseForOrdersTicket").' | ';
- print '';
- print $form->selectarray('TAKEPOS_TEMPLATE_TO_USE_FOR_ORDERS'.$terminal, $templates, (empty($conf->global->{'TAKEPOS_TEMPLATE_TO_USE_FOR_ORDERS'.$terminal}) ? '0' : $conf->global->{'TAKEPOS_TEMPLATE_TO_USE_FOR_ORDERS'.$terminal}), 1);
- print ' |
';
+ if ($conf->global->TAKEPOS_ORDER_PRINTERS) {
+ print '| '.$langs->trans("OrderTemplateToUse").' | ';
+ print '';
+ print $form->selectarray('TAKEPOS_TEMPLATE_TO_USE_FOR_ORDERS'.$terminal, $templates, (empty($conf->global->{'TAKEPOS_TEMPLATE_TO_USE_FOR_ORDERS'.$terminal}) ? '0' : $conf->global->{'TAKEPOS_TEMPLATE_TO_USE_FOR_ORDERS'.$terminal}), 1);
+ print ' |
';
+ }
}
print '| '.$langs->trans('CashDeskReaderKeyCodeForEnter').' | ';
From 079bfafa26f822a4c963b642b9517554726b20ae Mon Sep 17 00:00:00 2001
From: andreubisquerra
Date: Mon, 6 Apr 2020 16:14:01 +0200
Subject: [PATCH 14/84] Order printer langs
---
htdocs/langs/en_US/cashdesk.lang | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/htdocs/langs/en_US/cashdesk.lang b/htdocs/langs/en_US/cashdesk.lang
index f2bab886b64..85bdc978865 100644
--- a/htdocs/langs/en_US/cashdesk.lang
+++ b/htdocs/langs/en_US/cashdesk.lang
@@ -100,4 +100,8 @@ TakeposGroupSameProduct=Group same products lines
StartAParallelSale=Start a new parallel sale
ControlCashOpening=Control cash box at opening pos
CloseCashFence=Close cash fence
-CashReport=Cash report
\ No newline at end of file
+CashReport=Cash report
+MainPrinterToUse=Main printer to use
+OrderPrinterToUse=Order printer to use
+MainTemplateToUse=Main template to use
+OrderTemplateToUse=Order template to use
\ No newline at end of file
From 34e434a17e8751f6e76ab20d8f7a6053dbc48fc8 Mon Sep 17 00:00:00 2001
From: Regis Houssin
Date: Mon, 6 Apr 2020 16:36:11 +0200
Subject: [PATCH 15/84] FIX missing member entity
---
htdocs/societe/class/societe.class.php | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/htdocs/societe/class/societe.class.php b/htdocs/societe/class/societe.class.php
index 87c4956e48e..5ea844a7320 100644
--- a/htdocs/societe/class/societe.class.php
+++ b/htdocs/societe/class/societe.class.php
@@ -3275,6 +3275,7 @@ class Societe extends CommonObject
$this->phone=$member->phone; // Prof phone
$this->email=$member->email;
$this->skype=$member->skype;
+ $this->entity=$member->entity;
$this->client = 1; // A member is a customer by default
$this->code_client = ($customercode?$customercode:-1);
@@ -3778,7 +3779,7 @@ class Societe extends CommonObject
$outstandingOpened+=$obj->total_ttc - $paiement - $creditnotes - $deposits;
}
-
+
//if credit note is converted but not used
if($mode == 'supplier' && $obj->type == FactureFournisseur::TYPE_CREDIT_NOTE && $tmpobject->isCreditNoteUsed())$outstandingOpened-=$tmpobject->getSumFromThisCreditNotesNotUsed();
From fc34b5a4cb73f43e8d4da274b2cfe442b290fb0c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20FRANCE?=
Date: Mon, 6 Apr 2020 19:03:48 +0200
Subject: [PATCH 16/84] compress png with zopflipng
---
.../dolicloud_logo_white.png | Bin 34227 -> 26168 bytes
.../mycompany/logos/mybigcompany.png | Bin 9827 -> 6830 bytes
.../logos/thumbs/mybigcompany_mini.png | Bin 5383 -> 4435 bytes
.../logos/thumbs/mybigcompany_small.png | Bin 10586 -> 6627 bytes
.../produit/DOLICLOUD/dolicloud_logo.png | Bin 32826 -> 27269 bytes
.../DOLICLOUD/thumbs/dolicloud_logo_mini.png | Bin 6329 -> 5696 bytes
.../DOLICLOUD/thumbs/dolicloud_logo_small.png | Bin 17054 -> 14589 bytes
.../DOLIDROID/DOLIDROID-dolidroid_114x114.png | Bin 8406 -> 7728 bytes
.../DOLIDROID-dolidroid_180x120_en.png | Bin 12345 -> 9915 bytes
...ID-dolidroid_screenshot_stats_720x1280.png | Bin 49103 -> 39425 bytes
.../DOLIDROID-dolidroid_114x114_mini.png | Bin 6032 -> 5419 bytes
.../DOLIDROID-dolidroid_114x114_small.png | Bin 8741 -> 7476 bytes
.../DOLIDROID-dolidroid_180x120_en_mini.png | Bin 7847 -> 6241 bytes
.../DOLIDROID-dolidroid_180x120_en_small.png | Bin 12553 -> 9915 bytes
...lidroid_screenshot_stats_720x1280_mini.png | Bin 2868 -> 2000 bytes
...idroid_screenshot_stats_720x1280_small.png | Bin 8302 -> 5365 bytes
.../societe/1/logos/indiancompany.png | Bin 4229 -> 2795 bytes
.../1/logos/thumbs/indiancompany_mini.png | Bin 5046 -> 3727 bytes
.../1/logos/thumbs/indiancompany_small.png | Bin 13969 -> 9734 bytes
.../societe/10/logos/logo_nltechno_94x100.png | Bin 4251 -> 3996 bytes
.../thumbs/logo_nltechno_94x100_mini.png | Bin 10828 -> 8651 bytes
.../thumbs/logo_nltechno_94x100_small.png | Bin 9724 -> 3996 bytes
.../societe/11/logos/comapnycorp1company.png | Bin 16141 -> 14401 bytes
.../logos/thumbs/comapnycorp1company_mini.png | Bin 9957 -> 7592 bytes
.../thumbs/comapnycorp1company_small.png | Bin 30352 -> 22245 bytes
.../societe/13/logos/companycorp2company.png | Bin 9362 -> 8669 bytes
.../logos/thumbs/companycorp2company_mini.png | Bin 6151 -> 4925 bytes
.../thumbs/companycorp2company_small.png | Bin 18948 -> 14573 bytes
.../societe/17/logos/bookkeepercompany.png | Bin 7847 -> 7136 bytes
.../logos/thumbs/bookkeepercompany_mini.png | Bin 8453 -> 6963 bytes
.../logos/thumbs/bookkeepercompany_small.png | Bin 9199 -> 7141 bytes
.../societe/19/logos/magicfoodstore.png | Bin 4920 -> 3284 bytes
.../19/logos/thumbs/magicfoodstore_mini.png | Bin 4593 -> 2898 bytes
.../19/logos/thumbs/magicfoodstore_small.png | Bin 13292 -> 7281 bytes
.../societe/2/logos/teclibcompany.png | Bin 26702 -> 21488 bytes
.../2/logos/thumbs/teclibcompany_mini.png | Bin 6758 -> 4861 bytes
.../2/logos/thumbs/teclibcompany_small.png | Bin 25838 -> 16864 bytes
.../societe/25/logos/printcompany.png | Bin 20188 -> 14729 bytes
.../25/logos/thumbs/printcompany_mini.png | Bin 3962 -> 2645 bytes
.../25/logos/thumbs/printcompany_small.png | Bin 12735 -> 7171 bytes
.../societe/3/logos/spanishcompany.png | Bin 6865 -> 4289 bytes
.../3/logos/thumbs/spanishcompany_mini.png | Bin 6823 -> 4823 bytes
.../3/logos/thumbs/spanishcompany_small.png | Bin 18740 -> 12325 bytes
.../4/logos/thumbs/valeencompany_mini.png | Bin 5159 -> 3576 bytes
.../4/logos/thumbs/valeencompany_small.png | Bin 14504 -> 9863 bytes
.../societe/4/logos/valeencompany.png | Bin 4675 -> 3189 bytes
.../societe/5/logos/nocountrycomp.png | Bin 3761 -> 2388 bytes
.../5/logos/thumbs/nocountrycomp_mini.png | Bin 6670 -> 4350 bytes
.../5/logos/thumbs/nocountrycomp_small.png | Bin 19716 -> 11651 bytes
.../societe/6/logos/swisstouch.png | Bin 5766 -> 3953 bytes
.../6/logos/thumbs/swisstouch_mini.png | Bin 8141 -> 5711 bytes
.../6/logos/thumbs/swisstouch_small.png | Bin 22874 -> 14624 bytes
.../societe/7/logos/genericcustomer.png | Bin 7472 -> 5110 bytes
.../7/logos/thumbs/genericcustomer_mini.png | Bin 6132 -> 3713 bytes
.../7/logos/thumbs/genericcustomer_small.png | Bin 17822 -> 10027 bytes
.../11/photos/ldestailleur_200x200.png | Bin 49440 -> 46005 bytes
.../thumbs/ldestailleur_200x200_mini.png | Bin 10635 -> 8322 bytes
.../thumbs/ldestailleur_200x200_small.png | Bin 39105 -> 29744 bytes
.../dolibarr_screenshot1_300x188.png | Bin 35075 -> 28426 bytes
.../dolibarr_screenshot1_300x188_mini.png | Bin 9864 -> 7456 bytes
.../dolibarr_screenshot1_300x188_small.png | Bin 33202 -> 25868 bytes
.../quick-guide-gplv3-compatibility.png | Bin 29649 -> 23833 bytes
.../phpunit/eclipse_setup_for_pti_phpunit.png | Bin 68902 -> 51559 bytes
doc/images/appicon_128.png | Bin 2823 -> 2522 bytes
doc/images/appicon_14.png | Bin 574 -> 443 bytes
doc/images/appicon_16.png | Bin 544 -> 412 bytes
doc/images/appicon_32.png | Bin 867 -> 693 bytes
doc/images/appicon_64.png | Bin 1450 -> 1296 bytes
doc/images/dolibarr_120x90.png | Bin 2596 -> 2353 bytes
doc/images/dolibarr_124x124.png | Bin 2062 -> 1848 bytes
doc/images/dolibarr_192x192.png | Bin 3822 -> 3453 bytes
doc/images/dolibarr_256x256.png | Bin 4008 -> 3525 bytes
doc/images/dolibarr_48x48.png | Bin 1292 -> 1147 bytes
doc/images/dolibarr_512x512.png | Bin 9520 -> 6959 bytes
doc/images/dolibarr_73x73.png | Bin 1635 -> 1468 bytes
doc/images/dolibarr_logo.png | Bin 29999 -> 25554 bytes
doc/images/dolibarr_screenshot3_1280x800.png | Bin 131991 -> 116379 bytes
htdocs/admin/dolistore/img/Download-128.png | Bin 761 -> 364 bytes
.../admin/dolistore/img/NoImageAvailable.png | Bin 11231 -> 6246 bytes
htdocs/admin/dolistore/img/compatible.png | Bin 2147 -> 1152 bytes
htdocs/admin/dolistore/img/dolistore.png | Bin 11317 -> 9165 bytes
htdocs/admin/dolistore/img/follow.png | Bin 2869 -> 1398 bytes
.../admin/dolistore/img/object_dolistore.png | Bin 1851 -> 943 bytes
htdocs/cashdesk/img/basket_delete.png | Bin 773 -> 691 bytes
htdocs/cashdesk/img/bg_conteneur_droite.png | Bin 171 -> 75 bytes
htdocs/cashdesk/img/bg_conteneur_gauche.png | Bin 172 -> 75 bytes
htdocs/cashdesk/img/bg_entete.png | Bin 599 -> 254 bytes
htdocs/cashdesk/img/bg_pied.png | Bin 572 -> 252 bytes
htdocs/cashdesk/img/calendrier.png | Bin 871 -> 819 bytes
htdocs/cashdesk/img/decrypted.png | Bin 1624 -> 1302 bytes
htdocs/cashdesk/img/gescom.png | Bin 5453 -> 4290 bytes
htdocs/cashdesk/img/lock.png | Bin 749 -> 667 bytes
htdocs/cashdesk/img/login.png | Bin 5026 -> 2532 bytes
htdocs/cashdesk/img/new.png | Bin 2272 -> 2104 bytes
htdocs/holiday/img/add.png | Bin 3208 -> 234 bytes
htdocs/holiday/img/conges.png | Bin 805 -> 743 bytes
htdocs/holiday/img/delete.png | Bin 3350 -> 329 bytes
htdocs/holiday/img/edit.png | Bin 3307 -> 325 bytes
.../template/img/object_mymodule.png | Bin 360 -> 219 bytes
.../template/img/object_mymodule_over.png | Bin 323 -> 208 bytes
.../template/img/object_myobject.png | Bin 360 -> 219 bytes
htdocs/opensurvey/img/accept-24.png | Bin 1696 -> 1477 bytes
htdocs/opensurvey/img/accept.png | Bin 901 -> 775 bytes
htdocs/opensurvey/img/add-16.png | Bin 845 -> 732 bytes
htdocs/opensurvey/img/add-24.png | Bin 1393 -> 1185 bytes
htdocs/opensurvey/img/calendar-32.png | Bin 2155 -> 1694 bytes
htdocs/opensurvey/img/chart-32.png | Bin 2059 -> 1648 bytes
htdocs/opensurvey/img/date.png | Bin 62276 -> 57814 bytes
htdocs/opensurvey/img/fforward.png | Bin 1359 -> 1196 bytes
htdocs/opensurvey/img/medaille.png | Bin 753 -> 656 bytes
htdocs/opensurvey/img/next.png | Bin 1349 -> 1156 bytes
htdocs/opensurvey/img/object_opensurvey.png | Bin 828 -> 722 bytes
htdocs/opensurvey/img/opensurvey.png | Bin 2350 -> 2113 bytes
htdocs/opensurvey/img/previous.png | Bin 1388 -> 1212 bytes
htdocs/opensurvey/img/rewind.png | Bin 1364 -> 1202 bytes
htdocs/opensurvey/img/sondage2.png | Bin 73508 -> 67659 bytes
htdocs/paybox/img/object_paybox.png | Bin 1428 -> 581 bytes
htdocs/paypal/img/object_paypal.png | Bin 4120 -> 585 bytes
htdocs/product/inventory/img/bt-save.png | Bin 493 -> 425 bytes
htdocs/product/inventory/img/inventory.png | Bin 1802 -> 1582 bytes
htdocs/product/inventory/img/plus.png | Bin 1299 -> 1082 bytes
htdocs/product/inventory/img/plus16.png | Bin 665 -> 517 bytes
htdocs/product/stock/img/no.png | Bin 677 -> 465 bytes
htdocs/product/stock/img/yes.png | Bin 974 -> 861 bytes
htdocs/public/theme/common/company.png | Bin 1669 -> 1143 bytes
htdocs/public/theme/common/nophoto.png | Bin 10127 -> 5278 bytes
htdocs/public/theme/common/user_anonymous.png | Bin 16334 -> 15184 bytes
htdocs/public/theme/common/user_man.png | Bin 19908 -> 17821 bytes
htdocs/public/theme/common/user_woman.png | Bin 24554 -> 22048 bytes
htdocs/public/ticket/img/bg_ticket.png | Bin 13264 -> 9235 bytes
htdocs/stripe/img/object_stripe.png | Bin 819 -> 583 bytes
htdocs/support/background.png | Bin 229 -> 85 bytes
htdocs/support/helpcenter.png | Bin 2648 -> 2212 bytes
htdocs/support/internet.png | Bin 2907 -> 2808 bytes
htdocs/support/mail.png | Bin 4435 -> 3845 bytes
htdocs/support/pagemaster.png | Bin 2086 -> 1548 bytes
htdocs/support/redstar.png | Bin 596 -> 509 bytes
htdocs/support/star.png | Bin 381 -> 286 bytes
htdocs/support/who.png | Bin 1847 -> 980 bytes
htdocs/takepos/css/images/controls.png | Bin 2027 -> 2022 bytes
htdocs/takepos/genimg/empty.png | Bin 156 -> 95 bytes
htdocs/takepos/img/arrow-next-top.png | Bin 47808 -> 1034 bytes
htdocs/takepos/img/arrow-next.png | Bin 5125 -> 1101 bytes
htdocs/takepos/img/arrow-prev-top.png | Bin 47668 -> 1035 bytes
htdocs/takepos/img/arrow-prev.png | Bin 5112 -> 1097 bytes
htdocs/takepos/img/gfdl.png | Bin 4709 -> 3434 bytes
htdocs/takepos/img/gplv3.png | Bin 2666 -> 2477 bytes
htdocs/takepos/img/object_takepos.png | Bin 360 -> 219 bytes
htdocs/takepos/img/takepos.png | Bin 3445 -> 400 bytes
htdocs/theme/common/bell.png | Bin 509 -> 341 bytes
htdocs/theme/common/cheque.png | Bin 2483 -> 1887 bytes
htdocs/theme/common/colorpicker.png | Bin 229 -> 175 bytes
htdocs/theme/common/credit_card.png | Bin 7676 -> 4596 bytes
htdocs/theme/common/devices/audio-card.png | Bin 4588 -> 4459 bytes
htdocs/theme/common/devices/audio-headset.png | Bin 3163 -> 3060 bytes
.../theme/common/devices/audio-input-line.png | Bin 1003 -> 912 bytes
.../common/devices/audio-input-microphone.png | Bin 2468 -> 2355 bytes
htdocs/theme/common/devices/battery.png | Bin 2980 -> 2880 bytes
htdocs/theme/common/devices/camera-photo.png | Bin 2905 -> 2816 bytes
htdocs/theme/common/devices/camera-web.png | Bin 4956 -> 4847 bytes
.../theme/common/devices/computer-laptop.png | Bin 3315 -> 3116 bytes
htdocs/theme/common/devices/computer.png | Bin 3833 -> 3700 bytes
htdocs/theme/common/devices/cpu.png | Bin 4639 -> 4484 bytes
.../theme/common/devices/drive-harddisk.png | Bin 3317 -> 3217 bytes
htdocs/theme/common/devices/drive-optical.png | Bin 3491 -> 3309 bytes
.../drive-removable-media-usb-pendrive.png | Bin 2942 -> 2826 bytes
.../devices/drive-removable-media-usb.png | Bin 3243 -> 3136 bytes
htdocs/theme/common/devices/input-gaming.png | Bin 4858 -> 4749 bytes
htdocs/theme/common/devices/input-mouse.png | Bin 3497 -> 3393 bytes
htdocs/theme/common/devices/input-tablet.png | Bin 3000 -> 2838 bytes
.../common/devices/media-flash-sd-mmc.png | Bin 4272 -> 4076 bytes
.../devices/media-flash-smart-media.png | Bin 2926 -> 2821 bytes
htdocs/theme/common/devices/media-flash.png | Bin 6991 -> 6839 bytes
htdocs/theme/common/devices/media-floppy.png | Bin 2694 -> 2582 bytes
.../common/devices/media-optical-audio.png | Bin 6302 -> 6140 bytes
.../common/devices/media-optical-blu-ray.png | Bin 6651 -> 6413 bytes
.../common/devices/media-optical-data.png | Bin 6753 -> 6285 bytes
.../devices/media-optical-dvd-video.png | Bin 6475 -> 6264 bytes
.../common/devices/media-optical-dvd.png | Bin 5464 -> 5303 bytes
.../common/devices/media-optical-mixed-cd.png | Bin 7265 -> 7079 bytes
.../devices/media-optical-recordable.png | Bin 5590 -> 5334 bytes
.../common/devices/media-optical-video.png | Bin 5888 -> 5663 bytes
htdocs/theme/common/devices/media-optical.png | Bin 5140 -> 4972 bytes
htdocs/theme/common/devices/modem.png | Bin 2980 -> 2757 bytes
.../devices/multimedia-player-apple-ipod.png | Bin 2570 -> 2458 bytes
.../common/devices/multimedia-player.png | Bin 3622 -> 3501 bytes
htdocs/theme/common/devices/network-wired.png | Bin 2735 -> 2600 bytes
.../devices/network-wireless-connected-00.png | Bin 1206 -> 944 bytes
.../network-wireless-connected-100.png | Bin 6942 -> 6807 bytes
.../devices/network-wireless-connected-25.png | Bin 1864 -> 1707 bytes
.../devices/network-wireless-connected-50.png | Bin 3158 -> 3006 bytes
.../devices/network-wireless-connected-75.png | Bin 5121 -> 4972 bytes
.../devices/network-wireless-disconnected.png | Bin 1179 -> 868 bytes
.../theme/common/devices/network-wireless.png | Bin 6942 -> 6807 bytes
htdocs/theme/common/devices/pda.png | Bin 3224 -> 3077 bytes
.../devices/phone-openmoko-freerunner.png | Bin 2914 -> 2780 bytes
htdocs/theme/common/devices/phone.png | Bin 3656 -> 3540 bytes
htdocs/theme/common/devices/printer-laser.png | Bin 2714 -> 2615 bytes
htdocs/theme/common/devices/printer.png | Bin 2790 -> 2653 bytes
htdocs/theme/common/devices/scanner.png | Bin 3193 -> 3086 bytes
htdocs/theme/common/devices/video-display.png | Bin 2925 -> 2777 bytes
.../theme/common/devices/video-projector.png | Bin 4164 -> 4065 bytes
.../theme/common/devices/video-television.png | Bin 2123 -> 1975 bytes
htdocs/theme/common/dolibarr_box.png | Bin 34121 -> 28882 bytes
htdocs/theme/common/emotes/face-angel.png | Bin 18255 -> 17856 bytes
.../theme/common/emotes/face-embarrassed.png | Bin 16593 -> 16392 bytes
htdocs/theme/common/emotes/face-kiss.png | Bin 15844 -> 15589 bytes
htdocs/theme/common/emotes/face-laugh.png | Bin 16132 -> 16041 bytes
htdocs/theme/common/emotes/face-plain.png | Bin 14788 -> 14596 bytes
htdocs/theme/common/emotes/face-raspberry.png | Bin 15604 -> 15456 bytes
htdocs/theme/common/emotes/face-sad.png | Bin 14844 -> 14644 bytes
htdocs/theme/common/emotes/face-smile-big.png | Bin 13810 -> 13667 bytes
htdocs/theme/common/emotes/face-smile.png | Bin 15408 -> 15224 bytes
htdocs/theme/common/emotes/face-surprise.png | Bin 15166 -> 14983 bytes
htdocs/theme/common/emotes/face-uncertain.png | Bin 14987 -> 14804 bytes
htdocs/theme/common/emotes/face-wink.png | Bin 15438 -> 15254 bytes
htdocs/theme/common/flags/ad.png | Bin 401 -> 388 bytes
htdocs/theme/common/flags/ae.png | Bin 380 -> 289 bytes
htdocs/theme/common/flags/af.png | Bin 390 -> 384 bytes
htdocs/theme/common/flags/ag.png | Bin 382 -> 368 bytes
htdocs/theme/common/flags/ai.png | Bin 399 -> 389 bytes
htdocs/theme/common/flags/al.png | Bin 405 -> 390 bytes
htdocs/theme/common/flags/am.png | Bin 360 -> 306 bytes
htdocs/theme/common/flags/an.png | Bin 387 -> 344 bytes
htdocs/theme/common/flags/ao.png | Bin 271 -> 258 bytes
htdocs/theme/common/flags/ar.png | Bin 369 -> 353 bytes
htdocs/theme/common/flags/as.png | Bin 394 -> 385 bytes
htdocs/theme/common/flags/at.png | Bin 371 -> 313 bytes
htdocs/theme/common/flags/au.png | Bin 405 -> 401 bytes
htdocs/theme/common/flags/aw.png | Bin 387 -> 363 bytes
htdocs/theme/common/flags/ax.png | Bin 399 -> 387 bytes
htdocs/theme/common/flags/az.png | Bin 376 -> 370 bytes
htdocs/theme/common/flags/ba.png | Bin 397 -> 383 bytes
htdocs/theme/common/flags/bb.png | Bin 408 -> 388 bytes
htdocs/theme/common/flags/bd.png | Bin 405 -> 350 bytes
htdocs/theme/common/flags/be.png | Bin 387 -> 304 bytes
htdocs/theme/common/flags/bf.png | Bin 364 -> 338 bytes
htdocs/theme/common/flags/bg.png | Bin 366 -> 321 bytes
htdocs/theme/common/flags/bh.png | Bin 394 -> 336 bytes
htdocs/theme/common/flags/bi.png | Bin 415 -> 406 bytes
htdocs/theme/common/flags/bj.png | Bin 382 -> 310 bytes
htdocs/theme/common/flags/bm.png | Bin 391 -> 383 bytes
htdocs/theme/common/flags/bn.png | Bin 399 -> 369 bytes
htdocs/theme/common/flags/bo.png | Bin 349 -> 315 bytes
htdocs/theme/common/flags/br.png | Bin 397 -> 388 bytes
htdocs/theme/common/flags/bs.png | Bin 364 -> 349 bytes
htdocs/theme/common/flags/bt.png | Bin 397 -> 393 bytes
htdocs/theme/common/flags/bv.png | Bin 401 -> 378 bytes
htdocs/theme/common/flags/bw.png | Bin 371 -> 320 bytes
htdocs/theme/common/flags/by.png | Bin 378 -> 348 bytes
htdocs/theme/common/flags/bz.png | Bin 396 -> 386 bytes
htdocs/theme/common/flags/ca.png | Bin 414 -> 399 bytes
htdocs/theme/common/flags/catalonia.png | Bin 261 -> 251 bytes
htdocs/theme/common/flags/cc.png | Bin 411 -> 396 bytes
htdocs/theme/common/flags/cd.png | Bin 339 -> 277 bytes
htdocs/theme/common/flags/cf.png | Bin 363 -> 356 bytes
htdocs/theme/common/flags/cg.png | Bin 386 -> 331 bytes
htdocs/theme/common/flags/ch.png | Bin 353 -> 231 bytes
htdocs/theme/common/flags/ci.png | Bin 389 -> 312 bytes
htdocs/theme/common/flags/ck.png | Bin 394 -> 389 bytes
htdocs/theme/common/flags/cl.png | Bin 366 -> 318 bytes
htdocs/theme/common/flags/cm.png | Bin 403 -> 340 bytes
htdocs/theme/common/flags/cn.png | Bin 391 -> 340 bytes
htdocs/theme/common/flags/co.png | Bin 356 -> 299 bytes
htdocs/theme/common/flags/cr.png | Bin 373 -> 312 bytes
htdocs/theme/common/flags/cs.png | Bin 351 -> 304 bytes
htdocs/theme/common/flags/cu.png | Bin 392 -> 379 bytes
htdocs/theme/common/flags/cv.png | Bin 391 -> 371 bytes
htdocs/theme/common/flags/cx.png | Bin 386 -> 363 bytes
htdocs/theme/common/flags/cy.png | Bin 389 -> 330 bytes
htdocs/theme/common/flags/cz.png | Bin 379 -> 337 bytes
htdocs/theme/common/flags/dk.png | Bin 390 -> 338 bytes
htdocs/theme/common/flags/dm.png | Bin 398 -> 381 bytes
htdocs/theme/common/flags/do.png | Bin 386 -> 349 bytes
htdocs/theme/common/flags/dz.png | Bin 403 -> 389 bytes
htdocs/theme/common/flags/ec.png | Bin 346 -> 329 bytes
htdocs/theme/common/flags/ee.png | Bin 357 -> 273 bytes
htdocs/theme/common/flags/eg.png | Bin 361 -> 337 bytes
htdocs/theme/common/flags/eh.png | Bin 367 -> 333 bytes
htdocs/theme/common/flags/en.png | Bin 301 -> 297 bytes
htdocs/theme/common/flags/england.png | Bin 396 -> 354 bytes
htdocs/theme/common/flags/er.png | Bin 389 -> 378 bytes
htdocs/theme/common/flags/es.png | Bin 379 -> 334 bytes
htdocs/theme/common/flags/et.png | Bin 367 -> 359 bytes
htdocs/theme/common/flags/eu.png | Bin 270 -> 217 bytes
htdocs/theme/common/flags/fam.png | Bin 400 -> 339 bytes
htdocs/theme/common/flags/fi.png | Bin 402 -> 356 bytes
htdocs/theme/common/flags/fj.png | Bin 403 -> 394 bytes
htdocs/theme/common/flags/fk.png | Bin 403 -> 394 bytes
htdocs/theme/common/flags/fm.png | Bin 407 -> 382 bytes
htdocs/theme/common/flags/fo.png | Bin 403 -> 364 bytes
htdocs/theme/common/flags/fr.png | Bin 400 -> 353 bytes
htdocs/theme/common/flags/ga.png | Bin 355 -> 334 bytes
htdocs/theme/common/flags/gb.png | Bin 301 -> 297 bytes
htdocs/theme/common/flags/gd.png | Bin 399 -> 388 bytes
htdocs/theme/common/flags/ge.png | Bin 415 -> 400 bytes
htdocs/theme/common/flags/gf.png | Bin 400 -> 353 bytes
htdocs/theme/common/flags/gg.png | Bin 484 -> 438 bytes
htdocs/theme/common/flags/gh.png | Bin 362 -> 319 bytes
htdocs/theme/common/flags/gi.png | Bin 396 -> 351 bytes
htdocs/theme/common/flags/gl.png | Bin 395 -> 354 bytes
htdocs/theme/common/flags/gm.png | Bin 367 -> 356 bytes
htdocs/theme/common/flags/gn.png | Bin 390 -> 313 bytes
htdocs/theme/common/flags/gp.png | Bin 376 -> 333 bytes
htdocs/theme/common/flags/gq.png | Bin 371 -> 353 bytes
htdocs/theme/common/flags/gr.png | Bin 384 -> 378 bytes
htdocs/theme/common/flags/gs.png | Bin 397 -> 385 bytes
htdocs/theme/common/flags/gt.png | Bin 407 -> 339 bytes
htdocs/theme/common/flags/gu.png | Bin 390 -> 361 bytes
htdocs/theme/common/flags/gw.png | Bin 366 -> 323 bytes
htdocs/theme/common/flags/gy.png | Bin 407 -> 392 bytes
htdocs/theme/common/flags/hk.png | Bin 401 -> 383 bytes
htdocs/theme/common/flags/hm.png | Bin 405 -> 401 bytes
htdocs/theme/common/flags/hn.png | Bin 381 -> 369 bytes
htdocs/theme/common/flags/hr.png | Bin 380 -> 352 bytes
htdocs/theme/common/flags/ht.png | Bin 363 -> 321 bytes
htdocs/theme/common/flags/hu.png | Bin 357 -> 269 bytes
htdocs/theme/common/flags/id.png | Bin 385 -> 291 bytes
htdocs/theme/common/flags/ie.png | Bin 399 -> 327 bytes
htdocs/theme/common/flags/il.png | Bin 389 -> 325 bytes
htdocs/theme/common/flags/in.png | Bin 357 -> 345 bytes
htdocs/theme/common/flags/int.png | Bin 304 -> 223 bytes
htdocs/theme/common/flags/io.png | Bin 410 -> 401 bytes
htdocs/theme/common/flags/iq.png | Bin 354 -> 344 bytes
htdocs/theme/common/flags/ir.png | Bin 366 -> 355 bytes
htdocs/theme/common/flags/is.png | Bin 412 -> 374 bytes
htdocs/theme/common/flags/it.png | Bin 387 -> 287 bytes
htdocs/theme/common/flags/jm.png | Bin 398 -> 384 bytes
htdocs/theme/common/flags/jo.png | Bin 377 -> 342 bytes
htdocs/theme/common/flags/jp.png | Bin 395 -> 308 bytes
htdocs/theme/common/flags/ke.png | Bin 372 -> 361 bytes
htdocs/theme/common/flags/kg.png | Bin 389 -> 349 bytes
htdocs/theme/common/flags/kh.png | Bin 390 -> 372 bytes
htdocs/theme/common/flags/ki.png | Bin 387 -> 385 bytes
htdocs/theme/common/flags/km.png | Bin 371 -> 362 bytes
htdocs/theme/common/flags/kn.png | Bin 396 -> 388 bytes
htdocs/theme/common/flags/kp.png | Bin 396 -> 378 bytes
htdocs/theme/common/flags/kr.png | Bin 416 -> 403 bytes
htdocs/theme/common/flags/kw.png | Bin 357 -> 343 bytes
htdocs/theme/common/flags/ky.png | Bin 407 -> 395 bytes
htdocs/theme/common/flags/kz.png | Bin 406 -> 390 bytes
htdocs/theme/common/flags/la.png | Bin 383 -> 373 bytes
htdocs/theme/common/flags/lb.png | Bin 387 -> 371 bytes
htdocs/theme/common/flags/lc.png | Bin 284 -> 277 bytes
htdocs/theme/common/flags/li.png | Bin 365 -> 364 bytes
htdocs/theme/common/flags/lk.png | Bin 403 -> 380 bytes
htdocs/theme/common/flags/lr.png | Bin 376 -> 346 bytes
htdocs/theme/common/flags/ls.png | Bin 412 -> 393 bytes
htdocs/theme/common/flags/lt.png | Bin 356 -> 329 bytes
htdocs/theme/common/flags/lu.png | Bin 352 -> 327 bytes
htdocs/theme/common/flags/lv.png | Bin 384 -> 326 bytes
htdocs/theme/common/flags/ly.png | Bin 385 -> 266 bytes
htdocs/theme/common/flags/ma.png | Bin 390 -> 298 bytes
htdocs/theme/common/flags/mc.png | Bin 372 -> 272 bytes
htdocs/theme/common/flags/md.png | Bin 384 -> 378 bytes
htdocs/theme/common/flags/mg.png | Bin 377 -> 319 bytes
htdocs/theme/common/flags/mh.png | Bin 406 -> 393 bytes
htdocs/theme/common/flags/mk.png | Bin 416 -> 403 bytes
htdocs/theme/common/flags/ml.png | Bin 384 -> 322 bytes
htdocs/theme/common/flags/mm.png | Bin 383 -> 340 bytes
htdocs/theme/common/flags/mn.png | Bin 394 -> 342 bytes
htdocs/theme/common/flags/mo.png | Bin 408 -> 396 bytes
htdocs/theme/common/flags/mp.png | Bin 405 -> 387 bytes
htdocs/theme/common/flags/mq.png | Bin 418 -> 413 bytes
htdocs/theme/common/flags/mr.png | Bin 402 -> 391 bytes
htdocs/theme/common/flags/ms.png | Bin 395 -> 379 bytes
htdocs/theme/common/flags/mt.png | Bin 398 -> 318 bytes
htdocs/theme/common/flags/mu.png | Bin 342 -> 331 bytes
htdocs/theme/common/flags/mv.png | Bin 390 -> 376 bytes
htdocs/theme/common/flags/mw.png | Bin 367 -> 350 bytes
htdocs/theme/common/flags/mx.png | Bin 393 -> 371 bytes
htdocs/theme/common/flags/my.png | Bin 392 -> 384 bytes
htdocs/theme/common/flags/mz.png | Bin 374 -> 367 bytes
htdocs/theme/common/flags/na.png | Bin 412 -> 387 bytes
htdocs/theme/common/flags/nc.png | Bin 373 -> 363 bytes
htdocs/theme/common/flags/nf.png | Bin 475 -> 400 bytes
htdocs/theme/common/flags/ng.png | Bin 401 -> 329 bytes
htdocs/theme/common/flags/ni.png | Bin 377 -> 370 bytes
htdocs/theme/common/flags/nl.png | Bin 359 -> 323 bytes
htdocs/theme/common/flags/no.png | Bin 401 -> 378 bytes
htdocs/theme/common/flags/np.png | Bin 353 -> 314 bytes
htdocs/theme/common/flags/nr.png | Bin 394 -> 381 bytes
htdocs/theme/common/flags/nu.png | Bin 399 -> 396 bytes
htdocs/theme/common/flags/nz.png | Bin 406 -> 395 bytes
htdocs/theme/common/flags/om.png | Bin 379 -> 324 bytes
htdocs/theme/common/flags/pa.png | Bin 379 -> 362 bytes
htdocs/theme/common/flags/pe.png | Bin 385 -> 271 bytes
htdocs/theme/common/flags/pf.png | Bin 374 -> 352 bytes
htdocs/theme/common/flags/pg.png | Bin 391 -> 363 bytes
htdocs/theme/common/flags/ph.png | Bin 380 -> 362 bytes
htdocs/theme/common/flags/pk.png | Bin 416 -> 403 bytes
htdocs/theme/common/flags/pl.png | Bin 353 -> 247 bytes
htdocs/theme/common/flags/pm.png | Bin 398 -> 397 bytes
htdocs/theme/common/flags/pn.png | Bin 401 -> 391 bytes
htdocs/theme/common/flags/pr.png | Bin 396 -> 379 bytes
htdocs/theme/common/flags/ps.png | Bin 370 -> 343 bytes
htdocs/theme/common/flags/pt.png | Bin 378 -> 373 bytes
htdocs/theme/common/flags/pw.png | Bin 400 -> 387 bytes
htdocs/theme/common/flags/py.png | Bin 359 -> 337 bytes
htdocs/theme/common/flags/qa.png | Bin 404 -> 320 bytes
htdocs/theme/common/flags/re.png | Bin 400 -> 353 bytes
htdocs/theme/common/flags/ro.png | Bin 391 -> 331 bytes
htdocs/theme/common/flags/ru.png | Bin 346 -> 309 bytes
htdocs/theme/common/flags/rw.png | Bin 359 -> 347 bytes
htdocs/theme/common/flags/sa.png | Bin 403 -> 388 bytes
htdocs/theme/common/flags/sb.png | Bin 397 -> 391 bytes
htdocs/theme/common/flags/sc.png | Bin 383 -> 362 bytes
htdocs/theme/common/flags/scotland.png | Bin 423 -> 417 bytes
htdocs/theme/common/flags/sd.png | Bin 361 -> 335 bytes
htdocs/theme/common/flags/se.png | Bin 391 -> 359 bytes
htdocs/theme/common/flags/sg.png | Bin 379 -> 333 bytes
htdocs/theme/common/flags/sh.png | Bin 405 -> 403 bytes
htdocs/theme/common/flags/si.png | Bin 372 -> 361 bytes
htdocs/theme/common/flags/sj.png | Bin 401 -> 378 bytes
htdocs/theme/common/flags/sk.png | Bin 367 -> 358 bytes
htdocs/theme/common/flags/sl.png | Bin 355 -> 323 bytes
htdocs/theme/common/flags/sm.png | Bin 376 -> 362 bytes
htdocs/theme/common/flags/sn.png | Bin 382 -> 352 bytes
htdocs/theme/common/flags/so.png | Bin 400 -> 372 bytes
htdocs/theme/common/flags/sr.png | Bin 377 -> 347 bytes
htdocs/theme/common/flags/st.png | Bin 383 -> 367 bytes
htdocs/theme/common/flags/sv.png | Bin 373 -> 341 bytes
htdocs/theme/common/flags/sy.png | Bin 364 -> 327 bytes
htdocs/theme/common/flags/sz.png | Bin 386 -> 370 bytes
htdocs/theme/common/flags/tc.png | Bin 398 -> 389 bytes
htdocs/theme/common/flags/td.png | Bin 388 -> 342 bytes
htdocs/theme/common/flags/tf.png | Bin 399 -> 369 bytes
htdocs/theme/common/flags/tg.png | Bin 383 -> 377 bytes
htdocs/theme/common/flags/th.png | Bin 366 -> 324 bytes
htdocs/theme/common/flags/tj.png | Bin 373 -> 342 bytes
htdocs/theme/common/flags/tk.png | Bin 409 -> 385 bytes
htdocs/theme/common/flags/tl.png | Bin 384 -> 363 bytes
htdocs/theme/common/flags/tm.png | Bin 407 -> 403 bytes
htdocs/theme/common/flags/tn.png | Bin 397 -> 376 bytes
htdocs/theme/common/flags/to.png | Bin 398 -> 314 bytes
htdocs/theme/common/flags/tr.png | Bin 402 -> 371 bytes
htdocs/theme/common/flags/trans.png | Bin 151 -> 68 bytes
htdocs/theme/common/flags/tt.png | Bin 411 -> 392 bytes
htdocs/theme/common/flags/tv.png | Bin 393 -> 359 bytes
htdocs/theme/common/flags/tw.png | Bin 390 -> 338 bytes
htdocs/theme/common/flags/tz.png | Bin 393 -> 387 bytes
htdocs/theme/common/flags/ua.png | Bin 361 -> 304 bytes
htdocs/theme/common/flags/ug.png | Bin 366 -> 346 bytes
htdocs/theme/common/flags/uk.png | Bin 301 -> 297 bytes
htdocs/theme/common/flags/um.png | Bin 402 -> 392 bytes
htdocs/theme/common/flags/us.png | Bin 407 -> 385 bytes
htdocs/theme/common/flags/uy.png | Bin 382 -> 379 bytes
htdocs/theme/common/flags/uz.png | Bin 374 -> 354 bytes
htdocs/theme/common/flags/va.png | Bin 390 -> 360 bytes
htdocs/theme/common/flags/vc.png | Bin 401 -> 379 bytes
htdocs/theme/common/flags/ve.png | Bin 369 -> 358 bytes
htdocs/theme/common/flags/vg.png | Bin 408 -> 388 bytes
htdocs/theme/common/flags/vi.png | Bin 412 -> 398 bytes
htdocs/theme/common/flags/vn.png | Bin 392 -> 326 bytes
htdocs/theme/common/flags/vu.png | Bin 384 -> 378 bytes
htdocs/theme/common/flags/wales.png | Bin 405 -> 398 bytes
htdocs/theme/common/flags/wf.png | Bin 411 -> 401 bytes
htdocs/theme/common/flags/ws.png | Bin 379 -> 341 bytes
htdocs/theme/common/flags/ye.png | Bin 346 -> 291 bytes
htdocs/theme/common/flags/yt.png | Bin 409 -> 386 bytes
htdocs/theme/common/flags/za.png | Bin 402 -> 383 bytes
htdocs/theme/common/flags/zm.png | Bin 391 -> 342 bytes
htdocs/theme/common/flags/zw.png | Bin 385 -> 377 bytes
htdocs/theme/common/folder-new.png | Bin 334 -> 235 bytes
htdocs/theme/common/gmap.png | Bin 374 -> 226 bytes
htdocs/theme/common/help.png | Bin 657 -> 348 bytes
htdocs/theme/common/login_logo.png | Bin 3150 -> 2942 bytes
htdocs/theme/common/logo_cerfa.png | Bin 5718 -> 2973 bytes
htdocs/theme/common/mime/audio.png | Bin 326 -> 204 bytes
htdocs/theme/common/mime/css.png | Bin 185 -> 179 bytes
htdocs/theme/common/mime/doc.png | Bin 525 -> 281 bytes
htdocs/theme/common/mime/dotnet.png | Bin 592 -> 525 bytes
htdocs/theme/common/mime/encrypt.png | Bin 749 -> 667 bytes
htdocs/theme/common/mime/error.png | Bin 489 -> 340 bytes
htdocs/theme/common/mime/flash.png | Bin 470 -> 258 bytes
htdocs/theme/common/mime/glasses.png | Bin 515 -> 464 bytes
htdocs/theme/common/mime/html.png | Bin 677 -> 326 bytes
htdocs/theme/common/mime/image.png | Bin 601 -> 299 bytes
htdocs/theme/common/mime/jnlp.png | Bin 577 -> 504 bytes
htdocs/theme/common/mime/jscript.png | Bin 722 -> 399 bytes
htdocs/theme/common/mime/library.png | Bin 361 -> 245 bytes
htdocs/theme/common/mime/lit.png | Bin 358 -> 317 bytes
htdocs/theme/common/mime/mdb.png | Bin 579 -> 512 bytes
htdocs/theme/common/mime/notavailable.png | Bin 197 -> 88 bytes
htdocs/theme/common/mime/ooffice.png | Bin 564 -> 312 bytes
htdocs/theme/common/mime/other.png | Bin 197 -> 140 bytes
htdocs/theme/common/mime/page.png | Bin 734 -> 656 bytes
htdocs/theme/common/mime/pdf.png | Bin 447 -> 249 bytes
htdocs/theme/common/mime/php.png | Bin 338 -> 264 bytes
htdocs/theme/common/mime/pl.png | Bin 553 -> 532 bytes
htdocs/theme/common/mime/ppt.png | Bin 545 -> 286 bytes
htdocs/theme/common/mime/rss.png | Bin 552 -> 537 bytes
htdocs/theme/common/mime/script.png | Bin 590 -> 351 bytes
htdocs/theme/common/mime/svg.png | Bin 648 -> 346 bytes
htdocs/theme/common/mime/text.png | Bin 257 -> 186 bytes
htdocs/theme/common/mime/ttf.png | Bin 530 -> 445 bytes
htdocs/theme/common/mime/unknown.png | Bin 786 -> 701 bytes
htdocs/theme/common/mime/video.png | Bin 370 -> 235 bytes
htdocs/theme/common/mime/xls.png | Bin 574 -> 306 bytes
htdocs/theme/common/paypal.png | Bin 1825 -> 1384 bytes
htdocs/theme/common/redstar.png | Bin 533 -> 509 bytes
htdocs/theme/common/skype_callbutton.png | Bin 1377 -> 413 bytes
htdocs/theme/common/skype_chatbutton.png | Bin 1244 -> 282 bytes
htdocs/theme/common/star.png | Bin 381 -> 286 bytes
.../common/transform-crop-and-resize.png | Bin 712 -> 685 bytes
htdocs/theme/common/transparent.png | Bin 161 -> 68 bytes
.../common/treemenu/folder2-expanded.png | Bin 517 -> 487 bytes
htdocs/theme/common/treemenu/folder2.png | Bin 537 -> 459 bytes
htdocs/theme/common/view-refresh.png | Bin 466 -> 391 bytes
htdocs/theme/dolibarr.png | Bin 995 -> 794 bytes
htdocs/theme/dolibarr_logo.png | Bin 10289 -> 9663 bytes
htdocs/theme/dolibarr_logo_256x256.png | Bin 4008 -> 3525 bytes
htdocs/theme/dolibarr_logo_bw.png | Bin 646 -> 564 bytes
htdocs/theme/dolibarr_logo_squarred.png | Bin 9520 -> 6959 bytes
htdocs/theme/dolibarr_logo_squarred_alpha.png | Bin 8921 -> 7844 bytes
.../theme/dolibarr_preferred_partner_int.png | Bin 9804 -> 6719 bytes
htdocs/theme/dolistore_logo.png | Bin 10519 -> 10077 bytes
htdocs/theme/eldy/img/addfile.png | Bin 593 -> 567 bytes
htdocs/theme/eldy/img/bg-bas-rubrique.png | Bin 300 -> 240 bytes
htdocs/theme/eldy/img/bg-titre-rubrique.png | Bin 374 -> 274 bytes
htdocs/theme/eldy/img/button_bg.png | Bin 199 -> 85 bytes
htdocs/theme/eldy/img/button_edit.png | Bin 961 -> 794 bytes
htdocs/theme/eldy/img/calc.png | Bin 734 -> 706 bytes
htdocs/theme/eldy/img/calendar.png | Bin 250 -> 165 bytes
htdocs/theme/eldy/img/call.png | Bin 286 -> 259 bytes
htdocs/theme/eldy/img/call_out.png | Bin 318 -> 259 bytes
htdocs/theme/eldy/img/close.png | Bin 301 -> 190 bytes
htdocs/theme/eldy/img/close_title.png | Bin 240 -> 194 bytes
htdocs/theme/eldy/img/delete.png | Bin 267 -> 139 bytes
htdocs/theme/eldy/img/detail.png | Bin 589 -> 572 bytes
htdocs/theme/eldy/img/disable.png | Bin 245 -> 235 bytes
htdocs/theme/eldy/img/edit.png | Bin 818 -> 461 bytes
htdocs/theme/eldy/img/edit_add.png | Bin 220 -> 120 bytes
htdocs/theme/eldy/img/edit_remove.png | Bin 122 -> 101 bytes
htdocs/theme/eldy/img/editdelete.png | Bin 245 -> 235 bytes
htdocs/theme/eldy/img/error.png | Bin 385 -> 237 bytes
htdocs/theme/eldy/img/external.png | Bin 378 -> 226 bytes
htdocs/theme/eldy/img/file.png | Bin 505 -> 323 bytes
htdocs/theme/eldy/img/filenew.png | Bin 397 -> 263 bytes
htdocs/theme/eldy/img/filter.png | Bin 237 -> 125 bytes
htdocs/theme/eldy/img/folder-open.png | Bin 801 -> 702 bytes
htdocs/theme/eldy/img/folder.png | Bin 935 -> 485 bytes
htdocs/theme/eldy/img/help.png | Bin 312 -> 232 bytes
htdocs/theme/eldy/img/helpdoc_top.png | Bin 407 -> 357 bytes
htdocs/theme/eldy/img/high.png | Bin 611 -> 582 bytes
htdocs/theme/eldy/img/info.png | Bin 317 -> 239 bytes
htdocs/theme/eldy/img/info_black.png | Bin 312 -> 232 bytes
htdocs/theme/eldy/img/liste_titre.png | Bin 196 -> 184 bytes
htdocs/theme/eldy/img/liste_titre2.png | Bin 304 -> 177 bytes
htdocs/theme/eldy/img/listlight.png | Bin 177 -> 102 bytes
htdocs/theme/eldy/img/lock.png | Bin 646 -> 630 bytes
htdocs/theme/eldy/img/logout_top.png | Bin 293 -> 186 bytes
htdocs/theme/eldy/img/menus/agenda.png | Bin 700 -> 535 bytes
htdocs/theme/eldy/img/menus/agenda_over.png | Bin 541 -> 349 bytes
htdocs/theme/eldy/img/menus/bank.png | Bin 827 -> 628 bytes
htdocs/theme/eldy/img/menus/bank_over.png | Bin 620 -> 399 bytes
htdocs/theme/eldy/img/menus/commercial.png | Bin 845 -> 579 bytes
.../theme/eldy/img/menus/commercial_over.png | Bin 638 -> 403 bytes
htdocs/theme/eldy/img/menus/company.png | Bin 572 -> 457 bytes
htdocs/theme/eldy/img/menus/company_over.png | Bin 406 -> 235 bytes
htdocs/theme/eldy/img/menus/ecm.png | Bin 912 -> 683 bytes
htdocs/theme/eldy/img/menus/ecm_over.png | Bin 647 -> 406 bytes
htdocs/theme/eldy/img/menus/externalsite.png | Bin 531 -> 436 bytes
.../eldy/img/menus/externalsite_over.png | Bin 404 -> 286 bytes
htdocs/theme/eldy/img/menus/ftp.png | Bin 788 -> 613 bytes
htdocs/theme/eldy/img/menus/ftp_over.png | Bin 563 -> 358 bytes
htdocs/theme/eldy/img/menus/generic1.png | Bin 570 -> 424 bytes
htdocs/theme/eldy/img/menus/generic1_over.png | Bin 486 -> 296 bytes
htdocs/theme/eldy/img/menus/generic2.png | Bin 570 -> 424 bytes
htdocs/theme/eldy/img/menus/generic2_over.png | Bin 548 -> 433 bytes
htdocs/theme/eldy/img/menus/generic3.png | Bin 570 -> 424 bytes
htdocs/theme/eldy/img/menus/generic3_over.png | Bin 486 -> 296 bytes
htdocs/theme/eldy/img/menus/generic4.png | Bin 570 -> 424 bytes
htdocs/theme/eldy/img/menus/generic4_over.png | Bin 486 -> 296 bytes
htdocs/theme/eldy/img/menus/globe.png | Bin 1175 -> 864 bytes
htdocs/theme/eldy/img/menus/globe_over.png | Bin 844 -> 533 bytes
htdocs/theme/eldy/img/menus/holiday.png | Bin 1086 -> 881 bytes
htdocs/theme/eldy/img/menus/holiday_over.png | Bin 1086 -> 881 bytes
htdocs/theme/eldy/img/menus/home.png | Bin 679 -> 516 bytes
htdocs/theme/eldy/img/menus/home_over.png | Bin 484 -> 300 bytes
htdocs/theme/eldy/img/menus/mail.png | Bin 718 -> 553 bytes
htdocs/theme/eldy/img/menus/mail_over.png | Bin 534 -> 325 bytes
htdocs/theme/eldy/img/menus/members.png | Bin 1044 -> 726 bytes
htdocs/theme/eldy/img/menus/members_over.png | Bin 720 -> 460 bytes
htdocs/theme/eldy/img/menus/menu.png | Bin 296 -> 257 bytes
htdocs/theme/eldy/img/menus/money.png | Bin 1259 -> 916 bytes
htdocs/theme/eldy/img/menus/money_over.png | Bin 908 -> 599 bytes
htdocs/theme/eldy/img/menus/pointofsale.png | Bin 542 -> 419 bytes
.../theme/eldy/img/menus/pointofsale_over.png | Bin 424 -> 252 bytes
htdocs/theme/eldy/img/menus/products.png | Bin 510 -> 407 bytes
htdocs/theme/eldy/img/menus/products_over.png | Bin 358 -> 226 bytes
htdocs/theme/eldy/img/menus/project.png | Bin 449 -> 351 bytes
htdocs/theme/eldy/img/menus/project_over.png | Bin 360 -> 227 bytes
htdocs/theme/eldy/img/menus/shop.png | Bin 679 -> 484 bytes
htdocs/theme/eldy/img/menus/shop_over.png | Bin 502 -> 331 bytes
htdocs/theme/eldy/img/menus/ticket.png | Bin 209 -> 112 bytes
htdocs/theme/eldy/img/menus/ticket_over.png | Bin 209 -> 112 bytes
htdocs/theme/eldy/img/menus/tools.png | Bin 1052 -> 697 bytes
htdocs/theme/eldy/img/menus/tools_over.png | Bin 706 -> 442 bytes
htdocs/theme/eldy/img/menus_black/agenda.png | Bin 750 -> 550 bytes
.../eldy/img/menus_black/agenda_over.png | Bin 580 -> 349 bytes
htdocs/theme/eldy/img/menus_black/bank.png | Bin 892 -> 669 bytes
.../theme/eldy/img/menus_black/bank_over.png | Bin 638 -> 404 bytes
.../theme/eldy/img/menus_black/commercial.png | Bin 898 -> 593 bytes
.../eldy/img/menus_black/commercial_over.png | Bin 650 -> 403 bytes
htdocs/theme/eldy/img/menus_black/company.png | Bin 602 -> 483 bytes
.../eldy/img/menus_black/company_over.png | Bin 426 -> 239 bytes
htdocs/theme/eldy/img/menus_black/ecm.png | Bin 969 -> 712 bytes
.../theme/eldy/img/menus_black/ecm_over.png | Bin 672 -> 406 bytes
.../eldy/img/menus_black/externalsite.png | Bin 560 -> 460 bytes
.../img/menus_black/externalsite_over.png | Bin 415 -> 286 bytes
htdocs/theme/eldy/img/menus_black/ftp.png | Bin 844 -> 628 bytes
.../theme/eldy/img/menus_black/ftp_over.png | Bin 612 -> 358 bytes
.../theme/eldy/img/menus_black/generic1.png | Bin 611 -> 454 bytes
.../eldy/img/menus_black/generic1_over.png | Bin 490 -> 296 bytes
.../theme/eldy/img/menus_black/generic2.png | Bin 611 -> 454 bytes
.../eldy/img/menus_black/generic2_over.png | Bin 490 -> 296 bytes
.../theme/eldy/img/menus_black/generic3.png | Bin 611 -> 454 bytes
.../eldy/img/menus_black/generic3_over.png | Bin 490 -> 296 bytes
.../theme/eldy/img/menus_black/generic4.png | Bin 611 -> 454 bytes
.../eldy/img/menus_black/generic4_over.png | Bin 490 -> 296 bytes
htdocs/theme/eldy/img/menus_black/globe.png | Bin 1277 -> 882 bytes
.../theme/eldy/img/menus_black/globe_over.png | Bin 847 -> 533 bytes
htdocs/theme/eldy/img/menus_black/holiday.png | Bin 1028 -> 838 bytes
.../eldy/img/menus_black/holiday_over.png | Bin 1028 -> 838 bytes
htdocs/theme/eldy/img/menus_black/home.png | Bin 716 -> 573 bytes
.../theme/eldy/img/menus_black/home_over.png | Bin 474 -> 313 bytes
htdocs/theme/eldy/img/menus_black/mail.png | Bin 787 -> 569 bytes
.../theme/eldy/img/menus_black/mail_over.png | Bin 533 -> 325 bytes
htdocs/theme/eldy/img/menus_black/members.png | Bin 1134 -> 754 bytes
.../eldy/img/menus_black/members_over.png | Bin 733 -> 460 bytes
htdocs/theme/eldy/img/menus_black/money.png | Bin 1387 -> 948 bytes
.../theme/eldy/img/menus_black/money_over.png | Bin 952 -> 600 bytes
.../eldy/img/menus_black/pointofsale.png | Bin 573 -> 434 bytes
.../eldy/img/menus_black/pointofsale_over.png | Bin 437 -> 260 bytes
.../theme/eldy/img/menus_black/products.png | Bin 529 -> 428 bytes
.../eldy/img/menus_black/products_over.png | Bin 374 -> 231 bytes
htdocs/theme/eldy/img/menus_black/project.png | Bin 477 -> 378 bytes
.../eldy/img/menus_black/project_over.png | Bin 380 -> 237 bytes
htdocs/theme/eldy/img/menus_black/shop.png | Bin 715 -> 499 bytes
.../theme/eldy/img/menus_black/shop_over.png | Bin 510 -> 331 bytes
htdocs/theme/eldy/img/menus_black/ticket.png | Bin 203 -> 110 bytes
.../eldy/img/menus_black/ticket_over.png | Bin 203 -> 110 bytes
htdocs/theme/eldy/img/menus_black/tools.png | Bin 1148 -> 720 bytes
.../theme/eldy/img/menus_black/tools_over.png | Bin 724 -> 442 bytes
htdocs/theme/eldy/img/menutab-r.png | Bin 198 -> 196 bytes
htdocs/theme/eldy/img/nav-overlay.png | Bin 109 -> 108 bytes
htdocs/theme/eldy/img/nav-overlay3.png | Bin 1780 -> 1601 bytes
htdocs/theme/eldy/img/object_account.png | Bin 453 -> 313 bytes
htdocs/theme/eldy/img/object_accounting.png | Bin 170 -> 119 bytes
htdocs/theme/eldy/img/object_action.png | Bin 528 -> 284 bytes
htdocs/theme/eldy/img/object_address.png | Bin 358 -> 230 bytes
htdocs/theme/eldy/img/object_barcode.png | Bin 219 -> 120 bytes
htdocs/theme/eldy/img/object_bill.png | Bin 394 -> 268 bytes
htdocs/theme/eldy/img/object_billa.png | Bin 395 -> 272 bytes
htdocs/theme/eldy/img/object_billd.png | Bin 341 -> 282 bytes
htdocs/theme/eldy/img/object_billr.png | Bin 399 -> 280 bytes
htdocs/theme/eldy/img/object_bom.png | Bin 548 -> 381 bytes
htdocs/theme/eldy/img/object_book.png | Bin 222 -> 218 bytes
htdocs/theme/eldy/img/object_bookmark.png | Bin 326 -> 245 bytes
htdocs/theme/eldy/img/object_building.png | Bin 563 -> 451 bytes
htdocs/theme/eldy/img/object_calendar.png | Bin 199 -> 112 bytes
htdocs/theme/eldy/img/object_calendarday.png | Bin 223 -> 119 bytes
.../theme/eldy/img/object_calendargantt.png | Bin 242 -> 121 bytes
.../theme/eldy/img/object_calendarpertype.png | Bin 198 -> 122 bytes
.../theme/eldy/img/object_calendarperuser.png | Bin 198 -> 122 bytes
htdocs/theme/eldy/img/object_calendarweek.png | Bin 188 -> 104 bytes
.../eldy/img/object_category-expanded.png | Bin 295 -> 175 bytes
htdocs/theme/eldy/img/object_category.png | Bin 281 -> 153 bytes
htdocs/theme/eldy/img/object_commercial.png | Bin 304 -> 180 bytes
htdocs/theme/eldy/img/object_company.png | Bin 492 -> 361 bytes
htdocs/theme/eldy/img/object_contact.png | Bin 666 -> 532 bytes
htdocs/theme/eldy/img/object_contract.png | Bin 359 -> 256 bytes
htdocs/theme/eldy/img/object_cron.png | Bin 433 -> 393 bytes
htdocs/theme/eldy/img/object_debugbar.png | Bin 827 -> 721 bytes
htdocs/theme/eldy/img/object_dir.png | Bin 301 -> 187 bytes
htdocs/theme/eldy/img/object_email.png | Bin 368 -> 257 bytes
htdocs/theme/eldy/img/object_generic.png | Bin 361 -> 239 bytes
htdocs/theme/eldy/img/object_globe.png | Bin 366 -> 330 bytes
htdocs/theme/eldy/img/object_gravatar.png | Bin 666 -> 556 bytes
htdocs/theme/eldy/img/object_group.png | Bin 655 -> 562 bytes
htdocs/theme/eldy/img/object_holiday.png | Bin 771 -> 743 bytes
htdocs/theme/eldy/img/object_intervention.png | Bin 340 -> 207 bytes
htdocs/theme/eldy/img/object_invoice.png | Bin 394 -> 268 bytes
htdocs/theme/eldy/img/object_label.png | Bin 769 -> 736 bytes
htdocs/theme/eldy/img/object_list.png | Bin 179 -> 100 bytes
htdocs/theme/eldy/img/object_lock.png | Bin 646 -> 630 bytes
htdocs/theme/eldy/img/object_margin.png | Bin 571 -> 547 bytes
htdocs/theme/eldy/img/object_movement.png | Bin 548 -> 356 bytes
htdocs/theme/eldy/img/object_mrp.png | Bin 548 -> 381 bytes
.../theme/eldy/img/object_multicurrency.png | Bin 733 -> 652 bytes
htdocs/theme/eldy/img/object_opensurvey.png | Bin 743 -> 722 bytes
htdocs/theme/eldy/img/object_order.png | Bin 357 -> 253 bytes
htdocs/theme/eldy/img/object_payment.png | Bin 339 -> 258 bytes
htdocs/theme/eldy/img/object_phoning.png | Bin 577 -> 337 bytes
htdocs/theme/eldy/img/object_phoning_fax.png | Bin 633 -> 357 bytes
.../theme/eldy/img/object_phoning_mobile.png | Bin 435 -> 305 bytes
htdocs/theme/eldy/img/object_printer.png | Bin 296 -> 182 bytes
htdocs/theme/eldy/img/object_product.png | Bin 559 -> 386 bytes
htdocs/theme/eldy/img/object_project.png | Bin 926 -> 425 bytes
htdocs/theme/eldy/img/object_projectpub.png | Bin 929 -> 470 bytes
htdocs/theme/eldy/img/object_projecttask.png | Bin 941 -> 440 bytes
htdocs/theme/eldy/img/object_propal.png | Bin 284 -> 244 bytes
htdocs/theme/eldy/img/object_reduc.png | Bin 361 -> 239 bytes
htdocs/theme/eldy/img/object_resource.png | Bin 197 -> 116 bytes
htdocs/theme/eldy/img/object_sending.png | Bin 273 -> 211 bytes
htdocs/theme/eldy/img/object_service.png | Bin 365 -> 313 bytes
htdocs/theme/eldy/img/object_skype.png | Bin 682 -> 638 bytes
htdocs/theme/eldy/img/object_stock.png | Bin 554 -> 358 bytes
htdocs/theme/eldy/img/object_stripe.png | Bin 819 -> 583 bytes
.../eldy/img/object_supplier_proposal.png | Bin 284 -> 244 bytes
htdocs/theme/eldy/img/object_task_time.png | Bin 199 -> 112 bytes
htdocs/theme/eldy/img/object_tax.png | Bin 394 -> 268 bytes
htdocs/theme/eldy/img/object_technic.png | Bin 433 -> 393 bytes
htdocs/theme/eldy/img/object_ticket.png | Bin 344 -> 232 bytes
htdocs/theme/eldy/img/object_trip.png | Bin 369 -> 232 bytes
htdocs/theme/eldy/img/object_user.png | Bin 581 -> 475 bytes
htdocs/theme/eldy/img/object_website.png | Bin 366 -> 330 bytes
htdocs/theme/eldy/img/object_zapier.png | Bin 716 -> 459 bytes
htdocs/theme/eldy/img/pdf2.png | Bin 636 -> 624 bytes
htdocs/theme/eldy/img/pdf3.png | Bin 566 -> 532 bytes
htdocs/theme/eldy/img/playdisabled.png | Bin 474 -> 316 bytes
htdocs/theme/eldy/img/preview_ext.png | Bin 564 -> 534 bytes
htdocs/theme/eldy/img/printer.png | Bin 329 -> 182 bytes
htdocs/theme/eldy/img/printer_top.png | Bin 316 -> 183 bytes
htdocs/theme/eldy/img/puce.png | Bin 223 -> 98 bytes
htdocs/theme/eldy/img/recent.png | Bin 447 -> 356 bytes
htdocs/theme/eldy/img/redstar.png | Bin 533 -> 509 bytes
htdocs/theme/eldy/img/searchclear.png | Bin 356 -> 290 bytes
htdocs/theme/eldy/img/sort_asc.png | Bin 248 -> 169 bytes
htdocs/theme/eldy/img/sort_asc_disabled.png | Bin 236 -> 174 bytes
htdocs/theme/eldy/img/sort_desc.png | Bin 260 -> 169 bytes
htdocs/theme/eldy/img/split.png | Bin 195 -> 137 bytes
htdocs/theme/eldy/img/star.png | Bin 381 -> 286 bytes
htdocs/theme/eldy/img/stats.png | Bin 640 -> 547 bytes
htdocs/theme/eldy/img/statut0.png | Bin 594 -> 342 bytes
htdocs/theme/eldy/img/statut0_40x40.png | Bin 1132 -> 552 bytes
htdocs/theme/eldy/img/statut1.png | Bin 574 -> 324 bytes
htdocs/theme/eldy/img/statut1_40x40.png | Bin 831 -> 421 bytes
htdocs/theme/eldy/img/statut3.png | Bin 736 -> 483 bytes
htdocs/theme/eldy/img/statut3_40x40.png | Bin 1577 -> 871 bytes
htdocs/theme/eldy/img/statut4.png | Bin 595 -> 318 bytes
htdocs/theme/eldy/img/statut4_40x40.png | Bin 856 -> 451 bytes
htdocs/theme/eldy/img/statut5.png | Bin 741 -> 450 bytes
htdocs/theme/eldy/img/statut5_40x40.png | Bin 1169 -> 586 bytes
htdocs/theme/eldy/img/statut6.png | Bin 502 -> 257 bytes
htdocs/theme/eldy/img/statut6_40x40.png | Bin 754 -> 394 bytes
htdocs/theme/eldy/img/statut7.png | Bin 736 -> 483 bytes
htdocs/theme/eldy/img/statut7_40x40.png | Bin 1577 -> 871 bytes
htdocs/theme/eldy/img/statut8.png | Bin 596 -> 320 bytes
htdocs/theme/eldy/img/statut8_40x40.png | Bin 848 -> 425 bytes
htdocs/theme/eldy/img/statut9.png | Bin 428 -> 234 bytes
htdocs/theme/eldy/img/statut9_40x40.png | Bin 644 -> 320 bytes
htdocs/theme/eldy/img/stcomm-1.png | Bin 903 -> 718 bytes
htdocs/theme/eldy/img/stcomm0.png | Bin 929 -> 764 bytes
htdocs/theme/eldy/img/stcomm1.png | Bin 874 -> 844 bytes
htdocs/theme/eldy/img/stcomm2.png | Bin 870 -> 837 bytes
htdocs/theme/eldy/img/stcomm3.png | Bin 832 -> 805 bytes
htdocs/theme/eldy/img/stcomm4.png | Bin 922 -> 894 bytes
htdocs/theme/eldy/img/switch_off.png | Bin 1252 -> 1128 bytes
htdocs/theme/eldy/img/switch_on.png | Bin 1228 -> 1111 bytes
htdocs/theme/eldy/img/tab_background.png | Bin 129 -> 125 bytes
htdocs/theme/eldy/img/tick.png | Bin 227 -> 204 bytes
htdocs/theme/eldy/img/title.png | Bin 1607 -> 1540 bytes
htdocs/theme/eldy/img/title_accountancy.png | Bin 952 -> 600 bytes
htdocs/theme/eldy/img/title_agenda.png | Bin 580 -> 349 bytes
htdocs/theme/eldy/img/title_bank.png | Bin 501 -> 325 bytes
htdocs/theme/eldy/img/title_commercial.png | Bin 431 -> 253 bytes
htdocs/theme/eldy/img/title_companies.png | Bin 426 -> 239 bytes
htdocs/theme/eldy/img/title_document.png | Bin 570 -> 322 bytes
htdocs/theme/eldy/img/title_generic.png | Bin 672 -> 406 bytes
htdocs/theme/eldy/img/title_home.png | Bin 750 -> 562 bytes
htdocs/theme/eldy/img/title_hrm.png | Bin 1028 -> 838 bytes
htdocs/theme/eldy/img/title_products.png | Bin 687 -> 511 bytes
htdocs/theme/eldy/img/title_project.png | Bin 380 -> 237 bytes
htdocs/theme/eldy/img/title_setup.png | Bin 724 -> 442 bytes
htdocs/theme/eldy/img/title_ticket.png | Bin 234 -> 124 bytes
htdocs/theme/eldy/img/unlock.png | Bin 686 -> 671 bytes
htdocs/theme/eldy/img/uparrow.png | Bin 194 -> 136 bytes
htdocs/theme/eldy/img/upload.png | Bin 296 -> 236 bytes
htdocs/theme/eldy/img/vcard.png | Bin 566 -> 313 bytes
htdocs/theme/eldy/img/view.png | Bin 708 -> 295 bytes
htdocs/theme/eldy/img/warning.png | Bin 392 -> 241 bytes
htdocs/theme/eldy/img/warning_white.png | Bin 316 -> 233 bytes
.../eldy/img/weather/weather-clear-night.png | Bin 2433 -> 2276 bytes
.../theme/eldy/img/weather/weather-clear.png | Bin 7724 -> 7439 bytes
.../eldy/img/weather/weather-clouds-night.png | Bin 4481 -> 4363 bytes
.../theme/eldy/img/weather/weather-clouds.png | Bin 6414 -> 6267 bytes
.../img/weather/weather-few-clouds-night.png | Bin 2328 -> 2212 bytes
.../eldy/img/weather/weather-few-clouds.png | Bin 5858 -> 5730 bytes
.../img/weather/weather-freezing-rain.png | Bin 5360 -> 5046 bytes
.../theme/eldy/img/weather/weather-hail.png | Bin 5421 -> 5090 bytes
.../eldy/img/weather/weather-many-clouds.png | Bin 4502 -> 4399 bytes
.../theme/eldy/img/weather/weather-mist.png | Bin 1617 -> 1524 bytes
.../eldy/img/weather/weather-showers-day.png | Bin 7300 -> 6954 bytes
.../img/weather/weather-showers-night.png | Bin 6327 -> 6123 bytes
.../weather/weather-showers-scattered-day.png | Bin 6533 -> 6317 bytes
.../weather-showers-scattered-night.png | Bin 5322 -> 5171 bytes
.../img/weather/weather-showers-scattered.png | Bin 5210 -> 4937 bytes
.../eldy/img/weather/weather-showers.png | Bin 5373 -> 5138 bytes
.../eldy/img/weather/weather-snow-rain.png | Bin 5857 -> 5406 bytes
.../weather/weather-snow-scattered-day.png | Bin 7257 -> 6823 bytes
.../weather/weather-snow-scattered-night.png | Bin 5912 -> 5583 bytes
.../img/weather/weather-snow-scattered.png | Bin 5336 -> 5038 bytes
.../theme/eldy/img/weather/weather-snow.png | Bin 5691 -> 5332 bytes
.../eldy/img/weather/weather-storm-day.png | Bin 7792 -> 7437 bytes
.../eldy/img/weather/weather-storm-night.png | Bin 7772 -> 7471 bytes
.../theme/eldy/img/weather/weather-storm.png | Bin 7563 -> 7261 bytes
htdocs/theme/eldy/thumb.png | Bin 13620 -> 11825 bytes
htdocs/theme/md/img/addfile.png | Bin 593 -> 567 bytes
htdocs/theme/md/img/bg-bas-rubrique.png | Bin 300 -> 240 bytes
htdocs/theme/md/img/bg-titre-rubrique.png | Bin 374 -> 274 bytes
htdocs/theme/md/img/button_bg.png | Bin 199 -> 85 bytes
htdocs/theme/md/img/button_edit.png | Bin 961 -> 794 bytes
htdocs/theme/md/img/calc.png | Bin 734 -> 706 bytes
htdocs/theme/md/img/call.png | Bin 286 -> 259 bytes
htdocs/theme/md/img/call_out.png | Bin 318 -> 259 bytes
htdocs/theme/md/img/detail.png | Bin 589 -> 572 bytes
htdocs/theme/md/img/edit.png | Bin 294 -> 165 bytes
htdocs/theme/md/img/external.png | Bin 316 -> 220 bytes
htdocs/theme/md/img/help.png | Bin 312 -> 232 bytes
htdocs/theme/md/img/info.png | Bin 399 -> 297 bytes
htdocs/theme/md/img/liste_titre.png | Bin 196 -> 184 bytes
htdocs/theme/md/img/liste_titre2.png | Bin 304 -> 177 bytes
htdocs/theme/md/img/listlight.png | Bin 177 -> 102 bytes
htdocs/theme/md/img/menu.png | Bin 166 -> 93 bytes
htdocs/theme/md/img/menus/generic1.png | Bin 570 -> 424 bytes
htdocs/theme/md/img/menus/generic1_over.png | Bin 486 -> 296 bytes
htdocs/theme/md/img/menus/generic2.png | Bin 570 -> 424 bytes
htdocs/theme/md/img/menus/generic2_over.png | Bin 548 -> 433 bytes
htdocs/theme/md/img/menus/generic3.png | Bin 570 -> 424 bytes
htdocs/theme/md/img/menus/generic3_over.png | Bin 486 -> 296 bytes
htdocs/theme/md/img/menus/generic4.png | Bin 570 -> 424 bytes
htdocs/theme/md/img/menus/generic4_over.png | Bin 486 -> 296 bytes
htdocs/theme/md/img/menus/menu.png | Bin 296 -> 257 bytes
htdocs/theme/md/img/menus/products.png | Bin 432 -> 323 bytes
htdocs/theme/md/img/menus/ticket.png | Bin 209 -> 112 bytes
htdocs/theme/md/img/menutab-r.png | Bin 198 -> 196 bytes
htdocs/theme/md/img/nav-overlay.png | Bin 109 -> 108 bytes
htdocs/theme/md/img/nav-overlay3.png | Bin 1780 -> 1601 bytes
htdocs/theme/md/img/object_barcode.png | Bin 219 -> 120 bytes
htdocs/theme/md/img/object_billa.png | Bin 232 -> 161 bytes
htdocs/theme/md/img/object_billd.png | Bin 236 -> 164 bytes
htdocs/theme/md/img/object_billr.png | Bin 239 -> 164 bytes
htdocs/theme/md/img/object_bom.png | Bin 548 -> 381 bytes
htdocs/theme/md/img/object_book.png | Bin 222 -> 218 bytes
htdocs/theme/md/img/object_bookmark.png | Bin 326 -> 245 bytes
htdocs/theme/md/img/object_calendargantt.png | Bin 219 -> 134 bytes
.../theme/md/img/object_calendarpertype.png | Bin 221 -> 141 bytes
.../theme/md/img/object_calendarperuser.png | Bin 221 -> 141 bytes
.../theme/md/img/object_category-expanded.png | Bin 198 -> 127 bytes
htdocs/theme/md/img/object_category.png | Bin 214 -> 108 bytes
htdocs/theme/md/img/object_debugbar.png | Bin 827 -> 721 bytes
htdocs/theme/md/img/object_gravatar.png | Bin 666 -> 556 bytes
htdocs/theme/md/img/object_group.png | Bin 655 -> 562 bytes
htdocs/theme/md/img/object_lock.png | Bin 646 -> 630 bytes
htdocs/theme/md/img/object_movement.png | Bin 548 -> 356 bytes
htdocs/theme/md/img/object_mrp.png | Bin 548 -> 381 bytes
htdocs/theme/md/img/object_multicurrency.png | Bin 733 -> 652 bytes
htdocs/theme/md/img/object_phoning.png | Bin 577 -> 337 bytes
htdocs/theme/md/img/object_phoning_fax.png | Bin 633 -> 357 bytes
htdocs/theme/md/img/object_phoning_mobile.png | Bin 435 -> 305 bytes
htdocs/theme/md/img/object_project.png | Bin 269 -> 178 bytes
htdocs/theme/md/img/object_projectpub.png | Bin 252 -> 166 bytes
htdocs/theme/md/img/object_skype.png | Bin 682 -> 638 bytes
htdocs/theme/md/img/object_stripe.png | Bin 819 -> 583 bytes
htdocs/theme/md/img/object_tax.png | Bin 394 -> 268 bytes
htdocs/theme/md/img/object_ticket.png | Bin 344 -> 232 bytes
htdocs/theme/md/img/object_user.png | Bin 581 -> 475 bytes
htdocs/theme/md/img/object_zapier.png | Bin 716 -> 459 bytes
htdocs/theme/md/img/pdf2.png | Bin 636 -> 624 bytes
htdocs/theme/md/img/pdf3.png | Bin 566 -> 532 bytes
htdocs/theme/md/img/playdisabled.png | Bin 474 -> 316 bytes
htdocs/theme/md/img/preview_ext.png | Bin 564 -> 534 bytes
htdocs/theme/md/img/puce.png | Bin 223 -> 98 bytes
htdocs/theme/md/img/redstar.png | Bin 533 -> 509 bytes
htdocs/theme/md/img/searchclear.png | Bin 356 -> 290 bytes
htdocs/theme/md/img/sort_asc.png | Bin 248 -> 169 bytes
htdocs/theme/md/img/sort_asc_disabled.png | Bin 236 -> 174 bytes
htdocs/theme/md/img/sort_desc.png | Bin 260 -> 169 bytes
htdocs/theme/md/img/stats.png | Bin 640 -> 547 bytes
htdocs/theme/md/img/statut0.png | Bin 594 -> 342 bytes
htdocs/theme/md/img/statut0_40x40.png | Bin 1132 -> 552 bytes
htdocs/theme/md/img/statut1.png | Bin 574 -> 324 bytes
htdocs/theme/md/img/statut1_40x40.png | Bin 831 -> 421 bytes
htdocs/theme/md/img/statut3.png | Bin 736 -> 483 bytes
htdocs/theme/md/img/statut3_40x40.png | Bin 1577 -> 871 bytes
htdocs/theme/md/img/statut4.png | Bin 595 -> 318 bytes
htdocs/theme/md/img/statut4_40x40.png | Bin 856 -> 451 bytes
htdocs/theme/md/img/statut5.png | Bin 741 -> 450 bytes
htdocs/theme/md/img/statut5_40x40.png | Bin 1169 -> 586 bytes
htdocs/theme/md/img/statut6.png | Bin 502 -> 257 bytes
htdocs/theme/md/img/statut6_40x40.png | Bin 754 -> 394 bytes
htdocs/theme/md/img/statut7.png | Bin 736 -> 483 bytes
htdocs/theme/md/img/statut7_40x40.png | Bin 1577 -> 871 bytes
htdocs/theme/md/img/statut8.png | Bin 596 -> 320 bytes
htdocs/theme/md/img/statut8_40x40.png | Bin 848 -> 425 bytes
htdocs/theme/md/img/statut9.png | Bin 428 -> 234 bytes
htdocs/theme/md/img/statut9_40x40.png | Bin 644 -> 320 bytes
htdocs/theme/md/img/stcomm-1.png | Bin 431 -> 300 bytes
htdocs/theme/md/img/stcomm0.png | Bin 914 -> 753 bytes
htdocs/theme/md/img/stcomm1.png | Bin 874 -> 844 bytes
htdocs/theme/md/img/stcomm2.png | Bin 870 -> 837 bytes
htdocs/theme/md/img/stcomm3.png | Bin 832 -> 805 bytes
htdocs/theme/md/img/stcomm4.png | Bin 922 -> 894 bytes
htdocs/theme/md/img/switch_off.png | Bin 1252 -> 1128 bytes
htdocs/theme/md/img/switch_on.png | Bin 1228 -> 1111 bytes
htdocs/theme/md/img/tab_background.png | Bin 129 -> 125 bytes
htdocs/theme/md/img/ticket.png | Bin 1034 -> 940 bytes
htdocs/theme/md/img/title.png | Bin 1607 -> 1540 bytes
htdocs/theme/md/img/title_accountancy.png | Bin 679 -> 567 bytes
htdocs/theme/md/img/title_agenda.png | Bin 750 -> 550 bytes
htdocs/theme/md/img/title_document.png | Bin 570 -> 322 bytes
htdocs/theme/md/img/title_products.png | Bin 410 -> 314 bytes
htdocs/theme/md/img/title_ticket.png | Bin 234 -> 124 bytes
htdocs/theme/md/img/uparrow.png | Bin 194 -> 136 bytes
htdocs/theme/md/img/upload.png | Bin 296 -> 236 bytes
htdocs/theme/md/img/warning.png | Bin 392 -> 241 bytes
htdocs/theme/md/img/warning_white.png | Bin 316 -> 233 bytes
.../md/img/weather/weather-clear-night.png | Bin 2433 -> 2276 bytes
htdocs/theme/md/img/weather/weather-clear.png | Bin 7724 -> 7439 bytes
.../md/img/weather/weather-clouds-night.png | Bin 4481 -> 4363 bytes
.../theme/md/img/weather/weather-clouds.png | Bin 6414 -> 6267 bytes
.../img/weather/weather-few-clouds-night.png | Bin 2328 -> 2212 bytes
.../md/img/weather/weather-few-clouds.png | Bin 5858 -> 5730 bytes
.../md/img/weather/weather-freezing-rain.png | Bin 5360 -> 5046 bytes
htdocs/theme/md/img/weather/weather-hail.png | Bin 5421 -> 5090 bytes
.../md/img/weather/weather-many-clouds.png | Bin 4502 -> 4399 bytes
htdocs/theme/md/img/weather/weather-mist.png | Bin 1617 -> 1524 bytes
.../md/img/weather/weather-showers-day.png | Bin 7300 -> 6954 bytes
.../md/img/weather/weather-showers-night.png | Bin 6327 -> 6123 bytes
.../weather/weather-showers-scattered-day.png | Bin 6533 -> 6317 bytes
.../weather-showers-scattered-night.png | Bin 5322 -> 5171 bytes
.../img/weather/weather-showers-scattered.png | Bin 5210 -> 4937 bytes
.../theme/md/img/weather/weather-showers.png | Bin 5373 -> 5138 bytes
.../md/img/weather/weather-snow-rain.png | Bin 5857 -> 5406 bytes
.../weather/weather-snow-scattered-day.png | Bin 7257 -> 6823 bytes
.../weather/weather-snow-scattered-night.png | Bin 5912 -> 5583 bytes
.../md/img/weather/weather-snow-scattered.png | Bin 5336 -> 5038 bytes
htdocs/theme/md/img/weather/weather-snow.png | Bin 5691 -> 5332 bytes
.../md/img/weather/weather-storm-day.png | Bin 7792 -> 7437 bytes
.../md/img/weather/weather-storm-night.png | Bin 7772 -> 7471 bytes
htdocs/theme/md/img/weather/weather-storm.png | Bin 7563 -> 7261 bytes
htdocs/theme/md/thumb.png | Bin 12645 -> 10820 bytes
htdocs/ticket/img/gplv3.png | Bin 2666 -> 2477 bytes
htdocs/ticket/img/history.png | Bin 2191 -> 1950 bytes
htdocs/ticket/img/mark-read.png | Bin 1014 -> 924 bytes
htdocs/ticket/img/messages.png | Bin 1778 -> 1306 bytes
htdocs/ticket/img/statut0.png | Bin 234 -> 124 bytes
htdocs/ticket/img/statut1.png | Bin 380 -> 212 bytes
htdocs/ticket/img/statut2.png | Bin 419 -> 244 bytes
htdocs/ticket/img/statut3.png | Bin 363 -> 235 bytes
htdocs/ticket/img/statut5.png | Bin 329 -> 189 bytes
htdocs/ticket/img/statut6.png | Bin 470 -> 271 bytes
htdocs/ticket/img/statut7.png | Bin 341 -> 198 bytes
htdocs/ticket/img/statut8.png | Bin 272 -> 165 bytes
htdocs/ticket/img/ticketsup.png | Bin 234 -> 124 bytes
htdocs/zapier/img/object_hook.png | Bin 360 -> 219 bytes
htdocs/zapier/img/object_zapier.png | Bin 683 -> 417 bytes
959 files changed, 0 insertions(+), 0 deletions(-)
mode change 100755 => 100644 doc/images/dolibarr_logo.png
mode change 100755 => 100644 htdocs/holiday/img/add.png
mode change 100755 => 100644 htdocs/holiday/img/delete.png
mode change 100755 => 100644 htdocs/holiday/img/edit.png
mode change 100755 => 100644 htdocs/theme/dolibarr_logo.png
mode change 100755 => 100644 htdocs/theme/dolibarr_preferred_partner_int.png
diff --git a/dev/initdemo/documents_demo/medias/image/myimagesforemailing/dolicloud_logo_white.png b/dev/initdemo/documents_demo/medias/image/myimagesforemailing/dolicloud_logo_white.png
index 3632504200d0f24e6f623575f37fdaba4ef5bf34..88c47a678b5507ace3cb78c616275d87ff31fbcd 100644
GIT binary patch
literal 26168
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
literal 34227
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