aboutsummaryrefslogtreecommitdiff
path: root/src/clojure/contrib
AgeCommit message (Collapse)Author
2009-08-21Translated Jeffrey's overview of Datalog from the old google code wiki intoTom Faulhaber
the new documentation structure.
2009-08-21java_utils.clj Correct previous commit with duplicate definition of as-strStuart Sierra
2009-08-21java_utils.clj: made as-str variadic like str, fixes #18Stuart Sierra
This commit also includes tests for this function.
2009-08-20http/agent.clj: fix missing @ in 'message'Stuart Sierra
2009-08-20http/agent.clj: handle null response stream on disconnectStuart Sierra
2009-08-20http/agent.clj: handle null InputStream from HTTP responseStuart Sierra
2009-08-20base64.clj: added namespace metadata docStuart Sierra
2009-08-20str_utils2.clj: added partial, with testsStuart Sierra
Alternate definition of partial for fns that take their primary argument first.
2009-08-19base64.clj: performance enhancement for encodeStuart Sierra
Use boxed Integers instead of primitive bytes, because Clojure's bit operations only support Integer, Long, and BigInteger.
2009-08-19base64.clj: Base-64 encodingStuart Sierra
Next step: implement decoding!
2009-08-19str_utils2.clj: added repeat and reverse, with testsStuart Sierra
2009-08-19str_utils2.clj: modified header commentsStuart Sierra
2009-08-19str_utils2.clj: modified doc string for escapeStuart Sierra
2009-08-19str_utils2.clj: added map-str and grep from CompojureStuart Sierra
2009-08-19str_utils2.clj: avoid error on zero-length string in chopStuart Sierra
2009-08-19test_contrib/str_utils2.clj: added lots more testsStuart Sierra
This should provide complete coverage of str-utils2
2009-08-19str_utils2.clj: added type hints to avoid reflectionStuart Sierra
2009-08-19monads: correction in commentKonrad Hinsen
2009-08-19macro-utils: removed unused dependency on walkKonrad Hinsen
2009-08-18str_utils2.clj: fix escape so it actually works, add testsStuart Sierra
2009-08-18str_utils2.clj: explain argument order of take/drop/butlast, refs #17Stuart Sierra
2009-08-18str_utils2.clj: implemented swap-case, added capitalizeStuart Sierra
2009-08-18http/agent.clj: fixed misplaced parenthesisStuart Sierra
2009-08-18http/agent.clj: added type hints to avoid reflectionStuart Sierra
2009-08-17Merge branch 'master' of git@github.com:richhickey/clojure-contribStuart Halloway
2009-08-17http/agent.clj: fix documentation of 'headers' functionStuart Sierra
This function uses keywords for header names, not strings.
2009-08-17http/agent.clj: more documentation, refs #15Stuart Sierra
2009-08-17http/agent.clj: added documentation and examples, refs #15Stuart Sierra
2009-08-17duck_streams.clj: use correct array size, Fixes #16Stuart Sierra
2009-08-17http/agent.clj: streamlined interface, refs #15Stuart Sierra
This brings http.agent close to completion.
2009-08-17Implementation changes to improve performanceTom Faulhaber
see #14 Signed-off-by: Tom Faulhaber <git_net@infolace.com>
2009-08-17Documentation updateTom Faulhaber
2009-08-15java_utils.clj: added type hints to avoid reflectionStuart Sierra
2009-08-15duck_streams.clj: added type hints to avoid reflectionStuart Sierra
2009-08-15http/connection.clj: added type hintsStuart Sierra
2009-08-15as-url addition from James ReevesStuart Halloway
2009-08-15better doc metadata for jmxStuart Halloway
2009-08-14http/agent.clj: allow handling of stream as it is receivedStuart Sierra
This changes the meaning of the :on-success and :on-failure callback functions; they are now called as soon as the response body stream is ready, and they can consume the InputStream directly.
2009-08-14http/agent.clj: added predicates to test response code rangesStuart Sierra
Renamed "request-success?" to "success?"
2009-08-14http/agent.clj: allow encoding argument on response-body-strStuart Sierra
2009-08-14http/agent.clj: added response-success?Stuart Sierra
2009-08-14http/connection.clj: set streaming mode before calling connect methodStuart Sierra
Patch from drewr, http://paste.lisp.org/display/85390
2009-08-12http/connection.clj: fixed typo in method nameStuart Sierra
2009-08-07Fixes #12; log-system ref is now always returned.Tom Faulhaber
2009-08-07Fixes #11; log-ns is now captured at macro-expansion-time.Tom Faulhaber
2009-08-07Added type hints to remove reflection when implementation-specific functions ↵Tom Faulhaber
are invoked. Fixes #10
2009-08-06clojure.contrib.jmxStuart Halloway
2009-08-05minor fix to deftrace: traced functions can now refer to themselvesStuart Halloway
2009-08-04Added level-specific convenience log macros. Improved documentation.Alexander Taggart
2009-08-02Improved the common code shared between direct and agent-based logging. ↵Alexander Taggart
Added docs to structs and special vars.