summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Added Autocomplete for config sections2128-autocomplete-section-namesuelockwood2014-03-068-158/+278
| | | | | | | Form Validation Check for existing config Pulled Views out of resources and into their own file updated makefile with the new views.js
* Fauxton: dry up promise error callbacksRobert Kowalski2014-03-061-29/+15
| | | | | | Fauxton: Fix error if anon. user tries to create Admins Fixes #COUCHDB-2170
* Adding semicolons back to activetasks to make the compiler happy.suelockwood2014-03-061-3/+3
|
* Fauxton: Fix status messages in Active TasksRobert Kowalski2014-03-061-2/+12
| | | | | | | Show Progress, current Sequence and Changes. Fix the display of `undefined` if value is undefined. Fixes #COUCHDB-2123
* Fauxton: Gruntfile fix more path.existsSyncRobert Kowalski2014-03-061-3/+3
|
* Fauxton: Fix placeholder for UsernameRobert Kowalski2014-03-062-2/+2
| | | | | The one for Password has no `:` so removing them makes the view more consistent (and looks maybe better)
* Fauxton: Improved paginationGarren Smith2014-03-0618-555/+1153
| | | | | | | | | | | | | | | | | | | | | | | | | This is an improvement and fix on the current pagination. This fixes pagination so that it works with all query options. Pagination in Couchdb is quite complex and there are plenty of situations to cater for. This new pagination works quite differently to the previous way we had it working for a user. A user can set the number of documents they want to view on a page. This is not related to limit options in the query options - the limit option is an overall cap of how many documents to paginate too. A limit of none is possible and is the default. If the limit option is set to 50 and a user wants 10 docs per page, the would then be able to paginate 3 pages before hitting the end. Another change is that the api url and browser url does not change when we paginate. That happens internally and hence the new addition of urlParams and docParams. This allows Fauxton to keep track of the parameters that the user sees and the parameters that the document needs to paginate. Fixes COUCHDB-2067
* remove warning when running `grunt dev`Robert Kowalski2014-03-051-7/+6
| | | | | | This removes the warning 'path.existsSync is now called fs.existsSync'. Now having one require at the top of the file, as module.require caches requires anyway.
* Use $.inArray instead of indexOf for IE8 compatibility.Keith Gable2014-03-041-2/+2
| | | | Signed-off-by: Alexander Shorin <kxepal@apache.org>
* Cancel event propagation on replication swap.Will Holley2014-03-031-1/+3
| | | | | | | Previous implementation called e.preventDefault() but did not stop upwards propagation - the click event would therefore trigger navigation to the main database panel. jQuery calls preventDefault and stopPropagation when false is returned from an event handler so just do that here.
* Turn workers back on for errors in the editorssuelockwood2014-02-281-1/+1
|
* Added comparitor to the configuration collection for alphabetical sortingsuelockwood2014-02-281-0/+5
|
* Added Highlight to the admin party to make it stand out more.2114-Admin-party-not-explainedsuelockwood2014-02-283-1/+17
|
* Added the "everyone is an admin" & "fix this" note and move the text around ↵suelockwood2014-02-273-13/+15
| | | | | | on the page. Got rid of the extra header
* Remove caching from design docs, so that edit revisions are updatedsuelockwood2014-02-261-1/+1
|
* Revert "fix right hand side scrolling over navigation"BigBlueHat2014-02-261-2/+1
| | | | | | | | | | | | This reverts commit e389a8ba2a79da2669b536ca242b5dfdee4faba3. This is the commit that broke modals. Reverting it fixes COUCHDB-2086 Fixing the right hand content overlapping the left hand navigation will require a bigger fix... This sadly was not it...
* Accidentally committed debugging code. Return 5 ... (thanks kxepal!)suelockwood2014-02-251-2/+1
|
* Remove editor reference to go to line 2 to stop browsers from crashing on ↵suelockwood2014-02-251-3/+4
| | | | people who have minified index functions.
* Fix formattingAlexander Shorin2014-02-251-1/+1
|
* ```validate_doc_update``` moved from views to rootAnthony Ananich2014-02-251-5/+5
| | | | Signed-off-by: Alexander Shorin <kxepal@apache.org>
* Move myself from THANKS to AUTHORSKlaus Trainer2014-02-232-1/+1
|
* Merge branch '1780-upgrade-password-hashes-on-authentication'Klaus Trainer2014-02-235-29/+94
|\
| * Upgrade password hashes on authenticationKlaus Trainer2014-02-232-10/+86
| | | | | | | | | | | | | | | | We now upgrade user docs to the new PBKDF2 password scheme on successful authentication if the password hash is still from the old days where we only used plain SHA-1 for hashing salted passwords. Closes COUCHDB-1780.
| * Remove client-side password crypto from JS testsKlaus Trainer2014-02-233-19/+8
|/ | | | | | | | | | This removes client-side password crypto from the JavaScript tests. In some JavaScript tests, it has been assumed that SHA-1 is used for the password hash in user docs. Those tests should, however, not rely on implementation details of the user authentication hash function, as it isn't the goal of those tests to check these. Furthermore, this causes problems when a password scheme is changed, or a new one is introduced.
* Fix documentation wordingAndy Wenk2014-02-201-4/+4
| | | | The warning regarding the Response Object was unclear.
* Fix Fauxton's define paths to match mixedCase styleAlexander Shorin2014-02-202-12/+12
| | | | As bonus trailing spaces were striped.
* added overflow:auto to one-pane stylesBigBlueHat2014-02-1912-373/+282
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fixed styletests template license comment...again fixed Delete DB modal button styles took graphs out of span5 + inline styles They are now properly sized with no cutoffs changed .row to .row-fluid in .container-fluid reordered imports in databases; consolidated .well removed unused styles more Bootstrap overrides moved higher up conslidated prettyprint stuff moved document specific CSS to documents no more CodeMirror anymore; gone be the related CSS moved the input tag overrides up Keeping like with like, so we can find the like. working on grouping Bootstrap overrides together Also fixed some space around in-tab icons and did some whitespace cleanup...I know...I know... reordering & reducing the customness some more Still finding heavy/dangerous Bootstrap 2.x overrides (margin settings for .row & .tab-content--broadly). Changing colors and such is generally fine, but changing positioning breaks the grid. :frowning:
* Merge branch '2059-feature-uri-len-negotiation'Robert Newson2014-02-173-11/+49
|\
| * Allow optional max_uri_length server settingRobert Newson2014-02-172-0/+20
| |
| * Negotiate max uri length in response to 414'sRobert Newson2014-02-171-11/+29
| |
| * Revert "Allow runtime configuration of maximum url length in replication"Robert Newson2014-02-131-3/+3
| | | | | | | | This reverts commit e1453abf7d8075906abaf240d8f31465a94b6b25.
* | remove superfluous 'user_doc.type'Robert Kowalski2014-02-161-2/+2
| | | | | | | | Fixes COUCHDB-1474
* | fix undefined Reqbenoitc2014-02-161-1/+1
| |
* | fix handle_reqbenoitc2014-02-161-2/+2
| | | | | | | | | | handle-req/2 was useless. Instead we wanted handle_req/1 to tell to others which method is allowed.
* | fix right hand side scrolling over navigationBigBlueHat2014-02-141-1/+2
| | | | | | | | | | | | | | | | If the right hand content got really wide, then it could easily be scrolled over the primary navigation on the left. Fixed it by fixed positioning it.
* | Fauxton: file name correctionGarren Smith2014-02-131-1/+1
|/
* Merge branch '2059-feature-url-len'Robert Newson2014-02-131-3/+3
|\
| * Allow runtime configuration of maximum url length in replicationRobert Newson2014-02-131-3/+3
| | | | | | | | COUCHDB-2059
* | Fauxton: Fix login issueGarren Smith2014-02-132-2/+4
|/
* Update my email addressJoan Touzet2014-02-121-1/+1
|
* Fauxton: Improve spinnersGarren Smith2014-02-112-8/+15
|
* Fauxton: Improvements to xhr cancellationsGarren Smith2014-02-105-11/+14
|
* Accept gzipped JSON request bodies2054-feature-gzip-requestsRobert Newson2014-02-071-1/+10
| | | | COUCHDB-2054
* Fix Beautify button csssuelockwood2014-02-071-2/+2
|
* Merge branch 'key-vs-keys'Robert Newson2014-02-071-12/+7
|\
| * Send better error if user specifies key and keyskey-vs-keysRobert Newson2014-02-071-12/+7
| | | | | | | | closes COUCHDB-2053
* | Add backbone.fetch-cache to license and noticeGarren Smith2014-02-072-0/+28
| |
* | Fix failing grunt testGarren Smith2014-02-071-1/+1
| |
* | Add more caching locationsfauxton-data-cacheGarren Smith2014-02-056-25/+37
| |
* | Add backbone.fetch-cacheGarren Smith2014-02-047-22/+365
| |