Package com.dotmarketing.velocity

Examples of com.dotmarketing.velocity.ResourceWrapper


    String groupName= getGroupName(fqn);
    if (Config.getBooleanProperty("SKIP_MACRO_CACHE",true)) {
      if ("velocitycache".equalsIgnoreCase(groupName)) {
        String key=fqn.toString();
        if ( key.endsWith(containerExtension) || key.endsWith(templateExtension) || key.endsWith(fieldExtension)) {
          ResourceWrapper w=(ResourceWrapper)attrs.values().toArray()[0];
          boolean ret=RegEX.contains(w.getResource().getData().toString(), "\\[#macro\\]");
          return !ret;
        }
      }
    }
    return true;
View Full Code Here

TOP

Related Classes of com.dotmarketing.velocity.ResourceWrapper

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.