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/Form/FieldDefinition.pm

    r1039 r1041  
    22# base class for all form field types 
    33 
    4 =pod 
     4=begin TML 
    55 
    66---+ package Foswiki::Form::FieldDefinition 
     
    1919use Assert; 
    2020 
    21 =pod 
     21=begin TML 
    2222 
    2323---++ ClassMethod new(%...) 
     
    6363} 
    6464 
    65 =pod 
     65=begin TML 
    6666 
    6767---++ isEditable() -> $boolean 
     
    7474sub isEditable { 1 } 
    7575 
    76 =pod 
     76=begin TML 
    7777 
    7878---++ isMultiValued() -> $boolean 
     
    8585sub isMultiValued { 0 } 
    8686 
    87 =pod 
     87=begin TML 
    8888 
    8989---++ isTextMergeable() -> $boolean 
     
    9696sub isTextMergeable { return !shift->isMultiValued() } 
    9797 
    98 =pod 
     98=begin TML 
    9999 
    100100---++ isMandatory() -> $boolean 
     
    106106sub isMandatory { return shift->{attributes} =~ /M/ } 
    107107 
    108 =pod 
     108=begin TML 
    109109 
    110110---++ renderForEdit( $web, $topic, $value ) -> ($col0html, $col1html) 
     
    134134} 
    135135 
    136 =pod 
     136=begin TML 
    137137 
    138138---++ cssClasses(@classes) -> $classes 
     
    151151} 
    152152 
    153 =pod 
     153=begin TML 
    154154 
    155155---++ getDefaultValue() -> $value 
     
    172172} 
    173173 
    174 =pod 
     174=begin TML 
    175175 
    176176---++ renderHidden($meta) -> $html 
     
    208208} 
    209209 
    210 =pod 
     210=begin TML 
    211211 
    212212---++ populateMetaDataFromQuery( $query, $meta, $old ) -> ($bValid, $bPresent) 
     
    310310} 
    311311 
    312 =pod 
     312=begin TML 
    313313 
    314314---++ ObjectMethod renderForDisplay($format, $attrs) -> $html 
Note: See TracChangeset for help on using the changeset viewer.