Ignore:
Timestamp:
11/19/08 15:00:00 (4 years ago)
Author:
CrawfordCurrie
Message:

Item175: port a subset of the standard extensions over to the new namespace to make a working system with mixed TWiki and Foswiki plugins

Location:
trunk/MailerContrib/lib/Foswiki
Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/MailerContrib/lib/Foswiki/Contrib/MailerContrib/UpData.pm

    r781 r811  
    22# 
    33# Copyright (C) 2004 Wind River Systems Inc. 
    4 # Copyright (C) 1999-2006 TWiki Contributors. 
    5 # All Rights Reserved. TWiki Contributors 
     4# Copyright (C) 1999-2006 Foswiki Contributors. 
     5# All Rights Reserved. Foswiki Contributors 
    66# are listed in the AUTHORS file in the root of this distribution. 
    77# NOTE: Please extend that file, not this notice. 
     
    2323=pod 
    2424 
    25 ---+ package TWiki::Contrib::MailerContrib::UpData 
     25---+ package Foswiki::Contrib::MailerContrib::UpData 
    2626Object that lazy-scans topics to extract 
    2727parent relationships. 
     
    2929=cut 
    3030 
    31 package TWiki::Contrib::MailerContrib::UpData; 
     31package Foswiki::Contrib::MailerContrib::UpData; 
    3232 
    3333=pod 
     
    6060    if ( ! defined( $this->{parent}{$topic} )) { 
    6161        my( $meta, $text ) = 
    62           TWiki::Func::readTopic( $this->{web}, $topic ); 
     62          Foswiki::Func::readTopic( $this->{web}, $topic ); 
    6363        my $parent = $meta->get('TOPICPARENT'); 
    6464        $this->{parent}{$topic} = $parent->{name} if $parent; 
Note: See TracChangeset for help on using the changeset viewer.