Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-01-31 | new c.c.json: fix 1 reflective call | Stuart Sierra | |
2010-01-31 | Add c.c.json; replacement for c.c.json.read & c.c.json.write | Stuart Sierra | |
* New library uses protocols. * read-json accepts any String or Reader. * read-json keywordizes keys by default. | |||
2010-01-30 | c.c.json.read: use transients | Stuart Sierra | |
2010-01-30 | c.c.json.read: accept any Reader type; fixes #67 | Stuart Sierra | |
2010-01-30 | fix for aotc, ticket 44; moved impl selection code from macro to runtime eval | Alexander Taggart | |
Signed-off-by: Stuart Sierra <mail@stuartsierra.com> | |||
2010-01-30 | Fix mis-named ns in pprint.gen-class; refs #66 | Stuart Sierra | |
2010-01-30 | pprint: Move gen-class expressions to separate file; refs #65 | Stuart Sierra | |
To avoid order-of-compilation issues, this patch puts the gen-class expressions for ColumnWriter and PrettyWriter in a separate file, rather than in the ns declarations. | |||
2010-01-30 | pprint: require ColumnWriter in PrettyWriter | Stuart Sierra | |
This is an attempt to fix compilation-order issues with gen-class. See http://groups.google.com/group/clojure-maven-plugin/browse_thread/thread/40150bb45270b322 | |||
2010-01-27 | str-utils3: substitute type-specific fns for 'replace' multimethod | Stuart Sierra | |
'replace' doesn't need runtime dispatch, so multimethods are unnecessary performance overhead. New functions: replace-char, replace-str, replace-re, and replace-by | |||
2010-01-26 | Add str-utils3 with tests | Stuart Sierra | |
* most significant argument last, for ->> * 'contains?' renamed 'substring?' * removed 'partial' | |||
2010-01-20 | Add "dist" assembly for distribution ZIP/tar files. | Stuart Sierra | |
2010-01-20 | Remove clojure.contrib.test-contrib | Stuart Sierra | |
"mvn clojure:test" is equivalent | |||
2010-01-20 | Remove tests for clojure.contrib.walk (obsolete) | Stuart Sierra | |
2010-01-20 | Move example sources to separate dir. | Stuart Sierra | |
2010-01-20 | Move source files into Maven-style directory structure. | Stuart Sierra | |
2010-01-14 | macro-utils: support new deftype and reify forms | Konrad Hinsen | |
2010-01-08 | finite-distributions: fixed typo | Konrad Hinsen | |
2009-12-30 | clean up temporary namespaces, fixes #54 | Stuart Halloway | |
2009-12-29 | check for AssertionError in tests | Rich Hickey | |
2009-12-28 | finite-distributions: simplified m-bind of dist-m monad | Konrad Hinsen | |
2009-12-14 | Add Factory as a method of obtaining open database connections, fixes #50 | Steve Gilardi | |
2009-12-11 | Changed all instances of ^x across contrib to (meta x) since the ^x form is ↵ | Tom Faulhaber | |
being deprecated in 1.1 refs #48 | |||
2009-12-10 | Remove the translation of (meta x) to ^x in code dispatch, since the ^x form ↵ | Tom Faulhaber | |
is being deprecated in 1.1 | |||
2009-12-10 | Fixes for defs losing their doc strings (and other metadata). | Tom Faulhaber | |
2009-11-30 | renamed col-write method to Java-ok col_write | Rich Hickey | |
2009-11-28 | added :dynamic annotations to mock | Rich Hickey | |
2009-11-26 | macros: new macro with-direct-linking | Konrad Hinsen | |
2009-11-24 | make filename canonical: pprint/cl-format.clj -> pprint/cl_format.clj | Steve Gilardi | |
2009-11-24 | exclude bytes from http.agent | Rich Hickey | |
2009-11-23 | commented out trace core test | Rich Hickey | |
2009-11-13 | command-line: revert 72a13bf | Chouser | |
Clients have to provide their own --help defaults if that's what they want. | |||
2009-11-13 | duck_streams.clj: support Socket in reader & writer; fixes #46 | Stuart Sierra | |
Patch by Sean Devlin | |||
2009-11-10 | server-socket: make less promiscuous use of clojure.main | Chouser | |
Needed for compatibility with bound-fn patch to clojure. | |||
2009-11-08 | repl-utils: (source foo) threw NPE when metadata didn't include :file. Fixed. | Chouser | |
2009-11-07 | add wall-hack-method and wall-hack-field. fixes #43 | Kevin Downey | |
Signed-off-by: Chouser <chouser@n01se.net> | |||
2009-11-02 | http/agent.clj: prevent hang on immediate (string (http-agent...)) | Stuart Sierra | |
Reported at http://groups.google.com/group/clojure/browse_frm/thread/f6676b28cb7e68c9 | |||
2009-11-02 | PersistentFnMap.clj: add default value arity for -valAt; fixes #41 | Stuart Sierra | |
2009-11-02 | seq_utils_test.clj: add tests from Sean Devlin; fixes #13 | Stuart Sierra | |
2009-11-02 | trace.clj: add dotrace; fixes #39 | Stuart Sierra | |
Patch from Michel Salim | |||
2009-10-31 | cl-format: ~$ wasn't handling very small fractions (that round to 0) correctly. | Tom Faulhaber | |
refs #40 | |||
2009-10-31 | cl-format: ~$ wasn't handling negative numbers correctly | Tom Faulhaber | |
refs #40 | |||
2009-10-29 | exclude case | Rich Hickey | |
2009-10-29 | works with clojure branch new by excluding deftype | Mike Hinchey | |
Signed-off-by: Rich Hickey <richhickey@gmail.com> | |||
2009-10-28 | java-utils: Add delete-file and delete-file-recursively functions | Phil Hagelberg | |
Also added test for delete-file. Refs #33 Signed-off-by: Chouser <chouser@n01se.net> | |||
2009-10-03 | jmx.clj: Beans (1) must have reftypes for state, and (2) no longer | Stuart Halloway | |
assume that reftypes are IFns | |||
2009-09-28 | compile str-utils2 and other build fixes, refs #22 | Stuart Halloway | |
2009-08-31 | macro-utils: fix handling of let* and loop* forms with more than one body ↵ | Konrad Hinsen | |
expression | |||
2009-08-28 | test_is.clj: compatibility bridge to the new clojure.test; refs #26 | Stuart Sierra | |
Includes support for the old syntax of the "are" macro. | |||
2009-08-28 | str_utils2.clj: added type hints for String return values; fixes #27 | Stuart Sierra | |
2009-08-27 | renamed c.c.expect to c.c.mock, added author/doc metadata | Stuart Halloway | |