diff --git a/INSTALL.txt b/INSTALL.txt deleted file mode 100644 index a8e4c19..0000000 --- a/INSTALL.txt +++ /dev/null @@ -1,83 +0,0 @@ -INSTALLATION ------------- - -Zend Framework requires no special installation steps. Simply download the framework, -extract it to the folder you would like to keep it in, and add the library directory -to your PHP include_path. To use components in the extras library, add the extras/library -directory to your PHP include_path, as well. -If you would like to use Zend_Tool, simply add bin/zf.bat (for Windows) or -bin/zf.sh (for anything else) to your system executable path. - -SYSTEM REQUIREMENTS -------------------- - -Zend Framework requires PHP 5.2.11 or later. Please see the system requirements -appendix for more detailed information: - -http://framework.zend.com/manual/en/requirements.html - -DEVELOPMENT VERSIONS --------------------- - -If you would like to preview enhancements or bug fixes that have not yet been -released, you can obtain the current development version of Zend Framework using one -of the following methods: - -* Download the latest nightly snapshot. For those who care to brave the cutting - (often bleeding) edge, the nightly snapshots represent the latest single- - download development version of Zend Framework development. Snapshots are bundled - with documentation in English only or in all available languages. If you anticipate - updating to the latest development version of Zend Framework often, consider using - Subversion as described below. - - http://framework.zend.com/download/snapshot - -* Using a Subversion (SVN) client. Zend Framework is open source software, and - the Subversion repository used for its development is publicly available. Consider - using SVN to get Zend Framework if you already use SVN for your application - development, want to contribute back to the framework, or need to upgrade your - framework version very often. - - Exporting is useful if you want to get a particular framework revision without the - .svn directories as created in a working copy. - - Checking out a working copy is necessary if you would like to directly contribute - to Zend Framework; a working copy can be updated any time with svn update. - - An externals definition is highly convenient for developers already using SVN to - manage their application working copies. - - The URL for the trunk of the Zend Framework SVN repository is: - - http://framework.zend.com/svn/framework/trunk - - For more information about Subversion, please see the official website: - - http://subversion.tigris.org - -CONFIGURING THE INCLUDE PATH ----------------------------- - -Once you have a copy of Zend Framework available, your application will need to -access the framework classes. Though there are several ways to achieve this, your -PHP include_path needs to contain the path to the Zend Framework classes under the -/library directory in this distribution. You can find out more about the PHP -include_path configuration directive here: - -http://www.php.net/manual/en/ini.core.php#ini.include-path - -Instructions on how to change PHP configuration directives can be found here: - -http://www.php.net/manual/en/configuration.changes.php - -GETTING STARTED ---------------- - -A great place to get up-to-speed quickly is the Zend Framework QuickStart: - -http://framework.zend.com/docs/quickstart - -The QuickStart covers some of the most commonly used components of ZF. Since -Zend Framework is designed with a use-at-will architecture and components are -loosely coupled, you can select and use only those components that are needed for -your project. diff --git a/LICENSE.txt b/LICENSE.txt index 36e9760..5ad81e9 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) 2005-2012, Zend Technologies USA, Inc. +Copyright (c) 2005-2014, Zend Technologies USA, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, diff --git a/README.txt b/README.txt deleted file mode 100644 index 596d08c..0000000 --- a/README.txt +++ /dev/null @@ -1,160 +0,0 @@ -Welcome to the Zend Framework 1.12 Release! - -RELEASE INFORMATION ---------------- -Zend Framework 1.12.3 Release ([INSERT REV NUM HERE]). -Released on March 13, 2013 - -IMPORTANT FIXES FOR 1.12.3 --------------------------- - -This release incorporates is primarily aimed to update -Zend_Service_Twitter to the Twitter v1.1 API: - - - http://framework.zend.com/issues/browse/ZF-12530 - -Because the Twitter v1.1 API is not backwards compatible with v1.0, the -API for Zend_Service_Twitter has been changed; if you have been using it -previously, you will need to update your code accordingly. Both the -end-user and API documentation have been updated to reflect the changes. - -NEW FEATURES -============ - -Zend_Loader changes ----- - -A number of autoloaders and autoloader facilities were back ported from -ZF2 to provide performant alternatives to those already available in the -1.X releases. These include: Zend_Loader_StandardAutoloader, which -improves on Zend_Loader_Autoloader by allowing the ability to specify a -specific path to associate with a vendor prefix or namespace; -Zend_Loader_ClassMapAutoloader, which provides the ability to use lookup -tables for autoloading (which are typically the fastest possible way to -autoload); and Zend_Loader_AutoloaderFactory, which can both create and -update autoloaders for you, as well as register them with -spl_autoload_register(). - -The Zend_Loader changes were back ported from ZF2 by Matthew Weier -O’Phinney - -Zend_EventManager ----- - -Zend_EventManager is a component that allows you to attach and detach -listeners to named events, both on a per-instance basis as well as via -shared collections; trigger events; and interrupt execution of -listeners. - -Zend_EventManager was back ported from ZF2 by Matthew Weier O’Phinney - -Zend_Http_UserAgent_Features_Adapter_Browscap ----- - -This class provides a features adapter that calls get_browser() in order -to discover mobile device capabilities to inject into UserAgent device -instances. - -Browscap (http://browsers.garykeith.com/) is an open project dedicated -to collecting an disseminating a “database” of browser capabilities. PHP -has built-in support for using these files via the get_browser() -function. This function requires that your php.ini provides a browscap -entry pointing to the PHP-specific php_browscap.ini file which is -available at http://browsers.garykeith.com/stream.asp?PHP_BrowsCapINI. - -Zend_Http_UserAgent_Features_Adapter_Browscap was created by Matthew -Weier O’Phinney - -Zend_Mobile_Push ----- - -Zend_Mobile_Push is a component for implementing push notifications for -the 3 major push notification platforms (Apple (Apns), Google (C2dm) and -Microsoft (Mpns). - -Zend_Mobile_Push was contributed by Mike Willbanks. - -Zend_Gdata_Analytics ----- - -Zend_Gdata_Analytics is an extension to Zend_Gdata to allow interaction -with Google’s Analytics Data Export API. This extension does not -encompass any major changes in the overall operation of Zend_Gdata -components. - -Zend_Gdata_Analytics was contributed by Daniel Hartmann. - -Removed features -================ - -Zend_Http_UserAgent_Features_Adapter_WurflApi ----- - -Due to the changes in licensing of WURFL, we have removed the WurflApi -adapter. We will be providing the WurflApi adapter to ScientiaMobile so -that users of WURFL will still have that option. - -Bug Fixes -========= - -In addition, over 200 reported issues in the tracker have been fixed. -We’d like to particularly thank Adam Lundrigan, Frank Brückner and -Martin Hujer for their efforts in making this happen. Thanks also to the -many people who ran the ZF1 unit tests and reported their results! - -For a complete list, visit: - - * http://framework.zend.com/issues/secure/IssueNavigator.jspa?requestId=12877 - * http://framework.zend.com/changelog/ - -MIGRATION NOTES ---------------- - -A detailed list of migration notes may be found at: - -http://framework.zend.com/manual/en/migration.html - -SYSTEM REQUIREMENTS -------------------- - -Zend Framework requires PHP 5.2.11 or later. Please see our reference -guide for more detailed system requirements: - -http://framework.zend.com/manual/en/requirements.html - -INSTALLATION ------------- - -Please see INSTALL.txt. - -QUESTIONS AND FEEDBACK ----------------------- - -Online documentation can be found at http://framework.zend.com/manual. -Questions that are not addressed in the manual should be directed to the -appropriate mailing list: - -http://framework.zend.com/wiki/display/ZFDEV/Mailing+Lists - -If you find code in this release behaving in an unexpected manner or -contrary to its documented behavior, please create an issue in the Zend -Framework issue tracker at: - -http://framework.zend.com/issues - -If you would like to be notified of new releases, you can subscribe to -the fw-announce mailing list by sending a blank message to -fw-announce-subscribe@lists.zend.com. - -LICENSE -------- - -The files in this archive are released under the Zend Framework license. -You can find a copy of this license in LICENSE.txt. - -ACKNOWLEDGEMENTS ----------------- - -The Zend Framework team would like to thank all the contributors to the Zend -Framework project, our corporate sponsor, and you, the Zend Framework user. -Please visit us sometime soon at http://framework.zend.com. diff --git a/library/Zend/Pdf.php b/library/Zend/Pdf.php index 97d9830..1a9726e 100644 --- a/library/Zend/Pdf.php +++ b/library/Zend/Pdf.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Pdf.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -78,7 +78,7 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf diff --git a/library/Zend/Pdf/Action.php b/library/Zend/Pdf/Action.php index e005261..a8b2c8b 100644 --- a/library/Zend/Pdf/Action.php +++ b/library/Zend/Pdf/Action.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Action.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -35,7 +35,7 @@ * * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ abstract class Zend_Pdf_Action extends Zend_Pdf_Target implements RecursiveIterator, Countable diff --git a/library/Zend/Pdf/Action/GoTo.php b/library/Zend/Pdf/Action/GoTo.php index 09040b2..c8ec5f1 100644 --- a/library/Zend/Pdf/Action/GoTo.php +++ b/library/Zend/Pdf/Action/GoTo.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: GoTo.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Internally used classes */ @@ -35,7 +35,7 @@ * * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Action_GoTo extends Zend_Pdf_Action diff --git a/library/Zend/Pdf/Action/GoTo3DView.php b/library/Zend/Pdf/Action/GoTo3DView.php index c71e6d6..f251062 100644 --- a/library/Zend/Pdf/Action/GoTo3DView.php +++ b/library/Zend/Pdf/Action/GoTo3DView.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: GoTo3DView.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Zend_Pdf_Action */ @@ -30,7 +30,7 @@ * * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Action_GoTo3DView extends Zend_Pdf_Action diff --git a/library/Zend/Pdf/Action/GoToE.php b/library/Zend/Pdf/Action/GoToE.php index 072abc6..d192d8d 100644 --- a/library/Zend/Pdf/Action/GoToE.php +++ b/library/Zend/Pdf/Action/GoToE.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: GoToE.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Zend_Pdf_Action */ @@ -29,7 +29,7 @@ * * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Action_GoToE extends Zend_Pdf_Action diff --git a/library/Zend/Pdf/Action/GoToR.php b/library/Zend/Pdf/Action/GoToR.php index a2642c3..5b022bf 100644 --- a/library/Zend/Pdf/Action/GoToR.php +++ b/library/Zend/Pdf/Action/GoToR.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: GoToR.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Zend_Pdf_Action */ @@ -29,7 +29,7 @@ * * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Action_GoToR extends Zend_Pdf_Action diff --git a/library/Zend/Pdf/Action/Hide.php b/library/Zend/Pdf/Action/Hide.php index bbebece..808af12 100644 --- a/library/Zend/Pdf/Action/Hide.php +++ b/library/Zend/Pdf/Action/Hide.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Hide.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Zend_Pdf_Action */ @@ -30,7 +30,7 @@ * * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Action_Hide extends Zend_Pdf_Action diff --git a/library/Zend/Pdf/Action/ImportData.php b/library/Zend/Pdf/Action/ImportData.php index 2dd94a9..3d02fee 100644 --- a/library/Zend/Pdf/Action/ImportData.php +++ b/library/Zend/Pdf/Action/ImportData.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: ImportData.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Zend_Pdf_Action */ @@ -30,7 +30,7 @@ * * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Action_ImportData extends Zend_Pdf_Action diff --git a/library/Zend/Pdf/Action/JavaScript.php b/library/Zend/Pdf/Action/JavaScript.php index 0b0161d..51884b7 100644 --- a/library/Zend/Pdf/Action/JavaScript.php +++ b/library/Zend/Pdf/Action/JavaScript.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: JavaScript.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Zend_Pdf_Action */ @@ -30,7 +30,7 @@ * * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Action_JavaScript extends Zend_Pdf_Action diff --git a/library/Zend/Pdf/Action/Launch.php b/library/Zend/Pdf/Action/Launch.php index 161281d..77835ac 100644 --- a/library/Zend/Pdf/Action/Launch.php +++ b/library/Zend/Pdf/Action/Launch.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Launch.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Zend_Pdf_Action */ @@ -29,7 +29,7 @@ * * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Action_Launch extends Zend_Pdf_Action diff --git a/library/Zend/Pdf/Action/Movie.php b/library/Zend/Pdf/Action/Movie.php index 9a68a1f..86d20db 100644 --- a/library/Zend/Pdf/Action/Movie.php +++ b/library/Zend/Pdf/Action/Movie.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Movie.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Zend_Pdf_Action */ @@ -30,7 +30,7 @@ * * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Action_Movie extends Zend_Pdf_Action diff --git a/library/Zend/Pdf/Action/Named.php b/library/Zend/Pdf/Action/Named.php index c06dc66..ddea8d7 100644 --- a/library/Zend/Pdf/Action/Named.php +++ b/library/Zend/Pdf/Action/Named.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Named.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Zend_Pdf_Action */ @@ -30,7 +30,7 @@ * * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Action_Named extends Zend_Pdf_Action diff --git a/library/Zend/Pdf/Action/Rendition.php b/library/Zend/Pdf/Action/Rendition.php index 87f62ff..76b7611 100644 --- a/library/Zend/Pdf/Action/Rendition.php +++ b/library/Zend/Pdf/Action/Rendition.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Rendition.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Zend_Pdf_Action */ @@ -30,7 +30,7 @@ * * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Action_Rendition extends Zend_Pdf_Action diff --git a/library/Zend/Pdf/Action/ResetForm.php b/library/Zend/Pdf/Action/ResetForm.php index c789b18..1f1d49d 100644 --- a/library/Zend/Pdf/Action/ResetForm.php +++ b/library/Zend/Pdf/Action/ResetForm.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: ResetForm.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Zend_Pdf_Action */ @@ -30,7 +30,7 @@ * * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Action_ResetForm extends Zend_Pdf_Action diff --git a/library/Zend/Pdf/Action/SetOCGState.php b/library/Zend/Pdf/Action/SetOCGState.php index cd659be..a0fc51b 100644 --- a/library/Zend/Pdf/Action/SetOCGState.php +++ b/library/Zend/Pdf/Action/SetOCGState.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: SetOCGState.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Zend_Pdf_Action */ @@ -30,7 +30,7 @@ * * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Action_SetOCGState extends Zend_Pdf_Action diff --git a/library/Zend/Pdf/Action/Sound.php b/library/Zend/Pdf/Action/Sound.php index f286bd5..339c8cb 100644 --- a/library/Zend/Pdf/Action/Sound.php +++ b/library/Zend/Pdf/Action/Sound.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Sound.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Zend_Pdf_Action */ @@ -30,7 +30,7 @@ * * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Action_Sound extends Zend_Pdf_Action diff --git a/library/Zend/Pdf/Action/SubmitForm.php b/library/Zend/Pdf/Action/SubmitForm.php index 22a6c8d..f47e705 100644 --- a/library/Zend/Pdf/Action/SubmitForm.php +++ b/library/Zend/Pdf/Action/SubmitForm.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: SubmitForm.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Zend_Pdf_Action */ @@ -30,7 +30,7 @@ * * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Action_SubmitForm extends Zend_Pdf_Action diff --git a/library/Zend/Pdf/Action/Thread.php b/library/Zend/Pdf/Action/Thread.php index ff29b82..1817b30 100644 --- a/library/Zend/Pdf/Action/Thread.php +++ b/library/Zend/Pdf/Action/Thread.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Thread.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Zend_Pdf_Action */ @@ -29,7 +29,7 @@ * * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Action_Thread extends Zend_Pdf_Action diff --git a/library/Zend/Pdf/Action/Trans.php b/library/Zend/Pdf/Action/Trans.php index 973d50c..7d362bf 100644 --- a/library/Zend/Pdf/Action/Trans.php +++ b/library/Zend/Pdf/Action/Trans.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Trans.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Zend_Pdf_Action */ @@ -30,7 +30,7 @@ * * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Action_Trans extends Zend_Pdf_Action diff --git a/library/Zend/Pdf/Action/URI.php b/library/Zend/Pdf/Action/URI.php index f359db2..9761ab2 100644 --- a/library/Zend/Pdf/Action/URI.php +++ b/library/Zend/Pdf/Action/URI.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: URI.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Internally used classes */ @@ -38,7 +38,7 @@ * * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Action_URI extends Zend_Pdf_Action diff --git a/library/Zend/Pdf/Action/Unknown.php b/library/Zend/Pdf/Action/Unknown.php index f7ff685..8998d21 100644 --- a/library/Zend/Pdf/Action/Unknown.php +++ b/library/Zend/Pdf/Action/Unknown.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Unknown.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Zend_Pdf_Action */ @@ -29,7 +29,7 @@ * * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Action_Unknown extends Zend_Pdf_Action diff --git a/library/Zend/Pdf/Annotation.php b/library/Zend/Pdf/Annotation.php index 1661542..528c5e2 100644 --- a/library/Zend/Pdf/Annotation.php +++ b/library/Zend/Pdf/Annotation.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Annotation - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Annotation.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Internally used classes */ @@ -32,7 +32,7 @@ * * @package Zend_Pdf * @subpackage Annotation - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ abstract class Zend_Pdf_Annotation diff --git a/library/Zend/Pdf/Annotation/FileAttachment.php b/library/Zend/Pdf/Annotation/FileAttachment.php index 1f3c919..6c2c76d 100644 --- a/library/Zend/Pdf/Annotation/FileAttachment.php +++ b/library/Zend/Pdf/Annotation/FileAttachment.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Annotation - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: FileAttachment.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Internally used classes */ @@ -38,7 +38,7 @@ * * @package Zend_Pdf * @subpackage Annotation - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Annotation_FileAttachment extends Zend_Pdf_Annotation diff --git a/library/Zend/Pdf/Annotation/Link.php b/library/Zend/Pdf/Annotation/Link.php index 4a76ba9..bcb81cc 100644 --- a/library/Zend/Pdf/Annotation/Link.php +++ b/library/Zend/Pdf/Annotation/Link.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Annotation - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Link.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Internally used classes */ @@ -40,7 +40,7 @@ * * @package Zend_Pdf * @subpackage Annotation - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Annotation_Link extends Zend_Pdf_Annotation @@ -70,18 +70,19 @@ class Zend_Pdf_Annotation_Link extends Zend_Pdf_Annotation /** * Create link annotation object * - * @param float $x1 - * @param float $y1 - * @param float $x2 - * @param float $y2 + * @param float $x1 + * @param float $y1 + * @param float $x2 + * @param float $y2 * @param Zend_Pdf_Target|string $target * @return Zend_Pdf_Annotation_Link + * @throws Zend_Pdf_Exception */ public static function create($x1, $y1, $x2, $y2, $target) { if (is_string($target)) { // require_once 'Zend/Pdf/Destination/Named.php'; - $destination = Zend_Pdf_Destination_Named::create($target); + $target = Zend_Pdf_Destination_Named::create($target); } if (!$target instanceof Zend_Pdf_Target) { // require_once 'Zend/Pdf/Exception.php'; diff --git a/library/Zend/Pdf/Annotation/Markup.php b/library/Zend/Pdf/Annotation/Markup.php index 18f83d2..8c24006 100644 --- a/library/Zend/Pdf/Annotation/Markup.php +++ b/library/Zend/Pdf/Annotation/Markup.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Annotation - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Markup.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Internally used classes */ @@ -37,7 +37,7 @@ * * @package Zend_Pdf * @subpackage Annotation - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Annotation_Markup extends Zend_Pdf_Annotation diff --git a/library/Zend/Pdf/Annotation/Text.php b/library/Zend/Pdf/Annotation/Text.php index 4b802a9..ef77946 100644 --- a/library/Zend/Pdf/Annotation/Text.php +++ b/library/Zend/Pdf/Annotation/Text.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Annotation - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Text.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Internally used classes */ @@ -37,7 +37,7 @@ * * @package Zend_Pdf * @subpackage Annotation - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Annotation_Text extends Zend_Pdf_Annotation diff --git a/library/Zend/Pdf/Canvas.php b/library/Zend/Pdf/Canvas.php index 9acb3a5..3b79ee7 100644 --- a/library/Zend/Pdf/Canvas.php +++ b/library/Zend/Pdf/Canvas.php @@ -14,7 +14,7 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License * @version $Id: Style.php 20096 2010-01-06 02:05:09Z bkarwin $ */ @@ -26,7 +26,7 @@ * page object at specified place. * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Canvas extends Zend_Pdf_Canvas_Abstract diff --git a/library/Zend/Pdf/Canvas/Abstract.php b/library/Zend/Pdf/Canvas/Abstract.php index ec04fcb..15f2b90 100644 --- a/library/Zend/Pdf/Canvas/Abstract.php +++ b/library/Zend/Pdf/Canvas/Abstract.php @@ -14,7 +14,7 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License * @version $Id: Style.php 20096 2010-01-06 02:05:09Z bkarwin $ */ @@ -41,7 +41,7 @@ * page object at specified place. * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ abstract class Zend_Pdf_Canvas_Abstract implements Zend_Pdf_Canvas_Interface diff --git a/library/Zend/Pdf/Canvas/Interface.php b/library/Zend/Pdf/Canvas/Interface.php index 88b20f4..82d4d78 100644 --- a/library/Zend/Pdf/Canvas/Interface.php +++ b/library/Zend/Pdf/Canvas/Interface.php @@ -14,7 +14,7 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License * @version $Id: Style.php 20096 2010-01-06 02:05:09Z bkarwin $ */ @@ -25,7 +25,7 @@ * page object at specified place. * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ interface Zend_Pdf_Canvas_Interface diff --git a/library/Zend/Pdf/Cmap.php b/library/Zend/Pdf/Cmap.php index a3b05d8..2eccccb 100644 --- a/library/Zend/Pdf/Cmap.php +++ b/library/Zend/Pdf/Cmap.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Cmap.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -47,7 +47,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ abstract class Zend_Pdf_Cmap diff --git a/library/Zend/Pdf/Cmap/ByteEncoding.php b/library/Zend/Pdf/Cmap/ByteEncoding.php index 575df02..a80e970 100644 --- a/library/Zend/Pdf/Cmap/ByteEncoding.php +++ b/library/Zend/Pdf/Cmap/ByteEncoding.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: ByteEncoding.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Zend_Pdf_Cmap */ @@ -36,7 +36,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Cmap_ByteEncoding extends Zend_Pdf_Cmap diff --git a/library/Zend/Pdf/Cmap/ByteEncoding/Static.php b/library/Zend/Pdf/Cmap/ByteEncoding/Static.php index b22f0ee..91cc4d9 100644 --- a/library/Zend/Pdf/Cmap/ByteEncoding/Static.php +++ b/library/Zend/Pdf/Cmap/ByteEncoding/Static.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Static.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Zend_Pdf_Cmap_ByteEncoding */ @@ -32,7 +32,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Cmap_ByteEncoding_Static extends Zend_Pdf_Cmap_ByteEncoding diff --git a/library/Zend/Pdf/Cmap/SegmentToDelta.php b/library/Zend/Pdf/Cmap/SegmentToDelta.php index 9043688..1c4c849 100644 --- a/library/Zend/Pdf/Cmap/SegmentToDelta.php +++ b/library/Zend/Pdf/Cmap/SegmentToDelta.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: SegmentToDelta.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Zend_Pdf_Cmap */ @@ -33,7 +33,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Cmap_SegmentToDelta extends Zend_Pdf_Cmap diff --git a/library/Zend/Pdf/Cmap/TrimmedTable.php b/library/Zend/Pdf/Cmap/TrimmedTable.php index c4baa3f..49553b5 100644 --- a/library/Zend/Pdf/Cmap/TrimmedTable.php +++ b/library/Zend/Pdf/Cmap/TrimmedTable.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: TrimmedTable.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Zend_Pdf_Cmap */ @@ -33,7 +33,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Cmap_TrimmedTable extends Zend_Pdf_Cmap diff --git a/library/Zend/Pdf/Color.php b/library/Zend/Pdf/Color.php index 277a257..abc5fe9 100644 --- a/library/Zend/Pdf/Color.php +++ b/library/Zend/Pdf/Color.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Color.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -28,7 +28,7 @@ * others don't do it. That is defined in a subclasses. * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ abstract class Zend_Pdf_Color diff --git a/library/Zend/Pdf/Color/Cmyk.php b/library/Zend/Pdf/Color/Cmyk.php index 9a4196e..1bbdc14 100644 --- a/library/Zend/Pdf/Color/Cmyk.php +++ b/library/Zend/Pdf/Color/Cmyk.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Cmyk.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Internally used classes */ @@ -31,7 +31,7 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Color_Cmyk extends Zend_Pdf_Color diff --git a/library/Zend/Pdf/Color/GrayScale.php b/library/Zend/Pdf/Color/GrayScale.php index 2f09fdb..4681aad 100644 --- a/library/Zend/Pdf/Color/GrayScale.php +++ b/library/Zend/Pdf/Color/GrayScale.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: GrayScale.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -32,7 +32,7 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Color_GrayScale extends Zend_Pdf_Color diff --git a/library/Zend/Pdf/Color/Html.php b/library/Zend/Pdf/Color/Html.php index 4dfac1b..52f0611 100644 --- a/library/Zend/Pdf/Color/Html.php +++ b/library/Zend/Pdf/Color/Html.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Html.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Zend_Pdf_Color */ @@ -31,7 +31,7 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Color_Html extends Zend_Pdf_Color diff --git a/library/Zend/Pdf/Color/Rgb.php b/library/Zend/Pdf/Color/Rgb.php index 1df2a04..b58b1f4 100644 --- a/library/Zend/Pdf/Color/Rgb.php +++ b/library/Zend/Pdf/Color/Rgb.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Rgb.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -32,7 +32,7 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Color_Rgb extends Zend_Pdf_Color diff --git a/library/Zend/Pdf/Destination.php b/library/Zend/Pdf/Destination.php index 9439b05..a5b0e0e 100644 --- a/library/Zend/Pdf/Destination.php +++ b/library/Zend/Pdf/Destination.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Destination - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Destination.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -34,7 +34,7 @@ * * @package Zend_Pdf * @subpackage Destination - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ abstract class Zend_Pdf_Destination extends Zend_Pdf_Target diff --git a/library/Zend/Pdf/Destination/Explicit.php b/library/Zend/Pdf/Destination/Explicit.php index f732d09..79c8cf6 100644 --- a/library/Zend/Pdf/Destination/Explicit.php +++ b/library/Zend/Pdf/Destination/Explicit.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Destination - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Explicit.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -33,7 +33,7 @@ * * @package Zend_Pdf * @subpackage Destination - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ abstract class Zend_Pdf_Destination_Explicit extends Zend_Pdf_Destination diff --git a/library/Zend/Pdf/Destination/Fit.php b/library/Zend/Pdf/Destination/Fit.php index d26c3cc..98304d0 100644 --- a/library/Zend/Pdf/Destination/Fit.php +++ b/library/Zend/Pdf/Destination/Fit.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Destination - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Fit.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -43,7 +43,7 @@ * * @package Zend_Pdf * @subpackage Destination - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Destination_Fit extends Zend_Pdf_Destination_Explicit diff --git a/library/Zend/Pdf/Destination/FitBoundingBox.php b/library/Zend/Pdf/Destination/FitBoundingBox.php index 0f5246a..02dbfea 100644 --- a/library/Zend/Pdf/Destination/FitBoundingBox.php +++ b/library/Zend/Pdf/Destination/FitBoundingBox.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Destination - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: FitBoundingBox.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -43,7 +43,7 @@ * * @package Zend_Pdf * @subpackage Destination - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Destination_FitBoundingBox extends Zend_Pdf_Destination_Explicit diff --git a/library/Zend/Pdf/Destination/FitBoundingBoxHorizontally.php b/library/Zend/Pdf/Destination/FitBoundingBoxHorizontally.php index 692b514..a9aca6b 100644 --- a/library/Zend/Pdf/Destination/FitBoundingBoxHorizontally.php +++ b/library/Zend/Pdf/Destination/FitBoundingBoxHorizontally.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Destination - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: FitBoundingBoxHorizontally.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -42,7 +42,7 @@ * * @package Zend_Pdf * @subpackage Destination - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Destination_FitBoundingBoxHorizontally extends Zend_Pdf_Destination_Explicit diff --git a/library/Zend/Pdf/Destination/FitBoundingBoxVertically.php b/library/Zend/Pdf/Destination/FitBoundingBoxVertically.php index 33a6c7c..9fc8fb7 100644 --- a/library/Zend/Pdf/Destination/FitBoundingBoxVertically.php +++ b/library/Zend/Pdf/Destination/FitBoundingBoxVertically.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Destination - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: FitBoundingBoxVertically.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Internally used classes */ @@ -41,7 +41,7 @@ * * @package Zend_Pdf * @subpackage Destination - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Destination_FitBoundingBoxVertically extends Zend_Pdf_Destination_Explicit diff --git a/library/Zend/Pdf/Destination/FitHorizontally.php b/library/Zend/Pdf/Destination/FitHorizontally.php index 98116e2..540f1b8 100644 --- a/library/Zend/Pdf/Destination/FitHorizontally.php +++ b/library/Zend/Pdf/Destination/FitHorizontally.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Destination - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: FitHorizontally.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -41,7 +41,7 @@ * * @package Zend_Pdf * @subpackage Destination - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Destination_FitHorizontally extends Zend_Pdf_Destination_Explicit diff --git a/library/Zend/Pdf/Destination/FitRectangle.php b/library/Zend/Pdf/Destination/FitRectangle.php index 841eaa1..be6896b 100644 --- a/library/Zend/Pdf/Destination/FitRectangle.php +++ b/library/Zend/Pdf/Destination/FitRectangle.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Destination - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: FitRectangle.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -43,7 +43,7 @@ * * @package Zend_Pdf * @subpackage Destination - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Destination_FitRectangle extends Zend_Pdf_Destination_Explicit diff --git a/library/Zend/Pdf/Destination/FitVertically.php b/library/Zend/Pdf/Destination/FitVertically.php index 806a344..ac1b8a9 100644 --- a/library/Zend/Pdf/Destination/FitVertically.php +++ b/library/Zend/Pdf/Destination/FitVertically.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Destination - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: FitVertically.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -41,7 +41,7 @@ * * @package Zend_Pdf * @subpackage Destination - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Destination_FitVertically extends Zend_Pdf_Destination_Explicit diff --git a/library/Zend/Pdf/Destination/Named.php b/library/Zend/Pdf/Destination/Named.php index f7db3db..6fa3a77 100644 --- a/library/Zend/Pdf/Destination/Named.php +++ b/library/Zend/Pdf/Destination/Named.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Destination - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Named.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Internally used classes */ @@ -39,7 +39,7 @@ * * @package Zend_Pdf * @subpackage Destination - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Destination_Named extends Zend_Pdf_Destination diff --git a/library/Zend/Pdf/Destination/Unknown.php b/library/Zend/Pdf/Destination/Unknown.php index 726276e..a1a05ce 100644 --- a/library/Zend/Pdf/Destination/Unknown.php +++ b/library/Zend/Pdf/Destination/Unknown.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Destination - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Unknown.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Zend_Pdf_Destination_Explicit */ @@ -29,7 +29,7 @@ * * @package Zend_Pdf * @subpackage Destination - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Destination_Unknown extends Zend_Pdf_Destination_Explicit diff --git a/library/Zend/Pdf/Destination/Zoom.php b/library/Zend/Pdf/Destination/Zoom.php index 2476f9a..9af0992 100644 --- a/library/Zend/Pdf/Destination/Zoom.php +++ b/library/Zend/Pdf/Destination/Zoom.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Destination - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Zoom.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Internally used classes */ @@ -43,7 +43,7 @@ * * @package Zend_Pdf * @subpackage Destination - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Destination_Zoom extends Zend_Pdf_Destination_Explicit diff --git a/library/Zend/Pdf/Element.php b/library/Zend/Pdf/Element.php index f7f11ed..ca6eba2 100644 --- a/library/Zend/Pdf/Element.php +++ b/library/Zend/Pdf/Element.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Element.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -24,7 +24,7 @@ * PDF file element implementation * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ abstract class Zend_Pdf_Element diff --git a/library/Zend/Pdf/Element/Array.php b/library/Zend/Pdf/Element/Array.php index 4c67a5e..53ffbe9 100644 --- a/library/Zend/Pdf/Element/Array.php +++ b/library/Zend/Pdf/Element/Array.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Array.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -29,7 +29,7 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Element_Array extends Zend_Pdf_Element diff --git a/library/Zend/Pdf/Element/Boolean.php b/library/Zend/Pdf/Element/Boolean.php index f0b30d4..39dee3c 100644 --- a/library/Zend/Pdf/Element/Boolean.php +++ b/library/Zend/Pdf/Element/Boolean.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Boolean.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -29,7 +29,7 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Element_Boolean extends Zend_Pdf_Element diff --git a/library/Zend/Pdf/Element/Dictionary.php b/library/Zend/Pdf/Element/Dictionary.php index 214a4c8..aeb2580 100644 --- a/library/Zend/Pdf/Element/Dictionary.php +++ b/library/Zend/Pdf/Element/Dictionary.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Dictionary.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -32,7 +32,7 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Element_Dictionary extends Zend_Pdf_Element diff --git a/library/Zend/Pdf/Element/Name.php b/library/Zend/Pdf/Element/Name.php index 35cd856..cbbb463 100644 --- a/library/Zend/Pdf/Element/Name.php +++ b/library/Zend/Pdf/Element/Name.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Name.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -29,7 +29,7 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Element_Name extends Zend_Pdf_Element diff --git a/library/Zend/Pdf/Element/Null.php b/library/Zend/Pdf/Element/Null.php index dbc976f..2492d1c 100644 --- a/library/Zend/Pdf/Element/Null.php +++ b/library/Zend/Pdf/Element/Null.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Null.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -29,7 +29,7 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Element_Null extends Zend_Pdf_Element diff --git a/library/Zend/Pdf/Element/Numeric.php b/library/Zend/Pdf/Element/Numeric.php index 175f31f..d1fdca5 100644 --- a/library/Zend/Pdf/Element/Numeric.php +++ b/library/Zend/Pdf/Element/Numeric.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Numeric.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -29,7 +29,7 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Element_Numeric extends Zend_Pdf_Element diff --git a/library/Zend/Pdf/Element/Object.php b/library/Zend/Pdf/Element/Object.php index 23d83a2..5c0d8db 100644 --- a/library/Zend/Pdf/Element/Object.php +++ b/library/Zend/Pdf/Element/Object.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Object.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -29,7 +29,7 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Element_Object extends Zend_Pdf_Element diff --git a/library/Zend/Pdf/Element/Object/Stream.php b/library/Zend/Pdf/Element/Object/Stream.php index 08b35b6..9c36762 100644 --- a/library/Zend/Pdf/Element/Object/Stream.php +++ b/library/Zend/Pdf/Element/Object/Stream.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Stream.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -34,7 +34,7 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Element_Object_Stream extends Zend_Pdf_Element_Object diff --git a/library/Zend/Pdf/Element/Reference.php b/library/Zend/Pdf/Element/Reference.php index 6e64074..e17dc9f 100644 --- a/library/Zend/Pdf/Element/Reference.php +++ b/library/Zend/Pdf/Element/Reference.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Reference.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -32,7 +32,7 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Element_Reference extends Zend_Pdf_Element diff --git a/library/Zend/Pdf/Element/Reference/Context.php b/library/Zend/Pdf/Element/Reference/Context.php index 305d27e..b2c0bfa 100644 --- a/library/Zend/Pdf/Element/Reference/Context.php +++ b/library/Zend/Pdf/Element/Reference/Context.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Context.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -26,7 +26,7 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Element_Reference_Context diff --git a/library/Zend/Pdf/Element/Reference/Table.php b/library/Zend/Pdf/Element/Reference/Table.php index bca124e..8d44956 100644 --- a/library/Zend/Pdf/Element/Reference/Table.php +++ b/library/Zend/Pdf/Element/Reference/Table.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Table.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -25,7 +25,7 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Element_Reference_Table diff --git a/library/Zend/Pdf/Element/Stream.php b/library/Zend/Pdf/Element/Stream.php index e86972a..221d5c2 100644 --- a/library/Zend/Pdf/Element/Stream.php +++ b/library/Zend/Pdf/Element/Stream.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Stream.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -32,7 +32,7 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Element_Stream extends Zend_Pdf_Element diff --git a/library/Zend/Pdf/Element/String.php b/library/Zend/Pdf/Element/String.php index 103bd04..daf80e3 100644 --- a/library/Zend/Pdf/Element/String.php +++ b/library/Zend/Pdf/Element/String.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: String.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -28,7 +28,7 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Element_String extends Zend_Pdf_Element diff --git a/library/Zend/Pdf/Element/String/Binary.php b/library/Zend/Pdf/Element/String/Binary.php index 0cda7fd..40f37d6 100644 --- a/library/Zend/Pdf/Element/String/Binary.php +++ b/library/Zend/Pdf/Element/String/Binary.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Binary.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -29,7 +29,7 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Element_String_Binary extends Zend_Pdf_Element_String diff --git a/library/Zend/Pdf/ElementFactory.php b/library/Zend/Pdf/ElementFactory.php index fcf3898..655299d 100644 --- a/library/Zend/Pdf/ElementFactory.php +++ b/library/Zend/Pdf/ElementFactory.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: ElementFactory.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -28,7 +28,7 @@ * Responsibility is to log PDF changes * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_ElementFactory implements Zend_Pdf_ElementFactory_Interface diff --git a/library/Zend/Pdf/ElementFactory/Interface.php b/library/Zend/Pdf/ElementFactory/Interface.php index ffa5a4b..f0cd25a 100644 --- a/library/Zend/Pdf/ElementFactory/Interface.php +++ b/library/Zend/Pdf/ElementFactory/Interface.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Interface.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** @@ -24,7 +24,7 @@ * Responsibility is to log PDF changes * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ interface Zend_Pdf_ElementFactory_Interface diff --git a/library/Zend/Pdf/ElementFactory/Proxy.php b/library/Zend/Pdf/ElementFactory/Proxy.php index d40aa4f..9dfdafa 100644 --- a/library/Zend/Pdf/ElementFactory/Proxy.php +++ b/library/Zend/Pdf/ElementFactory/Proxy.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Proxy.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Zend_Pdf_ElementFactory_Interface */ @@ -27,7 +27,7 @@ * Responsibility is to log PDF changes * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_ElementFactory_Proxy implements Zend_Pdf_ElementFactory_Interface diff --git a/library/Zend/Pdf/Exception.php b/library/Zend/Pdf/Exception.php index 3764f02..c88c73a 100644 --- a/library/Zend/Pdf/Exception.php +++ b/library/Zend/Pdf/Exception.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Core - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Exception.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Zend_Exception */ @@ -45,7 +45,7 @@ * * @package Zend_Pdf * @subpackage Core - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Exception extends Zend_Exception diff --git a/library/Zend/Pdf/FileParser.php b/library/Zend/Pdf/FileParser.php index 02c95e1..0ac7c1b 100644 --- a/library/Zend/Pdf/FileParser.php +++ b/library/Zend/Pdf/FileParser.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage FileParser - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: FileParser.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** @@ -33,7 +33,7 @@ * * @package Zend_Pdf * @subpackage FileParser - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ abstract class Zend_Pdf_FileParser diff --git a/library/Zend/Pdf/FileParser/Font.php b/library/Zend/Pdf/FileParser/Font.php index f975025..0fc6cd8 100644 --- a/library/Zend/Pdf/FileParser/Font.php +++ b/library/Zend/Pdf/FileParser/Font.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage FileParser - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Font.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Internally used classes */ @@ -36,7 +36,7 @@ * * @package Zend_Pdf * @subpackage FileParser - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ abstract class Zend_Pdf_FileParser_Font extends Zend_Pdf_FileParser diff --git a/library/Zend/Pdf/FileParser/Font/OpenType.php b/library/Zend/Pdf/FileParser/Font/OpenType.php index 8c34a91..24da2cb 100644 --- a/library/Zend/Pdf/FileParser/Font/OpenType.php +++ b/library/Zend/Pdf/FileParser/Font/OpenType.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage FileParser - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: OpenType.php 25197 2013-01-09 11:32:22Z frosch $ + * @version $Id$ */ /** Zend_Pdf_FileParser_Font */ @@ -45,7 +45,7 @@ * * @package Zend_Pdf * @subpackage FileParser - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ abstract class Zend_Pdf_FileParser_Font_OpenType extends Zend_Pdf_FileParser_Font diff --git a/library/Zend/Pdf/FileParser/Font/OpenType/TrueType.php b/library/Zend/Pdf/FileParser/Font/OpenType/TrueType.php index 5944b7f..0a4d249 100644 --- a/library/Zend/Pdf/FileParser/Font/OpenType/TrueType.php +++ b/library/Zend/Pdf/FileParser/Font/OpenType/TrueType.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage FileParser - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: TrueType.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -29,7 +29,7 @@ * * @package Zend_Pdf * @subpackage FileParser - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_FileParser_Font_OpenType_TrueType extends Zend_Pdf_FileParser_Font_OpenType diff --git a/library/Zend/Pdf/FileParser/Image.php b/library/Zend/Pdf/FileParser/Image.php index 560c3e9..afb7e67 100644 --- a/library/Zend/Pdf/FileParser/Image.php +++ b/library/Zend/Pdf/FileParser/Image.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage FileParser - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Image.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -35,7 +35,7 @@ * * @package Zend_Pdf * @subpackage FileParser - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ abstract class Zend_Pdf_FileParser_Image extends Zend_Pdf_FileParser diff --git a/library/Zend/Pdf/FileParser/Image/Png.php b/library/Zend/Pdf/FileParser/Image/Png.php index 787a2c8..6975e12 100644 --- a/library/Zend/Pdf/FileParser/Image/Png.php +++ b/library/Zend/Pdf/FileParser/Image/Png.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage FileParser - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Png.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** @see Zend_Pdf_FileParser_Image */ @@ -29,7 +29,7 @@ * * @package Zend_Pdf * @subpackage FileParser - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_FileParser_Image_Png extends Zend_Pdf_FileParser_Image diff --git a/library/Zend/Pdf/FileParserDataSource.php b/library/Zend/Pdf/FileParserDataSource.php index d6ef6ee..74800f4 100644 --- a/library/Zend/Pdf/FileParserDataSource.php +++ b/library/Zend/Pdf/FileParserDataSource.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage FileParser - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: FileParserDataSource.php 24806 2012-05-15 11:32:11Z adamlundrigan $ + * @version $Id$ */ /** @@ -35,7 +35,7 @@ * * @package Zend_Pdf * @subpackage FileParser - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ abstract class Zend_Pdf_FileParserDataSource diff --git a/library/Zend/Pdf/FileParserDataSource/File.php b/library/Zend/Pdf/FileParserDataSource/File.php index d2ec9c7..9c378e0 100644 --- a/library/Zend/Pdf/FileParserDataSource/File.php +++ b/library/Zend/Pdf/FileParserDataSource/File.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage FileParser - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: File.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Zend_Pdf_FileParserDataSource */ @@ -34,7 +34,7 @@ * * @package Zend_Pdf * @subpackage FileParser - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_FileParserDataSource_File extends Zend_Pdf_FileParserDataSource diff --git a/library/Zend/Pdf/FileParserDataSource/String.php b/library/Zend/Pdf/FileParserDataSource/String.php index a891719..415973b 100644 --- a/library/Zend/Pdf/FileParserDataSource/String.php +++ b/library/Zend/Pdf/FileParserDataSource/String.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage FileParser - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: String.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Zend_Pdf_FileParserDataSource */ @@ -29,7 +29,7 @@ * * @package Zend_Pdf * @subpackage FileParser - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_FileParserDataSource_String extends Zend_Pdf_FileParserDataSource diff --git a/library/Zend/Pdf/Filter/Ascii85.php b/library/Zend/Pdf/Filter/Ascii85.php index 18a22d2..b7f3aef 100644 --- a/library/Zend/Pdf/Filter/Ascii85.php +++ b/library/Zend/Pdf/Filter/Ascii85.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Ascii85.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -27,7 +27,7 @@ * ASCII85 stream filter * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Filter_Ascii85 implements Zend_Pdf_Filter_Interface diff --git a/library/Zend/Pdf/Filter/AsciiHex.php b/library/Zend/Pdf/Filter/AsciiHex.php index bd5b45d..e143dbf 100644 --- a/library/Zend/Pdf/Filter/AsciiHex.php +++ b/library/Zend/Pdf/Filter/AsciiHex.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: AsciiHex.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -27,7 +27,7 @@ * AsciiHex stream filter * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Filter_AsciiHex implements Zend_Pdf_Filter_Interface diff --git a/library/Zend/Pdf/Filter/Compression.php b/library/Zend/Pdf/Filter/Compression.php index 1e60d7d..bb10c9b 100644 --- a/library/Zend/Pdf/Filter/Compression.php +++ b/library/Zend/Pdf/Filter/Compression.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Compression.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -27,7 +27,7 @@ * ASCII85 stream filter * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ abstract class Zend_Pdf_Filter_Compression implements Zend_Pdf_Filter_Interface diff --git a/library/Zend/Pdf/Filter/Compression/Flate.php b/library/Zend/Pdf/Filter/Compression/Flate.php index 27ead48..a17d34d 100644 --- a/library/Zend/Pdf/Filter/Compression/Flate.php +++ b/library/Zend/Pdf/Filter/Compression/Flate.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Flate.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -27,7 +27,7 @@ * Flate stream filter * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Filter_Compression_Flate extends Zend_Pdf_Filter_Compression diff --git a/library/Zend/Pdf/Filter/Compression/Lzw.php b/library/Zend/Pdf/Filter/Compression/Lzw.php index d0a2363..5cc6311 100644 --- a/library/Zend/Pdf/Filter/Compression/Lzw.php +++ b/library/Zend/Pdf/Filter/Compression/Lzw.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Lzw.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -27,7 +27,7 @@ * LZW stream filter * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Filter_Compression_Lzw extends Zend_Pdf_Filter_Compression diff --git a/library/Zend/Pdf/Filter/Interface.php b/library/Zend/Pdf/Filter/Interface.php index ee8d2a8..4f01f92 100644 --- a/library/Zend/Pdf/Filter/Interface.php +++ b/library/Zend/Pdf/Filter/Interface.php @@ -14,16 +14,16 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Interface.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** * PDF stream filter * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ interface Zend_Pdf_Filter_Interface diff --git a/library/Zend/Pdf/Filter/RunLength.php b/library/Zend/Pdf/Filter/RunLength.php index 8befba3..94d4991 100644 --- a/library/Zend/Pdf/Filter/RunLength.php +++ b/library/Zend/Pdf/Filter/RunLength.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: RunLength.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -27,7 +27,7 @@ * RunLength stream filter * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Filter_RunLength implements Zend_Pdf_Filter_Interface diff --git a/library/Zend/Pdf/Font.php b/library/Zend/Pdf/Font.php index 6eb58d6..c27e4fe 100644 --- a/library/Zend/Pdf/Font.php +++ b/library/Zend/Pdf/Font.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Font.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -33,7 +33,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ abstract class Zend_Pdf_Font diff --git a/library/Zend/Pdf/Image.php b/library/Zend/Pdf/Image.php index 70590c8..e821eb6 100644 --- a/library/Zend/Pdf/Image.php +++ b/library/Zend/Pdf/Image.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Images - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Image.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -30,7 +30,7 @@ * * @package Zend_Pdf * @subpackage Images - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ abstract class Zend_Pdf_Image diff --git a/library/Zend/Pdf/NameTree.php b/library/Zend/Pdf/NameTree.php index 35e4eb9..5db7148 100644 --- a/library/Zend/Pdf/NameTree.php +++ b/library/Zend/Pdf/NameTree.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: NameTree.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Internally used classes */ @@ -30,7 +30,7 @@ * @todo implement lazy resource loading so resources will be really loaded at access time * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_NameTree implements ArrayAccess, Iterator, Countable diff --git a/library/Zend/Pdf/Outline.php b/library/Zend/Pdf/Outline.php index 1faccdf..91cfc21 100644 --- a/library/Zend/Pdf/Outline.php +++ b/library/Zend/Pdf/Outline.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Outline.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -28,7 +28,7 @@ * * @package Zend_Pdf * @subpackage Outlines - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ abstract class Zend_Pdf_Outline implements RecursiveIterator, Countable diff --git a/library/Zend/Pdf/Outline/Created.php b/library/Zend/Pdf/Outline/Created.php index 37e530b..493b459 100644 --- a/library/Zend/Pdf/Outline/Created.php +++ b/library/Zend/Pdf/Outline/Created.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Created.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -38,7 +38,7 @@ * * @package Zend_Pdf * @subpackage Outlines - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Outline_Created extends Zend_Pdf_Outline diff --git a/library/Zend/Pdf/Outline/Loaded.php b/library/Zend/Pdf/Outline/Loaded.php index db7310e..8ea6c8e 100644 --- a/library/Zend/Pdf/Outline/Loaded.php +++ b/library/Zend/Pdf/Outline/Loaded.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Loaded.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -39,7 +39,7 @@ * * @package Zend_Pdf * @subpackage Outlines - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Outline_Loaded extends Zend_Pdf_Outline diff --git a/library/Zend/Pdf/Page.php b/library/Zend/Pdf/Page.php index 0b6c971..1551083 100644 --- a/library/Zend/Pdf/Page.php +++ b/library/Zend/Pdf/Page.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Page.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Internally used classes */ @@ -38,7 +38,7 @@ * PDF Page * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Page extends Zend_Pdf_Canvas_Abstract diff --git a/library/Zend/Pdf/Parser.php b/library/Zend/Pdf/Parser.php index 982789c..ff1c075 100644 --- a/library/Zend/Pdf/Parser.php +++ b/library/Zend/Pdf/Parser.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Parser.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Internally used classes */ @@ -32,7 +32,7 @@ * PDF file parser * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Parser diff --git a/library/Zend/Pdf/RecursivelyIteratableObjectsContainer.php b/library/Zend/Pdf/RecursivelyIteratableObjectsContainer.php index f229422..4db87ac 100644 --- a/library/Zend/Pdf/RecursivelyIteratableObjectsContainer.php +++ b/library/Zend/Pdf/RecursivelyIteratableObjectsContainer.php @@ -15,16 +15,16 @@ * @category Zend * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: RecursivelyIteratableObjectsContainer.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** * Iteratable objects container * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_RecursivelyIteratableObjectsContainer implements RecursiveIterator, Countable diff --git a/library/Zend/Pdf/Resource.php b/library/Zend/Pdf/Resource.php index 86d9efd..3f8efc3 100644 --- a/library/Zend/Pdf/Resource.php +++ b/library/Zend/Pdf/Resource.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Resource.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -24,7 +24,7 @@ * PDF file Resource abstraction * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ abstract class Zend_Pdf_Resource diff --git a/library/Zend/Pdf/Resource/ContentStream.php b/library/Zend/Pdf/Resource/ContentStream.php index e0ffb81..855843a 100644 --- a/library/Zend/Pdf/Resource/ContentStream.php +++ b/library/Zend/Pdf/Resource/ContentStream.php @@ -14,7 +14,7 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License * @version $Id: Image.php 20096 2010-01-06 02:05:09Z bkarwin $ */ @@ -35,7 +35,7 @@ * Content stream (drawing instructions container) * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Resource_ContentStream extends Zend_Pdf_Resource diff --git a/library/Zend/Pdf/Resource/Extractor.php b/library/Zend/Pdf/Resource/Extractor.php index 8fec25c..f10c26f 100644 --- a/library/Zend/Pdf/Resource/Extractor.php +++ b/library/Zend/Pdf/Resource/Extractor.php @@ -14,7 +14,7 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License * @version $Id: */ @@ -44,7 +44,7 @@ * must not be shared between target documents. * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Resource_Extractor diff --git a/library/Zend/Pdf/Resource/Font.php b/library/Zend/Pdf/Resource/Font.php index 61ad611..6716325 100644 --- a/library/Zend/Pdf/Resource/Font.php +++ b/library/Zend/Pdf/Resource/Font.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Font.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Zend_Pdf_Resource */ @@ -44,7 +44,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ abstract class Zend_Pdf_Resource_Font extends Zend_Pdf_Resource diff --git a/library/Zend/Pdf/Resource/Font/CidFont.php b/library/Zend/Pdf/Resource/Font/CidFont.php index 8d468aa..216b5fb 100644 --- a/library/Zend/Pdf/Resource/Font/CidFont.php +++ b/library/Zend/Pdf/Resource/Font/CidFont.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: CidFont.php 24664 2012-02-26 16:36:51Z adamlundrigan $ + * @version $Id$ */ /** Internally used classes */ @@ -51,7 +51,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ abstract class Zend_Pdf_Resource_Font_CidFont extends Zend_Pdf_Resource_Font diff --git a/library/Zend/Pdf/Resource/Font/CidFont/TrueType.php b/library/Zend/Pdf/Resource/Font/CidFont/TrueType.php index 2b11f3c..a36926d 100644 --- a/library/Zend/Pdf/Resource/Font/CidFont/TrueType.php +++ b/library/Zend/Pdf/Resource/Font/CidFont/TrueType.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: TrueType.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -44,7 +44,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Resource_Font_CidFont_TrueType extends Zend_Pdf_Resource_Font_CidFont diff --git a/library/Zend/Pdf/Resource/Font/Extracted.php b/library/Zend/Pdf/Resource/Font/Extracted.php index f1861c7..dc027d0 100644 --- a/library/Zend/Pdf/Resource/Font/Extracted.php +++ b/library/Zend/Pdf/Resource/Font/Extracted.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Extracted.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -32,7 +32,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Resource_Font_Extracted extends Zend_Pdf_Resource_Font diff --git a/library/Zend/Pdf/Resource/Font/FontDescriptor.php b/library/Zend/Pdf/Resource/Font/FontDescriptor.php index adc2f85..36d105e 100644 --- a/library/Zend/Pdf/Resource/Font/FontDescriptor.php +++ b/library/Zend/Pdf/Resource/Font/FontDescriptor.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: FontDescriptor.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -42,7 +42,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Resource_Font_FontDescriptor diff --git a/library/Zend/Pdf/Resource/Font/Simple.php b/library/Zend/Pdf/Resource/Font/Simple.php index f890833..bb47441 100644 --- a/library/Zend/Pdf/Resource/Font/Simple.php +++ b/library/Zend/Pdf/Resource/Font/Simple.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Simple.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -56,7 +56,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ abstract class Zend_Pdf_Resource_Font_Simple extends Zend_Pdf_Resource_Font diff --git a/library/Zend/Pdf/Resource/Font/Simple/Parsed.php b/library/Zend/Pdf/Resource/Font/Simple/Parsed.php index 604cc79..45cad96 100644 --- a/library/Zend/Pdf/Resource/Font/Simple/Parsed.php +++ b/library/Zend/Pdf/Resource/Font/Simple/Parsed.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Parsed.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -37,7 +37,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ abstract class Zend_Pdf_Resource_Font_Simple_Parsed extends Zend_Pdf_Resource_Font_Simple diff --git a/library/Zend/Pdf/Resource/Font/Simple/Parsed/TrueType.php b/library/Zend/Pdf/Resource/Font/Simple/Parsed/TrueType.php index 25e8a9e..c9edea4 100644 --- a/library/Zend/Pdf/Resource/Font/Simple/Parsed/TrueType.php +++ b/library/Zend/Pdf/Resource/Font/Simple/Parsed/TrueType.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: TrueType.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -39,7 +39,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Resource_Font_Simple_Parsed_TrueType extends Zend_Pdf_Resource_Font_Simple_Parsed diff --git a/library/Zend/Pdf/Resource/Font/Simple/Standard.php b/library/Zend/Pdf/Resource/Font/Simple/Standard.php index bf1da1b..e9e8c8a 100644 --- a/library/Zend/Pdf/Resource/Font/Simple/Standard.php +++ b/library/Zend/Pdf/Resource/Font/Simple/Standard.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Standard.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -59,7 +59,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ abstract class Zend_Pdf_Resource_Font_Simple_Standard extends Zend_Pdf_Resource_Font_Simple diff --git a/library/Zend/Pdf/Resource/Font/Simple/Standard/Courier.php b/library/Zend/Pdf/Resource/Font/Simple/Standard/Courier.php index f7d3a8e..72aa4b7 100644 --- a/library/Zend/Pdf/Resource/Font/Simple/Standard/Courier.php +++ b/library/Zend/Pdf/Resource/Font/Simple/Standard/Courier.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Courier.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -43,7 +43,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Resource_Font_Simple_Standard_Courier extends Zend_Pdf_Resource_Font_Simple_Standard diff --git a/library/Zend/Pdf/Resource/Font/Simple/Standard/CourierBold.php b/library/Zend/Pdf/Resource/Font/Simple/Standard/CourierBold.php index 4f383cf..90861b5 100644 --- a/library/Zend/Pdf/Resource/Font/Simple/Standard/CourierBold.php +++ b/library/Zend/Pdf/Resource/Font/Simple/Standard/CourierBold.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: CourierBold.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -43,7 +43,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Resource_Font_Simple_Standard_CourierBold extends Zend_Pdf_Resource_Font_Simple_Standard diff --git a/library/Zend/Pdf/Resource/Font/Simple/Standard/CourierBoldOblique.php b/library/Zend/Pdf/Resource/Font/Simple/Standard/CourierBoldOblique.php index 42e0307..6d10d33 100644 --- a/library/Zend/Pdf/Resource/Font/Simple/Standard/CourierBoldOblique.php +++ b/library/Zend/Pdf/Resource/Font/Simple/Standard/CourierBoldOblique.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: CourierBoldOblique.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -43,7 +43,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Resource_Font_Simple_Standard_CourierBoldOblique extends Zend_Pdf_Resource_Font_Simple_Standard diff --git a/library/Zend/Pdf/Resource/Font/Simple/Standard/CourierOblique.php b/library/Zend/Pdf/Resource/Font/Simple/Standard/CourierOblique.php index 6f1abfa..1d27f38 100644 --- a/library/Zend/Pdf/Resource/Font/Simple/Standard/CourierOblique.php +++ b/library/Zend/Pdf/Resource/Font/Simple/Standard/CourierOblique.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: CourierOblique.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -43,7 +43,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Resource_Font_Simple_Standard_CourierOblique extends Zend_Pdf_Resource_Font_Simple_Standard diff --git a/library/Zend/Pdf/Resource/Font/Simple/Standard/Helvetica.php b/library/Zend/Pdf/Resource/Font/Simple/Standard/Helvetica.php index 8299bf2..1cf0c14 100644 --- a/library/Zend/Pdf/Resource/Font/Simple/Standard/Helvetica.php +++ b/library/Zend/Pdf/Resource/Font/Simple/Standard/Helvetica.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Helvetica.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -43,7 +43,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Resource_Font_Simple_Standard_Helvetica extends Zend_Pdf_Resource_Font_Simple_Standard diff --git a/library/Zend/Pdf/Resource/Font/Simple/Standard/HelveticaBold.php b/library/Zend/Pdf/Resource/Font/Simple/Standard/HelveticaBold.php index 3a8a605..753cc3c 100644 --- a/library/Zend/Pdf/Resource/Font/Simple/Standard/HelveticaBold.php +++ b/library/Zend/Pdf/Resource/Font/Simple/Standard/HelveticaBold.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: HelveticaBold.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Internally used classes */ @@ -42,7 +42,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Resource_Font_Simple_Standard_HelveticaBold extends Zend_Pdf_Resource_Font_Simple_Standard diff --git a/library/Zend/Pdf/Resource/Font/Simple/Standard/HelveticaBoldOblique.php b/library/Zend/Pdf/Resource/Font/Simple/Standard/HelveticaBoldOblique.php index 7cd8ed7..2e937cd 100644 --- a/library/Zend/Pdf/Resource/Font/Simple/Standard/HelveticaBoldOblique.php +++ b/library/Zend/Pdf/Resource/Font/Simple/Standard/HelveticaBoldOblique.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: HelveticaBoldOblique.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -43,7 +43,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Resource_Font_Simple_Standard_HelveticaBoldOblique extends Zend_Pdf_Resource_Font_Simple_Standard diff --git a/library/Zend/Pdf/Resource/Font/Simple/Standard/HelveticaOblique.php b/library/Zend/Pdf/Resource/Font/Simple/Standard/HelveticaOblique.php index 1f38693..318b3a0 100644 --- a/library/Zend/Pdf/Resource/Font/Simple/Standard/HelveticaOblique.php +++ b/library/Zend/Pdf/Resource/Font/Simple/Standard/HelveticaOblique.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: HelveticaOblique.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -43,7 +43,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Resource_Font_Simple_Standard_HelveticaOblique extends Zend_Pdf_Resource_Font_Simple_Standard diff --git a/library/Zend/Pdf/Resource/Font/Simple/Standard/Symbol.php b/library/Zend/Pdf/Resource/Font/Simple/Standard/Symbol.php index f22138c..5308c39 100644 --- a/library/Zend/Pdf/Resource/Font/Simple/Standard/Symbol.php +++ b/library/Zend/Pdf/Resource/Font/Simple/Standard/Symbol.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Symbol.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -43,7 +43,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Resource_Font_Simple_Standard_Symbol extends Zend_Pdf_Resource_Font_Simple_Standard diff --git a/library/Zend/Pdf/Resource/Font/Simple/Standard/TimesBold.php b/library/Zend/Pdf/Resource/Font/Simple/Standard/TimesBold.php index 58d173c..60cbea2 100644 --- a/library/Zend/Pdf/Resource/Font/Simple/Standard/TimesBold.php +++ b/library/Zend/Pdf/Resource/Font/Simple/Standard/TimesBold.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: TimesBold.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -43,7 +43,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Resource_Font_Simple_Standard_TimesBold extends Zend_Pdf_Resource_Font_Simple_Standard diff --git a/library/Zend/Pdf/Resource/Font/Simple/Standard/TimesBoldItalic.php b/library/Zend/Pdf/Resource/Font/Simple/Standard/TimesBoldItalic.php index 1b45c2c..704ced8 100644 --- a/library/Zend/Pdf/Resource/Font/Simple/Standard/TimesBoldItalic.php +++ b/library/Zend/Pdf/Resource/Font/Simple/Standard/TimesBoldItalic.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: TimesBoldItalic.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -43,7 +43,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Resource_Font_Simple_Standard_TimesBoldItalic extends Zend_Pdf_Resource_Font_Simple_Standard diff --git a/library/Zend/Pdf/Resource/Font/Simple/Standard/TimesItalic.php b/library/Zend/Pdf/Resource/Font/Simple/Standard/TimesItalic.php index 64987a8..a7719b2 100644 --- a/library/Zend/Pdf/Resource/Font/Simple/Standard/TimesItalic.php +++ b/library/Zend/Pdf/Resource/Font/Simple/Standard/TimesItalic.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: TimesItalic.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -43,7 +43,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Resource_Font_Simple_Standard_TimesItalic extends Zend_Pdf_Resource_Font_Simple_Standard diff --git a/library/Zend/Pdf/Resource/Font/Simple/Standard/TimesRoman.php b/library/Zend/Pdf/Resource/Font/Simple/Standard/TimesRoman.php index 9d69ee8..1cd335c 100644 --- a/library/Zend/Pdf/Resource/Font/Simple/Standard/TimesRoman.php +++ b/library/Zend/Pdf/Resource/Font/Simple/Standard/TimesRoman.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: TimesRoman.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -43,7 +43,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Resource_Font_Simple_Standard_TimesRoman extends Zend_Pdf_Resource_Font_Simple_Standard diff --git a/library/Zend/Pdf/Resource/Font/Simple/Standard/ZapfDingbats.php b/library/Zend/Pdf/Resource/Font/Simple/Standard/ZapfDingbats.php index 6c904f1..b5860ea 100644 --- a/library/Zend/Pdf/Resource/Font/Simple/Standard/ZapfDingbats.php +++ b/library/Zend/Pdf/Resource/Font/Simple/Standard/ZapfDingbats.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: ZapfDingbats.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -43,7 +43,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Resource_Font_Simple_Standard_ZapfDingbats extends Zend_Pdf_Resource_Font_Simple_Standard diff --git a/library/Zend/Pdf/Resource/Font/Type0.php b/library/Zend/Pdf/Resource/Font/Type0.php index 6bf44aa..bde312e 100644 --- a/library/Zend/Pdf/Resource/Font/Type0.php +++ b/library/Zend/Pdf/Resource/Font/Type0.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Type0.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -57,7 +57,7 @@ * * @package Zend_Pdf * @subpackage Fonts - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Resource_Font_Type0 extends Zend_Pdf_Resource_Font diff --git a/library/Zend/Pdf/Resource/GraphicsState.php b/library/Zend/Pdf/Resource/GraphicsState.php index 06e2a08..3992667 100644 --- a/library/Zend/Pdf/Resource/GraphicsState.php +++ b/library/Zend/Pdf/Resource/GraphicsState.php @@ -14,7 +14,7 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License * @version $Id: Image.php 20096 2010-01-06 02:05:09Z bkarwin $ */ @@ -39,7 +39,7 @@ * graphics state operator gs (PDF 1.2). * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Resource_GraphicsState extends Zend_Pdf_Resource diff --git a/library/Zend/Pdf/Resource/Image.php b/library/Zend/Pdf/Resource/Image.php index 60b6402..9d4b493 100644 --- a/library/Zend/Pdf/Resource/Image.php +++ b/library/Zend/Pdf/Resource/Image.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Image.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -34,7 +34,7 @@ * Image abstraction. * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ abstract class Zend_Pdf_Resource_Image extends Zend_Pdf_Resource diff --git a/library/Zend/Pdf/Resource/Image/Jpeg.php b/library/Zend/Pdf/Resource/Image/Jpeg.php index cde69f9..11f68f5 100644 --- a/library/Zend/Pdf/Resource/Image/Jpeg.php +++ b/library/Zend/Pdf/Resource/Image/Jpeg.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Jpeg.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -32,7 +32,7 @@ * JPEG image * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Resource_Image_Jpeg extends Zend_Pdf_Resource_Image diff --git a/library/Zend/Pdf/Resource/Image/Png.php b/library/Zend/Pdf/Resource/Image/Png.php index ce4d667..c27e148 100644 --- a/library/Zend/Pdf/Resource/Image/Png.php +++ b/library/Zend/Pdf/Resource/Image/Png.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Png.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -35,7 +35,7 @@ * PNG image * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Resource_Image_Png extends Zend_Pdf_Resource_Image diff --git a/library/Zend/Pdf/Resource/Image/Tiff.php b/library/Zend/Pdf/Resource/Image/Tiff.php index 101c1fd..9c736ea 100644 --- a/library/Zend/Pdf/Resource/Image/Tiff.php +++ b/library/Zend/Pdf/Resource/Image/Tiff.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Tiff.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ /** Internally used classes */ @@ -32,7 +32,7 @@ * TIFF image * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Resource_Image_Tiff extends Zend_Pdf_Resource_Image diff --git a/library/Zend/Pdf/Resource/ImageFactory.php b/library/Zend/Pdf/Resource/ImageFactory.php index 7b6a4e9..9a4b2de 100644 --- a/library/Zend/Pdf/Resource/ImageFactory.php +++ b/library/Zend/Pdf/Resource/ImageFactory.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: ImageFactory.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -26,7 +26,7 @@ * Helps manage the diverse set of supported image file types. * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License * @todo Use Zend_Mime not file extension for type determination. */ diff --git a/library/Zend/Pdf/Resource/Unified.php b/library/Zend/Pdf/Resource/Unified.php index 2820cd8..f1bdf7e 100644 --- a/library/Zend/Pdf/Resource/Unified.php +++ b/library/Zend/Pdf/Resource/Unified.php @@ -14,7 +14,7 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License * @version $Id: Image.php 20096 2010-01-06 02:05:09Z bkarwin $ */ @@ -29,7 +29,7 @@ * Class is used to represent any resource when resource type not actually important. * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Resource_Unified extends Zend_Pdf_Resource diff --git a/library/Zend/Pdf/StringParser.php b/library/Zend/Pdf/StringParser.php index 5e5fbda..79d9193 100644 --- a/library/Zend/Pdf/StringParser.php +++ b/library/Zend/Pdf/StringParser.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: StringParser.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -38,7 +38,7 @@ * PDF string parser * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_StringParser diff --git a/library/Zend/Pdf/Style.php b/library/Zend/Pdf/Style.php index 746ff01..ccfaa02 100644 --- a/library/Zend/Pdf/Style.php +++ b/library/Zend/Pdf/Style.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Style.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -27,7 +27,7 @@ * It's used by Zend_Pdf_Page class in draw operations. * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Style diff --git a/library/Zend/Pdf/Target.php b/library/Zend/Pdf/Target.php index 0cb984c..4dd07c1 100644 --- a/library/Zend/Pdf/Target.php +++ b/library/Zend/Pdf/Target.php @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Target.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -26,7 +26,7 @@ * * @package Zend_Pdf * @subpackage Actions - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ abstract class Zend_Pdf_Target diff --git a/library/Zend/Pdf/Trailer.php b/library/Zend/Pdf/Trailer.php index c4c3e23..bd597ae 100644 --- a/library/Zend/Pdf/Trailer.php +++ b/library/Zend/Pdf/Trailer.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Trailer.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -24,7 +24,7 @@ * PDF file trailer * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ abstract class Zend_Pdf_Trailer diff --git a/library/Zend/Pdf/Trailer/Generator.php b/library/Zend/Pdf/Trailer/Generator.php index 535605e..d3e7999 100644 --- a/library/Zend/Pdf/Trailer/Generator.php +++ b/library/Zend/Pdf/Trailer/Generator.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Generator.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -27,7 +27,7 @@ * PDF file trailer generator (used for just created PDF) * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Trailer_Generator extends Zend_Pdf_Trailer diff --git a/library/Zend/Pdf/Trailer/Keeper.php b/library/Zend/Pdf/Trailer/Keeper.php index da16727..ad461c6 100644 --- a/library/Zend/Pdf/Trailer/Keeper.php +++ b/library/Zend/Pdf/Trailer/Keeper.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Keeper.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -28,7 +28,7 @@ * Stores and provides access to the trailer parced from a PDF file * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_Trailer_Keeper extends Zend_Pdf_Trailer diff --git a/library/Zend/Pdf/UpdateInfoContainer.php b/library/Zend/Pdf/UpdateInfoContainer.php index 19d79f3..e6dd9fd 100644 --- a/library/Zend/Pdf/UpdateInfoContainer.php +++ b/library/Zend/Pdf/UpdateInfoContainer.php @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: UpdateInfoContainer.php 24593 2012-01-05 20:35:02Z matthew $ + * @version $Id$ */ @@ -24,7 +24,7 @@ * Container which collects updated object info. * * @package Zend_Pdf - * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_UpdateInfoContainer