Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Improvements to comments and file format docs. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | remarks-on-checkins |
| Files: | files | file ages | folders |
| SHA1: |
f0c19ea170aed65646ee4fb3ac0fb3a3 |
| User & Date: | mistachkin 2017-01-10 20:32:01.636 |
Context
|
2017-01-10
| ||
| 20:38 | Schema enhancements necessary to support the Remark artifact. Closed-Leaf check-in: f051f1d3d1 user: drh tags: remarks-on-checkins | |
| 20:32 | Improvements to comments and file format docs. check-in: f0c19ea170 user: mistachkin tags: remarks-on-checkins | |
| 19:09 | Merge changes from trunk. check-in: 43fa1ecc73 user: drh tags: remarks-on-checkins | |
Changes
Changes to src/manifest.c.
| ︙ | ︙ | |||
574 575 576 577 578 579 580 581 |
SYNTAX("incorrect F-card sort order");
}
break;
}
/*
** G <uuid>
**
| > | < > | 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 |
SYNTAX("incorrect F-card sort order");
}
break;
}
/*
** G <uuid>
** G <branchname>
**
** The G card records the UUID of a check-in or the name of a branch
** to which a remark is attached. The branchname is fossil-encoded.
*/
case 'G': {
if( p->zRemTarget ) SYNTAX("more than one G-card");
p->zRemTarget = next_token(&x, &sz);
defossilize(p->zRemTarget);
break;
}
|
| ︙ | ︙ |
Changes to www/fileformat.wiki.
| ︙ | ︙ | |||
534 535 536 537 538 539 540 | The Z card is the required checksum over the rest of the artifact. <a name="remark"></a> <h2>8.0 Remarks</h2> A remark artifact holds textual remarks that are added to a check-in or branch. | | | | | | 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 | The Z card is the required checksum over the rest of the artifact. <a name="remark"></a> <h2>8.0 Remarks</h2> A remark artifact holds textual remarks that are added to a check-in or branch. Remarks can hold expanded commentary about a check-in, a description about the purpose of a branch, notes from code-reviews, information about problems discovered in a check-in or branch, or other auxiliary textual information associated with a check-in or branch. The remark artifact is a new artifact added to this specification in early 2017. The following cards are allowed on a remark artifact: <blockquote> <b>D</b> <i>time-and-date-stamp</i><br /> <b>G</b> <i>checkin-or-branch</i><br /> |
| ︙ | ︙ |