aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2009-01-16test_is/tests.clj: added test for Java method call (to be fixed)Stuart Sierra
2009-01-15test_is/tests.clj: unit tests for clojure.contrib.test-is (finally)Stuart Sierra
2009-01-15test_is.clj: added test-all-vars, more generic assert-expr for predicatesStuart Sierra
2009-01-15test_is.clj: print stack traces for exceptionsStuart Sierra
2009-01-14sql: execute batch updates within a transaction for all-or-nothing behavior, ↵scgilardi
return a seq (instead of a vector) from do-commands, do-prepared so the entire set of results doesn't need to be realized unless it's interesting
2009-01-14sql: add update-or-insert-values & test for it, refine doc strings, remove ↵scgilardi
unnecessary uses of apply
2009-01-14sql* updates to doc strings, update-values, parameterized queriesscgilardi
2009-01-12Monads: Added examples and test cases for (maybe-t sequence)Konrad Hinsen
2009-01-12test_is.clj: added "with-test"Stuart Sierra
2009-01-12test_is.clj: better source line numbers with new "file-position"Stuart Sierra
2009-01-10duck_streams.clj: always use *default-encoding* (UTF-8) for opening streamsStuart Sierra
2009-01-10seq_utils.clj: BREAKING CHANGE: swap argument order of "includes?"Stuart Sierra
2009-01-09Add defhinted to clojure.contrib.defChouser
2009-01-09Fix typosChouser
2009-01-09Add docstrings to repl-utils.Chouser
2009-01-08New module clojure.contrib.probabilities.dist (with examples and entry in ↵Konrad Hinsen
build.xml)
2009-01-08New file macros.clj (plus a corresponding entry in build.xml)Konrad Hinsen
2009-01-08monads.clj: modified maybe monad, added monad transformer maybe-t, changed ↵Konrad Hinsen
default value of all monad operations from nil to ::undefined
2009-01-08Set *core-java-api* to "http://java.sun.com/j2se/1.5.0/docs/api/" if Java 5.Christophe Grand
2009-01-08Fix for repl-utils after Clojure SVN 1201 broke it.Chouser
2009-01-08sql.test use -> in db-get-tablesscgilardi
2009-01-07Added a 3rd option to browse-url. Now, before defaulting to swing, will try ↵Christophe Grand
to open the url using an external command if any is configured. This command is currently defined only for Mac OS X.
2009-01-06Added test suite and examples for monads.cljKonrad Hinsen
2009-01-06stacktrace.clj: added new lib, a stack-trace printerStuart Sierra
2009-01-06test_is.clj: set-test is ignored when *load-tests* is falseStuart Sierra
2009-01-06test_is.clj: set-test uses alter-meta!; minor documentation cleanupStuart Sierra
2009-01-06New file clojure.contrib.monads (plus its entry in build.xml)Konrad Hinsen
2009-01-06added rec-cat, rec-cons and reductionsChristophe Grand
2009-01-04sql: add db-get-tablesscgilardi
2009-01-04prxml.clj: added new lib, also added to compile list in build.xmlStuart Sierra
2009-01-04sql: make 'connection' public, a function that returns the current database ↵scgilardi
connection or throws if there is none
2009-01-04sql.clj: simplify macros after some discussions on #clojure, move ↵scgilardi
(connection) entirely into internal, change to clojure.lang.RT/loadClassForName for class loading, will move back if there's trouble
2009-01-04repl_ln: support an optional --repl or -r command line arg before other argsscgilardi
2009-01-04re-sub and re-gsub now accept replacement fns. Patch from Juergen Gmeiner.Chouser
2009-01-02Add clojure.contrib.shell-outChouser
2008-12-31test_is.clj: added "testing" and "*load-tests*"; disallowed (deftest nil ...)Stuart Sierra
2008-12-30repl-ln: add stream-repl for convenient in, out, err stream overridingscgilardi
2008-12-29repl-ln: update/simplify for new clojure.mainscgilardi
2008-12-27(really) add sequences to test_clojure from Frantisek Sodomkascgilardi
2008-12-27revert accidental checkin of repl_ln.cljscgilardi
2008-12-27test-clojure: add sequences tests from Frantisek Sodomkascgilardi
2008-12-23test_clojure/evaluation.clj: expect CompilerException on (eval '(1 2 3))Stuart Sierra
2008-12-23test_clojure/evaluation.clj: fix for ArrayMap literals & (eval '(1 2 3))Stuart Sierra
2008-12-23duck_streams.clj: added 'pwd'Stuart Sierra
2008-12-23fcase.clj: added note that clojure.core/condp now supplants fcaseStuart Sierra
2008-12-23condp.clj renamed to condt.clj (t for template) since clojure.core has its ↵Stuart Sierra
own condp now
2008-12-22test_is.clj: added "set-test" (experimental)Stuart Sierra
2008-12-22test_clojure: fix evaluation.clj so it compiles, add back to test_clojure.cljStuart Sierra
* Note:"Collections" at evaluation.clj line 194 fails, I think because the compiler is optimized to use ArrayMaps for small maps.
2008-12-19walk.clj: fixed missing 'if' in 'walk'Stuart Sierra
2008-12-19duck_streams.clj: move 'file' to top so it compilesStuart Sierra