aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2009-05-30contrib.core: add new-by-namescgilardi
2009-05-29miglayout: refactoring for clarityscgilardi
2009-05-29test_is.clj: fixed documentation examples for "testing" macroStuart Sierra
2009-05-29load-all: remove auto-agent, uncomment miglayoutscgilardi
2009-05-27test-clojure: added compilation.clj, macros.clj, metadata.clj;Frantisek Sodomka
compilation: compiler metadata; java-interop: dot, double-dot, doto; vars: regression in binding
2009-05-25auto_agent.clj: deleted because it doesn't workStuart Sierra
2009-05-25macro-utils: new macro deftemplateKonrad Hinsen
2009-05-24clojure.contrib.core: add dissoc-inscgilardi
2009-05-20Delete comment which duplicates ns docTom Faulhaber
2009-05-19accumulators: bug fix in combineKonrad Hinsen
2009-05-18test-clojure: test-utils: all-are; data-structures: rewritten tests using ↵Frantisek Sodomka
all-are
2009-05-14Correct a typo in the docTom Faulhaber
2009-05-14Add links to new wiki entriesTom Faulhaber
2009-05-14test-clojure: other-functions: identityFrantisek Sodomka
2009-05-14test-clojure: control: condFrantisek Sodomka
2009-05-14test-clojure: common helper functions in test-utils; control: doFrantisek Sodomka
2009-05-14json/read.clj: read-json now takes a string or a readerStuart Sierra
Eliminates the need for read-json-string.
2009-05-14jsov/read.clj: doc stringStuart Sierra
2009-05-14json/read.clj: added *json-keyword-keys* to get keywords in mapsStuart Sierra
Bind *json-keyword-keys* to true to convert map keys to keywords.
2009-05-14json/write.clj: use StringBuilder when escaping strings for faster outputStuart Sierra
2009-05-14json/write.clj: added type hints to avoid reflectionStuart Sierra
2009-05-14json/read.clj: added type hints to avoid reflectionStuart Sierra
2009-05-14Created new examples of how to use pretty print dispatch functionsTom Faulhaber
2009-05-14json/write.clj: doc stringsStuart Sierra
2009-05-14json/write.clj: escape characters in symbol names just like stringsStuart Sierra
2009-05-13miglayout: change dependency on miglayout jar from compile time to run time, ↵scgilardi
add it to the list of compilable libs in build.xml
2009-05-13duck_streams.clj: added functions to open writers for appendingStuart Sierra
2009-05-12json/read.clj: doc stringStuart Sierra
2009-05-12json/write.clj: throw Exception if map key is nilStuart Sierra
2009-05-12json/write.clj: fixed bug with nils in sequencesStuart Sierra
2009-05-11finite-distributions: more distribution generation facilitiesKonrad Hinsen
2009-05-11sql: support JNDI for specifying a database, with-connection, db-specscgilardi
2009-05-11probabilities.finite-distributions: additional distributionsKonrad Hinsen
2009-05-10javalog.clj: deleted (deprecated & not Java 5 compatible)Stuart Sierra
2009-05-10monads: symbol macros for m-result, m-bind, m-zero, m-plusKonrad Hinsen
2009-05-10profile.clj: profiling and code timing libraryStuart Sierra
2009-05-10json/read.clj: added tests from pass1.jsonStuart Sierra
Need to move these tests into a separate file.
2009-05-10json/write.clj: documentation cleanupStuart Sierra
2009-05-09Support for setting *print-right-margin* to nil to indicateTom Faulhaber
infinite-length lines.
2009-05-09json/write.clj: Handle more collection types and unicode in strings.Stuart Sierra
Escapes all non-ASCII characters as \uXXXX in Strings. Handles more collection types, including all java.util.Map, java.util.Collection, and Java arrays.
2009-05-09seq_utils.clj: fix error using wrong name in last revisionStuart Sierra
2009-05-09find_namespaces.clj: handle files where (comment...) precedes (ns...)Stuart Sierra
2009-05-09seq_utils.clj: Issue 35: fixed partition-by to only call f once on each inputStuart Sierra
This allows partition-by to work even if f has side-effects.
2009-05-09Got rid of some debug code that doesn't work across namespacesTom Faulhaber
2009-05-09New multimethod-based dispatch system. Made a path all the way throughTom Faulhaber
that assumes that you have a pretty writer bound to *out* so we don't have to rebind it everywhere.
2009-05-09Broke write into two parts one of which takes a stream and one ofTom Faulhaber
which doesn't. Also fixed up the pprint parameters cause it was stupid.
2009-05-08json/write.clj: force object keys to be stringsStuart Sierra
2009-05-07test_is.clj: fix keyword in report argumentStuart Sierra
2009-05-07test_is.clj: fix wrong # of arguments to report on thrown-with-msg?Stuart Sierra
2009-05-07test_is.clj: throw meaningful exception if namespace does not existStuart Sierra