Accueil > > > AMERABBCODE -VALIDER UN BBCODE (OU AUTRE)-
AMERABBCODE -VALIDER UN BBCODE (OU AUTRE)-
Information sur la source
Description
Bonjour à tous ! Cette classe est inspirée du code de Malalam (voir http://www.phpcs.com/code.aspx?ID=30110) qui permettait de corriger une chaîne contenant du BBCode. Mais cette classe ne fonctionnait pas entièrement. J'ai voulu corrigé le problème mais j'ai vite arrêté car je me suis cassé les dents sur ce script auquel je ne comprennais pas grand chose XD J'ai donc entièrement reprogrammé cette classe pour obtenir ce résultat. Si vous avez des remarques ou des améliorations à me proposer, je suis à votre écoute ;-)
Source
- <?php
- // Classe AmeraBBCode
- // Auteur : Obimo (Site Web "www.audayls.123.fr")
- // Classe basée sur la classe "verif_bb" de "Malalam" ("http://www.phpcs.com/code.aspx?ID=30110")
-
- define('FILETAGS', 'filetags.xml');
-
- class AmeraBBCode {
- private $string = '';
- private static $tags;
- private $temp = array();
-
- public function __construct($string) {
- if (!isset(self::$tags)) $this->initialisetags();
- $this->string = (string) $string;
- }
-
- private function checktags() {
- $this->temp = $this->sortposition($this->temp, 'pos', 'asc');
- $i = -1;
- $open = array();
- while (isset($this->temp[++$i])) {
- if ($this->temp[$i]['delete'] === FALSE) {
- if ($this->temp[$i]['open'] === TRUE) {
- if (!isset($open[$this->temp[$i]['type']])) $open[$this->temp[$i]['type']] = array(0 => $i, 1 => $this->temp[$i]['type']);
- else {
- $j = $i;
- while (isset($this->temp[++$j]) AND ($this->temp[$j]['delete'] === TRUE OR $this->temp[$j]['open'] === TRUE OR $this->temp[$j]['type'] !== $this->temp[$i]['type']));
- $this->temp[$i]['delete'] = TRUE;
- $this->temp[$j]['delete'] = TRUE;
- }
- }
- else {
- $temp = end($open);
- if ($temp === FALSE OR $this->temp[$i]['type'] !== $temp[1]) {
- $j = $i;
- while (isset($this->temp[++$j])) $this->temp[$j]['newpos'] -= $this->temp[$i]['strlen'];
- $end = end($this->temp);
- $this->temp[$i]['newpos'] = $end['newpos']+$end['strlen'];
- $this->temp[] = $this->temp[$i];
- unset($this->temp[$i]);
- }
- else unset($open[$temp[1]]);
- }
- }
- }
- }
-
- public function correction() {
- $this->searchtags();
- $this->checktags();
- $this->emptytags();
- $this->save();
- }
-
- private function emptytags() {
- $this->temp = $this->sortposition($this->temp, 'newpos', 'asc');
- $i = -1;
- $close = array();
- $open = array();
- while (isset($this->temp[++$i])) {
- $endclose = end($close);
- $endopen = end($open);
- if ($this->temp[$i]['delete'] === FALSE) {
- if ($this->temp[$i]['open'] === TRUE) {
- if ($this->temp[$i]['newpos'] === $endclose[2] AND $this->temp[$i]['tag'] === $this->temp[$endclose[3]]['tag']) {
- $this->temp[$i]['delete'] = TRUE;
- $this->temp[$endclose[0]]['delete'] = TRUE;
- }
- else $open[$this->temp[$i]['type']] = array(0 => $i, 1 => $this->temp[$i]['type'], 2 => $this->temp[$i]['newpos']+$this->temp[$i]['strlen']);
- unset($close[$endclose[1]]);
- }
- else {
- if ($this->temp[$i]['newpos'] === $endopen[2]) {
- $this->temp[$i]['delete'] = TRUE;
- $this->temp[$endopen[0]]['delete'] = TRUE;
- }
- else $close[$this->temp[$i]['type']] = array(0 => $i, 1 => $this->temp[$i]['type'], 2 => $this->temp[$i]['newpos']+$this->temp[$i]['strlen'], 3 => $endopen[0]);
- unset($open[$endopen[1]]);
- }
- }
- else {
- if ($endclose !== FALSE) $close[$endclose[1]][2] += $this->temp[$i]['strlen'];
- if ($endopen !== FALSE) $open[$endopen[1]][2] += $this->temp[$i]['strlen'];
- }
- }
- }
-
- private function initialisetags() {
- if (!is_file(FILETAGS)) throw new Exception('Le fichier tags de AmeraBBCode est introuvable.');
- clearstatcache();
- $xml = simplexml_load_file(FILETAGS);
- if ($xml === FALSE) throw new Exception('Erreur dans le fichier de tags de AmeraBBCode.');
- $i = -1;
- while (isset($xml->tag[++$i])) {
- if ((string) $xml->tag[$i]->code === 'TRUE') $code = TRUE;
- else $code = FALSE;
- if ((string) $xml->tag[$i]->delete === 'TRUE') $delete = TRUE;
- else $delete = FALSE;
- if ((string) $xml->tag[$i]->regex === 'TRUE') {
- $regex = TRUE;
- $xml->tag[$i]->open = preg_replace(array('`^\[`', '`\]$`'), array('\[', '\]'), (string) $xml->tag[$i]->open);
- }
- else $regex = FALSE;
- self::$tags[] = array('open' => (string) $xml->tag[$i]->open, 'close' => (string) $xml->tag[$i]->close, 'code' => FALSE, 'delete' => $delete, 'regex' => $regex);
- }
- }
-
- private function save() {
- $tempdesc = $this->sortposition($this->temp, 'pos', 'desc');
- $i = -1;
- while (isset($tempdesc[++$i])) $this->string = substr_replace($this->string, '', $tempdesc[$i]['pos'], $tempdesc[$i]['strlen']);
- $i = -1;
- $temp = 0;
- while (isset($this->temp[++$i])) {
- if ($this->temp[$i]['delete'] === TRUE) $temp += $this->temp[$i]['strlen'];
- else $this->string = substr_replace($this->string, $this->temp[$i]['tag'], $this->temp[$i]['newpos']-$temp, 0);
- }
- }
-
- private function searchtags() {
- $i = -1;
- while (isset(self::$tags[++$i])) {
- $countopen = 0;
- $countclose = 0;
- $open = array();
- $close = array();
- if (self::$tags[$i]['regex'] === TRUE) {
- preg_match_all('`'.self::$tags[$i]['open'].'`', $this->string, $temp);
- $j = -1;
- $pos = -1;
- while (isset($temp[0][++$j])) {
- $pos = strpos($this->string, $temp[0][$j], $pos+1);
- $open[] = array('delete' => self::$tags[$i]['delete'], 'newpos' => $pos, 'open' => TRUE, 'pos' => $pos, 'strlen' => strlen($temp[0][$j]), 'tag' => $temp[0][$j], 'type' => $i);
- $countopen++;
- }
- }
- else {
- $pos = -1;
- $strlen = strlen(self::$tags[$i]['open']);
- do {
- $pos = strpos($this->string, self::$tags[$i]['open'], $pos+1);
- if ($pos !== FALSE) {
- $open[] = array('delete' => self::$tags[$i]['delete'], 'newpos' => $pos, 'open' => TRUE, 'pos' => $pos, 'strlen' => $strlen, 'tag' => self::$tags[$i]['open'], 'type' => $i);
- $countopen++;
- }
- } while ($pos !== FALSE);
- }
- $pos = -1;
- $strlen = strlen(self::$tags[$i]['close']);
- do {
- $pos = strpos($this->string, self::$tags[$i]['close'], $pos+1);
- if ($pos !== FALSE) {
- $close[] = array('delete' => self::$tags[$i]['delete'], 'newpos' => $pos, 'pos' => $pos, 'open' => FALSE, 'strlen' => $strlen, 'tag' => self::$tags[$i]['close'], 'type' => $i);
- $countclose++;
- }
- } while ($pos !== FALSE);
- $j = -1;
- while (isset($close[++$j]) AND isset($open[0]) AND $close[$j]['pos'] < $open[0]['pos']) {
- $close[$j]['delete'] = TRUE;
- $countclose--;
- }
- while ($countclose !== $countopen) {
- if ($countclose > $countopen) {
- $close[$countclose-1]['delete'] = TRUE;
- $countclose--;
- }
- else {
- $open[$countopen-1]['delete'] = TRUE;
- $countopen--;
- }
- }
- $this->temp = array_merge($this->temp, $open, $close);
- }
- }
-
- public function showstring() {
- return $this->string;
- }
-
- private function sortposition($array, $by, $order) {
- $endval = end($array);
- $vals = array_keys($endval);
- foreach ($vals as $init){
- $keyname = $init;
- $$keyname = array();
- }
- foreach ($array as $key => $row) {
- foreach ($vals as $names){
- $keyname = $names;
- $test = array();
- $test[$key] = $row[$names];
- $$keyname = array_merge((array) $$keyname,(array) $test);
- }
- }
- if ($order === 'asc') array_multisort($$by,SORT_ASC, SORT_NUMERIC,$array);
- else array_multisort($$by,SORT_DESC, SORT_NUMERIC,$array);
- return $array;
- }
-
- }
-
- try {
- $string = '[url="http://www.google.com"][b][url="http://www.google.fr"][/i][/b][/i][/b][code="php"]Code ![/code][/u][/b][b]Salut[/b][b][i][i][b]bonjour[/url][/i][/b][/b][b][/i][/url]';
- $time = microtime(TRUE);
- $AmeraBBCode = new AmeraBBCode($string);
- $AmeraBBCode->correction();
- echo 'Chaîne d\'origine : ',$string,"<br />\n";
- echo 'Chaîne corrigée : ',$AmeraBBCode->showstring();
- }
- catch (Exception $e) {
- die ($e->getmessage());
- }
-
- ?>
<?php
// Classe AmeraBBCode
// Auteur : Obimo (Site Web "www.audayls.123.fr")
// Classe basée sur la classe "verif_bb" de "Malalam" ("http://www.phpcs.com/code.aspx?ID=30110")
define('FILETAGS', 'filetags.xml');
class AmeraBBCode {
private $string = '';
private static $tags;
private $temp = array();
public function __construct($string) {
if (!isset(self::$tags)) $this->initialisetags();
$this->string = (string) $string;
}
private function checktags() {
$this->temp = $this->sortposition($this->temp, 'pos', 'asc');
$i = -1;
$open = array();
while (isset($this->temp[++$i])) {
if ($this->temp[$i]['delete'] === FALSE) {
if ($this->temp[$i]['open'] === TRUE) {
if (!isset($open[$this->temp[$i]['type']])) $open[$this->temp[$i]['type']] = array(0 => $i, 1 => $this->temp[$i]['type']);
else {
$j = $i;
while (isset($this->temp[++$j]) AND ($this->temp[$j]['delete'] === TRUE OR $this->temp[$j]['open'] === TRUE OR $this->temp[$j]['type'] !== $this->temp[$i]['type']));
$this->temp[$i]['delete'] = TRUE;
$this->temp[$j]['delete'] = TRUE;
}
}
else {
$temp = end($open);
if ($temp === FALSE OR $this->temp[$i]['type'] !== $temp[1]) {
$j = $i;
while (isset($this->temp[++$j])) $this->temp[$j]['newpos'] -= $this->temp[$i]['strlen'];
$end = end($this->temp);
$this->temp[$i]['newpos'] = $end['newpos']+$end['strlen'];
$this->temp[] = $this->temp[$i];
unset($this->temp[$i]);
}
else unset($open[$temp[1]]);
}
}
}
}
public function correction() {
$this->searchtags();
$this->checktags();
$this->emptytags();
$this->save();
}
private function emptytags() {
$this->temp = $this->sortposition($this->temp, 'newpos', 'asc');
$i = -1;
$close = array();
$open = array();
while (isset($this->temp[++$i])) {
$endclose = end($close);
$endopen = end($open);
if ($this->temp[$i]['delete'] === FALSE) {
if ($this->temp[$i]['open'] === TRUE) {
if ($this->temp[$i]['newpos'] === $endclose[2] AND $this->temp[$i]['tag'] === $this->temp[$endclose[3]]['tag']) {
$this->temp[$i]['delete'] = TRUE;
$this->temp[$endclose[0]]['delete'] = TRUE;
}
else $open[$this->temp[$i]['type']] = array(0 => $i, 1 => $this->temp[$i]['type'], 2 => $this->temp[$i]['newpos']+$this->temp[$i]['strlen']);
unset($close[$endclose[1]]);
}
else {
if ($this->temp[$i]['newpos'] === $endopen[2]) {
$this->temp[$i]['delete'] = TRUE;
$this->temp[$endopen[0]]['delete'] = TRUE;
}
else $close[$this->temp[$i]['type']] = array(0 => $i, 1 => $this->temp[$i]['type'], 2 => $this->temp[$i]['newpos']+$this->temp[$i]['strlen'], 3 => $endopen[0]);
unset($open[$endopen[1]]);
}
}
else {
if ($endclose !== FALSE) $close[$endclose[1]][2] += $this->temp[$i]['strlen'];
if ($endopen !== FALSE) $open[$endopen[1]][2] += $this->temp[$i]['strlen'];
}
}
}
private function initialisetags() {
if (!is_file(FILETAGS)) throw new Exception('Le fichier tags de AmeraBBCode est introuvable.');
clearstatcache();
$xml = simplexml_load_file(FILETAGS);
if ($xml === FALSE) throw new Exception('Erreur dans le fichier de tags de AmeraBBCode.');
$i = -1;
while (isset($xml->tag[++$i])) {
if ((string) $xml->tag[$i]->code === 'TRUE') $code = TRUE;
else $code = FALSE;
if ((string) $xml->tag[$i]->delete === 'TRUE') $delete = TRUE;
else $delete = FALSE;
if ((string) $xml->tag[$i]->regex === 'TRUE') {
$regex = TRUE;
$xml->tag[$i]->open = preg_replace(array('`^\[`', '`\]$`'), array('\[', '\]'), (string) $xml->tag[$i]->open);
}
else $regex = FALSE;
self::$tags[] = array('open' => (string) $xml->tag[$i]->open, 'close' => (string) $xml->tag[$i]->close, 'code' => FALSE, 'delete' => $delete, 'regex' => $regex);
}
}
private function save() {
$tempdesc = $this->sortposition($this->temp, 'pos', 'desc');
$i = -1;
while (isset($tempdesc[++$i])) $this->string = substr_replace($this->string, '', $tempdesc[$i]['pos'], $tempdesc[$i]['strlen']);
$i = -1;
$temp = 0;
while (isset($this->temp[++$i])) {
if ($this->temp[$i]['delete'] === TRUE) $temp += $this->temp[$i]['strlen'];
else $this->string = substr_replace($this->string, $this->temp[$i]['tag'], $this->temp[$i]['newpos']-$temp, 0);
}
}
private function searchtags() {
$i = -1;
while (isset(self::$tags[++$i])) {
$countopen = 0;
$countclose = 0;
$open = array();
$close = array();
if (self::$tags[$i]['regex'] === TRUE) {
preg_match_all('`'.self::$tags[$i]['open'].'`', $this->string, $temp);
$j = -1;
$pos = -1;
while (isset($temp[0][++$j])) {
$pos = strpos($this->string, $temp[0][$j], $pos+1);
$open[] = array('delete' => self::$tags[$i]['delete'], 'newpos' => $pos, 'open' => TRUE, 'pos' => $pos, 'strlen' => strlen($temp[0][$j]), 'tag' => $temp[0][$j], 'type' => $i);
$countopen++;
}
}
else {
$pos = -1;
$strlen = strlen(self::$tags[$i]['open']);
do {
$pos = strpos($this->string, self::$tags[$i]['open'], $pos+1);
if ($pos !== FALSE) {
$open[] = array('delete' => self::$tags[$i]['delete'], 'newpos' => $pos, 'open' => TRUE, 'pos' => $pos, 'strlen' => $strlen, 'tag' => self::$tags[$i]['open'], 'type' => $i);
$countopen++;
}
} while ($pos !== FALSE);
}
$pos = -1;
$strlen = strlen(self::$tags[$i]['close']);
do {
$pos = strpos($this->string, self::$tags[$i]['close'], $pos+1);
if ($pos !== FALSE) {
$close[] = array('delete' => self::$tags[$i]['delete'], 'newpos' => $pos, 'pos' => $pos, 'open' => FALSE, 'strlen' => $strlen, 'tag' => self::$tags[$i]['close'], 'type' => $i);
$countclose++;
}
} while ($pos !== FALSE);
$j = -1;
while (isset($close[++$j]) AND isset($open[0]) AND $close[$j]['pos'] < $open[0]['pos']) {
$close[$j]['delete'] = TRUE;
$countclose--;
}
while ($countclose !== $countopen) {
if ($countclose > $countopen) {
$close[$countclose-1]['delete'] = TRUE;
$countclose--;
}
else {
$open[$countopen-1]['delete'] = TRUE;
$countopen--;
}
}
$this->temp = array_merge($this->temp, $open, $close);
}
}
public function showstring() {
return $this->string;
}
private function sortposition($array, $by, $order) {
$endval = end($array);
$vals = array_keys($endval);
foreach ($vals as $init){
$keyname = $init;
$$keyname = array();
}
foreach ($array as $key => $row) {
foreach ($vals as $names){
$keyname = $names;
$test = array();
$test[$key] = $row[$names];
$$keyname = array_merge((array) $$keyname,(array) $test);
}
}
if ($order === 'asc') array_multisort($$by,SORT_ASC, SORT_NUMERIC,$array);
else array_multisort($$by,SORT_DESC, SORT_NUMERIC,$array);
return $array;
}
}
try {
$string = '[url="http://www.google.com"][b][url="http://www.google.fr"][/i][/b][/i][/b][code="php"]Code ![/code][/u][/b][b]Salut[/b][b][i][i][b]bonjour[/url][/i][/b][/b][b][/i][/url]';
$time = microtime(TRUE);
$AmeraBBCode = new AmeraBBCode($string);
$AmeraBBCode->correction();
echo 'Chaîne d\'origine : ',$string,"<br />\n";
echo 'Chaîne corrigée : ',$AmeraBBCode->showstring();
}
catch (Exception $e) {
die ($e->getmessage());
}
?>
Conclusion
La prochaine mise à jour ajoutera la prise en compte des balises "code" (les balises encadrées par ces balises ne seront pas analysées).
Historique
- 28 janvier 2007 15:17:47 :
- Correction d'une erreur et amélioration de la classe :
* si il y a plusieurs balises du même types qui s'enchaînent, elles seront supprimées.
* si un couple de balises n'encadrent rien, il sera supprimé.
- 28 janvier 2007 18:16:30 :
- Ajout des expressions régulières.
- 28 janvier 2007 18:18:33 :
- Ajout d'un exemple d'utilisation.
- 28 janvier 2007 21:42:04 :
- J'espère que celà ressemble un peu plus à une classe :-P
- 29 janvier 2007 23:25:29 :
- Amélioration générale :
*Celà devrait enfin ressembler à une classe (du moins j'ai fait ce que j'ai compris XD) => Merci à FhX.
*Utilisation de la preincrementation => Merci à Kankrelune.
*Les expressions régulières peuvent être utilisé plus facilement.
- 02 mars 2007 20:57:50 :
- Amélioration générale :
*Correction corrigé (normalement :-P)
*Plus de facilité à modifier les tags => Merci de nouveau à FhX pour son exelente idée :-)
*Insertion d'une option permettant de gerer une balise "code" (si il y a des balises entre cette balise elles ne seront pas analysées)
- 02 mars 2007 21:26:44 :
- Code mal passé :-P
- 02 mars 2007 21:28:54 :
- Décidement c'est pas le bon moment pour sortir la mise à jour ...
- 28 mai 2007 17:24:06 :
- => "28/05/07" Amélioration générale :
*Classe PHP5.
*Gestion des Tags en XML.
Sources de la même categorie
Commentaires et avis
Discussions en rapport avec ce code source dans le forum
Iframe [ par saad123 ]
Salut je voudrais savoir comment je pourrai remplacer la balise iframe par une autre balise equivalente parceque celle pose probleme avec certain navi
probleme de classe en php [ par Elkaire ]
Donc voila mon probleme!!dans une premiere page je rensegne les insances de mon objet. Une fois renseigné je peux réutiliser les instances cet objet d
Parametre de ma classe connexion et connexion/deconnexion [ par sebos63 ]
Bonjour, 1. J'ai une classe de connexion et je souhaiterais savoir où il est judicieux de spécifier les paramètres d'une connexion. (Dans mon construc
balise, cache :( [ par elanspeech ]
Bonjour,J'utilise la balise suivante :<embed src="fichier.wav" width=145 height=25 autostart="false" cache="false" controls="controlpanel">fichi
template.inc [ par joedalton ]
bonjourVoila, je possede un fichier template.inc qui me permet de définir ma classe template, mais le probleme c'est que ce fichier est valable pour l
lien dans une balise textaera [ par ludlu ]
je n'arrive pas a afficher un lien dans une balise de type textaera. voici mon code:$Mesure_effectue="<a href=\"Choix_freq1.php\">Select * from
Inversion de matrice [ par VanSama ]
Bonjours, pour les besoins d'analyse d'une image, je recherche un algorithme de d'inversion d'une matrice NxN.J'ai lue beaucoup de chose sur le site d
Quand on parle de Classe [ par Tomcube ]
C'est une question très vaste,On parle de plus en plus de programmation objet. Qui dit programmation objet dit classe. D'ailleurs, c'est fou le nombre
problème de classe [ par guixyz ]
Hello! Voila je suis en train d'apprendre a me servir des classes en php. Et j'en ai fait une pour gérer mes formulaires Donc j'ai ma classe, une fcti
Pb avec classe en php, Affichage [ par matou82 ]
Je voudrais savoir comment surcharger l'affichage d' echo ou print pour une classePour avoir:$obj = new Maclass;echo $obj;Cela affiche : "Object" Je s
|
Derniers Blogs
IMAGINE CUP 2012, MAKE A SIGN EN FINALEIMAGINE CUP 2012, MAKE A SIGN EN FINALE par junarnoalg
Voilà qui est fait, la nouvelle est officielle ! L'équipe belge "Make a Sign" va au pays des kangourous défendre son projet dans la catégorie Software Design. http://www.imaginecup.com/CompetitionsContent/Competition/WorldwideFinalists.aspx V...
Cliquez pour lire la suite de l'article par junarnoalg KINECT 1.5 IS OUT !KINECT 1.5 IS OUT ! par Vko
La version 1.5 du Kinect For Microsoft vient tout juste de sortir ! Plein de nouveautés: Tracking de squelette en Near Mode Détection en position assise Détection faciale avec un SDK dédié Documentation et des guideline (enfin) Un out...
Cliquez pour lire la suite de l'article par Vko LES ACTUALITéS DE LA SEMAINE SUR C2I.FR (14 MAI - 20 MAI) LES ACTUALITéS DE LA SEMAINE SUR C2I.FR (14 MAI - 20 MAI) par richardc
Mise à jour des Web API du 14 Mai
Réservez dès maintenant votre journée du 20 juin pour le Windows Azure Dev Camp 2012 à Paris
Mise à jour de Team Foundation Service
MechCommander 2 sur Windows 8
Entity Framework 5 Release Candidate e...
Cliquez pour lire la suite de l'article par richardc REACTIVE EXTENSIONS : CONSOMMER DES SERVICES AVEC RX PARTIE 3, LES PIèGES à éVITERREACTIVE EXTENSIONS : CONSOMMER DES SERVICES AVEC RX PARTIE 3, LES PIèGES à éVITER par Groc
Une mauvaise utilisation de rx lors de l'écriture d'une couche d'accès à des services peut conduire à des cas embarassants avec des erreurs mal gérées, des appels qui ne partent lorsqu'ils le devraient, et même des résultats incorrects . le tout nuis...
Cliquez pour lire la suite de l'article par Groc SHAREPOINT BLOG SITE, PROBLèME D'ARCHIVESSHAREPOINT BLOG SITE, PROBLèME D'ARCHIVES par junarnoalg
Dernièrement, nous avons migré le site
myTIC
vers un nouveau serveur SharePoint 2010. Dans les contenus que nous vouloins récupérer, nous avions un certain nombre de blogs.
Nous avons utilisé les commandes Power...
Cliquez pour lire la suite de l'article par junarnoalg
Logiciels
sDEVIS-FACTURES vlPRO (8.1.0.3)SDEVIS-FACTURES VLPRO (8.1.0.3)sDEVIS-FACTURES vlPRO a été mis au point pour les particuliers, créateurs, entrepreneurs, artisa... Cliquez pour télécharger sDEVIS-FACTURES vlPRO 974 Application Server (12.2.4.6)974 APPLICATION SERVER (12.2.4.6)Développez de puissantes applications dans un environnement de 'cloud computing', clusterisé, séc... Cliquez pour télécharger 974 Application Server vPicture (1.4.2.1)VPICTURE (1.4.2.1)Avec vPicture, hébergez vos images facilement et rapidement.
vPicture est un utilitaire simple, ... Cliquez pour télécharger vPicture Easy-Planning (2.2.1.6)EASY-PLANNING (2.2.1.6)Easy-Planning permet de créer des plannings sous la représentation de diagrammes et est adapté au... Cliquez pour télécharger Easy-Planning COM-BACKUP (2.0)COM-BACKUP (2.0)
COM-BACKUP est un logiciel de sauvegarde qui permet de planifier les sauvegardes de vos dossiers ...
Cliquez pour télécharger COM-BACKUP
|