Ignore:
Timestamp:
11/28/08 13:33:03 (3 years ago)
Author:
CrawfordCurrie
Message:

Item175: Added Foswiki::Time to published APIs and deprecated the duplicates in Foswiki::Func, cleaned up versioning of published APIs and added VERSION to each. Item295: changed =pod to =begin TML

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/core/lib/Foswiki/AccessControlException.pm

    r1039 r1041  
    11# See bottom of file for license and copyright information 
    2 =pod TML 
     2 
     3=begin TML 
    34 
    45---+ package Foswiki::AccessControlException 
     
    1819user is not logged in) or reported (if they are and just don't have access). 
    1920 
     21API version $Date$ (revision $Rev$) 
     22 
     23*Since* _date_ indicates where functions or parameters have been added since 
     24the baseline of the API (TWiki release 4.2.3). The _date_ indicates the 
     25earliest date of a Foswiki release that will support that function or 
     26parameter. 
     27 
     28*Deprecated* _date_ indicates where a function or parameters has been 
     29[[http://en.wikipedia.org/wiki/Deprecation][deprecated]]. Deprecated 
     30functions will still work, though they should 
     31_not_ be called in new plugins and should be replaced in older plugins 
     32as soon as possible. Deprecated parameters are simply ignored in Foswiki 
     33releases after _date_. 
     34 
     35*Until* _date_ indicates where a function or parameter has been removed. 
     36The _date_ indicates the latest date at which Foswiki releases still supported 
     37the function or parameter. 
     38 
    2039=cut 
     40 
     41# THIS PACKAGE IS PART OF THE PUBLISHED API USED BY EXTENSION AUTHORS. 
     42# DO NOT CHANGE THE EXISTING APIS (well thought out extensions are OK) 
     43# AND ENSURE ALL POD DOCUMENTATION IS COMPLETE AND ACCURATE. 
    2144 
    2245package Foswiki::AccessControlException; 
     
    2548use strict; 
    2649 
    27 =pod 
     50our $VERSION = '$Rev$'; 
     51 
     52=begin TML 
    2853 
    2954---+ ClassMethod new($mode, $user, $web, $topic, $reason) 
     
    5277} 
    5378 
    54 =pod 
     79=begin TML 
    5580 
    5681---++ ObjectMethod stringify() -> $string 
Note: See TracChangeset for help on using the changeset viewer.