Questions tagged [design-documents]

25 questions
1
vote
1 answer

In TDD approach can we have Detail Design Document?

We are newly getting into this TDD approach. Apart from other initial hiccups we are also confused whether to create any Detail Design Document(DDD). In traditional way we used to follow this path, - Business Requirement Document> Functional…
pasaban
  • 91
  • 1
  • 11
1
vote
1 answer

CouchDB not recognising the update functions in my new design document

I have create a new design documents with a dummy update function. But when I try to test it, CouchDB is not identifying my function in the design document. Below is my design document: { "_id": "_design/payable_draft", "_rev":…
1
vote
2 answers

What is the documentation created by doxygen called

As I understood it "javadoc" is the name of the tool that generates html-documentation which also goes by the name javadoc. Atleast that is how I've been using the words.. But what is the generated output of the tool doxygen called? Doxygen-doc?…
Aksel Willgert
  • 11,367
  • 5
  • 53
  • 74
0
votes
1 answer

How to pad zeros on numbers when creating the index key in a couchdb view?

I'm trying to index bible verses creating a view in a design doc. The idea was to create keys that would allow lexicographic ordered search, concatenating book, chapter and verse number. For this to work, i'd need to pad zeros on chapter and verse…
spacm
  • 190
  • 3
  • 18
0
votes
1 answer

How to automatically get or create a doc with a field value in couchdb in a single request?

In a certain scenario, I want to pass a field value(in string format) to the CouchDB and get associated doc (or only its id) which contains that particular string value in one its fields. In case, if no doc contains that particular field value, I…
Harsh K
  • 79
  • 1
  • 7
0
votes
1 answer

How to ensure certain fields are included in a CouchDB database?

I am trying to find a way of ensuring that certain content is present in the documents of a CouchDB database. I thought the best way of doing this would be with a "validate_doc_update" design document. I had created one in the past that checked…
0
votes
1 answer

Include design documents factoryng

The default settings in factoryng filter out design documents. How can I include these design documents?
redgeoff
  • 3,163
  • 1
  • 25
  • 39
0
votes
1 answer

Why does only one of these CouchDB views work?

I have some documents in CouchDB of type: "Person" and of type "Account". For a straight list of all documents of these types I have created the following design document in _design/directory_views: { "_id": "_design/directory_views", "_rev":…
Hellfire
  • 25
  • 4
-3
votes
1 answer

Is a new proposal of generics backward compatible with older versions

Among many new things in the recent proposal about adding generic programming for Golang there is a new keyword any So if my current program has declared a variable named any it won't compile.
Bakurits
  • 402
  • 3
  • 11
-5
votes
2 answers

What is difference architectural design vs high-level design

Can some one explain me what is the difference between architectural design vs high-level design. It will be helpful to me if you explain by example: Lets say I want to build simple android online shopping application, in that case what should I put…
Jeggu
  • 569
  • 2
  • 10
  • 26
1
2