mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-09 15:28:40 +00:00
Add partial French install file.
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@929 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
parent
826a57a04a
commit
2666f067cc
4
INSTALL
4
INSTALL
@ -47,7 +47,9 @@ HTML Purifier is all about web-standards, so accordingly your webpages should
|
|||||||
be standards compliant. HTML Purifier can deal with these doctypes:
|
be standards compliant. HTML Purifier can deal with these doctypes:
|
||||||
|
|
||||||
* XHTML 1.0 Transitional (default)
|
* XHTML 1.0 Transitional (default)
|
||||||
|
* XHTML 1.0 Strict
|
||||||
* HTML 4.01 Transitional
|
* HTML 4.01 Transitional
|
||||||
|
* HTML 4.01 Strict
|
||||||
|
|
||||||
...and these character encodings:
|
...and these character encodings:
|
||||||
|
|
||||||
@ -87,7 +89,7 @@ into configuring things just for the heck of it, skip to 4.3).
|
|||||||
* Am I using UTF-8?
|
* Am I using UTF-8?
|
||||||
* Am I using XHTML 1.0 Transitional?
|
* Am I using XHTML 1.0 Transitional?
|
||||||
|
|
||||||
If you answered yes to any of these questions, instantiate a configuration
|
If you answered no to any of these questions, instantiate a configuration
|
||||||
object and read on:
|
object and read on:
|
||||||
|
|
||||||
$config = HTMLPurifier_Config::createDefault();
|
$config = HTMLPurifier_Config::createDefault();
|
||||||
|
71
INSTALL.fr.utf8
Normal file
71
INSTALL.fr.utf8
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
|
||||||
|
Installation
|
||||||
|
Comment installer HTML Purifier
|
||||||
|
|
||||||
|
Attention: Ce document a encode en UTF-8. Si les lettres avec les accents
|
||||||
|
est essoreuse, prenez un mieux editeur de texte.
|
||||||
|
|
||||||
|
À L'Aide: Je ne suis pas un diseur natif de français. Si vous trouvez une
|
||||||
|
erreur dans ce document, racontez-moi! Merci.
|
||||||
|
|
||||||
|
|
||||||
|
L'installation de HTML Purifier est trés simple, parce qu'il ne doit pas
|
||||||
|
la configuration. Dans le pied de de document, les utilisateurs
|
||||||
|
impatient peuvent trouver le code, mais je recommande que vous lisez
|
||||||
|
ce document pour quelques choses.
|
||||||
|
|
||||||
|
|
||||||
|
1. Compatibilité
|
||||||
|
|
||||||
|
HTML Purifier fonctionne dans PHP 4 et PHP 5. PHP 4.3.9 est le dernier
|
||||||
|
version que je le testais. Il ne dépend de les autre librairies.
|
||||||
|
|
||||||
|
Les extensions optionnel est iconv (en général déjà installer) et
|
||||||
|
tidy (répandu aussi). Si vous utilisez UTF-8 et ne voulez pas
|
||||||
|
l'indentation, vous pouvez utiliser HTML Purifier sans ces extensions.
|
||||||
|
|
||||||
|
|
||||||
|
2. Inclure la librarie
|
||||||
|
|
||||||
|
Utilisez:
|
||||||
|
|
||||||
|
require_once '/path/to/library/HTMLPurifier.auto.php';
|
||||||
|
|
||||||
|
...quand vous devez utiliser HTML Purifier (ne inclure pas quand vous
|
||||||
|
ne devez pas, parce que HTML Purifier est trés grand.)
|
||||||
|
|
||||||
|
Si vous n'aime pas que HTML Purifier change vos include_path, on peut
|
||||||
|
change vos include_path, et:
|
||||||
|
|
||||||
|
require_once 'HTMLPurifier.php';
|
||||||
|
|
||||||
|
Seuleument les contents dans library/ est essentiel; vous peut enlever
|
||||||
|
les autre fichiers quand vous est dans une atmosphère professionnel.
|
||||||
|
|
||||||
|
|
||||||
|
[En cours de construction]
|
||||||
|
|
||||||
|
|
||||||
|
6. Installation vite
|
||||||
|
|
||||||
|
Si votre site web est en UTF-8 et XHTML Transitional, utilisez:
|
||||||
|
|
||||||
|
<?php
|
||||||
|
require_once '/path/to/htmlpurifier/library/HTMLPurifier.auto.php';
|
||||||
|
|
||||||
|
$purificateur = new HTMLPurifier();
|
||||||
|
$html_propre = $purificateur->purify($html_salle);
|
||||||
|
?>
|
||||||
|
|
||||||
|
Sinon, utilisez:
|
||||||
|
|
||||||
|
<?php
|
||||||
|
require_once '/path/to/htmlpurifier/library/HTMLPurifier.auto.php';
|
||||||
|
|
||||||
|
$config = HTMLPurifier_Config::createDefault();
|
||||||
|
$config->set('Core', 'Encoding', 'ISO-8859-1'); //remplacez avec votre encoding
|
||||||
|
$config->set('Core', 'XHTML', true); //remplacez avec false si HTML 4.01
|
||||||
|
$purificateur = new HTMLPurifier($config);
|
||||||
|
|
||||||
|
$html_propre = $purificateur->purify($html_salle);
|
||||||
|
?>
|
Loading…
Reference in New Issue
Block a user