Remove unneded require_once() calls and @since tags
authorMichael M Slusarz <slusarz@curecanti.org>
Thu, 14 Jan 2010 22:06:22 +0000 (15:06 -0700)
committerMichael M Slusarz <slusarz@curecanti.org>
Fri, 15 Jan 2010 06:54:36 +0000 (23:54 -0700)
93 files changed:
framework/Alarm/Alarm/sql.php
framework/DOM/DOM.php
framework/Data/Data.php
framework/Data/Data/csv.php
framework/Data/Data/icalendar.php
framework/Data/Data/imc.php
framework/Data/Data/tsv.php
framework/Data/Data/vcard.php
framework/Data/Data/vnote.php
framework/Data/Data/vtodo.php
framework/DataTree/DataTree.php
framework/DataTree/DataTree/null.php
framework/DataTree/DataTree/sql.php
framework/File_CSV/CSV.php
framework/File_PDF/PDF.php
framework/Form/Form.php
framework/Form/Form/Action/setcursorpos.php
framework/Form/Form/Type.php
framework/Form/Form/Type/tableset.php
framework/Group/Group.php
framework/Group/Group/contactlists.php
framework/Group/Group/hooks.php
framework/Group/Group/kolab.php
framework/Group/Group/ldap.php
framework/Group/Group/mock.php
framework/Group/Group/sql.php
framework/Kolab_Filter/lib/Horde/Kolab/Filter/Base.php
framework/Kolab_Filter/lib/Horde/Kolab/Filter/Response.php
framework/LDAP/LDAP.php
framework/Mobile/Mobile.php
framework/Mobile/Mobile/Renderer.php
framework/Mobile/Mobile/Renderer/html.php
framework/Mobile/Mobile/Renderer/wml.php
framework/Net_IMSP/IMSP/Utils.php
framework/Net_SMS/SMS.php
framework/Net_SMS/SMS/generic_smpp.php
framework/Net_SMS/SMS/generic_smtp.php
framework/Notification/test/Horde/Notification/Class/Notification/ListenerTest.php
framework/SQL/SQL.php
framework/SQL/SQL/Keywords.php
framework/Share/Share.php
framework/Share/Share/datatree.php
framework/Share/Share/kolab.php
framework/Share/Share/sql.php
framework/Share/Share/sql_hierarchical.php
framework/SyncML/SyncML.php
framework/SyncML/SyncML/Command.php
framework/SyncML/SyncML/Command/Alert.php
framework/SyncML/SyncML/Command/Final.php
framework/SyncML/SyncML/Command/Get.php
framework/SyncML/SyncML/Command/Map.php
framework/SyncML/SyncML/Command/Put.php
framework/SyncML/SyncML/Command/Replace.php
framework/SyncML/SyncML/Command/Results.php
framework/SyncML/SyncML/Command/Status.php
framework/SyncML/SyncML/Command/Sync.php
framework/SyncML/SyncML/Command/SyncElement.php
framework/SyncML/SyncML/Command/SyncHdr.php
framework/SyncML/SyncML/State.php
framework/SyncML/SyncML/Sync.php
framework/SyncML/SyncML/XMLOutput.php
framework/SyncML/tests/testpacket.php
framework/SyncML/tests/testsync.php
framework/Text_Diff/Diff.php
framework/VFS/lib/VFS.php
framework/VFS/lib/VFS/horde.php
framework/VFS/lib/VFS/smb.php
framework/VFS/lib/VFS/ssh2.php
framework/VFS_ISOWriter/ISOWriter.php
framework/VFS_ISOWriter/ISOWriter/RealInputStrategy.php
framework/VFS_ISOWriter/ISOWriter/RealInputStrategy/copy.php
framework/VFS_ISOWriter/ISOWriter/RealInputStrategy/direct.php
framework/VFS_ISOWriter/ISOWriter/RealOutputStrategy.php
framework/VFS_ISOWriter/ISOWriter/RealOutputStrategy/copy.php
framework/VFS_ISOWriter/ISOWriter/RealOutputStrategy/direct.php
framework/VFS_ISOWriter/ISOWriter/mkisofs.php
framework/XML_WBXML/WBXML/ContentHandler.php
framework/iCalendar/iCalendar.php
framework/iCalendar/iCalendar/vfreebusy.php
framework/iCalendar/iCalendar/vjournal.php
framework/iCalendar/iCalendar/vtimezone.php
framework/iCalendar/iCalendar/vtodo.php
horde/docs/CODING_STANDARDS
horde/lib/Block/account.php
hylax/lib/SQL/Attributes.php
shout/ajax.php
shout/config/conf.xml
shout/lib/Driver.php
shout/lib/Driver/Ldap.php
shout/lib/Driver/Sql.php
shout/lib/Shout.php
shout/themes/screen.css
vilma/lib/MailboxDriver/maildrop.php

index a2a4caf..9f934ad 100644 (file)
@@ -33,7 +33,6 @@
  * script.
  *
  * @author  Jan Schneider <jan@horde.org>
- * @since   Horde 3.2
  * @package Horde_Alarm
  */
 class Horde_Alarm_sql extends Horde_Alarm {
index 3f6e7aa..8df6f6d 100644 (file)
  *
  * @author  Chuck Hagenbuch <chuck@horde.org>
  * @author  Michael J. Rubinsky <mrubinsk@horde.org>
- * @since   Horde 3.2
  * @package Horde_DOM
  */
 
-/** PEAR */
-require_once 'PEAR.php';
-
 /** Validate against the DTD */
 define('HORDE_DOM_LOAD_VALIDATE', 1);
 
index 5a907f1..9a65cb2 100644 (file)
@@ -1,7 +1,4 @@
 <?php
-
-require_once 'PEAR.php';
-
 /**
  * Abstract class to handle different kinds of Data formats and to
  * help data exchange between Horde applications and external sources.
@@ -13,7 +10,6 @@ require_once 'PEAR.php';
  *
  * @author  Jan Schneider <jan@horde.org>
  * @author  Chuck Hagenbuch <chuck@horde.org>
- * @since   Horde 1.3
  * @package Horde_Data
  */
 class Horde_Data extends PEAR {
@@ -56,7 +52,6 @@ class Horde_Data extends PEAR {
      * A list of warnings raised during the last operation.
      *
      * @var array
-     * @since Horde 3.1
      */
     var $_warnings = array();
 
@@ -141,8 +136,6 @@ class Horde_Data extends PEAR {
      * Returns a list of warnings that have been raised during the last
      * operation.
      *
-     * @since Horde 3.1
-     *
      * @return array  A (possibly empty) list of warnings.
      */
     function warnings()
index 43a672d..4896028 100644 (file)
@@ -4,11 +4,6 @@
  */
 
 /**
- * Horde's File_CSV class.
- */
-include_once 'File/CSV.php';
-
-/**
  * Horde_Data implementation for comma-separated data (CSV).
  *
  * Copyright 1999-2010 The Horde Project (http://www.horde.org/)
@@ -18,7 +13,6 @@ include_once 'File/CSV.php';
  *
  * @author  Jan Schneider <jan@horde.org>
  * @author  Chuck Hagenbuch <chuck@horde.org>
- * @since   Horde 1.3
  * @package Horde_Data
  */
 class Horde_Data_csv extends Horde_Data {
index d0b5df3..c130228 100644 (file)
@@ -14,7 +14,6 @@ require_once dirname(__FILE__) . '/imc.php';
  * @author  Chuck Hagenbuch <chuck@horde.org>
  * @author  Karsten Fourmont <fourmont@horde.org>
  * @package Horde_Data
- * @since   Horde 3.0
  */
 class Horde_Data_icalendar extends Horde_Data_imc {
 
index 3d34d19..f25dcea 100644 (file)
@@ -1,7 +1,4 @@
 <?php
-
-require_once 'Horde/iCalendar.php';
-
 /**
  * Abstract implementation of the Horde_Data:: API for IMC data -
  * vCards and iCalendar data, etc. Provides a number of utility
@@ -15,7 +12,6 @@ require_once 'Horde/iCalendar.php';
  *
  * @author  Jan Schneider <jan@horde.org>
  * @package Horde_Data
- * @since   Horde 3.0
  */
 class Horde_Data_imc extends Horde_Data {
 
index 86e7572..d3377d4 100644 (file)
@@ -9,7 +9,6 @@
  *
  * @author  Jan Schneider <jan@horde.org>
  * @author  Chuck Hagenbuch <chuck@horde.org>
- * @since   Horde 1.3
  * @package Horde_Data
  */
 class Horde_Data_tsv extends Horde_Data {
index fce61f6..9807a1e 100644 (file)
@@ -1,8 +1,4 @@
 <?php
-
-require_once dirname(__FILE__) . '/imc.php';
-require_once 'Horde/iCalendar.php';
-
 /**
  * Implement the Horde_Data:: API for vCard data.
  *
@@ -12,7 +8,6 @@ require_once 'Horde/iCalendar.php';
  * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  *
  * @author  Jan Schneider <jan@horde.org>
- * @since   Horde 3.0
  * @package Horde_Data
  */
 class Horde_Data_vcard extends Horde_Data_imc {
index 90973fe..1e03c9b 100644 (file)
@@ -1,7 +1,4 @@
 <?php
-
-require_once dirname(__FILE__) . '/imc.php';
-
 /**
  * Implement the Horde_Data:: API for vNote data.
  *
@@ -13,7 +10,6 @@ require_once dirname(__FILE__) . '/imc.php';
  * @author  Jan Schneider <jan@horde.org>
  * @author  Chuck Hagenbuch <chuck@horde.org>
  * @package Horde_Data
- * @since   Horde 3.0
  */
 class Horde_Data_vnote extends Horde_Data_imc {
 
index 319bd37..683ff17 100644 (file)
@@ -1,8 +1,4 @@
 <?php
-
-/** We rely on the Horde_Data_imc:: abstract class. */
-require_once dirname(__FILE__) . '/imc.php';
-
 /**
  * Implement the Horde_Data:: API for vTodo data.
  *
@@ -14,7 +10,6 @@ require_once dirname(__FILE__) . '/imc.php';
  * @author  Jan Schneider <jan@horde.org>
  * @author  Chuck Hagenbuch <chuck@horde.org>
  * @package Horde_Data
- * @since   Horde 3.0
  */
 class Horde_Data_vtodo extends Horde_Data_imc {
 
index 17ef456..6073e52 100644 (file)
@@ -561,8 +561,6 @@ class DataTree {
     /**
      * Create attribute sort hash
      *
-     * @since Horde 3.1
-     *
      * @param string  $root         The name of the leaf from which we start
      *                              the export tree.
      * @param string  $sortby_name  Attribute name to use for sorting.
@@ -1092,8 +1090,6 @@ class DataTree {
      *
      * @abstract
      *
-     * @since Horde 3.1
-     *
      * @param string $root         Which portion of the tree to sort.
      *                             Defaults to all of it.
      * @param boolean $loadTree    Sort the tree starting at $root, or just the
@@ -1298,8 +1294,6 @@ class DataTree {
      * You never call this function; it's used in uasort() calls. Do NOT use
      * usort(); you'll lose key => value associations.
      *
-     * @since Horde 3.1
-     *
      * @private
      *
      * @param array $a  The first object
@@ -1404,7 +1398,6 @@ class DataTree {
  *
  * @author  Stephane Huther <shuther1@free.fr>
  * @author  Chuck Hagenbuch <chuck@horde.org>
- * @since   Horde 2.1
  * @package Horde_DataTree
  */
 class DataTreeObject {
index 2f71fad..124a027 100644 (file)
@@ -10,7 +10,6 @@
  *
  * @author  Stephane Huther <shuther1@free.fr>
  * @author  Chuck Hagenbuch <chuck@horde.org>
- * @since   Horde 3.0
  * @package Horde_DataTree
  */
 class DataTree_null extends DataTree {
@@ -98,8 +97,6 @@ class DataTree_null extends DataTree {
     /**
      * Get a tree sorted by the specified attribute name and/or key.
      *
-     * @since Horde 3.1
-     *
      * @param string  $root       Which portion of the tree to sort.
      *                            Defaults to all of it.
      * @param boolean $loadTree   Sort the tree starting at $root, or just the
index 249126d..7ea6730 100644 (file)
@@ -40,7 +40,6 @@
  * @author  Stephane Huther <shuther1@free.fr>
  * @author  Chuck Hagenbuch <chuck@horde.org>
  * @author  Jan Schneider <jan@horde.org>
- * @since   Horde 2.1
  * @package Horde_DataTree
  */
 class DataTree_sql extends DataTree {
@@ -467,8 +466,6 @@ class DataTree_sql extends DataTree {
     /**
      * Returns a tree sorted by the specified attribute name and/or key.
      *
-     * @since Horde 3.1
-     *
      * @param string $root         Which portion of the tree to sort.
      *                             Defaults to all of it.
      * @param boolean $loadTree    Sort the tree starting at $root, or just the
@@ -1310,8 +1307,6 @@ class DataTree_sql extends DataTree {
      * given criteria. Either attribute_name or attribute_key MUST be
      * supplied, and both MAY be supplied.
      *
-     * @since Horde 3.2
-     *
      * @see buildAttributeQuery()
      *
      * @param array   $criteria     The array of criteria.
@@ -1357,8 +1352,6 @@ class DataTree_sql extends DataTree {
      * Either attribute_name or attribute_key MUST be
      * supplied, and both MAY be supplied.
      *
-     * @since Horde 3.2
-     *
      * @see buildAttributeQuery()
      *
      * @param array   $criteria     The array of criteria.
index 425c059..d844f9f 100644 (file)
@@ -3,9 +3,6 @@
  * @package File_CSV
  */
 
-/** PEAR */
-require_once 'PEAR.php';
-
 /** Mode to use for reading from files */
 define('HORDE_FILE_CSV_MODE_READ', 'rb');
 
@@ -30,7 +27,6 @@ define('HORDE_FILE_CSV_MODE_APPEND', 'ab');
  *
  * @author  Tomas Von Veschler Cox <cox@idecnet.com>
  * @author  Jan Schneider <jan@horde.org>
- * @since   Horde 3.1
  * @package File_CSV
  */
 class File_CSV {
index 0fc53ba..de339a6 100644 (file)
@@ -606,7 +606,6 @@ class File_PDF {
      */
     function raiseError($error)
     {
-        require_once 'PEAR.php';
         return PEAR::raiseError($error);
     }
 
@@ -685,7 +684,6 @@ class File_PDF {
      * Returns the actual page width.
      *
      * @since File_PDF 0.2.0
-     * @since Horde 3.2
      *
      * @return float  The page width.
      */
@@ -698,7 +696,6 @@ class File_PDF {
      * Returns the actual page height.
      *
      * @since File_PDF 0.2.0
-     * @since Horde 3.2
      *
      * @return float  The page height.
      */
@@ -1132,7 +1129,6 @@ class File_PDF {
      *                    between 0 and 1. Required for cmyk.
      *
      * @since File_PDF 0.2.0
-     * @since Horde 3.2
      * @see setFillColor()
      * @see setDrawColor()
      * @see rect()
@@ -1630,7 +1626,6 @@ class File_PDF {
      * @param string $style  The font style.
      *
      * @since File_PDF 0.2.0
-     * @since Horde 3.2
      * @see setFont()
      */
     function setFontStyle($style)
@@ -2501,7 +2496,6 @@ class File_PDF {
      * memory usage during the call.
      *
      * @since File_PDF 0.2.0
-     * @since Horde 3.2
      * @see getOutput()
      */
     function flush()
index 3a90c56..9e70e78 100644 (file)
@@ -17,7 +17,6 @@ require_once 'Horde/Form/Variable.php';
  *
  * @author  Robert E. Coyle <robertecoyle@hotmail.com>
  * @author  Chuck Hagenbuch <chuck@horde.org>
- * @since   Horde 3.0
  * @package Horde_Form
  */
 class Horde_Form {
index 14d8bca..0d98726 100644 (file)
@@ -11,7 +11,6 @@
  * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  *
  * @author  Chuck Hagenbuch <chuck@horde.org>
- * @since Horde 3.2
  * @package Horde_Form
  */
 class Horde_Form_Action_setcursorpos extends Horde_Form_Action {
index 5cc7eae..1a14a87 100644 (file)
@@ -405,9 +405,6 @@ class Horde_Form_Type_stringlist extends Horde_Form_Type_text {
 
 }
 
-/**
- * @since Horde 3.3
- */
 class Horde_Form_Type_stringarray extends Horde_Form_Type_stringlist {
 
     function getInfo(&$vars, &$var, &$info)
@@ -434,9 +431,6 @@ class Horde_Form_Type_stringarray extends Horde_Form_Type_stringlist {
 
 }
 
-/**
- * @since Horde 3.2
- */
 class Horde_Form_Type_phone extends Horde_Form_Type {
 
     function isValid(&$var, &$vars, $value, &$message)
@@ -754,9 +748,6 @@ class Horde_Form_Type_addresslink extends Horde_Form_Type_address {
 
 }
 
-/**
- * @since Horde 3.3
- */
 class Horde_Form_Type_pgp extends Horde_Form_Type_longtext {
 
     /**
@@ -810,9 +801,6 @@ class Horde_Form_Type_pgp extends Horde_Form_Type_longtext {
 
 }
 
-/**
- * @since Horde 3.3
- */
 class Horde_Form_Type_smime extends Horde_Form_Type_longtext {
 
     /**
@@ -856,9 +844,6 @@ class Horde_Form_Type_smime extends Horde_Form_Type_longtext {
 
 }
 
-/**
- * @since Horde 3.2
- */
 class Horde_Form_Type_country extends Horde_Form_Type_enum {
 
     function init($prompt = null)
@@ -1982,9 +1967,6 @@ class Horde_Form_Type_enum extends Horde_Form_Type {
         return $this->_values;
     }
 
-    /**
-     * @since Horde 3.2
-     */
     function setValues($values)
     {
         $this->_values = $values;
@@ -2742,9 +2724,6 @@ class Horde_Form_Type_monthdayyear extends Horde_Form_Type {
 
 }
 
-/**
- * @since Horde 3.2
- */
 class Horde_Form_Type_datetime extends Horde_Form_Type {
 
     var $_mdy;
@@ -3499,9 +3478,6 @@ class Horde_Form_Type_captcha extends Horde_Form_Type_figlet {
 
 }
 
-/**
- * @since Horde 3.2
- */
 class Horde_Form_Type_category extends Horde_Form_Type {
 
     function getInfo(&$vars, &$var, &$info)
index a2d14a4..6451cfd 100644 (file)
@@ -4,7 +4,6 @@ require_once 'Horde/Form.php';
 
 /**
  * @package Horde_Form
- * @since   Horde 3.1
  */
 class Horde_Form_Type_tableset extends Horde_Form_Type {
 
index 706ca5e..1105c66 100644 (file)
@@ -15,7 +15,6 @@ define('GROUP_ROOT', -1);
  *
  * @author  Stephane Huther <shuther1@free.fr>
  * @author  Chuck Hagenbuch <chuck@horde.org>
- * @since   Horde 2.1
  * @package Horde_Group
  */
 class Group {
@@ -715,7 +714,6 @@ class Group {
  * DataTreeObject directly.
  *
  * @author  Chuck Hagenbuch <chuck@horde.org>
- * @since   Horde 2.1
  * @package Horde_Group
  */
 class DataTreeObject_Group extends DataTreeObject {
index f95fb6f..cdd2400 100644 (file)
@@ -619,7 +619,6 @@ class Group_contactlists extends Group {
  * Extension of the DataTreeObject_Group class for storing Group information.
  *
  * @author  Michael J. Rubinsky <mrubinsk@horde.org>
- * @since   Horde 4.0
  * @package Horde_Group
  */
 class ContactListObject_Group extends DataTreeObject_Group {
index 96ec5ca..afb7b87 100644 (file)
@@ -10,7 +10,6 @@
  * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  *
  * @author  Jason Rust <jrust@rustyparts.com>
- * @since   Horde 3.0
  * @package Horde_Group
  */
 class Group_hooks extends Group {
index 40b803c..95ffed9 100644 (file)
@@ -16,7 +16,6 @@ require_once 'Horde/LDAP.php';
  * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  *
  * @author  Gunnar Wrobel <wrobel@pardus.de>
- * @since   Horde 3.2
  * @package Horde_Group
  */
 class Group_kolab extends Group_ldap {
@@ -347,7 +346,6 @@ class Group_kolab extends Group_ldap {
  *
  *
  * @author  Ben Chavet <ben@horde.org>
- * @since   Horde 3.1
  * @package Horde_Group
  */
 class Kolab_Group extends LDAP_Group {
index ffd32d8..b848466 100644 (file)
@@ -9,7 +9,6 @@
  * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  *
  * @author  Ben Chavet <ben@horde.org>
- * @since   Horde 3.1
  * @package Horde_Group
  */
 class Group_ldap extends Group {
@@ -738,7 +737,6 @@ class Group_ldap extends Group {
  * in an LDAP directory.
  *
  * @author  Ben Chavet <ben@horde.org>
- * @since   Horde 3.1
  * @package Horde_Group
  */
 class LDAP_Group extends DataTreeObject_Group {
index 8f83771..5c57a1f 100644 (file)
@@ -8,7 +8,6 @@
  * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  *
  * @author  Duck <duck@obala.net>
- * @since   Horde 3.2
  * @package Horde_Group
  */
 class Group_mock extends Group {
index 7202135..3f361a3 100644 (file)
@@ -8,7 +8,6 @@
  * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  *
  * @author  Duck <duck@obala.net>
- * @since   Horde 3.2
  * @package Horde_Group
  */
 class Group_sql extends Group {
@@ -768,7 +767,6 @@ class Group_sql extends Group {
  * SQLObject directly.
  *
  * @author  Duck <duck@obala.net>
- * @since   Horde 3.2
  * @package Horde_Group
  */
 class SQLObject_Group extends DataTreeObject_Group {
index c6d8d6b..872c518 100644 (file)
@@ -3,26 +3,9 @@
  * @package Kolab_Filter
  */
 
-/** Load the required PEAR libraries */
-require_once 'PEAR.php';
-
-/** Console_Getopt */
-require_once 'Console/Getopt.php';
-
-/** Load the required Horde libraries */
-require_once 'Horde.php';
-
 /** Load the Filter libraries */
 require_once dirname(__FILE__) . '/Response.php';
 
-/** Load the argument parsing library */
-require_once 'Horde/Argv/Option.php';
-require_once 'Horde/Argv/OptionContainer.php';
-require_once 'Horde/Argv/HelpFormatter.php';
-require_once 'Horde/Argv/IndentedHelpFormatter.php';
-require_once 'Horde/Argv/Values.php';
-require_once 'Horde/Argv/Parser.php';
-
 /**
  * A basic definition for a PHP based postfix filter.
  *
index e8db711..8a4695c 100644 (file)
@@ -3,12 +3,9 @@
  * @package Kolab_Filter
  */
 
-/* Require the PEAR library for PEAR errors */
-require_once 'PEAR.php';
-
 /* Some output constants */
-define( 'OUT_STDOUT', 128 );
-define( 'OUT_LOG', 256 );
+define('OUT_STDOUT', 128);
+define('OUT_LOG', 256);
 
 /* Failure constants from postfix src/global/sys_exits.h */
 define('EX_USAGE', 64);       /* command line usage error */
index 75ec293..b9c4718 100644 (file)
@@ -8,7 +8,6 @@
  * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  *
  * @author  Chuck Hagenbuch <chuck@horde.org>
- * @since   Horde 2.2
  * @package Horde_LDAP
  */
 class Horde_LDAP
@@ -19,8 +18,7 @@ class Horde_LDAP
      * @param string $lhs    The attribute to test.
      * @param string $op     The operator.
      * @param string $rhs    The comparison value.
-     * @param array $params  Any additional parameters for the operator. @since
-     *                       Horde 3.2
+     * @param array $params  Any additional parameters for the operator.
      *
      * @return string  The LDAP search fragment.
      */
index a6e0f63..27717a1 100644 (file)
@@ -109,7 +109,6 @@ class Horde_Mobile_card extends Horde_Mobile_element {
  * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  *
  * @author  Chuck Hagenbuch <chuck@horde.org>
- * @since   Horde 3.0
  * @package Horde_Mobile
  */
 class Horde_Mobile extends Horde_Mobile_card {
index a0d493b..9c4b1c1 100644 (file)
@@ -9,7 +9,6 @@
  * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  *
  * @author  Chuck Hagenbuch <chuck@horde.org>
- * @since   Horde 3.0
  * @package Horde_Mobile
  */
 class Horde_Mobile_Renderer extends Horde_Mobile {
index 00303db..afb38e0 100644 (file)
@@ -9,7 +9,6 @@
  * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  *
  * @author  Chuck Hagenbuch <chuck@horde.org>
- * @since   Horde 3.0
  * @package Horde_Mobile
  */
 class Horde_Mobile_Renderer_html extends Horde_Mobile_Renderer {
index 122fe0b..2e5c715 100644 (file)
@@ -8,7 +8,6 @@
  * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  *
  * @author  Chuck Hagenbuch <chuck@horde.org>
- * @since   Horde 3.0
  * @package Horde_Mobile
  */
 class Horde_Mobile_Renderer_wml extends Horde_Mobile_Renderer {
index 920335a..dea10c3 100644 (file)
@@ -141,7 +141,6 @@ class Net_IMSP_Utils {
      *                                the current user.
      *
      * @return mixed  Array describing any shares added or removed  | PEAR_Error.
-     * @since Horde 3.2
      */
     function synchShares(&$share_obj, $serverInfo)
     {
@@ -243,7 +242,6 @@ class Net_IMSP_Utils {
      * @param array        Parameters for the share
      *
      * @return mixed  True | PEAR_Error
-     * @since Horde 3.2
      */
     function _createShare(&$share_obj, $params, $shareparams)
     {
@@ -266,7 +264,6 @@ class Net_IMSP_Utils {
      * @param array $params  Parameters to check for ownership.
      *
      * @return boolean  True if $user is owner, otherwise false.
-     * @since Horde 3.2
      */
     function _isOwner($bookName, $username, $acl)
     {
@@ -283,7 +280,6 @@ class Net_IMSP_Utils {
      *
      * @param Datatree_Object_Share $share  The share to assign perms to
      * @param string $acl                   The IMSP acl string.
-     * @since Horde 3.2
      */
     function _setPerms(&$share, $acl)
     {
@@ -309,7 +305,6 @@ class Net_IMSP_Utils {
      * @param integer $perms   Horde_Perms style permission bitmask.
      *
      * @return string   An IMSP acl string
-     * @since Horde 3.2
      */
     function permsToACL($perms)
     {
@@ -338,7 +333,6 @@ class Net_IMSP_Utils {
      * @param string $acl   The acl string to set.
      *
      * @return mixed  True | Pear_Error
-     * @since Horde 3.2
      */
     function setACL($params, $book, $name, $acl)
     {
index 2545a8d..90e4b2d 100644 (file)
@@ -1,7 +1,4 @@
 <?php
-
-require_once 'PEAR.php';
-
 /**
  * Net_SMS Class
  *
index c423b6b..d8c0245 100644 (file)
@@ -18,7 +18,6 @@ include_once 'Net/SMPP/Client.php';
  * @author     Ian Eure <ieure@php.net>
  * @link       http://pear.php.net/package/Net_SMS
  * @since      Net_SMS 0.2.0
- * @since      Horde 3.2
  */
 class Net_SMS_generic_smpp extends Net_SMS {
 
index af61131..c4580b2 100644 (file)
@@ -13,7 +13,6 @@
  * @category   Networking
  * @package    Net_SMS
  * @author     Ian Eure <ieure@php.net>
- * @since      Horde 3.1
  * @since      Net_SMS 0.0.2
  */
 class Net_SMS_generic_smtp extends Net_SMS {
index 8d6a49b..3f3e502 100644 (file)
@@ -34,7 +34,6 @@ class Horde_Notification_Class_Notification_ListenerTest extends PHPUnit_Framewo
 {
     public function setUp()
     {
-        @include_once 'PEAR.php';
         if (!class_exists('PEAR_Error')) {
             $this->markTestSkipped('The PEAR_Error class is not available!');
         }
index a14c194..49594cc 100644 (file)
@@ -9,7 +9,6 @@
  *
  * @author  Chuck Hagenbuch <chuck@horde.org>
  * @author  Jan Schneider <jan@horde.org>
- * @since   Horde 2.2
  * @package Horde_SQL
  */
 class Horde_SQL {
@@ -24,8 +23,7 @@ class Horde_SQL {
      * @param string $rhs    The comparison value.
      * @param boolean $bind  If true, the method returns the query and a list
      *                       of values suitable for binding as an array.
-     * @param array $params  Any additional parameters for the operator. @since
-     *                       Horde 3.2
+     * @param array $params  Any additional parameters for the operator.
      *
      * @return mixed  The SQL test fragment, or an array containing the query
      *                and a list of values if $bind is true.
index e9c326b..ac698ba 100644 (file)
@@ -37,7 +37,6 @@
  * quoting it or use unbalanced parentheses.
  *
  * @author  Jason M. Felice <jason.m.felice@gmail.com>
- * @since   Horde 3.0
  * @package Horde_SQL
  */
 class Horde_SQL_Keywords {
index df8c8cf..c44588e 100644 (file)
@@ -15,7 +15,6 @@
  * @author  Chuck Hagenbuch <chuck@horde.org>
  * @author  Jan Schneider <jan@horde.org>
  * @author  Gunnar Wrobel <wrobel@pardus.de>
- * @since   Horde 3.0
  * @package Horde_Share
  */
 class Horde_Share {
@@ -343,8 +342,6 @@ class Horde_Share {
     /**
      * Returns the number of shares that $userid has access to.
      *
-     * @since Horde 3.2
-     *
      * @param string $userid     The userid of the user to check access for.
      * @param integer $perm      The level of permissions required.
      * @param mixed $attributes  Restrict the shares counted to those
@@ -560,7 +557,6 @@ class Horde_Share {
  * @author  Mike Cochrane <mike@graftonhall.co.nz>
  * @author  Jan Schneider <jan@horde.org>
  * @author  Gunnar Wrobel <wrobel@pardus.de>
- * @since   Horde 3.2
  * @package Horde_Share
  */
 class Horde_Share_Object {
index b7134f3..d9a1492 100644 (file)
@@ -17,7 +17,6 @@ require_once 'Horde/DataTree.php';
  * @author  Chuck Hagenbuch <chuck@horde.org>
  * @author  Jan Schneider <jan@horde.org>
  * @author  Gunnar Wrobel <wrobel@pardus.de>
- * @since   Horde 3.2
  * @package Horde_Share
  */
 class Horde_Share_datatree extends Horde_Share {
@@ -180,8 +179,6 @@ class Horde_Share_datatree extends Horde_Share {
     /**
      * Returns the number of shares that $userid has access to.
      *
-     * @since Horde 3.2
-     *
      * @param string $userid     The userid of the user to check access for.
      * @param integer $perm      The level of permissions required.
      * @param mixed $attributes  Restrict the shares counted to those
@@ -346,7 +343,6 @@ class Horde_Share_datatree extends Horde_Share {
  * @author  Mike Cochrane <mike@graftonhall.co.nz>
  * @author  Jan Schneider <jan@horde.org>
  * @author  Gunnar Wrobel <wrobel@pardus.de>
- * @since   Horde 3.2
  * @package Horde_Share
  */
 class Horde_Share_Object_datatree extends Horde_Share_Object {
@@ -489,7 +485,6 @@ class Horde_Share_Object_datatree extends Horde_Share_Object {
  *
  * @author  Mike Cochrane <mike@graftonhall.co.nz>
  * @author  Jan Schneider <jan@horde.org>
- * @since   Horde 3.0
  * @package Horde_Share
  */
 class DataTreeObject_Share extends DataTreeObject {
index 2561ffe..bae3d07 100644 (file)
@@ -13,7 +13,6 @@
  *
  * @author  Stuart Binge <omicron@mighty.co.za>
  * @author  Gunnar Wrobel <wrobel@pardus.de>
- * @since   Horde 3.2
  * @package Horde_Share
  */
 class Horde_Share_kolab extends Horde_Share {
@@ -267,8 +266,6 @@ class Horde_Share_kolab extends Horde_Share {
     /**
      * Returns the number of shares that $userid has access to.
      *
-     * @since Horde 3.2
-     *
      * @param string $userid     The userid of the user to check access for.
      * @param integer $perm      The level of permissions required.
      * @param mixed $attributes  Restrict the shares counted to those
@@ -389,7 +386,6 @@ class Horde_Share_kolab extends Horde_Share {
  *
  * @author  Stuart Binge <omicron@mighty.co.za>
  * @author  Gunnar Wrobel <wrobel@pardus.de>
- * @since   Horde 3.2
  * @package Horde_Share
  */
 class Horde_Share_Object_kolab extends Horde_Share_Object {
index a446567..b566450 100644 (file)
@@ -9,7 +9,6 @@
  * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  *
  * @author  Duck <duck@obala.net>
- * @since   Horde 3.2
  * @package Horde_Share
  */
 
@@ -916,7 +915,6 @@ class Horde_Share_sql extends Horde_Share {
  * the sql driver.
  *
  * @author  Duck <duck@obala.net>
- * @since   Horde 3.2
  * @package Horde_Share
  */
 class Horde_Share_Object_sql extends Horde_Share_Object {
index 6154f0b..0a0f262 100644 (file)
@@ -5,7 +5,6 @@
  *
  * @author  Duck <duck@obala.net>
  * @author  Michael J. Rubinsky <mrubinsk@horde.org>
- * @since   Horde 3.2
  * @package Horde_Share
  */
 class Horde_Share_sql_hierarchical extends Horde_Share_sql {
index 9a579fd..09ba6ed 100644 (file)
@@ -26,7 +26,6 @@
  *
  * @author  Karsten Fourmont <karsten@horde.org>
  * @author  Anthony Mills <amills@pyramid6.com>
- * @since   Horde 3.0
  * @package SyncML
  */
 
index f23eed1..a27b87a 100644 (file)
@@ -19,7 +19,6 @@
  *
  * @author  Anthony Mills <amills@pyramid6.com>
  * @author  Jan Schneider <jan@horde.org>
- * @since   Horde 3.0
  * @package SyncML
  */
 class SyncML_Command {
@@ -163,7 +162,6 @@ class SyncML_Command {
             $msg = 'Class definition of ' . $class . ' not found.';
             $GLOBALS['backend']->logMessage($msg, __FILE__, __LINE__,
                                             PEAR_LOG_ERR);
-            require_once 'PEAR.php';
             $cmd = PEAR::raiseError($msg);
         }
 
index 4081c32..4f07515 100644 (file)
@@ -20,7 +20,6 @@ require_once 'SyncML/Command.php';
  * @author  Anthony Mills <amills@pyramid6.com>
  * @author  Karsten Fourmont <karsten@horde.org>
  * @author  Jan Schneider <jan@horde.org>
- * @since   Horde 3.0
  * @package SyncML
  */
 class SyncML_Command_Alert extends SyncML_Command {
index 85dca8c..d4396cb 100644 (file)
@@ -17,7 +17,6 @@ require_once 'SyncML/Command.php';
  *
  * @author  Karsten Fourmont <karsten@horde.org>
  * @author  Jan Schneider <jan@horde.org>
- * @since   Horde 3.0
  * @package SyncML
  */
 class SyncML_Command_Final extends SyncML_Command {
index c151f02..6f72fdf 100644 (file)
@@ -18,7 +18,6 @@ require_once 'SyncML/Command.php';
  *
  * @author  Karsten Fourmont <fourmont@gmx.de>
  * @author  Jan Schneider <jan@horde.org>
- * @since   Horde 3.0
  * @package SyncML
  */
 class SyncML_Command_Get extends SyncML_Command {
index 5ac3bcd..8d05b45 100644 (file)
@@ -16,7 +16,6 @@ require_once 'SyncML/Command.php';
  *
  * @author  Karsten Fourmont <karsten@horde.org>
  * @author  Jan Schneider <jan@horde.org>
- * @since   Horde 3.0
  * @package SyncML
  */
 class SyncML_Command_Map extends SyncML_Command {
index 6c10e2d..738368d 100644 (file)
@@ -21,7 +21,6 @@ require_once 'SyncML/Command.php';
  *
  * @author  Karsten Fourmont <karsten@horde.org>
  * @author  Jan Schneider <jan@horde.org>
- * @since   Horde 3.0
  * @package SyncML
  */
 class SyncML_Command_Put extends SyncML_Command {
index 0729a99..730f164 100644 (file)
@@ -16,7 +16,6 @@ require_once 'SyncML/Command.php';
  *
  * @author  Anthony Mills <amills@pyramid6.com>
  * @author  Jan Schneider <jan@horde.org>
- * @since   Horde 3.0
  * @package SyncML
  */
 class SyncML_Command_Replace extends SyncML_Command {
index 772cf3c..5168f96 100644 (file)
@@ -19,7 +19,6 @@ require_once 'SyncML/Command/Put.php';
  *
  * @author  Nathan P Sharp
  * @author  Jan Schneider <jan@horde.org>
- * @since   Horde 3.0
  * @package SyncML
  */
 class SyncML_Command_Results extends SyncML_Command_Put {
index 5997241..be8a52a 100644 (file)
@@ -17,7 +17,6 @@ require_once 'SyncML/Command.php';
  *
  * @author  Karsten Fourmont <fourmont@gmx.de>
  * @author  Jan Schneider <jan@horde.org>
- * @since   Horde 3.0
  * @package SyncML
  */
 class SyncML_Command_Status extends SyncML_Command {
index c9041ca..58fe2b9 100644 (file)
@@ -26,7 +26,6 @@ require_once 'SyncML/Command/SyncElement.php';
  *
  * @author  Karsten Fourmont <karsten@horde.org>
  * @author  Jan Schneider <jan@horde.org>
- * @since   Horde 3.0
  * @package SyncML
  */
 class SyncML_Command_Sync extends SyncML_Command {
index def92ff..a1a4a80 100644 (file)
@@ -13,7 +13,6 @@
  *
  * @author  Karsten Fourmont <karsten@horde.org>
  * @author  Jan Schneider <jan@horde.org>
- * @since   Horde 3.0.5
  * @package SyncML
  */
 class SyncML_SyncElement {
index 20337cd..56f4a49 100644 (file)
@@ -17,7 +17,6 @@ require_once 'SyncML/Command.php';
  *
  * @author  Karsten Fourmont <karsten@horde.org>
  * @author  Jan Schneider <jan@horde.org>
- * @since   Horde 3.2
  * @package SyncML
  */
 class SyncML_Command_SyncHdr extends SyncML_Command {
index 9ac1965..f9b60b6 100644 (file)
@@ -17,7 +17,6 @@ require_once 'SyncML/Command/SyncElement.php';
  *
  * @author  Anthony Mills <amills@pyramid6.com>
  * @author  Jan Schneider <jan@horde.org>
- * @since   Horde 3.0
  * @package SyncML
  */
 class SyncML_State {
index bb075c8..83b376f 100644 (file)
@@ -6,7 +6,6 @@
  * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  *
  * @author  Anthony Mills <amills@pyramid6.com>
- * @since   Horde 3.0
  * @package SyncML
  */
 
index 750b567..abf5920 100644 (file)
@@ -17,7 +17,6 @@
  * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  *
  * @author  Karsten Fourmont <karsten@horde.org>
- * @since   Horde 3.2
  * @package SyncML
  */
 
index 3a02813..c3aa0c9 100755 (executable)
  * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  *
  * @author  Jan Schneider <jan@horde.org>
- * @since   Horde 3.3.4
  * @package SyncML
  */
 
-require_once 'PEAR.php';
 require_once 'SyncML.php';
 
 class Backend extends SyncML_Backend {
index c73457b..5abaee1 100755 (executable)
@@ -15,7 +15,6 @@
  * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  *
  * @author  Karsten Fourmont <karsten@horde.org>
- * @since   Horde 3.2
  * @package SyncML
  */
 
index 665f163..2b65bcf 100644 (file)
@@ -66,7 +66,6 @@ class Text_Diff {
      * returns the number of new (added) lines in a given diff.
      *
      * @since Text_Diff 1.1.0
-     * @since Horde 3.2
      *
      * @return integer The number of new lines
      */
@@ -86,7 +85,6 @@ class Text_Diff {
      * Returns the number of deleted (removed) lines in a given diff.
      *
      * @since Text_Diff 1.1.0
-     * @since Horde 3.2
      *
      * @return integer The number of deleted lines
      */
index 3d39622..45fa4ff 100644 (file)
@@ -1,6 +1,5 @@
 <?php
 
-require_once 'PEAR.php';
 require_once 'Log.php';
 
 define('VFS_QUOTA_METRIC_BYTE', 1);
@@ -18,7 +17,6 @@ define('VFS_QUOTA_METRIC_GB', 4);
  *
  * @author  Chuck Hagenbuch <chuck@horde.org>
  * @package VFS
- * @since   Horde 2.2
  */
 class VFS {
 
@@ -194,8 +192,6 @@ class VFS {
     /**
      * Returns the size of a folder
      *
-     * @since Horde 3.1
-     *
      * @param string $path  The path to the folder.
      * @param string $name  The name of the folder.
      *
@@ -822,8 +818,6 @@ class VFS {
     /**
      * Returns the size of the VFS item.
      *
-     * @since Horde 3.1
-     *
      * @return integer  The size, in bytes, of the VFS item.
      */
     function getVFSSize()
@@ -837,8 +831,6 @@ class VFS {
     /**
      * Sets the VFS quota limit.
      *
-     * @since Horde 3.1
-     *
      * @param integer $quota   The limit to apply.
      * @param integer $metric  The metric to multiply the quota into.
      */
@@ -864,8 +856,6 @@ class VFS {
     /**
      * Sets the VFS quota root.
      *
-     * @since Horde 3.1
-     *
      * @param string $dir  The root directory for the quota determination.
      */
     function setQuotaRoot($dir)
@@ -876,8 +866,6 @@ class VFS {
     /**
      * Get quota information (used/allocated), in bytes.
      *
-     * @since Horde 3.1
-     *
      * @return mixed  An associative array.
      *                'limit' = Maximum quota allowed
      *                'usage' = Currently used portion of quota (in bytes)
index f65c9f1..0b03c8f 100644 (file)
@@ -15,7 +15,6 @@
  * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  *
  * @author  Jan Schneider <jan@horde.org>
- * @since   Horde 3.2
  * @package VFS
  */
 class VFS_horde extends VFS {
index 7c791fa..af2c11e 100644 (file)
@@ -31,7 +31,6 @@
  *
  * @author  Paul Gareau <paul@xhawk.net>
  * @author  Patrice Levesque <wayne@ptaff.ca>
- * @since   Horde 3.1
  * @package VFS
  */
 class VFS_smb extends VFS {
index 73e0270..3c3beda 100644 (file)
@@ -18,7 +18,6 @@
  * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  *
  * @editor  Cliff Green <green@umdnj.edu>
- * @since   Horde 3.2
  * @package VFS
  */
 class VFS_ssh2 extends VFS {
index daace43..45cfaaa 100644 (file)
@@ -1,7 +1,4 @@
 <?php
-
-require_once 'PEAR.php';
-
 /**
  * VFS API for abstracted creation of ISO (CD-ROM) filesystems.
  *
@@ -12,7 +9,6 @@ require_once 'PEAR.php';
  *
  * @author  Jason M. Felice <jason.m.felice@gmail.com>
  * @package VFS_ISO
- * @since   Horde 3.0
  */
 class VFS_ISOWriter {
 
index fc20127..78aa685 100644 (file)
@@ -10,7 +10,6 @@
  *
  * @author  Jason M. Felice <jason.m.felice@gmail.com>
  * @package VFS_ISO
- * @since   Horde 3.0
  */
 class VFS_ISOWriter_RealInputStrategy {
 
index 12e0377..e37a5b2 100644 (file)
@@ -9,7 +9,6 @@
  *
  * @author  Jason M. Felice <jason.m.felice@gmail.com>
  * @package VFS_ISO
- * @since   Horde 3.0
  */
 class VFS_ISOWriter_RealInputStrategy_copy extends VFS_ISOWriter_RealInputStrategy {
 
index e663c52..6b61b17 100644 (file)
@@ -9,7 +9,6 @@
  *
  * @author  Jason M. Felice <jason.m.felice@gmail.com>
  * @package VFS_ISO
- * @since   Horde 3.0
  */
 class VFS_ISOWriter_RealInputStrategy_direct extends VFS_ISOWriter_RealInputStrategy {
 
index d5bd7ac..db39b16 100644 (file)
@@ -9,7 +9,6 @@
  *
  * @author  Jason M. Felice <jason.m.felice@gmail.com>
  * @package VFS_ISO
- * @since   Horde 3.0
  */
 class VFS_ISOWriter_RealOutputStrategy {
 
index 3d054f3..b2e29d2 100644 (file)
@@ -9,7 +9,6 @@
  *
  * @author  Jason M. Felice <jason.m.felice@gmail.com>
  * @package VFS_ISO
- * @since   Horde 3.0
  */
 class VFS_ISOWriter_RealOutputStrategy_copy extends VFS_ISOWriter_RealOutputStrategy {
 
index e82c3b3..a6082b2 100644 (file)
@@ -9,7 +9,6 @@
  *
  * @author  Jason M. Felice <jason.m.felice@gmail.com>
  * @package VFS_ISO
- * @since   Horde 3.0
  */
 class VFS_ISOWriter_RealOutputStrategy_direct extends VFS_ISOWriter_RealOutputStrategy {
 
index 2dfb0a2..a872e2c 100644 (file)
@@ -9,7 +9,6 @@
  *
  * @author  Jason M. Felice <jason.m.felice@gmail.com>
  * @package VFS_ISO
- * @since   Horde 3.0
  */
 class VFS_ISOWriter_mkisofs extends VFS_ISOWriter {
 
index fb2f6b5..7dd35c0 100644 (file)
@@ -38,9 +38,6 @@ class XML_WBXML_ContentHandler {
      */
     function raiseError($error)
     {
-        if (!class_exists('PEAR')) {
-            require 'PEAR.php';
-        }
         return PEAR::raiseError($error);
     }
 
index 4a8a711..68a6f4f 100644 (file)
@@ -12,7 +12,6 @@
  * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  *
  * @author  Mike Cochrane <mike@graftonhall.co.nz>
- * @since   Horde 3.0
  * @package Horde_iCalendar
  */
 class Horde_iCalendar {
@@ -223,7 +222,6 @@ class Horde_iCalendar {
             }
         }
         if (!count($result)) {
-            require_once 'PEAR.php';
             return PEAR::raiseError('Attribute "' . $name . '" Not Found');
         } if (count($result) == 1 && !$params) {
             return $result[0];
index b8f4b81..730beef 100644 (file)
@@ -10,7 +10,6 @@
  * @todo Don't use timestamps
  *
  * @author  Mike Cochrane <mike@graftonhall.co.nz>
- * @since   Horde 3.0
  * @package Horde_iCalendar
  */
 class Horde_iCalendar_vfreebusy extends Horde_iCalendar {
index 1b0e244..94e07b4 100644 (file)
@@ -8,7 +8,6 @@
  * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  *
  * @author  Mike Cochrane <mike@graftonhall.co.nz>
- * @since   Horde 3.0
  * @package Horde_iCalendar
  */
 class Horde_iCalendar_vjournal extends Horde_iCalendar {
index 64e34be..5719afa 100644 (file)
@@ -8,7 +8,6 @@
  * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  *
  * @author  Mike Cochrane <mike@graftonhall.co.nz>
- * @since   Horde 3.0
  * @package Horde_iCalendar
  */
 class Horde_iCalendar_vtimezone extends Horde_iCalendar {
index 6ddce40..ef81d50 100644 (file)
@@ -8,7 +8,6 @@
  * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  *
  * @author  Mike Cochrane <mike@graftonhall.co.nz>
- * @since   Horde 3.0
  * @package Horde_iCalendar
  */
 class Horde_iCalendar_vtodo extends Horde_iCalendar {
index 6fe845a..e58b461 100644 (file)
@@ -201,7 +201,7 @@ Quick example function definition for Horde::
      * [Once again, insert 2 spaces after the datatype, and line up all
      *  subsequent lines, if any, with this character.]
      *
-     * @since Horde x.x [Only if necessary - use if function is added to the
+     * @since Horde x.x.x [Only if necessary - use if function is added to the
      * current release versions to indicate that the function has not been
      * available in previous versions. @since is only needed if the function
      * has been added after the last major point release - e.g. x.0.]
@@ -257,7 +257,7 @@ Example for `LGPL`_'ed Horde code::
      *
      * @author   Original Author <author@example.com>
      * @author   Your Name <you@example.com>
-     * @since    Horde 3.0 [only if needed]
+     * @since    Horde 4.0.1 [only if needed]
      * @category Horde
      * @package  Horde_Package
      */
@@ -277,7 +277,7 @@ Example for `GPL`_'ed application code::
      *
      * @author   Original Author <author@example.com>
      * @author   Your Name <you@example.com>
-     * @since    App 1.0 [only if needed]
+     * @since    App 1.0.1 [only if needed]
      * @category Horde
      * @package  app
      */
index 2050c45..96b1fc3 100644 (file)
@@ -133,7 +133,6 @@ class Horde_Block_Horde_account extends Horde_Block {
  * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  *
  * @author  Eric Jon Rostetter <eric.rostetter@physics.utexas.edu>
- * @since   Horde 3.1
  * @package Horde_Block
  */
 class Accounts_Driver {
@@ -243,7 +242,6 @@ class Accounts_Driver {
  * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  *
  * @author  Eric Jon Rostetter <eric.rostetter@physics.utexas.edu>
- * @since   Horde 3.1
  * @package Horde_Block
  */
 class Accounts_Driver_localhost extends Accounts_Driver {
@@ -411,7 +409,6 @@ class Accounts_Driver_localhost extends Accounts_Driver {
  * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  *
  * @author  Eric Jon Rostetter <eric.rostetter@physics.utexas.edu>
- * @since   Horde 3.1
  * @package Horde_Block
  */
 class Accounts_Driver_ldap extends Accounts_Driver {
index 0123454..ce5c236 100644 (file)
@@ -8,7 +8,6 @@
  * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  *
  * @author  Chuck Hagenbuch <chuck@horde.org>
- * @since   Horde 2.2
  * @package Hylax
  */
 class Hylax_SQL_Attributes {
index 45137d3..bc7b9d7 100644 (file)
@@ -10,7 +10,6 @@
  * http://www.opensource.org/licenses/bsd-license.php.
  *
  * @author  Ben Klang <ben@alkaloid.net>
- * @since   Shout 0.1
  * @package Shout
  */
 
index 00c4fd2..cb5ba5b 100644 (file)
@@ -9,7 +9,6 @@
  * http://www.opensource.org/licenses/bsd-license.php.
  *
  * @author  Ben Klang <ben@alkaloid.net>
- * @since   Shout 0.1
  * @package Shout
 -->
 <configuration>
index 4e81157..06a6374 100644 (file)
@@ -9,10 +9,8 @@
  * http://www.opensource.org/licenses/bsd-license.php.
  *
  * @author  Ben Klang <ben@alkaloid.net>
- * @since   Shout 0.1
  * @package Shout
  */
-
 class Shout_Driver {
 
     /**
index 8d6b50f..c8e918c 100644 (file)
@@ -9,7 +9,6 @@
  * http://www.opensource.org/licenses/bsd-license.php.
  *
  * @author  Ben Klang <ben@alkaloid.net>
- * @since   Shout 0.1
  * @package Shout
  */
 
index b0c58f5..d34f435 100644 (file)
@@ -9,11 +9,8 @@
  * http://www.opensource.org/licenses/bsd-license.php.
  *
  * @author  Ben Klang <ben@alkaloid.net>
- * @since   Shout 0.1
  * @package Shout
  */
-
-
 class Shout_Driver_Sql extends Shout_Driver
 {
     /**
index 3575600..0c8f5b4 100644 (file)
@@ -9,7 +9,6 @@
  * http://www.opensource.org/licenses/bsd-license.php.
  *
  * @author  Ben Klang <ben@alkaloid.net>
- * @since   Shout 0.1
  * @package Shout
  */
 class Shout
index fca3eca..b967817 100644 (file)
@@ -8,12 +8,9 @@
  * http://www.opensource.org/licenses/bsd-license.php.
  *
  * @author  Ben Klang <ben@alkaloid.net>
- * @since   Shout 0.1
  * @package Shout
  */
 
-
-
 table {
     width: 100%;
 }
index b98499e..734e547 100644 (file)
@@ -13,7 +13,6 @@ class Vilma_MailboxDriver_maildrop extends Vilma_MailboxDriver {
     function _getMailboxDir($user, $domain)
     {
         if (empty($this->_params['mail_dir_base'])) {
-            require_once 'PEAR.php';
             throw new Vilma_Exception(_("No 'mail_dir_base' parameter specified to maildrop driver."));
         }
         $dir = $this->_params['mail_dir_base'];
@@ -39,7 +38,6 @@ class Vilma_MailboxDriver_maildrop extends Vilma_MailboxDriver {
         }
 
         if (!$exists[$dir]) {
-            require_once 'PEAR.php';
             throw new Vilma_Exception(sprintf(_("Maildrop directory \"%s\" does not exist."), $dir));
         }
 
@@ -53,7 +51,6 @@ class Vilma_MailboxDriver_maildrop extends Vilma_MailboxDriver {
             return $dir;
         }
         if (empty($this->_params['system_user'])) {
-            require_once 'PEAR.php';
             throw new Vilma_Exception(_("No 'system_user' parameter specified to maildrop driver."));
         }