Subversion Repositories Tillikum

Compare Revisions

Ignore whitespace Rev 573 → Rev 574

/trunk/couchdb/person/core/fulltext/name/defaults.json
1,3 → 1,4
{
"analyzer": "simple",
"store": "yes"
}
/trunk/couchdb/person/core/fulltext/booking/defaults.json
New file
0,0 → 1,3
{
"analyzer": "simple"
}
/trunk/couchdb/person/core/fulltext/booking/index.js
28,14 → 28,14
);
 
config_doc.add(
booking.start ? booking.start : "0",
booking.start ? booking.start : "0000-00-00",
{
"field": "start"
}
);
 
config_doc.add(
booking.end ? booking.end : "z",
booking.end ? booking.end : "9999-99-99",
{
"field": "end"
}