summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* s/401/403archive/1.3.x1.3.xRobert Newson2014-03-271-1/+1
|
* s/max/max_countRobert Newson2014-03-271-1/+1
|
* Configurable upper bound to _uuids count parameterRobert Newson2014-03-253-0/+11
|
* [tests] tidy up etap stream test outputAndrey Somov2013-06-281-2/+2
| | | | Closes COUCHDB-1082.
* Restore rev handling for _bulk_docs with all_or_nothingRobert Newson2013-06-171-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Commit 5b1430c120904181313848444dbfcdb60e42568b added this hunk; - {aborted, lists:map( - fun({{Id,{Pos, [RevId|_]}}, Error}) -> - {{Id, {Pos, RevId}}, Error}; - ({{Id,{0, []}}, Error}) -> - {{Id, {0, <<>>}}, Error} - end, PreCommitFailures)}; + {aborted, + lists:foldl(fun({#doc{id=Id,revs={Pos, RevIds}}, Ref},Acc) -> + case lists:keyfind(Ref,1,PreCommitFailures) of + {Ref, Error} -> + [{{Id,{Pos,RevIds}}, Error} | Acc]; + false -> + Acc + end + end,[],Docs3)}; + This causes the full list of revisions to be passed to revid_to_str/1; revid_to_str(RevId) when size(RevId) =:= 16 -> ?l2b(couch_util:to_hex(RevId)); revid_to_str(RevId) -> RevId. This falls through to the second case, which in turn leads to invalid JSON output when we convert the presumed iolist. This patch restores the code that takes only the head of the revisions list when present, and an artificial "0-" when it is not (in the case that the validation fails for a new document rather than an update). BugzID: 1772
* [TESTS] [HOTFIX] correct error in auth cache testJan Lehnardt2013-06-151-1/+1
|
* [TESTS] Make tests run more reliably. Delete test-auth-dbs before tests.Jan Lehnardt2013-06-131-0/+2
|
* fix 140-*.t, reflect mv README README.rst1.3.1Jan Lehnardt2013-06-051-1/+1
|
* Distribute test_setup.jsNoah Slater2013-05-281-0/+1
|
* Remove "not released yet" commentNoah Slater2013-05-281-2/+0
|
* Bump to 1.3.1Noah Slater2013-05-281-1/+1
|
* Word wrapNoah Slater2013-05-281-2/+1
|
* Port NEWS/CHANGES updates to change log.Dirkjan Ochtman2013-05-281-2/+9
|
* Update CHANGES for 1.3.1Dave Cottlehuber2013-05-281-1/+1
| | | | COUCHDB-1696
* COUCHDB-1784 update license.skip to support VPATH buildsDave Cottlehuber2013-05-281-1/+1
|
* Save the auth values so if the AuthSession cookie has passed the Time left ↵Martin Higham2013-05-282-2/+6
| | | | threshold it gets updated
* match indent in NEWS/CHANGES with older releasesRandall Leeds2013-05-282-12/+12
|
* Update CHANGES with bug numbers and add 1792Randall Leeds2013-05-281-2/+7
|
* [couchjs] make stack size option effectiveRandall Leeds2013-05-285-11/+11
| | | | | | | | The previous way this was coded changes the chunk size that is used whenever the stack grows but does not change the maximum memory allowed by the runtime. Closes COUCHDB-1792
* Remove bashisms from JS test runnerJan Lehnardt2013-05-271-5/+7
| | | | | | | | | | | | 1. Stop using bash arrays. 2. Account for the sh-builtin `echo` not having an `-n` argument on BSDs. 3. Strip spaces from `wc -l` output when calculating the number of tests for 1. Patch by Klaus Trainer & Jan Lehnardt. Closes COUCHDB-1793.
* docs: add changelog for 1.3.1 to release historyDirkjan Ochtman2013-05-271-0/+21
|
* NEWS, CHANGES: add punctuation to improve consistency with older content.Dirkjan Ochtman2013-05-272-10/+10
|
* NEWS, CHANGES: clarify documentation improvements.Dirkjan Ochtman2013-05-272-2/+2
|
* Update NEWS/CHANGES for 1.3.1 releaseRobert Newson2013-05-272-8/+26
|
* docs: rewrite sentence about HTTP admins interfaceDirkjan Ochtman2013-05-271-5/+5
|
* docs: don't refer to release chapter in build systemDirkjan Ochtman2013-05-231-3/+0
|
* replace README with README.rst in build systemDirkjan Ochtman2013-05-231-2/+2
|
* docs: add more structure to the release historyDirkjan Ochtman2013-05-231-10/+63
|
* rename README to README.rstDirkjan Ochtman2013-05-221-0/+0
|
* docs: add Upgrade Notes for 1.2.0Dirkjan Ochtman2013-05-221-0/+44
| | | | Synthesized from the Breaking_changes page on the wiki.
* docs: improve chapter title consistencyDirkjan Ochtman2013-05-216-13/+13
|
* docs: move configuration reference down a bitDirkjan Ochtman2013-05-211-1/+1
|
* docs: move upgrade notes into changelog chapterDirkjan Ochtman2013-05-213-48/+19
|
* docs: cut useless section on file permission error messagesDirkjan Ochtman2013-05-213-41/+0
|
* docs: merge separate CommonJS sectionsDirkjan Ochtman2013-05-214-124/+20
|
* docs: improve language, structure in CORS sectionDirkjan Ochtman2013-05-201-49/+34
|
* docs: fold section on CORS into configuration chapterDirkjan Ochtman2013-05-204-157/+139
|
* docs: move sections on vhosts, URL rewriting into configuration chapterDirkjan Ochtman2013-05-204-146/+107
| | | | | The link pointing to an external blog entry that was in the introduction of the Pretty URLs chapter has gone dead, so I've culled the intro.
* Skip R15B01, R15B, R14B03 for Travis tests.Dirkjan Ochtman2013-05-201-3/+0
|
* docs: update Makefile.am for recent section foldingDirkjan Ochtman2013-05-201-15/+0
|
* docs: move section on HTTP proxying into configuration chapterDirkjan Ochtman2013-05-203-95/+83
|
* docs: move section on SSL support into configuration chapterDirkjan Ochtman2013-05-203-110/+98
|
* docs: move section on OS daemons into configuration chapterDirkjan Ochtman2013-05-203-51/+39
|
* docs: merge API introduction and actual reference materialDirkjan Ochtman2013-05-203-79/+21
| | | | This gets rid of an empty database maintenance section for now.
* docs: move section on HTTP range requests into API chapterDirkjan Ochtman2013-05-193-73/+61
|
* docs: add error handling code to EventSource exampleDirkjan Ochtman2013-05-191-0/+4
|
* Fix errors in, improve style of EventSource example code.Dirkjan Ochtman2013-05-191-7/+9
|
* Note the need for allowing CORS for EventSource feeds.Dirkjan Ochtman2013-05-191-0/+6
|
* Fix grammar in EventSource feed type introduction.Dirkjan Ochtman2013-05-191-3/+3
|
* docs: fix Sphinx warningDirkjan Ochtman2013-05-181-1/+1
|