Re: clj-webdriver: Clojure API for Selenium-WebDriver

2012-02-22 Thread Tavis Rudd
Daniel, Thanks again for the effort you've put into documentation and release communication. It's first rate. Tavis -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new

Re: Could be my favourite improvement in 1.4

2012-01-18 Thread Tavis Rudd
On Jan 16, 2:23 pm, Justin Steward wrote: > On Tue, Jan 17, 2012 at 5:19 AM, Tavis Rudd wrote: > > {"v":, 1234} > > Except that's not valid JSON, so it's still not a simple cut and paste > solution. I personally think that confusing a colon with whit

Re: Could be my favourite improvement in 1.4

2012-01-16 Thread Tavis Rudd
This issue could be avoided by only treating a colon as whitespace when followed by a comma. As easy cut-paste of json seems to be the key motivation here, the commas are going to be there anyway: valid {"v":, 1234} vs syntax error {a-key: should-be-a-keyword}. -- You received this message bec