debian/0000755000000000000000000000000012230637051007165 5ustar debian/examples0000644000000000000000000000001312230611571010717 0ustar examples/* debian/gbp.conf0000644000000000000000000000007112230611571010601 0ustar [DEFAULT] pristine-tar = True pristine-tar-commit = True debian/source/0000755000000000000000000000000012230611571010464 5ustar debian/source/format0000644000000000000000000000001412230611571011672 0ustar 3.0 (quilt) debian/install0000644000000000000000000000041712230636213010557 0ustar classes usr/share/php/phpdocx config/* etc/php-phpdocx excel usr/share/php/phpdocx lib usr/share/php/phpdocx templates/phpdocxBaseTemplate.docx usr/share/php/phpdocx/templates templates/xmls usr/share/php/phpdocx/templates xsl usr/share/php/phpdocx debian/rules0000755000000000000000000000026512230635746010261 0ustar #!/usr/bin/make -f %: dh $@ override_dh_compress: dh_compress -X.docx override_dh_fixperms: find $(CURDIR)/debian/php-phpdocx -executable -type f | xargs chmod -x dh_fixperms debian/compat0000644000000000000000000000000212230611571010362 0ustar 9 debian/patches/0000755000000000000000000000000012230637051010614 5ustar debian/patches/0002-Adapt-tcpdf-path.patch0000644000000000000000000000144512230637051015301 0ustar From: =?UTF-8?q?David=20Pr=C3=A9vot?= Date: Sat, 19 Oct 2013 17:18:20 -0400 Subject: Adapt tcpdf path The Debian package depends on the needed classes instead of embedding them, i.e. php-tcpdf. Forwarded: not-needed --- classes/AutoLoader.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/AutoLoader.inc b/classes/AutoLoader.inc index feac980..ce4c71c 100755 --- a/classes/AutoLoader.inc +++ b/classes/AutoLoader.inc @@ -102,7 +102,7 @@ class AutoLoader if (file_exists($pathPDF)) { require_once $pathPDF; } - $pathTCPDF = dirname(__FILE__) . '/../pdf/tcpdf/tcpdf.php'; + $pathTCPDF = '/usr/share/php/tcpdf/tcpdf.php'; if (file_exists($pathTCPDF)) { require_once $pathTCPDF; } debian/patches/series0000644000000000000000000000013312230637051012026 0ustar 0001-Adapt-dompdf-path.patch 0002-Adapt-tcpdf-path.patch 0003-Adapt-path-in-examples.patch debian/patches/0003-Adapt-path-in-examples.patch0000644000000000000000000001564012230637051016426 0ustar From: =?UTF-8?q?David=20Pr=C3=A9vot?= Date: Sat, 19 Oct 2013 21:54:11 -0400 Subject: Adapt path in examples $ sed -i "s,'../../classes,'phpdocx/classes,g" examples/easy/* --- examples/easy/Chart.php | 2 +- examples/easy/Chart_bar.php | 2 +- examples/easy/CreateHTML.php | 2 +- examples/easy/CreatePDF.php | 4 ++-- examples/easy/Docx2Text.php | 2 +- examples/easy/Image.php | 2 +- examples/easy/Language.php | 2 +- examples/easy/Link.php | 2 +- examples/easy/List.php | 2 +- examples/easy/PageBreak.php | 2 +- examples/easy/SetLanguage.php | 2 +- examples/easy/Table.php | 2 +- examples/easy/Text.php | 2 +- examples/easy/Text_cursive.php | 2 +- examples/easy/Text_linespacing.php | 2 +- 15 files changed, 16 insertions(+), 16 deletions(-) diff --git a/examples/easy/Chart.php b/examples/easy/Chart.php index 7713790..ce213fa 100755 --- a/examples/easy/Chart.php +++ b/examples/easy/Chart.php @@ -13,7 +13,7 @@ * @link http://www.phpdocx.com * @since File available since Release 3.0 */ -require_once '../../classes/CreateDocx.inc'; +require_once 'phpdocx/classes/CreateDocx.inc'; $docx = new CreateDocx(); diff --git a/examples/easy/Chart_bar.php b/examples/easy/Chart_bar.php index 705733c..63cfec3 100755 --- a/examples/easy/Chart_bar.php +++ b/examples/easy/Chart_bar.php @@ -13,7 +13,7 @@ * @link http://www.phpdocx.com * @since File available since Release 3.0 */ -require_once '../../classes/CreateDocx.inc'; +require_once 'phpdocx/classes/CreateDocx.inc'; $docx = new CreateDocx(); diff --git a/examples/easy/CreateHTML.php b/examples/easy/CreateHTML.php index 57cac10..2ca1fd8 100755 --- a/examples/easy/CreateHTML.php +++ b/examples/easy/CreateHTML.php @@ -13,7 +13,7 @@ * @link http://www.phpdocx.com * @since File available since Release 3.0 */ -require_once '../../classes/TransformDoc.inc'; +require_once 'phpdocx/classes/TransformDoc.inc'; $document = new TransformDoc(); $document->setStrFile('../files/Text.docx'); diff --git a/examples/easy/CreatePDF.php b/examples/easy/CreatePDF.php index 0884971..18af55a 100755 --- a/examples/easy/CreatePDF.php +++ b/examples/easy/CreatePDF.php @@ -13,8 +13,8 @@ * @link http://www.phpdocx.com * @since File available since Release 3.0 */ -require_once '../../classes/TransformDoc.inc'; -require_once '../../classes/CreateDocx.inc'; +require_once 'phpdocx/classes/TransformDoc.inc'; +require_once 'phpdocx/classes/CreateDocx.inc'; $docx = new CreateDocx(); diff --git a/examples/easy/Docx2Text.php b/examples/easy/Docx2Text.php index 62c5d9a..8775efc 100755 --- a/examples/easy/Docx2Text.php +++ b/examples/easy/Docx2Text.php @@ -13,7 +13,7 @@ * @link http://www.phpdocx.com * @since File available since Release 3.0 */ -require_once '../../classes/CreateDocx.inc'; +require_once 'phpdocx/classes/CreateDocx.inc'; $docx = new CreateDocx(); diff --git a/examples/easy/Image.php b/examples/easy/Image.php index 1be68e4..03a6e36 100755 --- a/examples/easy/Image.php +++ b/examples/easy/Image.php @@ -13,7 +13,7 @@ * @link http://www.phpdocx.com * @since File available since Release 3.0 */ -require_once '../../classes/CreateDocx.inc'; +require_once 'phpdocx/classes/CreateDocx.inc'; $docx = new CreateDocx(); diff --git a/examples/easy/Language.php b/examples/easy/Language.php index 655d0e1..1a01c10 100755 --- a/examples/easy/Language.php +++ b/examples/easy/Language.php @@ -13,7 +13,7 @@ * @link http://www.phpdocx.com * @since File available since Release 3.0 */ -require_once '../../classes/CreateDocx.inc'; +require_once 'phpdocx/classes/CreateDocx.inc'; $docx = new CreateDocx(); diff --git a/examples/easy/Link.php b/examples/easy/Link.php index 3d509a6..88a7d4f 100755 --- a/examples/easy/Link.php +++ b/examples/easy/Link.php @@ -13,7 +13,7 @@ * @link http://www.phpdocx.com * @since File available since Release 3.0 */ -require_once '../../classes/CreateDocx.inc'; +require_once 'phpdocx/classes/CreateDocx.inc'; $docx = new CreateDocx(); diff --git a/examples/easy/List.php b/examples/easy/List.php index 1a405ff..cc3849f 100755 --- a/examples/easy/List.php +++ b/examples/easy/List.php @@ -13,7 +13,7 @@ * @link http://www.phpdocx.com * @since File available since Release 3.0 */ -require_once '../../classes/CreateDocx.inc'; +require_once 'phpdocx/classes/CreateDocx.inc'; $docx = new CreateDocx(); diff --git a/examples/easy/PageBreak.php b/examples/easy/PageBreak.php index 7a367b9..ce961bb 100755 --- a/examples/easy/PageBreak.php +++ b/examples/easy/PageBreak.php @@ -13,7 +13,7 @@ * @link http://www.phpdocx.com * @since File available since Release 3.0 */ -require_once '../../classes/CreateDocx.inc'; +require_once 'phpdocx/classes/CreateDocx.inc'; $docx = new CreateDocx(); diff --git a/examples/easy/SetLanguage.php b/examples/easy/SetLanguage.php index 8e38e47..191e43a 100755 --- a/examples/easy/SetLanguage.php +++ b/examples/easy/SetLanguage.php @@ -13,7 +13,7 @@ * @link http://www.phpdocx.com * @since File available since Release 3.0 */ -require_once '../../classes/CreateDocx.inc'; +require_once 'phpdocx/classes/CreateDocx.inc'; $docx = new CreateDocx(); diff --git a/examples/easy/Table.php b/examples/easy/Table.php index 9ae55ab..663ca96 100755 --- a/examples/easy/Table.php +++ b/examples/easy/Table.php @@ -13,7 +13,7 @@ * @link http://www.phpdocx.com * @since File available since Release 3.0 */ -require_once '../../classes/CreateDocx.inc'; +require_once 'phpdocx/classes/CreateDocx.inc'; $docx = new CreateDocx(); diff --git a/examples/easy/Text.php b/examples/easy/Text.php index cf3943f..2943265 100755 --- a/examples/easy/Text.php +++ b/examples/easy/Text.php @@ -13,7 +13,7 @@ * @link http://www.phpdocx.com * @since File available since Release 3.0 */ -require_once '../../classes/CreateDocx.inc'; +require_once 'phpdocx/classes/CreateDocx.inc'; $docx = new CreateDocx(); diff --git a/examples/easy/Text_cursive.php b/examples/easy/Text_cursive.php index 617953f..91c4df1 100755 --- a/examples/easy/Text_cursive.php +++ b/examples/easy/Text_cursive.php @@ -13,7 +13,7 @@ * @link http://www.phpdocx.com * @since File available since Release 3.0 */ -require_once '../../classes/CreateDocx.inc'; +require_once 'phpdocx/classes/CreateDocx.inc'; $docx = new CreateDocx(); diff --git a/examples/easy/Text_linespacing.php b/examples/easy/Text_linespacing.php index 25f9208..83abd84 100755 --- a/examples/easy/Text_linespacing.php +++ b/examples/easy/Text_linespacing.php @@ -13,7 +13,7 @@ * @link http://www.phpdocx.com * @since File available since Release 3.0 */ -require_once '../../classes/CreateDocx.inc'; +require_once 'phpdocx/classes/CreateDocx.inc'; $docx = new CreateDocx(); debian/patches/0001-Adapt-dompdf-path.patch0000644000000000000000000000245412230637051015452 0ustar From: =?UTF-8?q?David=20Pr=C3=A9vot?= Date: Sat, 19 Oct 2013 17:04:13 -0400 Subject: Adapt dompdf path The Debian package depends on the needed classes instead of embedding them, i.e. php-dompdf. Forwarded: not-needed --- classes/AutoLoader.inc | 2 +- classes/Phpdocx_config.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/classes/AutoLoader.inc b/classes/AutoLoader.inc index 0cdd112..feac980 100755 --- a/classes/AutoLoader.inc +++ b/classes/AutoLoader.inc @@ -40,7 +40,7 @@ class AutoLoader */ public static function autoloadDompdf($className) { - $pathDompdf = dirname(__FILE__) . '/../pdf/dompdf_config.inc.php'; + $pathDompdf = '/usr/share/php/dompdf/dompdf_config.inc.php'; if (file_exists($pathDompdf)) { require_once $pathDompdf; } diff --git a/classes/Phpdocx_config.inc b/classes/Phpdocx_config.inc index 6d74927..e64efd0 100755 --- a/classes/Phpdocx_config.inc +++ b/classes/Phpdocx_config.inc @@ -28,7 +28,7 @@ define('PHPDOCX_BASE_TEMPLATE', PHPDOCX_BASE_FOLDER . 'phpdocxBaseTemplate.docx' /** * The default path to the dompdf dir */ -define('PHPDOCX_DIR_DOMPDF', PHPDOCX_BASE_FOLDER . '/../pdf'); +define('PHPDOCX_DIR_DOMPDF', 'dompdf'); /** * The default path to the HTML parser */ debian/changelog0000644000000000000000000000023212230611571011033 0ustar phpdocx (3.0+dfsg-1) unstable; urgency=low * Initial release (Closes: #726167) -- David Prévot Tue, 15 Oct 2013 19:43:48 -0400 debian/control0000644000000000000000000000214212230636706010575 0ustar Source: phpdocx Section: php Priority: optional Maintainer: Debian PHP PEAR Maintainers Uploaders: David Prévot Build-Depends: debhelper (>= 9) Standards-Version: 3.9.4 Homepage: http://www.phpdocx.com/ Vcs-Git: git://anonscm.debian.org/pkg-php/phpdocx.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-php/phpdocx.git Package: php-phpdocx Architecture: all Depends: php-dompdf, php-tcpdf, php5 | php5-cli, php5-xsl, ${misc:Depends} Recommends: php5-tidy Description: dynamical generation of .docx files PHPDocX is a PHP library designed to generate completely dynamic, fully customizable and digitally signed Word documents. . PHPDocX can create native .docx reports extracting data directly from any database or spreadsheet and export them to other popular formats (PDF, DOC, HTML, ODT...) with the help of the conversion plugin. These reports may include editable graphs (only .docx), images, tables, headers, footers, etcetera. . PHPDocX can create, and digitally sign if required, Word documents from scratch or use predefined templates. debian/copyright0000644000000000000000000003440012230636213011120 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: PHPDocX Source: http://www.phpdocx.com/sites/default/files/phpdocx_community.tar.gz Files: * Copyright: 2009-2013, Narcea Producciones Multimedia S.L. License: LGPL-3 Files: lib/log4php/* Copyright: 2012, Apache Software Foundation License: Apache-2.0 Files: pdf/* Copyright: 2004-2006, Benj Carson Fabien Ménager Helmut Tischer 2008, Orion Richardson Blake Ross Brian Sweeney 1998, mozilla.org License: LGPL-2.1+ or PHP-3.0+ Files: pdf/include/ttf_info.cls.php pdf/www/test/images/dokuwiki-128.png Copyright: 2006, GrayTap Media 2004-2012 Andreas Gohr and the DokuWiki Community License: GPL-2 Files: pdf/lib/class.pdf.php pdf/www/test/images/* Copyright: Wayne Munro Orion Richardson Helmut Tischer Ryan H. Masten Brian Sweeney Fabien Ménager License: CC-publicdomain Files: pdf/lib/fonts/*.afm Copyright: 1985, 1987, 1989-1993, 1997, Adobe Systems Incorporated. License: Adobe Files: pdf/tcpdf/* Copyright: 2002-2011, Nicola Asuni - Tecnick.com S.r.l. License: LGPL-3+ Files: pdf/tcpdf/fonts/dejavu* Copyright: 2003 Bitstream, Inc. License: dejavu Comment: The original TTF font files have been renamed for compatibility with TCPDF and compressed using the gzcompress PHP function that uses the ZLIB data format (.z files). Files: pdf/tcpdf/fonts/zarbold.php Copyright: Mohammad Ali Golkar License: GPL-2 Files: pdf/tcpdf/fonts/utils/pfm2afm* pdf/tcpdf/fonts/utils/src/pfm2afm-src.tar.gz Copyright: 1991, IBM Corp. License: IBM Files: pdf/lib/ttf2ufm/* pdf/tcpdf/fonts/utils/src/ttf2ufm-src.tar.gz Copyright: 1997-2003, Andrew Weeks 1997-2003, Frank M. Siegert 1997-2003, Mark Heath 1997-2003, Thomas Henlich 1997-2003, Sergey Babkin , 1997-2003, Turgut Uyar 1997-2003, Rihardas Hepas 1997-2003, Szalay Tamas 1997-2003, Johan Vromans 1997-2003, Petr Titera 1997-2003, Lei Wang 1997-2003, Chen Xiangyang 1997-2003, Zvezdan Petkovic 1997-2003, Rigel 2001, the TTF2PT1 project License: BSD-3-Clause Files: pdf/lib/ttf2ufm/src/app/TeX/* pdf/tcpdf/fonts/utils/src/ttf2ufm-src.tar.gz!ttf2ufm-src/app/TeX/* Copyright: 2002, SuSE Linux AG, Nuernberg, Germany 2002, Mike Fabian License: GPL-2+ Files: pdf/lib/ttf2ufm/src/scripts/convert* pdf/lib/ttf2ufm/src/scripts/forceiso pdf/lib/ttf2ufm/src/scripts/t1fdir pdf/lib/ttf2ufm/src/scripts/x2gs pdf/tcpdf/fonts/utils/src/ttf2ufm-src.tar.gz!ttf2ufm-src/scripts/convert* pdf/tcpdf/fonts/utils/src/ttf2ufm-src.tar.gz!ttf2ufm-src/scripts/forceiso pdf/tcpdf/fonts/utils/src/ttf2ufm-src.tar.gz!ttf2ufm-src/scripts/t1fdir pdf/tcpdf/fonts/utils/src/ttf2ufm-src.tar.gz!ttf2ufm-src/scripts/x2gs Copyright: 1998-2000, Sergey A. Babkin , , License: BSD-2-Clause Files: pdf/lib/ttf2ufm/src/t1asm.c pdf/tcpdf/fonts/utils/src/ttf2ufm-src.tar.gz!ttf2ufm-src/t1asm* Copyright: 1992, I. Lee Hetherington License: t1asm License: Adobe This file and the 14 PostScript(R) AFM files it accompanies may be used, copied, and distributed for any purpose and without charge, with or without modification, provided that all copyright notices are retained; that the AFM files are not distributed without this file; that all modifications to this file or any of the AFM files are prominently noted in the modified file(s); and that this paragraph is not modified. Adobe Systems has no responsibility or obligation to support the use of the AFM files. License: Apache-2.0 On Debian systems, the full text of the Apache license version 2 can be found in the file `/usr/share/common-licenses/Apache-2.0'. License: BSD-2-Clause Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. . THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. License: BSD-3-Clause Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. All advertising materials mentioning features or use of this software must display the following acknowledgement: This product includes software developed by the TTF2PT1 Project and its contributors. . THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. License: CC-publicdomain The person or persons who have associated work with this document (the "Dedicator" or "Certifier") hereby either (a) certifies that, to the best of his knowledge, the work of authorship identified is in the public domain of the country from which the work is published, or (b) hereby dedicates whatever copyright the dedicators holds in the work of authorship identified below (the "Work") to the public domain. A certifier, moreover, dedicates any copyright interest he may have in the associated work, and for these purposes, is described as a "dedicator" below. . A certifier has taken reasonable steps to verify the copyright status of this work. Certifier recognizes that his good faith efforts may not shield him from liability if in fact the work certified is not in the public domain. . Dedicator makes this dedication for the benefit of the public at large and to the detriment of the Dedicator's heirs and successors. Dedicator intends this dedication to be an overt act of relinquishment in perpetuity of all present and future rights under copyright law, whether vested or contingent, in the Work. Dedicator understands that such relinquishment of all rights includes the relinquishment of all rights to enforce (by lawsuit or otherwise) those copyrights in the Work. . Dedicator recognizes that, once placed in the public domain, the Work may be freely reproduced, distributed, transmitted, used, modified, built upon, or otherwise exploited by anyone for any purpose, commercial or non-commercial, and in any way, including by methods that have not yet been invented or conceived. License: dejavu Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions: . The above copyright and trademark notices and this permission notice shall be included in all copies of one or more of the Font Software typefaces. . The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing either the words "Bitstream" or the word "Vera". . This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the "Bitstream Vera" names. . The Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself. . THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. . Except as contained in this notice, the names of Gnome, the Gnome Foundation, and Bitstream Inc., shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Font Software without prior written authorization from the Gnome Foundation or Bitstream Inc., respectively. For further information, contact: fonts at gnome dot org. License: GPL-2 On Debian systems, the full text of the GNU General Public License version 2 can be found in the file `/usr/share/common-licenses/GPL-2'. License: GPL-2+ On Debian systems, the full text of the GNU General Public License version 2 can be found in the file `/usr/share/common-licenses/GPL-2'. License: IBM This code is released for public use as long as the copyright remains intact. This code is provided asis without any warrenties, express or implied. License: LGPL-2.1+ On Debian systems, the full text of the GNU Lesser General Public License version 2.1 can be found in the file `/usr/share/common-licenses/LGPL-2.1'. License: LGPL-3 On Debian systems, the full text of the GNU Lesser General Public License version 3 can be found in the file `/usr/share/common-licenses/LGPL-3'. License: LGPL-3+ On Debian systems, the full text of the GNU Lesser General Public License version 3 can be found in the file `/usr/share/common-licenses/LGPL-3'. License: PHP-3.0+ Redistribution and use in source and binary forms, with or without modification, is permitted provided that the following conditions are met: . 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. . 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. . 3. The name "PHP" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact group@php.net. . 4. Products derived from this software may not be called "PHP", nor may "PHP" appear in their name, without prior written permission from group@php.net. You may indicate that your software works in conjunction with PHP by saying "Foo for PHP" instead of calling it "PHP Foo" or "phpfoo" . 5. The PHP Group may publish revised and/or new versions of the license from time to time. Each version will be given a distinguishing version number. Once covered code has been published under a particular version of the license, you may always continue to use it under the terms of that version. You may also choose to use such covered code under the terms of any subsequent version of the license published by the PHP Group. No one other than the PHP Group has the right to modify the terms applicable to covered code created under this License. . 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes PHP, freely available from ". . THIS SOFTWARE IS PROVIDED BY THE PHP DEVELOPMENT TEAM ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE PHP DEVELOPMENT TEAM OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. License: t1asm Permission is hereby granted to use, modify, and distribute this program for any purpose provided this copyright notice and the one below remain intact. debian/links0000644000000000000000000000005612230611571010230 0ustar etc/php-phpdocx usr/share/php/phpdocx/config