Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Comment typo fix. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | jan-manifest-tags |
| Files: | files | file ages | folders |
| SHA1: |
af574ca3ad58c6155e0c753f4aa434b8 |
| User & Date: | jan 2016-08-03 14:31:13.131 |
Context
|
2016-08-03
| ||
| 15:01 | Fix working tree manifest generation/deletion to handle all cases properly. check-in: 81bf21bd63 user: jan tags: jan-manifest-tags | |
| 14:31 | Comment typo fix. check-in: af574ca3ad user: jan tags: jan-manifest-tags | |
| 14:30 | For opened working trees, store current branch at top of manifest.tags. check-in: 0fb54e5afe user: jan tags: jan-manifest-tags | |
Changes
Changes to src/db.c.
| ︙ | ︙ | |||
2269 2270 2271 2272 2273 2274 2275 | #define MFESTFLG_TAGS 0x04 #endif /* INTERFACE */ /* ** Get the manifest setting. For backwards compatibility first check if the ** value is a boolean. If it's not a boolean, treat each character as a flag ** to enable a manifest type. This system puts certain boundary conditions on | | | 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 |
#define MFESTFLG_TAGS 0x04
#endif /* INTERFACE */
/*
** Get the manifest setting. For backwards compatibility first check if the
** value is a boolean. If it's not a boolean, treat each character as a flag
** to enable a manifest type. This system puts certain boundary conditions on
** which letters can be used to represent flags (any permutation of flags must
** not be able to fully form one of the boolean values).
*/
int db_get_manifest_setting(void){
int flg;
char *zNVVal = db_get("manifest", "off");
char *zVal = db_get_versioned("manifest", zNVVal);
if( is_false(zVal) ){
|
| ︙ | ︙ |