Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-07-23 | update strint to use clojure.core/slurp | Aaron Bedra and Stuart Halloway | |
2010-07-23 | deprecations in str-utils, str-utils2, string | Aaron Bedra and Stuart Halloway | |
2010-07-23 | deprecated shell and shell-out. moved to clojure.java.shell | Aaron Bedra and Stuart Halloway | |
2010-07-23 | deprecations in c.c.set | Aaron Bedra and Stuart Halloway | |
2010-07-23 | fix duplicate key (weird git merge?) | Aaron Bedra and Stuart Halloway | |
2010-07-23 | deprecate seq-utils. use clojure.core or c.c.seq | Aaron Bedra and Stuart Halloway | |
2010-07-23 | marking deprecations in repl-utils | Aaron Bedra and Stuart Halloway | |
2010-07-23 | properties is deprecated (moved to java-utils) | Aaron Bedra and Stuart Halloway | |
2010-07-23 | pprint is deprecated (promoted to clojure.pprint) | Aaron Bedra and Stuart Halloway | |
2010-07-23 | update monadic-io-streams to use clojure.java.io | Aaron Bedra and Stuart Halloway | |
2010-07-23 | deprecating javadoc (moved to clojure) | Aaron Bedra and Stuart Halloway | |
2010-07-23 | marking deprecations in java-utils | Aaron Bedra and Stuart Halloway | |
2010-07-23 | mark deprecations in io | Aaron Bedra and Stuart Halloway | |
2010-07-23 | deprecate http.agent http.connection | Aaron Bedra and Stuart Halloway | |
2010-07-23 | deprecated duck-streams | Aaron Bedra and Stuart Halloway | |
2010-07-23 | deprecate apply-macro | Aaron Bedra and Stuart Halloway | |
2010-07-23 | use the 1.2 metadata reader macro ^ instead of #^ | Aaron Bedra and Stuart Halloway | |
2010-07-18 | Fixed two incorrectly indented lines in clojure.contrib.priority-map | Mark Engelberg | |
2010-07-18 | Fixed hashCode of priority maps in clojure.contrib.priority-map | Mark Engelberg | |
2010-07-17 | Added priority_map.clj | Mark Engelberg | |
2010-06-30 | Deprecate pprint | Tom Faulhaber | |
2010-06-25 | fixes for equiv compat | Rich Hickey | |
2010-06-23 | fixes for equiv compat | Rich Hickey | |
2010-06-18 | make loop/recur match for num compat | Rich Hickey | |
2010-06-18 | added needed cast for jmx test | Rich Hickey | |
2010-06-17 | fix for num compat | Rich Hickey | |
2010-06-15 | prefer quot over unchecked-divide | Rich Hickey | |
2010-06-15 | change from prim coercion to boxed coercion in order to see particular boxed ↵ | Rich Hickey | |
type | |||
2010-06-15 | move tests into range of long | Rich Hickey | |
2010-06-15 | Implement :connect-timeout and :read-timeout in http.agent | Stuart Sierra | |
2010-06-08 | doc fix | Stuart Halloway | |
2010-06-08 | added missing :imports for Writer type hints | Rich Hickey | |
2010-05-25 | generic.comparison: implement default inequalities on java.lang.Number ↵ | Konrad Hinsen | |
rather than java.lang.Object | |||
2010-05-21 | dodge ns collisions with clojure.java.io | Stuart Halloway | |
2010-05-07 | - refactored input-stream, output-stream, reader, and writer into a Streams ↵ | Chas Emerick | |
protocol - added appropriate protocol implementations for byte and character arrays - eliminated PrintWriter returns from writer impls, write-lines, and spit - added copy implementations reading from character arrays Signed-off-by: Stuart Halloway <stu@thinkrelevance.com> | |||
2010-05-06 | hack for #82, very ugly | Stuart Halloway | |
2010-05-05 | keep deprecated version of seq fns, safe(r) now that we have "last var wins" | Stuart Halloway | |
2010-05-03 | put includes? back into the seq namespaces | Stuart Halloway | |
- seq-contains? is dead in clojure - includes? is deprecated, but no need to gratuitously break people | |||
2010-05-01 | removed seq-contains? calls | Rich Hickey | |
2010-05-01 | Remove debug prints :-(. See #47 | Tom Faulhaber | |
2010-05-01 | clojure.contrib.pprint (cl-format): Fixes to rounding and width issues in ~f ↵ | Tom Faulhaber | |
and ~$. See #47. | |||
2010-04-29 | Remove gen-class requirement from clojure.contrib.pprint. See #81 | Tom Faulhaber | |
2010-04-28 | update contrib to remove seq fns promoted to clojure.core | Stuart Halloway | |
2010-04-28 | Copy deleted/renamed namespaces from 1.1 release; refs #79 | Stuart Sierra | |
* For backward compatibility with 1.1 release. * Namespaces copied: duck-streams, java-utils, seq-utils, shell-out, str-utils, str-utils2. * These namespaces can be marked as deprecated. * They are copied rather than simply aliased because some behavior has changed. | |||
2010-04-27 | #78 relaxing test expectations to eliminate spurious errors on IBM JDK | Stuart Halloway | |
2010-04-14 | some tests for c.c.io byte-level support | Stuart Halloway | |
2010-04-14 | c.c.io provides input-stream and output-stream for byte-oriented I/O | Ben Smith-Mannschott | |
clojure.contrib.io already supports character-oriented I/O through the multi-methods reader and writer. This patch adds support for byte-oriented I/O by providing the multi-methods input-stream and output-stream. * input-stream knows how to open InputStreams for reading bytes. * reader has been refactored to build on input-stream. * output-stream knows how to open OutputStreams for writing bytes. * writer has been refactored to build on output-stream (where sensible) By recognizing that output-stream will throw exceptions for us if it's unable to open the underlying resource, we were able to use the :default method to cover URL, URI and Socket. The String writer has not been touched. (Writing it in terms of output-stream would have made it longer and more complex.) * *append-to-writer* has been renamed to *append* for use with output-streams without souding foolish. This is a breaking change for clients that bind *append-to-writer* instead of calling append-writer or append-split as recommended in the docsting. * Like writer, output-stream consults the current binding of *append*. * append-output-stream is analagous to append-writer. Like append-writer, the implementation looks very general, but in reality it only works for files. Signed-off-by: Stuart Halloway <stu@thinkrelevance.com> | |||
2010-04-13 | test-load-all tries to load all nondeprecated namespaces | Stuart Halloway | |
- fixed bug: misspelling in pom - updated gen-html-docs to track c.c.string name changes | |||
2010-04-12 | strint per Chas Emerick | Stuart Halloway | |
2010-04-12 | -?>> per Chas Emerick | Stuart Halloway | |