Changeset 12908

Show
Ignore:
Timestamp:
10/20/07 15:06:00 (1 year ago)
Author:
flack
Message:

fix common spelling error (superseed => supersede)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/midcom/cc.kaktus.todo/midcom/interfaces.php

    r4550 r12908  
    1111 * TODO listing interface class 
    1212 * 
    13  * Defines the privilege cc.kaktus.todo::moderation to superseed the original 
     13 * Defines the privilege cc.kaktus.todo::moderation to supersede the original 
    1414 * moderator group. 
    1515 * 
     
    2020    /** 
    2121     * Simple constructor, which links to the parent class 
    22      *  
     22     * 
    2323     * @access public 
    2424     */ 
     
    2626    { 
    2727        parent::midcom_baseclasses_components_interface(); 
    28          
     28 
    2929        $this->_component = 'cc.kaktus.todo'; 
    30          
     30 
    3131        $this->_autoload_files = array 
    3232        ( 
     
    3636            'dba_classes/item_dba.php', 
    3737        ); 
    38          
     38 
    3939        $this->_autoload_libraries = array 
    4040        ( 
    4141            'midcom.helper.datamanager2', 
    4242        ); 
    43          
     43 
    4444        define ('CC_KAKTUS_TODO_TIME_FINISHED', 1); 
    4545        define ('CC_KAKTUS_TODO_TIME_OVERTIME', 2); 
  • trunk/midcom/midcom.core/globals.php

    r11359 r12908  
    22 
    33/** 
    4  * The last non-critical MidCOM error message. This is slowly superseeded 
     4 * The last non-critical MidCOM error message. This is slowly superseded 
    55 * by having all errors call generate_error. 
    66 *  
  • trunk/midcom/midcom.core/midcom/baseclasses/components/interface.php

    r12102 r12908  
    1111 * Baseclass to use for the component interface in MIDCOM. 
    1212 * 
    13  * The interface presented here superseeds all original component interface 
     13 * The interface presented here supersedes all original component interface 
    1414 * classes (COMPONENT, CONTENTADMIN, MIDCOM and NAP). The class uses an event 
    1515 * based approache for subclasses to influence the default behavoir. 
     
    263263 
    264264    /** 
    265      * @deprecated This has been superseeded by the component manifest as of 2005-09-08 
     265     * @deprecated This has been superseded by the component manifest as of 2005-09-08 
    266266     */ 
    267267    var $_version = 0; 
    268268 
    269269    /** 
    270      * @deprecated This has been superseeded by the component manifest as of 2005-09-08 
     270     * @deprecated This has been superseded by the component manifest as of 2005-09-08 
    271271     */ 
    272272    var $_autoload_class_definitions = Array(); 
    273273 
    274274    /** 
    275      * @deprecated This has been superseeded by the component manifest as of 2005-09-08 
     275     * @deprecated This has been superseded by the component manifest as of 2005-09-08 
    276276     */ 
    277277    var $_acl_privileges = Array(); 
    278278 
    279279    /** 
    280      * @deprecated This has been superseeded by the component manifest as of 2005-09-08 
     280     * @deprecated This has been superseded by the component manifest as of 2005-09-08 
    281281     */ 
    282282    var $_purecode = false; 
     
    321321 
    322322    /** @ignore */ 
    323     // Superseeded by the Manifest 
     323    // Superseded by the Manifest 
    324324    var $_parsed_acl_privileges = null; 
    325325 
     
    366366        } 
    367367 
    368         // Compatibility stuff, this is now superseeded by the manifest code. 
     368        // Compatibility stuff, this is now superseded by the manifest code. 
    369369        $this->_autoload_class_definitions = $this->_manifest->class_definitions; 
    370370        $this->_parsed_acl_privileges = $this->_manifest->privileges; 
  • trunk/midcom/midcom.core/midcom/core/privilege.php

    r6116 r12908  
    3939 * be removed before the final 2.6 release. It has been done to ease the immediate transition. 
    4040 * 
    41  * Essentially, this class will superseed the original privileges_io.php helpers. 
     41 * Essentially, this class will supersede the original privileges_io.php helpers. 
    4242 * 
    4343 * Torben (2005-07-29) 
  • trunk/midcom/midcom.core/midcom/helper/nav.php

    r12408 r12908  
    215215    /** 
    216216     * This function returns the toolbar definition for the NAP object passed. This must 
    217      * superseed all calls to $nap_object[MIDCOM_NAV_TOOLBAR] as this information is 
     217     * supersede all calls to $nap_object[MIDCOM_NAV_TOOLBAR] as this information is 
    218218     * not usable directly - it would result from the MidCOM cache and thus be out of date 
    219219     * always (and especially not adapted to the current user). 
  • trunk/midcom/midcom.core/midcom/helper/toolbar.php

    r12745 r12908  
    862862     * Dummy function to hide that this is not a midcom_admin_content_toolbar. 
    863863     * 
    864      * @deprecated since MidCOM 2.6 (superseeded by midcom_services_toolbars) 
     864     * @deprecated since MidCOM 2.6 (superseded by midcom_services_toolbars) 
    865865     */ 
    866866    function disable_view_page() {} 
  • trunk/midcom/midcom.core/midcom/services/auth.php

    r12865 r12908  
    190190 * 
    191191 * - <i>midgard:read</i> controls read access to the object, if denied, you cannot load the object 
    192  *   from the database. This privilege is granted by default, and superseeds the current ViewerGroups 
     192 *   from the database. This privilege is granted by default, and supersedes the current ViewerGroups 
    193193 *   implementation. 
    194194 * - <i>midgard:update</i> controls updating of objects. Be aware, that you need to be able to read 
  • trunk/midcom/net.nehmer.static/handler/autoindex.php

    r12384 r12908  
    7070     * 
    7171     * The globals view_title, view_l10n and view_l10n_midcom are populated for compatibility reasons 
    72      * only, they have been superseeded 
     72     * only, they have been superseded 
    7373     * by the corresponding request data key. The global will be dropped after MidCOM 2.6. 
    7474     * 
  • trunk/midcom/net.nemein.discussion/midcom/interfaces.php

    r12682 r12908  
    1212 * Forum MidCOM interface class. 
    1313 * 
    14  * Defines the privilege net.nemein.discussion::moderation to superseed the original 
     14 * Defines the privilege net.nemein.discussion::moderation to supersede the original 
    1515 * moderator group. 
    1616 *