Skip to content
Extraits de code Groupes Projets
Valider eeecbb08 rédigé par ARNO*'s avatar ARNO*
Parcourir les fichiers

Alleger la version "courte" (page A suivre) du suivi des revisions

parent 2a0e0acc
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -93,7 +93,7 @@ function afficher_suivi_versions ($debut = 0, $id_secteur = 0, $uniq_auteur = fa ...@@ -93,7 +93,7 @@ function afficher_suivi_versions ($debut = 0, $id_secteur = 0, $uniq_auteur = fa
echo "<div class='tr_liste' style='padding: 5px; border-top: 1px solid #aaaaaa;'>"; echo "<div class='tr_liste' style='padding: 5px; border-top: 1px solid #aaaaaa;'>";
echo "<span class='arial2'>"; echo "<span class='arial2'>";
echo bouton_block_invisible("$id_version-$id_article-$id_auteur"); if (!$court) echo bouton_block_invisible("$id_version-$id_article-$id_auteur");
echo "<img src='img_pack/$logo_statut' border='0'>&nbsp;"; echo "<img src='img_pack/$logo_statut' border='0'>&nbsp;";
echo "<a class='$statut' style='font-weight: bold;' href='articles_versions.php3?id_article=$id_article'>$titre</a>"; echo "<a class='$statut' style='font-weight: bold;' href='articles_versions.php3?id_article=$id_article'>$titre</a>";
echo "</span>"; echo "</span>";
...@@ -101,68 +101,72 @@ function afficher_suivi_versions ($debut = 0, $id_secteur = 0, $uniq_auteur = fa ...@@ -101,68 +101,72 @@ function afficher_suivi_versions ($debut = 0, $id_secteur = 0, $uniq_auteur = fa
echo " $date $nom"; echo " $date $nom";
echo "</span>"; echo "</span>";
$query_diff = " if (!$court) {
SELECT id_version $query_diff = "
FROM spip_versions SELECT id_version
WHERE id_article=$id_article AND id_version<$id_version FROM spip_versions
ORDER BY id_version DESC LIMIT 0,1"; WHERE id_article=$id_article AND id_version<$id_version
if ($result_diff = spip_query($query_diff)) { ORDER BY id_version DESC LIMIT 0,1";
$row_diff = mysql_fetch_array($result_diff); if ($result_diff = spip_query($query_diff)) {
$id_diff = $row_diff['id_version']; $row_diff = mysql_fetch_array($result_diff);
} $id_diff = $row_diff['id_version'];
$query_art = "
SELECT *
FROM spip_articles
WHERE id_article='$id_article'";
$result_art = spip_query($query_art);
if ($row_art = spip_fetch_array($result_art)) {
$id_article = $row_art["id_article"];
$id_rubrique = $row_art["id_rubrique"];
$date = $row_art["date"];
$statut_article = $row_art["statut"];
$maj = $row_art["maj"];
$date_redac = $row_art["date_redac"];
$visites = $row_art["visites"];
$referers = $row_art["referers"];
$extra = $row_art["extra"];
$id_trad = $row_art["id_trad"];
}
$textes = recuperer_version($id_article, $id_version);
if ($id_version && $id_diff) {
if ($id_diff > $id_version) {
$t = $id_version;
$id_version = $id_diff;
$id_diff = $t;
$old = $textes;
$new = $textes = recuperer_version($id_article, $id_version);
} }
else {
$old = recuperer_version($id_article, $id_diff);
$new = $textes; $query_art = "
} SELECT *
$textes = array(); FROM spip_articles
foreach ($champs as $champ) { WHERE id_article='$id_article'";
if (!$new[$champ] && !$old[$champ]) continue; $result_art = spip_query($query_art);
$diff = new Diff(new DiffTexte);
$textes[$champ] = afficher_para_modifies(afficher_diff($diff->comparer(preparer_diff($new[$champ]), preparer_diff($old[$champ]))), $court); if ($row_art = spip_fetch_array($result_art)) {
$id_article = $row_art["id_article"];
$id_rubrique = $row_art["id_rubrique"];
$date = $row_art["date"];
$statut_article = $row_art["statut"];
$maj = $row_art["maj"];
$date_redac = $row_art["date_redac"];
$visites = $row_art["visites"];
$referers = $row_art["referers"];
$extra = $row_art["extra"];
$id_trad = $row_art["id_trad"];
} }
}
$textes = recuperer_version($id_article, $id_version);
echo debut_block_invisible("$id_version-$id_article-$id_auteur");
if (is_array($textes)) if ($id_version && $id_diff) {
foreach ($textes as $var => $t) { if ($id_diff > $id_version) {
if (strlen($t) > 0) { $t = $id_version;
echo "<blockquote class='spip serif1'>"; $id_version = $id_diff;
echo propre($t).""; $id_diff = $t;
echo "</blockquote>"; $old = $textes;
$new = $textes = recuperer_version($id_article, $id_version);
}
else {
$old = recuperer_version($id_article, $id_diff);
$new = $textes;
}
$textes = array();
foreach ($champs as $champ) {
if (!$new[$champ] && !$old[$champ]) continue;
$diff = new Diff(new DiffTexte);
$textes[$champ] = afficher_para_modifies(afficher_diff($diff->comparer(preparer_diff($new[$champ]), preparer_diff($old[$champ]))), $court);
}
}
echo debut_block_invisible("$id_version-$id_article-$id_auteur");
if (is_array($textes))
foreach ($textes as $var => $t) {
if (strlen($t) > 0) {
echo "<blockquote class='spip serif1'>";
echo propre($t)."";
echo "</blockquote>";
}
} }
} echo fin_block();
echo fin_block();
}
echo "</div>"; echo "</div>";
} }
echo "</div>"; echo "</div>";
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter