Re: FolderDB - advice wanted

2019-07-22 Thread Joel Wallis Jucá
t; > -- > > { > > key1 : s|string value, > > key2 : 2, > > key3 : 3.4, > > key4a : t, > > key4b : f, > > key5 : [ > > numbered array > > ], > > key6 : { > > named array > > }, > > key7 : url|/siteData/bla/bla/file.jsone, > > key8 : key|key7/someKeyInsideFileBehindURLofKey7_key1/key1a, > > key9 : > > > > > url|/siteMedia/backgrounds/someFile.png||thumb|/siteMedia/backgrounds/thumbs/someFile.png, > > key10 : > > > > > url|/siteData/bla2/bla2a/file.odt||thumb|/siteData/bla2/bla2a/file.odt.thumb.png||thumbGenerator|URL > > } > > -- > > > > key4a = true > > key4b = false > > > > key1 would need it's value escaped, using \| and \, > > > -- Joel Wallis Jucá about.me/joelwallis

Fwd: Warning from user@couchdb.apache.org

2019-03-09 Thread Joel Wallis Jucá
rn-318...@couchdb.apache.org Subject: failure notice -- Joel Wallis Jucá about.me/joelwallis

Re: CouchDB sync error net::ERR_CONNECTION_RESET

2017-11-29 Thread Joel Wallis Jucá
aused', function () { > > >>>> console.log('replication paused (e.g. user went offline)'); > > >>>> document.getElementById("syncbutton").innerHTML = "Sync Notes"; > > >>>> }).on('active', function () { > > >>>> console.log('replicate resumed (e.g. user went back > > online)'); > > >>>> document.getElementById("syncbutton").innerHTML = "Sync Notes"; > > >>>> }).on('denied', function (info) { > > >>>> console.log('a document failed to replicate, e.g. due to > > >>>> permissions'); > > >>>> document.getElementById("syncbutton").innerHTML = "Sync Notes"; > > >>>> }).on('complete', function (info) { > > >>>> console.log("Sync Complete"); > > >>>> document.getElementById("syncbutton").innerHTML = "Sync > > >>> Notes"; > > >>>> that.viewnoteset(); > > >>>> that.formobject.reset(); > > >>>> that.show(that.formobject.dataset.show); > > >>>> that.hide(that.formobject.dataset.hide); > > >>>> var end = new Date().getTime(); > > >>>> console.log("Time Taken - " + (end - start) + " ms"); > > >>>> }).on('error', function (error) { > > >>>> console.log("Sync Error:" + JSON.stringify(error)); > > >>>> alert("Sync Error:" + error); > > >>>> that.showerror(error); > > >>>> }); > > >>>> > > >>>> } > > >>>> > > >>>> Any idea what is causing the connection to reset? > > >>>> > > >>>> > > >>>> Regards, > > >>>> > > >>>> *Yvonne Aburrow* > > >>>> Applications Developer > > >>>> Information Systems Team > > >>>> *IT Services <http://www.brookes.ac.uk/obis/>* > > >>>> Oxford Brookes University <http://www.brookes.ac.uk/> > > >>>> > > >>>> extn 2706 > > >>> > > >>> > > >> > > > > > -- Joel Wallis Jucá about.me/joelwallis

Re: Custom Collation

2017-09-02 Thread Joel Wallis Jucá
Should you create a custom index based on each character ASCII code? You could use String#charCodeAt() to get each one's code and build a custom index Joel Wallis Jucá joelwallis.com Em 2 de set de 2017 12:40 PM, "Cliff Stanford" <cl...@may.be> escreveu: > I have an interest

Re: How to run CouchDB 2.x on macOS

2017-07-13 Thread Joel Wallis Jucá
dgeoff-couchdb-docker > > > > You can of course use the "official" couchdb docker image at > > https://github.com/apache/couchdb-docker, but I found it missing a > number > > of necessary features, especially when it comes to clustering. > > > > Geoff

How to run CouchDB 2.x on macOS

2017-07-12 Thread Joel Wallis Jucá
Hi, How are you running CouchDB 2.x on macOS? Is there any way to install CouchDB that's not by this GUI app? I would prefer a Docker image, but I'm open to alternatives. -- Joel Wallis Jucá joelwallis.com

Re: [Lazy Consensus] Move from JIRA to GitHub Issues

2017-05-17 Thread Joel Wallis Jucá
w task from JIRA, they should create a companion GH Issue > >>> for the ticket and reference it in JIRA, then close the JIRA issue. > >>> > >>> 5. In the future, we will work to migrate more issues as desired. > >>> However, we won't be moving any 1.x-specific issues over to GitHub. > >>> > >>> At some point in the future, we will also consider: > >>> > >>> * A script to de-assign idle issues (and de-tag them if necessary) > >>> * A script to auto-repost new issues from JIRA into GH Issues. (We > >>> can't disable new issue creation in JIRA without shutting down > >>> the entire instance, and we don't want to do that.) > >>> > >>> This is perhaps the happiest email I've sent to any CouchDB mailing > list > >>> ever. I'm really excited about this change, and I bet you are too! > >>> > >>> Thanks to everyone who's helped us get this far, especially Apache > >>> Infrastructure for the Gitbox integration workflow. > >>> > >>> -Joan > > -- Joel Wallis Jucá joelwallis.com

Re: Adding a footer to emails

2017-01-27 Thread Joel Wallis Jucá
is enough interest > i can follow up. > > - michelle -- Joel Wallis Jucá joelwallis.com

Should we provide better/easier ways to unsubscribe?

2017-01-19 Thread Joel Wallis Jucá
subscribe button/link and complete the process through a web page. Does it make sense for you? Any thoughts? *QQ: which software does the CouchDB team use to host the mailing list?* -- Joel Wallis Jucá joelwallis.com

Re: [CouchDB 1.6] Use symlinks for database files?

2016-11-28 Thread Joel Wallis Jucá
amp;& mv -Tf L_tmp L` (atomic switch), it appears that couchdb fails > to recognize L being a pointer to another couchdb file, and shows that the > db contains 0 documents. > > Any input is appreciated! > > -Kevin > -- Joel Wallis Jucá joelwallis.com

Re: couchdb upload large attachments

2016-10-18 Thread Joel Wallis Jucá
Hi Tobias. Using CouchDB to store large attachments is not a good idea. You'll end up having issues with replication, etc. A better approach would be storing that file into a proper repository (like AWS' S3) and storing the file metadata into CouchDB. Em 18 de out de 2016 6:09 AM, "Tobias

Re: Deploying Single Page Application(SPA) with CouchDB

2016-03-27 Thread Joel Wallis Jucá
Use CouchDb to server the JavaScript/HTML files. Not a bad solution, > > but I can find any docs on how to do that. It would be great to > repackage > > CouchDb to have my files. > > 3. Have them install Apache or such to server the files > > 4. Have them install another web service ie: nodejs, etc > > > > Suggestions? > > > > thanks > > -darryl > > > -- Joel Wallis Jucá joelwallis.com