Ignore:
Timestamp:
10/15/09 19:28:59 (3 years ago)
Author:
KennethLavrsen
Message:

Item2260: MailerContrib cannot find email templates based on skin or web
The checkin does the following

  • It makes a tiny little fix in MailerContrib.pm where I pushTopicContext before loading mail template and pop it again afterwards
  • Updates the the documentation to show by example how to tailor the mail message
  • Merge over the code from trunk. This introduces a bug fix from Item1603 which for some reason was only applied to trunk
  • And with this merge also merge over a lot of perl tinying.

It was too difficult to separate the two once I was this far. Look at next checkin in trunk to see only the actual code changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/Release01x00/MailerContrib/lib/Foswiki/Contrib/MailerContrib/Constants.pm

    r1340 r5269  
     1 
    12=pod 
    23 
     
    1415package MailerConst; 
    1516 
    16 our $ALWAYS       = 1; # Always send, even if there are no changes 
    17 our $FULL_TOPIC   = 2; # Send the full topic rather than just changes 
     17use strict; 
     18 
     19our $ALWAYS     = 1;    # Always send, even if there are no changes 
     20our $FULL_TOPIC = 2;    # Send the full topic rather than just changes 
    1821 
    1922# ? = FULL_TOPIC 
Note: See TracChangeset for help on using the changeset viewer.