diff options
author | Tom Faulhaber <git_net@infolace.com> | 2009-08-02 23:59:17 -0700 |
---|---|---|
committer | Tom Faulhaber <git_net@infolace.com> | 2009-08-02 23:59:17 -0700 |
commit | 8377c6897dc9b9d104721559df5fdc76731e8b8f (patch) | |
tree | b33dcbf5fd0b6c25f019e2334f911182f4f902bc /repl-utils-api.html | |
parent | 69daa9c6d4a4f461f43526d5b0b3bd87fa359a10 (diff) |
Updated documentation for commit dcec88467e840c0120e9f27f2020636857692800
Diffstat (limited to 'repl-utils-api.html')
-rw-r--r-- | repl-utils-api.html | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/repl-utils-api.html b/repl-utils-api.html index 389ca719..d9582d45 100644 --- a/repl-utils-api.html +++ b/repl-utils-api.html @@ -108,7 +108,7 @@ by <span id="author">Chris Houser, Christophe Grand, Stephen Gilardi</span><br / <pre id="var-usage"></pre> <pre id="var-docstr">Ref to a list of local paths for Javadoc-generated HTML files.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/3ec66e7b4e47c95d4cc27b0c405447117b2d5503/src/clojure/contrib/repl_utils/javadoc.clj#L18" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/dcec88467e840c0120e9f27f2020636857692800/src/clojure/contrib/repl_utils/javadoc.clj#L18" id="var-source">Source</a> </div><div id="var-entry"> <hr /> <h2 id="repl-utils/*remote-javadocs*">*remote-javadocs*</h2> @@ -116,7 +116,7 @@ files.</pre> <pre id="var-usage"></pre> <pre id="var-docstr">Ref to a map from package name prefixes to URLs for remote Javadocs.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/3ec66e7b4e47c95d4cc27b0c405447117b2d5503/src/clojure/contrib/repl_utils/javadoc.clj#L28" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/dcec88467e840c0120e9f27f2020636857692800/src/clojure/contrib/repl_utils/javadoc.clj#L28" id="var-source">Source</a> </div><div id="var-entry"> <hr /> <h2 id="repl-utils/add-break-thread!">add-break-thread!</h2> @@ -127,7 +127,7 @@ Javadocs.</pre> <pre id="var-docstr">Add the given thread to break-threads so that it will be stopped any time the user presses Ctrl-C. Calls start-handling-break for you. Adds the current thread if none is given.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/3ec66e7b4e47c95d4cc27b0c405447117b2d5503/src/clojure/contrib/repl_utils.clj#L149" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/dcec88467e840c0120e9f27f2020636857692800/src/clojure/contrib/repl_utils.clj#L149" id="var-source">Source</a> </div><div id="var-entry"> <hr /> <h2 id="repl-utils/add-local-javadoc">add-local-javadoc</h2> @@ -135,7 +135,7 @@ you. Adds the current thread if none is given.</pre> <pre id="var-usage">Usage: (add-local-javadoc path) </pre> <pre id="var-docstr">Adds to the list of local Javadoc paths.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/3ec66e7b4e47c95d4cc27b0c405447117b2d5503/src/clojure/contrib/repl_utils/javadoc.clj#L43" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/dcec88467e840c0120e9f27f2020636857692800/src/clojure/contrib/repl_utils/javadoc.clj#L43" id="var-source">Source</a> </div><div id="var-entry"> <hr /> <h2 id="repl-utils/add-remote-javadoc">add-remote-javadoc</h2> @@ -144,14 +144,14 @@ you. Adds the current thread if none is given.</pre> </pre> <pre id="var-docstr">Adds to the list of remote Javadoc URLs. package-prefix is the beginning of the package name that has docs at this URL.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/3ec66e7b4e47c95d4cc27b0c405447117b2d5503/src/clojure/contrib/repl_utils/javadoc.clj#L48" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/dcec88467e840c0120e9f27f2020636857692800/src/clojure/contrib/repl_utils/javadoc.clj#L48" id="var-source">Source</a> </div><div id="var-entry"> <hr /> <h2 id="repl-utils/break-threads">break-threads</h2> <span id="var-type">var</span><br /> <pre id="var-usage"></pre> <pre id="var-docstr">Threads to stop when Ctrl-C is pressed. See 'add-break-thread!'</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/3ec66e7b4e47c95d4cc27b0c405447117b2d5503/src/clojure/contrib/repl_utils.clj#L130" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/dcec88467e840c0120e9f27f2020636857692800/src/clojure/contrib/repl_utils.clj#L130" id="var-source">Source</a> </div><div id="var-entry"> <hr /> <h2 id="repl-utils/expression-info">expression-info</h2> @@ -165,7 +165,7 @@ not type info can be determined at compile-time. Example: (expression-info '(+ (int 5) (float 10))) Returns: {:class float, :primitive? true}</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/3ec66e7b4e47c95d4cc27b0c405447117b2d5503/src/clojure/contrib/repl_utils.clj#L162" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/dcec88467e840c0120e9f27f2020636857692800/src/clojure/contrib/repl_utils.clj#L162" id="var-source">Source</a> </div><div id="var-entry"> <hr /> <h2 id="repl-utils/find-javadoc-url">find-javadoc-url</h2> @@ -174,7 +174,7 @@ Returns: {:class float, :primitive? true}</pre> </pre> <pre id="var-docstr">Searches for a URL for the given class name. Tries *local-javadocs* first, then *remote-javadocs*. Returns a string.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/3ec66e7b4e47c95d4cc27b0c405447117b2d5503/src/clojure/contrib/repl_utils/javadoc.clj#L54" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/dcec88467e840c0120e9f27f2020636857692800/src/clojure/contrib/repl_utils/javadoc.clj#L54" id="var-source">Source</a> </div><div id="var-entry"> <hr /> <h2 id="repl-utils/get-source">get-source</h2> @@ -188,7 +188,7 @@ it can't find the source. For most REPL usage, 'source' is more convenient. Example: (get-source 'filter)</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/3ec66e7b4e47c95d4cc27b0c405447117b2d5503/src/clojure/contrib/repl_utils.clj#L97" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/dcec88467e840c0120e9f27f2020636857692800/src/clojure/contrib/repl_utils.clj#L97" id="var-source">Source</a> </div><div id="var-entry"> <hr /> <h2 id="repl-utils/javadoc">javadoc</h2> @@ -197,7 +197,7 @@ Example: (get-source 'filter)</pre> </pre> <pre id="var-docstr">Opens a browser window displaying the javadoc for the argument. Tries *local-javadocs* first, then *remote-javadocs*.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/3ec66e7b4e47c95d4cc27b0c405447117b2d5503/src/clojure/contrib/repl_utils/javadoc.clj#L74" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/dcec88467e840c0120e9f27f2020636857692800/src/clojure/contrib/repl_utils/javadoc.clj#L74" id="var-source">Source</a> </div><div id="var-entry"> <hr /> <h2 id="repl-utils/run">run</h2> @@ -206,7 +206,7 @@ Tries *local-javadocs* first, then *remote-javadocs*.</pre> </pre> <pre id="var-docstr">Loads the specified namespace and invokes its "main" function with optional args. ns-name is not evaluated.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/3ec66e7b4e47c95d4cc27b0c405447117b2d5503/src/clojure/contrib/repl_utils.clj#L187" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/dcec88467e840c0120e9f27f2020636857692800/src/clojure/contrib/repl_utils.clj#L187" id="var-source">Source</a> </div><div id="var-entry"> <hr /> <h2 id="repl-utils/run*">run*</h2> @@ -215,7 +215,7 @@ optional args. ns-name is not evaluated.</pre> </pre> <pre id="var-docstr">Loads the specified namespace and invokes its "main" function with optional args.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/3ec66e7b4e47c95d4cc27b0c405447117b2d5503/src/clojure/contrib/repl_utils.clj#L180" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/dcec88467e840c0120e9f27f2020636857692800/src/clojure/contrib/repl_utils.clj#L180" id="var-source">Source</a> </div><div id="var-entry"> <hr /> <h2 id="repl-utils/show">show</h2> @@ -239,7 +239,7 @@ predicate will be passed a single argument, a map that includes the all the properies of the member object as translated by 'bean'. Examples: (show Integer) (show []) (show String 23) (show String "case")</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/3ec66e7b4e47c95d4cc27b0c405447117b2d5503/src/clojure/contrib/repl_utils.clj#L59" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/dcec88467e840c0120e9f27f2020636857692800/src/clojure/contrib/repl_utils.clj#L59" id="var-source">Source</a> </div><div id="var-entry"> <hr /> <h2 id="repl-utils/source">source</h2> @@ -251,7 +251,7 @@ This requires that the symbol resolve to a Var defined in a namespace for which the .clj is in the classpath. Example: (source filter)</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/3ec66e7b4e47c95d4cc27b0c405447117b2d5503/src/clojure/contrib/repl_utils.clj#L118" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/dcec88467e840c0120e9f27f2020636857692800/src/clojure/contrib/repl_utils.clj#L118" id="var-source">Source</a> </div><div id="var-entry"> <hr /> <h2 id="repl-utils/start-handling-break">start-handling-break</h2> @@ -260,7 +260,7 @@ Example: (source filter)</pre> </pre> <pre id="var-docstr">Register INT signal handler. After calling this, Ctrl-C will cause all break-threads to be stopped. See 'add-break-thread!'</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/3ec66e7b4e47c95d4cc27b0c405447117b2d5503/src/clojure/contrib/repl_utils.clj#L134" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/dcec88467e840c0120e9f27f2020636857692800/src/clojure/contrib/repl_utils.clj#L134" id="var-source">Source</a> </div> |