Package com.ctlok.springframework.web.servlet.view.rythm.tag

Examples of com.ctlok.springframework.web.servlet.view.rythm.tag.FileBasedTagProxy


               
                boolean disableFileWrite = Rythm.engine().conf().disableFileWrite();
           
                for (final FileBasedTag fileBasedTag: configurator.getFileBasedTags()){
       
                    final ITemplate tag = new FileBasedTagProxy(fileBasedTag, disableFileWrite);
   
                    LOGGER.debug("Register file based tag: [{}]", tag.__getName());
   
                    Rythm.engine().registerTemplate(tag);
       
                }
           
View Full Code Here


                   
                }
               
                for (final FileBasedTag fileBasedTag: configurator.getFileBasedTags()){
       
                    final ITemplate tag = new FileBasedTagProxy(
                            fileBasedTag, fileBasedTagTempDirectory, disableFileWrite);
   
                    LOGGER.debug("Register file based tag: [{}]", tag.__getName());
   
                    Rythm.engine().registerTemplate(tag);
       
                }
           
View Full Code Here

TOP

Related Classes of com.ctlok.springframework.web.servlet.view.rythm.tag.FileBasedTagProxy

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.