Jason Smith

Results 14 comments of Jason Smith

@springmeyer is it working for you now? Thanks.

Is there a pull request for this that I've forgotten to merge? Or can somebody please send one? Thanks much!

@pgte and @dscape, sorry, I did not receive notifications. I will figure out how to fix that. It looks like your Spidermonkey is a bit older than mine and does...

Are you running the unit test suite? I would like to see exactly which test fails to help identify the problem. I updated the documentation (and I made a mistake...

P.S. I believe the browser versions of the test have some errors, I will fix them before releasing another version but for now, the `master` branch only supports Node.

Final note, I suppose the most likely thing is still regular expressions. Perhaps changing them to a string method instead? ``` // /^A-Z/.test(doc._id); // BAD !! doc._id.match(/^A-Z/); // GOOD? ```...

Ok, good idea. The only thing to check is that sometimes I **needed** the regex match results to extract substrings. That is why I like `.test()`, it is very clear...

@pgte I think you are the first user of CQS on a non-Jason CouchDB build (i.e. not Iris Couch or build-couchdb). I am sorry that you encountered frustrating bugs. I...

I never saw this issue until just now! I believe this is because the Javascript I use in CouchDB is different from yours. I will integrate your change to make...

Hi, @dscape. I think the key point here, with which we can all agree, is that this API is not specified concretely nor tested against. AFAICT, the test suite does...