Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for addChildUrlFromTagAttribute (0.08 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java

         * @param encoding the character encoding to use
         * @deprecated Use {@link #addChildUrlFromTagAttribute(List, URI, String, String)} instead.
         */
        @Deprecated
        protected void addChildUrlFromTagAttribute(final List<String> urlList, final URL url, final String attrValue, final String encoding) {
            try {
                addChildUrlFromTagAttribute(urlList, url.toURI(), attrValue, encoding);
            } catch (final URISyntaxException e) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Nov 29 07:42:33 UTC 2025
    - 30.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

         * @param attrValue the attribute value containing the URL
         * @param encoding the character encoding
         */
        @Override
        protected void addChildUrlFromTagAttribute(final List<String> urlList, final URI uri, final String attrValue, final String encoding) {
            final String urlValue = attrValue.trim();
            String u = null;
            try {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Dec 12 13:58:40 UTC 2025
    - 54.6K bytes
    - Viewed (0)
Back to top