Ignore:
Timestamp:
2008-06-13T13:36:58+12:00 (16 years ago)
Author:
mdewsnip
Message:

(Adding dynamic classifiers) Creating a new dynamicclassifier macrofile instead of using the document macros, and modifying dynamicclassifieraction to use this instead.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/src/recpt/dynamicclassifieraction.cpp

    r15954 r15988  
    128128  }
    129129
    130   textout << outconvert << disp << "_document:header_\n";
    131   textout << outconvert << disp << "_document:content_\n";
     130  textout << outconvert << disp << "_dynamicclassifier:header_\n";
     131  textout << outconvert << disp << "_dynamicclassifier:content_\n";
    132132
    133133  // Check a dynamic classifier ID has been specified
     
    136136  {
    137137    textout << outconvert << disp << "Error: Missing dcl argument.\n";
    138     textout << outconvert << disp << "_document:footer_\n";
     138    textout << outconvert << disp << "_dynamicclassifier:footer_\n";
    139139    return true;
    140140  }
     
    145145  {
    146146    textout << outconvert << disp << "Error: Invalid dcl value \"" << arg_dcl << "\".\n";
    147     textout << outconvert << disp << "_document:footer_\n";
     147    textout << outconvert << disp << "_dynamicclassifier:footer_\n";
    148148    return true;
    149149  }
     
    162162  }
    163163
    164   textout << outconvert << disp << "_document:footer_\n";
     164  textout << outconvert << disp << "_dynamicclassifier:footer_\n";
    165165  return true;
    166166}
Note: See TracChangeset for help on using the changeset viewer.