Show
Ignore:
Timestamp:
05/18/06 17:57:47 (6 years ago)
Author:
nick
Message:

Start on support for getting all the versions of a node out

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • wiki-toolkit/trunk/lib/Wiki/Toolkit/Feed/Listing.pm

    r297 r298  
    6363} 
    6464 
     65 
     66=item B<fetch_node_all_versions> 
     67 
     68For a given node (name or ID), return all the versions there have been, 
     69including all metadata required for it to go into a "recent changes" 
     70style listing. 
     71 
     72=cut 
     73sub fetch_node_all_versions { 
     74    my ($self, %args) = @_; 
     75 
     76    # TODO. Will make use of store->list_node_all_versions() 
     77} 
     78 
    65791;