Changeset 5783 in spip-zone
- Timestamp:
- Sep 29, 2006, 9:12:21 PM (15 years ago)
- Location:
- _plugins_/_stable_/barre_typo_enrichie/svn
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/_stable_/barre_typo_enrichie/svn/css/bartypenr.css
r5412 r5783 41 41 #article_preview { 42 42 display:none; 43 border:1px solid # 666;43 border:1px solid #F00; 44 44 overflow: auto; 45 background-color: #FFCCCC; 45 background-color: #FFF; 46 padding: 0 1em; 46 47 } -
_plugins_/_stable_/barre_typo_enrichie/svn/exec/article_preview.php
r5764 r5783 4 4 include_spip("inc/meta"); // Pour avoir le charset du site 5 5 include_spip("inc/texte"); // Pour pouvoir utiliser propre 6 include_spip("public/composer"); // Pour pouvoir generer les notes de bas de page (pourquoi c'est pas dans inc/texte ?)7 6 8 7 function exec_article_preview_dist() … … 10 9 lire_metas(); 11 10 header('Content-Type: text/html;charset='.lire_meta('charset')); 12 echo "<meta http-equiv='Content-Type' content='text/html; charset=".lire_meta('charset')." />";11 echo "<meta http-equiv='Content-Type' content='text/html; charset=".lire_meta('charset')."' />"; 13 12 echo propre($_POST['texte']); 14 echo '<hr />'; 15 echo calculer_notes(); 13 global $les_notes, $dir_lang; 14 if ($les_notes) { 15 echo ("<hr clear='all' /><div $dir_lang class='arial11'>" 16 . $les_notes 17 . "</div>"); 18 } 16 19 } 17 20 ?>
Note: See TracChangeset
for help on using the changeset viewer.