diff options
author | Tom Faulhaber <git_net@infolace.com> | 2009-08-20 08:39:31 -0700 |
---|---|---|
committer | Tom Faulhaber <git_net@infolace.com> | 2009-08-20 08:39:31 -0700 |
commit | a8faf30102891ba6fb4f3ee5f107097068e8c674 (patch) | |
tree | c95c4369df7bfb156f8a256a6fcc79cef3e046c8 | |
parent | 4403ef29108373713942556011e43470720ceb41 (diff) |
Updated documentation for commit 7b661cfc55e2293d14bed4fd801c017b3f68d291
-rw-r--r-- | api-index.json | 11 | ||||
-rw-r--r-- | base64-api.html | 11 | ||||
-rw-r--r-- | index.html | 7 |
3 files changed, 18 insertions, 11 deletions
diff --git a/api-index.json b/api-index.json index d2332bcf..0c3badc1 100644 --- a/api-index.json +++ b/api-index.json @@ -16,12 +16,13 @@ "doc": "Miscellaneous agent utilities\n(note to other contrib members: feel free to add to this lib)"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/54a19a97e34c04dd7f9410e7683b13c240241458/src/clojure/contrib/base64.clj", + "http://github.com/richhickey/clojure-contrib/blob/7b661cfc55e2293d14bed4fd801c017b3f68d291/src/clojure/contrib/base64.clj", "wiki-url": "http://richhickey.github.com/clojure-contrib/base64-api.html", "name":"clojure.contrib.base64", - "author":null, - "doc":null}, + "author":"Stuart Sierra", + "doc": + "Base-64 encoding and (maybe later) decoding. \n\nThis is mainly here as an example. It is much slower than the\nApache Commons Codec implementation or sun.misc.BASE64Encoder."}, {"source-url": "http://github.com/richhickey/clojure-contrib/blob/a4b8d24cb2f4e79fa3856db37d5fcf1d94003b30/src/clojure/contrib/classpath.clj", "wiki-url": @@ -787,7 +788,7 @@ "Capture the current value of the specified vars and rebind \nthem on the agent thread before executing the action.\n\nExample:\n (capture-and-send [*out*] a f b c)", "name":"capture-and-send"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/54a19a97e34c04dd7f9410e7683b13c240241458/src/clojure/contrib/base64.clj#L22", + "http://github.com/richhickey/clojure-contrib/blob/7b661cfc55e2293d14bed4fd801c017b3f68d291/src/clojure/contrib/base64.clj#L27", "wiki-url": "http://richhickey.github.com/clojure-contrib//base64-api.html#base64/encode", "namespace":"clojure.contrib.base64", @@ -796,7 +797,7 @@ "Encodes bytes of input, writing Base 64 text on output. alphabet\nis a 65-character String containing the 64 characters to use in the\nencoding; the 65th character is the pad character. line-length is\nthe maximum number of characters per line, nil for no line breaks.", "name":"encode"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/54a19a97e34c04dd7f9410e7683b13c240241458/src/clojure/contrib/base64.clj#L74", + "http://github.com/richhickey/clojure-contrib/blob/7b661cfc55e2293d14bed4fd801c017b3f68d291/src/clojure/contrib/base64.clj#L79", "wiki-url": "http://richhickey.github.com/clojure-contrib//base64-api.html#base64/encode-str", "namespace":"clojure.contrib.base64", diff --git a/base64-api.html b/base64-api.html index efd863bf..f1a02b97 100644 --- a/base64-api.html +++ b/base64-api.html @@ -64,14 +64,17 @@ namespace. </div> </div></div> <div id="content-tag"><div><h1 id="overview">API for <span id="namespace-name">base64</span></h1> -by <span id="author">Unknown</span><br /> +by <span id="author">Stuart Sierra</span><br /> <br />Usage: <pre> (ns your-namespace (:require <span id="long-name">clojure.contrib.base64</span>)) </pre><pre> </pre><h2>Overview</h2> -<pre id="namespace-docstr"></pre> +<pre id="namespace-docstr">Base-64 encoding and (maybe later) decoding. + +This is mainly here as an example. It is much slower than the +Apache Commons Codec implementation or sun.misc.BASE64Encoder.</pre> <br /> <h2>Public Variables and Functions</h2> <div id="var-entry"> @@ -85,7 +88,7 @@ by <span id="author">Unknown</span><br /> is a 65-character String containing the 64 characters to use in the encoding; the 65th character is the pad character. line-length is the maximum number of characters per line, nil for no line breaks.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/54a19a97e34c04dd7f9410e7683b13c240241458/src/clojure/contrib/base64.clj#L22" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/7b661cfc55e2293d14bed4fd801c017b3f68d291/src/clojure/contrib/base64.clj#L27" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -96,7 +99,7 @@ the maximum number of characters per line, nil for no line breaks.</pre> </pre> <pre id="var-docstr">Encodes String in base 64; returns a String. If not specified, encoding is UTF-8 and line-length is nil.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/54a19a97e34c04dd7f9410e7683b13c240241458/src/clojure/contrib/base64.clj#L74" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/7b661cfc55e2293d14bed4fd801c017b3f68d291/src/clojure/contrib/base64.clj#L79" id="var-source">Source</a> </div> @@ -399,9 +399,12 @@ accumulators.</pre> <br /> <hr /> <h2 id="base64">base64</h2> - by <span id="author">unknown author</span><br /> + by <span id="author">Stuart Sierra</span><br /> API documentation <a href="base64-api.html" id="api-link">here</a><br /> - <pre id="namespace-docstr"></pre> + <pre id="namespace-docstr">Base-64 encoding and (maybe later) decoding. + +This is mainly here as an example. It is much slower than the +Apache Commons Codec implementation or sun.misc.BASE64Encoder.</pre> Public variables and functions: <span id="var-link"><a href="base64-api.html#base64/encode" id="var-tag">encode</a> </span><span id="var-link"><a href="base64-api.html#base64/encode-str" id="var-tag">encode-str</a> </span><br /> |