function convert_batch($objects, $format, $target_charset = 'utf-8')
 {
     //Va chercher dans le cache les notices encore bonnes
     parent::convert_batch($objects, "oai_" . $format, $target_charset);
     //Converti les notices qui doivent l'ĂȘtre
     $this->convert_uncachedoairecords($format, $target_charset);
     return $this->results;
 }
 function convert_batch($objects, $format, $target_charset = 'iso-8859-1')
 {
     if (!$objects) {
         return array();
     }
     //Va chercher dans le cache les notices encore bonnes
     $format_ref = $format . '_C_' . $target_charset;
     parent::convert_batch($objects, $format_ref, $target_charset);
     //Converti les notices qui
     $this->convert_uncachednotices($format, $format_ref, $target_charset);
     return $this->results;
 }