Package org.apache.wicket.util.string

Examples of org.apache.wicket.util.string.PrependingStringBuffer.prepend()


     * to replace it by prepending a path separator, as this identification can be assigned to
     * an submit form component name
     */
    if ("submit".equals(inputName.toString()))
    {
      inputName.prepend(Component.PATH_SEPARATOR);
    }
    return inputName.toString();
  }

  /**
 
View Full Code Here


  {
    PrependingStringBuffer buffer = new PrependingStringBuffer();
    Url filterPrefixUrl = Url.parse(filterPrefix, getCharset());
    for (int i = 0; i < filterPrefixUrl.getSegments().size() - 1; ++i)
    {
      buffer.prepend("../");
    }
    return buffer.toString();
  }

  @Override
View Full Code Here

    String id = component.getId();
    final PrependingStringBuffer inputName = new PrependingStringBuffer(id.length());
    Component c = component;
    while (true)
    {
      inputName.prepend(id);
      c = c.getParent();
      if (c == null || (c instanceof Form<?> && ((Form<?>)c).isRootForm()) ||
        c instanceof Page)
      {
        break;
View Full Code Here

      if (c == null || (c instanceof Form<?> && ((Form<?>)c).isRootForm()) ||
        c instanceof Page)
      {
        break;
      }
      inputName.prepend(Component.PATH_SEPARATOR);
      id = c.getId();
    }

    /*
     * having input name "submit" causes problems with JavaScript, so we create a unique string
View Full Code Here

     * to replace it by prepending a path separator, as this identification can be assigned to
     * an submit form component name
     */
    if ("submit".equals(inputName.toString()))
    {
      inputName.prepend(Component.PATH_SEPARATOR);
    }
    return inputName.toString();
  }

  /**
 
View Full Code Here

        // Servlet/Filter, with no leading '/'.
        PrependingStringBuffer prepender = new PrependingStringBuffer(url.toString());

        // Prepend prefix to the URL to make it relative to the current
        // request.
        prepender.prepend(requestCycle.getRequest().getRelativePathPrefixToWicketHandler());

        result = prepender.toString();
        // We need to special-case links to the home page if we're at the
        // same level.
        if (result.length() == 0)
View Full Code Here

    for (int i = 0; i < wicketPath.length(); i++)
    {
      if (wicketPath.charAt(i) == '/')
      {
        prepender.prepend("../");
      }
    }
    return relativePathPrefixToContextRoot = prepender.toString();
  }
View Full Code Here

    // original page.
    if (!portletRequest && isAjax())
    {
      for (int i = 0; i < getRequestParameters().getUrlDepth(); i++)
      {
        prepender.prepend("../");
      }
      return relativePathPrefixToWicketHandler = prepender.toString();
    }

    String relativeUrl = getPath();
View Full Code Here

      errorUrl = errorUrl.substring(httpRequest.getContextPath().length());

      String servletPath = httpRequest.getServletPath();
      if (!errorUrl.startsWith(servletPath))
      {
        prepender.prepend(servletPath.substring(1) + "/");
      }
      for (int i = servletPath.length() + 1; i < errorUrl.length(); i++)
      {
        if (errorUrl.charAt(i) == '?')
        {
View Full Code Here

        {
          break;
        }
        if (errorUrl.charAt(i) == '/')
        {
          prepender.prepend("../");
        }
      }
      return relativePathPrefixToWicketHandler = prepender.toString();
    }
    else if (wicketRedirectUrl != null)
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.