mirror of
https://github.com/macintoshplus/doc-fr.git
synced 2026-03-24 17:02:18 +01:00
81 lines
2.0 KiB
XML
81 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: b78d43dbe5af1bacde2e324fcdfcee14d25e8420 Maintainer: yannick Status: ready -->
|
|
<!-- Reviewed: no -->
|
|
|
|
<chapter xml:id="wkhtmltox.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
&reftitle.setup;
|
|
|
|
<section xml:id="wkhtmltox.requirements">
|
|
&reftitle.required;
|
|
<para>
|
|
Les sources et les binaires libwkhtmltox sont distribués
|
|
via le site <link xlink:href="http://wkhtmltopdf.org">wkhtmltopdf.org</link>.
|
|
</para>
|
|
<caution>
|
|
<para>
|
|
Les utilisateurs de Windows doivent ajouter la bibliothèque
|
|
<filename>wkhtmltox.dll</filename> à leur variable d'environnement <envar>PATH</envar>.
|
|
</para>
|
|
</caution>
|
|
</section>
|
|
|
|
<section xml:id="wkhtmltox.installation">
|
|
&reftitle.install;
|
|
<para>
|
|
Le code source de cette extension et les binaires pour WIndows sont stockés
|
|
sur <link xlink:href="&url.git.hub;krakjoe/wkhtmltox">github</link>,
|
|
</para>
|
|
<para>
|
|
Récupération du code source et compilation de l'extension :
|
|
<screen>
|
|
<![CDATA[
|
|
git clone https://github.com/krakjoe/wkhtmltox
|
|
cd wkhtmltox
|
|
phpize
|
|
./configure --with-wkhtmltox=/path/to/wkhtmltox/installation
|
|
make
|
|
sudo make install
|
|
]]>
|
|
</screen>
|
|
</para>
|
|
<para>
|
|
Récupèration des mises à jours et recompilation de l'extension :
|
|
<screen>
|
|
<![CDATA[
|
|
cd wkhtmltox
|
|
phpize --clean
|
|
git pull origin master
|
|
phpize
|
|
./configure --with-wkhtmltox=/path/to/wkhtmltox/installation
|
|
make
|
|
sudo make install
|
|
]]>
|
|
</screen>
|
|
</para>
|
|
</section>
|
|
|
|
&reference.wkhtmltox.ini;
|
|
</chapter>
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|