Package de.innovationgate.wgpublisher.webtml.utils

Examples of de.innovationgate.wgpublisher.webtml.utils.TMLContext.content()


        TMLContext context = this.getTMLContext();
        context.setrole(this.getRole());
      try {
     
      WGContent content = context.content();
     
      String attValue;
      attValue = this.getIstrue();
      if (attValue != null) {
        if (!context.istrue(attValue)) {
View Full Code Here


   */
  public void tmlEndTag() throws TMLException, WGAPIException {

    try {
            TMLContext context = this.getTMLContext();
            WGContent content = context.content()
           
            // Build link body
            String contentURL = context.contenturl(this.getMedium(), this.getLayout());
            String imageBaseURL = context.contenturl(this.getMedium(), this.getLayout(), true);
            String linkBody = null;
View Full Code Here

        String className = getClass().getName();
        return className.substring(className.lastIndexOf(".") + 1).toLowerCase();
    }
    public void buildHTMLHead(boolean metaOutput, String scripts) throws WGAPIException {
        TMLContext context = this.getTMLContext();
      WGContent content = context.content();
     
      if( content != null ){   
        // Eventually put out meta tags
        this.appendResult("<meta name=\"generator\" content=\"").appendResult(WGACore.getReleaseString()).appendResult("\">\n");   
        if (metaOutput == true ) {
View Full Code Here

   
    String exclude = getExclude();
    if (exclude != null) {
        TMLContext excludeContext = getTMLContext().context(exclude, false);
        if (excludeContext != null) {
            status.contentList.remove(excludeContext.content());
        }
        else {
            addWarning("Unresolvable exclude context: " + exclude, false);
        }
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.