aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-07-23update strint to use clojure.core/slurpAaron Bedra and Stuart Halloway
2010-07-23deprecations in str-utils, str-utils2, stringAaron Bedra and Stuart Halloway
2010-07-23deprecated shell and shell-out. moved to clojure.java.shellAaron Bedra and Stuart Halloway
2010-07-23deprecations in c.c.setAaron Bedra and Stuart Halloway
2010-07-23fix duplicate key (weird git merge?)Aaron Bedra and Stuart Halloway
2010-07-23deprecate seq-utils. use clojure.core or c.c.seqAaron Bedra and Stuart Halloway
2010-07-23marking deprecations in repl-utilsAaron Bedra and Stuart Halloway
2010-07-23properties is deprecated (moved to java-utils)Aaron Bedra and Stuart Halloway
2010-07-23pprint is deprecated (promoted to clojure.pprint)Aaron Bedra and Stuart Halloway
2010-07-23update monadic-io-streams to use clojure.java.ioAaron Bedra and Stuart Halloway
2010-07-23deprecating javadoc (moved to clojure)Aaron Bedra and Stuart Halloway
2010-07-23marking deprecations in java-utilsAaron Bedra and Stuart Halloway
2010-07-23mark deprecations in ioAaron Bedra and Stuart Halloway
2010-07-23deprecate http.agent http.connectionAaron Bedra and Stuart Halloway
2010-07-23deprecated duck-streamsAaron Bedra and Stuart Halloway
2010-07-23deprecate apply-macroAaron Bedra and Stuart Halloway
2010-07-23use the 1.2 metadata reader macro ^ instead of #^Aaron Bedra and Stuart Halloway
2010-07-18Fixed two incorrectly indented lines in clojure.contrib.priority-mapMark Engelberg
2010-07-18Fixed hashCode of priority maps in clojure.contrib.priority-mapMark Engelberg
2010-07-17Added priority_map.cljMark Engelberg
2010-06-30Deprecate pprintTom Faulhaber
2010-06-25fixes for equiv compatRich Hickey
2010-06-23fixes for equiv compatRich Hickey
2010-06-18make loop/recur match for num compatRich Hickey
2010-06-18added needed cast for jmx testRich Hickey
2010-06-17fix for num compatRich Hickey
2010-06-15prefer quot over unchecked-divideRich Hickey
2010-06-15change from prim coercion to boxed coercion in order to see particular boxed ↵Rich Hickey
type
2010-06-15move tests into range of longRich Hickey
2010-06-15Implement :connect-timeout and :read-timeout in http.agentStuart Sierra
2010-06-08doc fixStuart Halloway
2010-06-08added missing :imports for Writer type hintsRich Hickey
2010-05-25generic.comparison: implement default inequalities on java.lang.Number ↵Konrad Hinsen
rather than java.lang.Object
2010-05-21dodge ns collisions with clojure.java.ioStuart 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-06hack for #82, very uglyStuart Halloway
2010-05-05keep deprecated version of seq fns, safe(r) now that we have "last var wins"Stuart Halloway
2010-05-03put includes? back into the seq namespacesStuart Halloway
- seq-contains? is dead in clojure - includes? is deprecated, but no need to gratuitously break people
2010-05-01removed seq-contains? callsRich Hickey
2010-05-01Remove debug prints :-(. See #47Tom Faulhaber
2010-05-01clojure.contrib.pprint (cl-format): Fixes to rounding and width issues in ~f ↵Tom Faulhaber
and ~$. See #47.
2010-04-29Remove gen-class requirement from clojure.contrib.pprint. See #81Tom Faulhaber
2010-04-28update contrib to remove seq fns promoted to clojure.coreStuart Halloway
2010-04-28Copy deleted/renamed namespaces from 1.1 release; refs #79Stuart 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 JDKStuart Halloway
2010-04-14some tests for c.c.io byte-level supportStuart Halloway
2010-04-14c.c.io provides input-stream and output-stream for byte-oriented I/OBen 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-13test-load-all tries to load all nondeprecated namespacesStuart Halloway
- fixed bug: misspelling in pom - updated gen-html-docs to track c.c.string name changes
2010-04-12strint per Chas EmerickStuart Halloway
2010-04-12-?>> per Chas EmerickStuart Halloway