Example #1
0
  public int doAfterBody() throws JspException {
    CalendarTag calendartag =
        (CalendarTag) TagSupport.findAncestorWithClass(this, CalendarTag.class);
    if (calendartag == null) {
      throw new JspException("Could not find ancestor calendarTag");
    }
    BodyContent bodycontent = getBodyContent();
    String s;
    if (bodycontent == null) {
      s = "";
    } else {
      s = bodycontent.getString();
    }
    s = s.trim();
    if (s.length() > 0) {
      if (day == -1) {
        for (int i = 0; i < 31; i++) {
          calendartag.setDateTarget(i, s);
        }

      } else {
        if (day <= 0 || day > 31) {
          throw new JspException("Invalid day:" + day);
        }
        calendartag.setDateTarget(day - 1, s);
      }
    }
    return 0;
  }
 @Override
 public void release() {
   super.release();
   this.setShowletTypeCode(null);
   this.setVar(null);
   this.setListResult(false);
 }
  /** Release all allocated resources. */
  public void release() {

    super.release();
    property = null;
    scopeName = null;
    scope = PageContext.PAGE_SCOPE;
  }
Example #4
0
 /** Release any acquired resources. */
 public void release() {
   super.release();
   bundle = Globals.MESSAGES_KEY;
   locale = Globals.LOCALE_KEY;
   name = Globals.ERROR_KEY;
   property = null;
 }
Example #5
0
 /** Release all allocated resources. */
 public void release() {
   super.release();
   key = null;
   colon = false;
   styleClass = null;
   errorClass = null;
 }
  @Override
  public void release() {

    super.release();

    this.setListName(null);
  }
 @Override
 public void release() {
   super.release();
   this.setReturnDefaultAvatar(null);
   this.setVar(null);
   this.setUsername(null);
   this.setAvatarStyleVar(null);
 }
Example #8
0
 @Override
 public void release() {
   property = null;
   name = null;
   locale = null;
   bundle = null;
   super.release();
 }
Example #9
0
  /** Release all allocated resources. */
  public void release() {

    super.release();
    id = null;
    multiple = null;
    name = null;
    value = null;
  }
 public void release() {
   super.release();
   bean = null;
   name = null;
   method_prefix = null;
   startTag_xslt = null;
   endTag_xslt = null;
 }
  /** @see javax.servlet.jsp.tagext.Tag#release() */
  @Override
  public void release() {

    super.release();
    m_elementSetting = null;
    m_defaultValue = null;
    m_escapeHtml = false;
  }
Example #12
0
  /**
   * <br>
   * Release all allocated resources.
   */
  public void release() {

    super.release();
    ignore = false;
    name = null;
    property = null;
    scope = null;
    bundle = null;
  }
Example #13
0
  /** Release all allocated resources. */
  public void release() {

    super.release();
    collection = null;
    id = null;
    name = null;
    property = null;
    scope = null;
  }
Example #14
0
 /** To find the internal state */
 public void release() {
   /* Der JSP-Container ruft die Methode release() auf, um den  */
   /* internen Zustand der Aktionsklasse zurückzusetzen. */
   dbConn = null;
   selinasuser = null;
   farbe = null;
   columnHeader = null;
   super.release();
 } // release
Example #15
0
 /** Release any acquired resources. */
 public void release() {
   super.release();
   bundle = Globals.MESSAGES_KEY;
   locale = Globals.LOCALE_KEY;
   name = Globals.ERROR_KEY;
   property = null;
   header = null;
   footer = null;
   prefix = null;
   suffix = null;
 }
Example #16
0
 public void release() {
   super.release();
   link = null;
   style = null;
   target = null;
   onClickMessage = null;
   onClickMessageKey = null;
   title = null;
   titleKey = null;
   context = null;
 }
Example #17
0
  public void release() {
    super.release();
    row = null;
    cellStyle = null;
    align = null;
    valign = null;
    cellWidth = null;
    cellHeight = null;

    rowNo = 0;
    grid = null;
  }
  /** Release all allocated resources. */
  public void release() {

    super.release();
    cookie = null;
    header = null;
    name = null;
    parameter = null;
    property = null;
    role = null;
    scope = null;
    user = null;
  }
Example #19
0
 /** 释放资源 */
 public void release() {
   extDisabled = null;
   title = null;
   jqueryEnabled = null;
   uxEnabled = null;
   fcfEnabled = null;
   doctypeEnable = null;
   exportParams = null;
   exportUserinfo = null;
   isSubPage = null;
   urlSecurity2 = null;
   super.release();
 }
Example #20
0
 /** Release any acquired resources. */
 public void release() {
   super.release();
   arg0 = null;
   arg1 = null;
   arg2 = null;
   arg3 = null;
   arg4 = null;
   bundle = Globals.MESSAGES_KEY;
   key = null;
   name = null;
   property = null;
   scope = null;
   localeKey = Globals.LOCALE_KEY;
 }
Example #21
0
 public void release() {
   super.release();
   bean = null;
   name = null;
   value = null;
   method_prefix = null;
   valueFromBean = null;
   field = null;
   upperCase = null;
   formatOutput = null;
   formatLanguage = null;
   formatCountry = null;
   ignoreCase = null;
 }
Example #22
0
  /**
   * Return the XPathContext to be used for evaluating expressions.
   *
   * <p>If the child is nested withing a forEach tag its iteration context is used. Otherwise, a new
   * context is created based on an empty Document.
   *
   * @param child the tag whose context should be returned
   * @param pageContext the current page context
   * @return the XPath evaluation context
   */
  public static XPathContext getContext(Tag child, PageContext pageContext) {
    // if within a forEach tag, use its context
    ForEachTag forEachTag = (ForEachTag) TagSupport.findAncestorWithClass(child, ForEachTag.class);
    if (forEachTag != null) {
      return forEachTag.getContext();
    }

    // otherwise, create a new context referring to an empty document
    XPathContext context = new XPathContext(false);
    VariableStack variableStack = new JSTLVariableStack(pageContext);
    context.setVarStack(variableStack);
    int dtm = context.getDTMHandleFromNode(newEmptyDocument());
    context.pushCurrentNodeAndExpression(dtm, dtm);
    return context;
  }
Example #23
0
  /** Add the parameter and its value to the link tag */
  public int doEndTag() throws JspException {
    // parent tag must be a LinkTag, gives access to methods in parent
    LinkTag myparent =
        (LinkTag) javax.servlet.jsp.tagext.TagSupport.findAncestorWithClass(this, LinkTag.class);

    if (myparent == null) throw new JspException("linkparam tag not nested within link tag");
    else {
      BodyContent bodyContent = getBodyContent();
      if (bodyContent != null && !bodyContent.getString().equals("")) {
        setValue(bodyContent.getString());
      } else if (getValue() == null) setValue("null");
      //                throw new JspException("Unable to assign a value to the parameter: '" +
      // getId() + "'");
      myparent.addRequestParameter(getId(), getValue());
    }
    return SKIP_BODY;
  }
Example #24
0
  @Override
  public int doStartTag() throws JspException {
    logger.info("Number tag start");
    StringBuffer sb = new StringBuffer();
    BigDecimal number = null;
    if (StringUtils.isBlank(value)) {
      number = BigDecimal.ZERO;
    } else {
      number = BigDecimal.valueOf(Double.valueOf(value));
    }
    sb.append(NumberUtils.formateNumber(number, type, scale));
    try {
      super.pageContext.getOut().print(sb.toString());
    } catch (IOException e) {
      e.printStackTrace();
    }

    return super.doStartTag();
  }
 public int doStartTag() throws JspException {
   IterateTag itag = (IterateTag) TagSupport.findAncestorWithClass(this, IterateTag.class);
   if (itag == null) {
     Debug.println("RowTag.doStartTag: no enclosing 'iterate' tag found.");
   } else if (itag.isEmpty()) {
     return Tag.SKIP_BODY;
   } else {
     current_row = itag.currentElement();
     if (current_row != null && itag.getBeanId() != null) {
       // This is so that if the current row is a bean, jsp:useBean will work
       // inside of iterations.
       pageContext.setAttribute(itag.getBeanId(), current_row);
       Debug.println("storing record in page scope: " + current_row);
     }
     return (current_row == null
         ? Tag.SKIP_BODY // no more elements. iteration complete.
         : Tag.EVAL_BODY_INCLUDE);
   }
   return Tag.SKIP_BODY;
 }
Example #26
0
  public int doStartTag() throws JspException {
    try {
      SiteContext sc =
          (SiteContext) pageContext.getRequest().getAttribute(SiteContext.SITE_CONTEXT_KEY);
      AccessRuleEngine re =
          ContextUtils.getAccessRuleEngine((HttpServletRequest) pageContext.getRequest());

      Page page = null;
      Page currentInTree = sc.getPage();

      if (m_strParent != null) // 直接指定了要展现的根栏目
      page = (Page) pageContext.getAttribute(m_strParent);
      else if (m_iLevel > -1) { // 指定了要展现的级别
        if (m_iLevel <= currentInTree.getLevel()) {
          page = currentInTree;
          while (m_iLevel < page.getLevel()) page = page.getParent();
        }
      } else { // 没有指定根栏目
        TreeTag tt = (TreeTag) TagSupport.findAncestorWithClass(this, TreeTag.class);
        if (tt != null) page = tt.getPage();
        else page = sc.getBranch().getHome(re);
      }

      if (page == null) return SKIP_BODY;

      m_enum = Collections.enumeration(page.getPages(re, false, true));
      Object next = nextElement();
      if (next == null) return SKIP_BODY;

      m_bFirst = true;

      if (m_strName != null) pageContext.setAttribute(m_strName, next);
      return EVAL_BODY_BUFFERED;
    } catch (Exception e) {
      e.printStackTrace();
      throw new JspException(e.getMessage());
    }
  }
  @Override
  protected final int doStartTagInternal() throws JspException {
    if (this.value != null) {
      // Find the containing EditorAwareTag (e.g. BindTag), if applicable.
      EditorAwareTag tag =
          (EditorAwareTag) TagSupport.findAncestorWithClass(this, EditorAwareTag.class);
      if (tag == null) {
        throw new JspException(
            "TransformTag can only be used within EditorAwareTag (e.g. BindTag)");
      }

      // OK, let's obtain the editor...
      String result = null;
      PropertyEditor editor = tag.getEditor();
      if (editor != null) {
        // If an editor was found, edit the value.
        editor.setValue(this.value);
        result = editor.getAsText();
      } else {
        // Else, just do a toString.
        result = this.value.toString();
      }
      result = htmlEscape(result);
      if (this.var != null) {
        pageContext.setAttribute(this.var, result, TagUtils.getScope(this.scope));
      } else {
        try {
          // Else, just print it out.
          pageContext.getOut().print(result);
        } catch (IOException ex) {
          throw new JspException(ex);
        }
      }
    }

    return SKIP_BODY;
  }
Example #28
0
 public void release() {
   super.release();
   init();
 }
// Decompiled by DJ v3.5.5.77 Copyright 2003 Atanas Neshkov  Date: 12/11/2006 9:50:27 AM
Example #30
0
 /** Release all allocated resources. */
 public void release() {
   super.release();
   clazz = null;
   scope = Constants.class.getName();
 }