Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 028E7200CBC for ; Tue, 20 Jun 2017 18:33:25 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 013C9160BE1; Tue, 20 Jun 2017 16:33:25 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 5B715160BF7 for ; Tue, 20 Jun 2017 18:33:21 +0200 (CEST) Received: (qmail 14716 invoked by uid 500); 20 Jun 2017 16:33:20 -0000 Mailing-List: contact commits-help@jspwiki.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@jspwiki.apache.org Delivered-To: mailing list commits@jspwiki.apache.org Received: (qmail 14487 invoked by uid 99); 20 Jun 2017 16:33:18 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Jun 2017 16:33:18 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 96DA7DFA6C; Tue, 20 Jun 2017 16:33:17 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: git-site-role@apache.org To: commits@jspwiki.apache.org Date: Tue, 20 Jun 2017 16:34:00 -0000 Message-Id: <93a574ee24d9478e8482c01933d92152@git.apache.org> In-Reply-To: <20d0fb12c09d4643bab3833c66a8d966@git.apache.org> References: <20d0fb12c09d4643bab3833c66a8d966@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [45/51] [partial] jspwiki-site git commit: Automatic Site Publish by Buildbot archived-at: Tue, 20 Jun 2017 16:33:25 -0000 http://git-wip-us.apache.org/repos/asf/jspwiki-site/blob/2e9374f1/apidocs/2.10.1/index.html ---------------------------------------------------------------------- diff --git a/apidocs/2.10.1/index.html b/apidocs/2.10.1/index.html deleted file mode 100755 index d73cb6f..0000000 --- a/apidocs/2.10.1/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - -Apache JSPWiki Main War 2.10.1 API - - - - - - - - - - - -<H2> -Frame Alert</H2> - -<P> -This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. -<BR> -Link to<A HREF="overview-summary.html">Non-frame version.</A> - - - http://git-wip-us.apache.org/repos/asf/jspwiki-site/blob/2e9374f1/apidocs/2.10.1/org/apache/catalina/util/HexUtils.html ---------------------------------------------------------------------- diff --git a/apidocs/2.10.1/org/apache/catalina/util/HexUtils.html b/apidocs/2.10.1/org/apache/catalina/util/HexUtils.html deleted file mode 100755 index 3f2612b..0000000 --- a/apidocs/2.10.1/org/apache/catalina/util/HexUtils.html +++ /dev/null @@ -1,327 +0,0 @@ - - - - - - - -HexUtils (Apache JSPWiki Main War 2.10.1 API) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -org.apache.catalina.util -
-Class HexUtils

-
-java.lang.Object
-  extended by org.apache.catalina.util.HexUtils
-
-
-
-
public final class HexUtils
extends Object
- - - - -
- -

-Library of utility methods useful in dealing with converting byte arrays - to and from strings of hexadecimal digits. - - Note: this package has been stripped of its localization capabilities, - to lessen library dependencies and increase portability. - - ARJ, 4/04 -

- -

-

-
Since:
-
2.3
-
-
- -

- - - - - - - - - - - -
-Constructor Summary
HexUtils() - -
-           
-  - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static Stringconvert(byte[] bytes) - -
-          Convert a byte array into a printable format containing a - String of hexadecimal digit characters (two per byte).
-static byte[]convert(String digits) - -
-          Convert a String of hexadecimal digits into the corresponding - byte array by encoding each two hexadecimal digits as a byte.
-static intconvert2Int(byte[] hex) - -
-          Convert 4 hex digits to an int, and return the number of converted - bytes.
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Constructor Detail
- -

-HexUtils

-
-public HexUtils()
-
-
- - - - - - - - -
-Method Detail
- -

-convert

-
-public static byte[] convert(String digits)
-
-
Convert a String of hexadecimal digits into the corresponding - byte array by encoding each two hexadecimal digits as a byte. -

-

-
Parameters:
digits - Hexadecimal digits representation -
Throws: -
IllegalArgumentException - if an invalid hexadecimal digit - is found, or the input string contains an odd number of hexadecimal - digits
-
-
-
- -

-convert

-
-public static String convert(byte[] bytes)
-
-
Convert a byte array into a printable format containing a - String of hexadecimal digit characters (two per byte). -

-

-
Parameters:
bytes - Byte array representation
-
-
-
- -

-convert2Int

-
-public static int convert2Int(byte[] hex)
-
-
Convert 4 hex digits to an int, and return the number of converted - bytes. -

-

-
Parameters:
hex - Byte array containing exactly four hexadecimal digits -
Throws: -
IllegalArgumentException - if an invalid hexadecimal digit - is included
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
-Copyright © {inceptionYear}-2014 The Apache Software Foundation. All rights reserved. - - http://git-wip-us.apache.org/repos/asf/jspwiki-site/blob/2e9374f1/apidocs/2.10.1/org/apache/catalina/util/HexUtils.png ---------------------------------------------------------------------- diff --git a/apidocs/2.10.1/org/apache/catalina/util/HexUtils.png b/apidocs/2.10.1/org/apache/catalina/util/HexUtils.png deleted file mode 100755 index 7003a59..0000000 Binary files a/apidocs/2.10.1/org/apache/catalina/util/HexUtils.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/jspwiki-site/blob/2e9374f1/apidocs/2.10.1/org/apache/catalina/util/class-use/HexUtils.html ---------------------------------------------------------------------- diff --git a/apidocs/2.10.1/org/apache/catalina/util/class-use/HexUtils.html b/apidocs/2.10.1/org/apache/catalina/util/class-use/HexUtils.html deleted file mode 100755 index 05fbf9d..0000000 --- a/apidocs/2.10.1/org/apache/catalina/util/class-use/HexUtils.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - - - -Uses of Class org.apache.catalina.util.HexUtils (Apache JSPWiki Main War 2.10.1 API) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
org.apache.catalina.util.HexUtils

-
-No usage of org.apache.catalina.util.HexUtils -

-


- - - - - - - - - - - - - - - -
- -
- - - -
-Copyright © {inceptionYear}-2014 The Apache Software Foundation. All rights reserved. - - http://git-wip-us.apache.org/repos/asf/jspwiki-site/blob/2e9374f1/apidocs/2.10.1/org/apache/catalina/util/package-frame.html ---------------------------------------------------------------------- diff --git a/apidocs/2.10.1/org/apache/catalina/util/package-frame.html b/apidocs/2.10.1/org/apache/catalina/util/package-frame.html deleted file mode 100755 index 13d6bf2..0000000 --- a/apidocs/2.10.1/org/apache/catalina/util/package-frame.html +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - -org.apache.catalina.util (Apache JSPWiki Main War 2.10.1 API) - - - - - - - - - - - -org.apache.catalina.util - - - - -
-Classes  - -
-HexUtils
- - - - http://git-wip-us.apache.org/repos/asf/jspwiki-site/blob/2e9374f1/apidocs/2.10.1/org/apache/catalina/util/package-summary.html ---------------------------------------------------------------------- diff --git a/apidocs/2.10.1/org/apache/catalina/util/package-summary.html b/apidocs/2.10.1/org/apache/catalina/util/package-summary.html deleted file mode 100755 index 04185e4..0000000 --- a/apidocs/2.10.1/org/apache/catalina/util/package-summary.html +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - - -org.apache.catalina.util (Apache JSPWiki Main War 2.10.1 API) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-

-Package org.apache.catalina.util -

- - - - - -
- - - - - - - -
-Class Summary
HexUtilsLibrary of utility methods useful in dealing with converting byte arrays - to and from strings of hexadecimal digits.
-  - -

-

-
-
- - - - - - - - - - - - - - - -
- -
- - - -
-Copyright © {inceptionYear}-2014 The Apache Software Foundation. All rights reserved. - - http://git-wip-us.apache.org/repos/asf/jspwiki-site/blob/2e9374f1/apidocs/2.10.1/org/apache/catalina/util/package-summary.png ---------------------------------------------------------------------- diff --git a/apidocs/2.10.1/org/apache/catalina/util/package-summary.png b/apidocs/2.10.1/org/apache/catalina/util/package-summary.png deleted file mode 100755 index a51d619..0000000 Binary files a/apidocs/2.10.1/org/apache/catalina/util/package-summary.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/jspwiki-site/blob/2e9374f1/apidocs/2.10.1/org/apache/catalina/util/package-tree.html ---------------------------------------------------------------------- diff --git a/apidocs/2.10.1/org/apache/catalina/util/package-tree.html b/apidocs/2.10.1/org/apache/catalina/util/package-tree.html deleted file mode 100755 index a55526d..0000000 --- a/apidocs/2.10.1/org/apache/catalina/util/package-tree.html +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - - -org.apache.catalina.util Class Hierarchy (Apache JSPWiki Main War 2.10.1 API) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package org.apache.catalina.util -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

- -
- - - - - - - - - - - - - - - -
- -
- - - -
-Copyright © {inceptionYear}-2014 The Apache Software Foundation. All rights reserved. - - http://git-wip-us.apache.org/repos/asf/jspwiki-site/blob/2e9374f1/apidocs/2.10.1/org/apache/catalina/util/package-use.html ---------------------------------------------------------------------- diff --git a/apidocs/2.10.1/org/apache/catalina/util/package-use.html b/apidocs/2.10.1/org/apache/catalina/util/package-use.html deleted file mode 100755 index f0223d4..0000000 --- a/apidocs/2.10.1/org/apache/catalina/util/package-use.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - - - -Uses of Package org.apache.catalina.util (Apache JSPWiki Main War 2.10.1 API) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
org.apache.catalina.util

-
-No usage of org.apache.catalina.util -

-


- - - - - - - - - - - - - - - -
- -
- - - -
-Copyright © {inceptionYear}-2014 The Apache Software Foundation. All rights reserved. - - http://git-wip-us.apache.org/repos/asf/jspwiki-site/blob/2e9374f1/apidocs/2.10.1/org/apache/wiki/InternalWikiException.html ---------------------------------------------------------------------- diff --git a/apidocs/2.10.1/org/apache/wiki/InternalWikiException.html b/apidocs/2.10.1/org/apache/wiki/InternalWikiException.html deleted file mode 100755 index 8c1a4fc..0000000 --- a/apidocs/2.10.1/org/apache/wiki/InternalWikiException.html +++ /dev/null @@ -1,259 +0,0 @@ - - - - - - - -InternalWikiException (Apache JSPWiki Main War 2.10.1 API) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -org.apache.wiki -
-Class InternalWikiException

-
-java.lang.Object
-  extended by java.lang.Throwable
-      extended by java.lang.Exception
-          extended by java.lang.RuntimeException
-              extended by org.apache.wiki.InternalWikiException
-
-
-
All Implemented Interfaces:
Serializable
-
-
-
-
public class InternalWikiException
extends RuntimeException
- - - - - -
- -

-Denotes something really serious going on inside Wiki. - It is a runtime exception so that the API does not need - to be changed, but it's helluva lot better than NullPointerException =). -

- -

-

-
Since:
-
1.6.9
-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - -
-Constructor Summary
InternalWikiException(String msg) - -
-          Create a new InternalWikiException.
-  - - - - - - - -
-Method Summary
- - - - - - - -
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Constructor Detail
- -

-InternalWikiException

-
-public InternalWikiException(String msg)
-
-
Create a new InternalWikiException. -

-

-
Parameters:
msg - The Exception message.
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
-Copyright © {inceptionYear}-2014 The Apache Software Foundation. All rights reserved. - - http://git-wip-us.apache.org/repos/asf/jspwiki-site/blob/2e9374f1/apidocs/2.10.1/org/apache/wiki/InternalWikiException.png ---------------------------------------------------------------------- diff --git a/apidocs/2.10.1/org/apache/wiki/InternalWikiException.png b/apidocs/2.10.1/org/apache/wiki/InternalWikiException.png deleted file mode 100755 index e1e537f..0000000 Binary files a/apidocs/2.10.1/org/apache/wiki/InternalWikiException.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/jspwiki-site/blob/2e9374f1/apidocs/2.10.1/org/apache/wiki/LinkCollector.html ---------------------------------------------------------------------- diff --git a/apidocs/2.10.1/org/apache/wiki/LinkCollector.html b/apidocs/2.10.1/org/apache/wiki/LinkCollector.html deleted file mode 100755 index 3c03cc0..0000000 --- a/apidocs/2.10.1/org/apache/wiki/LinkCollector.html +++ /dev/null @@ -1,298 +0,0 @@ - - - - - - - -LinkCollector (Apache JSPWiki Main War 2.10.1 API) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -org.apache.wiki -
-Class LinkCollector

-
-java.lang.Object
-  extended by org.apache.wiki.LinkCollector
-
-
-
All Implemented Interfaces:
StringTransmutator
-
-
-
-
public class LinkCollector
extends Object
implements StringTransmutator
- - - - - -
- -

-Just a simple class collecting all of the links that come in. -

- -

-


- -

- - - - - - - - - - - -
-Constructor Summary
LinkCollector() - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
- Collection<String>getLinks() - -
-          Returns a List of Strings representing links.
- Stringmutate(WikiContext context, - String in) - -
-          Returns a changed String, suitable for Wiki context.
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Constructor Detail
- -

-LinkCollector

-
-public LinkCollector()
-
-
- - - - - - - - -
-Method Detail
- -

-getLinks

-
-public Collection<String> getLinks()
-
-
Returns a List of Strings representing links. -

-

-
-
-
- -
Returns:
the link collection
-
-
-
- -

-mutate

-
-public String mutate(WikiContext context,
-                     String in)
-
-
Returns a changed String, suitable for Wiki context. -

-

-
Specified by:
mutate in interface StringTransmutator
-
-
-
Parameters:
context - WikiContext in which mutation is to be done
in - The source string. -
Returns:
The mutated string.
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
-Copyright © {inceptionYear}-2014 The Apache Software Foundation. All rights reserved. - - http://git-wip-us.apache.org/repos/asf/jspwiki-site/blob/2e9374f1/apidocs/2.10.1/org/apache/wiki/LinkCollector.png ---------------------------------------------------------------------- diff --git a/apidocs/2.10.1/org/apache/wiki/LinkCollector.png b/apidocs/2.10.1/org/apache/wiki/LinkCollector.png deleted file mode 100755 index 4e7a09f..0000000 Binary files a/apidocs/2.10.1/org/apache/wiki/LinkCollector.png and /dev/null differ