|
a/src/rcldb/rcldoc.h |
|
b/src/rcldb/rcldoc.h |
|
... |
|
... |
230 |
if (mit->second != value)
|
230 |
if (mit->second != value)
|
231 |
mit->second += string(" - ") + value;
|
231 |
mit->second += string(" - ") + value;
|
232 |
}
|
232 |
}
|
233 |
return true;
|
233 |
return true;
|
234 |
}
|
234 |
}
|
|
|
235 |
|
|
|
236 |
/* Is this document stored as a regular filesystem file ?
|
|
|
237 |
* (as opposed to e.g. a webcache file), not a subdoc,
|
|
|
238 |
*/
|
|
|
239 |
bool isFsFile() {
|
|
|
240 |
string backend;
|
|
|
241 |
getmeta(keybcknd, &backend);
|
|
|
242 |
if (!backend.empty() && backend.compare("FS"))
|
|
|
243 |
return false;
|
|
|
244 |
return true;
|
|
|
245 |
}
|
|
|
246 |
|
235 |
|
247 |
|
236 |
void dump(bool dotext=false) const;
|
248 |
void dump(bool dotext=false) const;
|
237 |
|
249 |
|
238 |
// The official names for recoll native fields when used in a text
|
250 |
// The official names for recoll native fields when used in a text
|
239 |
// context (ie: the python interface duplicates some of the fixed
|
251 |
// context (ie: the python interface duplicates some of the fixed
|