Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | removed unneeded dependency on cson_amalgamation.h |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
116694817391b3d1cf444aa79a274ae3 |
| User & Date: | stephan 2012-02-29 22:13:15.946 |
Context
|
2012-03-01
| ||
| 13:40 | Leave the -original, -baseline, and -merge files around when an update or merge conflicts due to binary files. ... (check-in: 471044f664 user: drh tags: trunk) | |
|
2012-02-29
| ||
| 22:13 | removed unneeded dependency on cson_amalgamation.h ... (check-in: 1166948173 user: stephan tags: trunk) | |
| 21:39 | /json/timeline/checkin: changed response payload to include "parents" array property with UUIDs of all parents, removing the parentUuid property which just referenced the primary parent. The first parent in the array is the primary parent. Thanks go to Brian Smith for catching this oversight. ... (check-in: 0c9c99b83f user: stephan tags: trunk) | |
Changes
Changes to src/report.c.
| ︙ | ︙ | |||
17 18 19 20 21 22 23 | ** ** Code to generate the ticket listings */ #include "config.h" #include <time.h> #include "report.h" #include <assert.h> | < < < | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | ** ** Code to generate the ticket listings */ #include "config.h" #include <time.h> #include "report.h" #include <assert.h> /* Forward references to static routines */ static void report_format_hints(void); /* ** WEBPAGE: /reportlist */ |
| ︙ | ︙ |
Changes to src/timeline.c.
| ︙ | ︙ | |||
18 19 20 21 22 23 24 | ** This file contains code to implement the timeline web page ** */ #include <string.h> #include <time.h> #include "config.h" #include "timeline.h" | < < < | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
** This file contains code to implement the timeline web page
**
*/
#include <string.h>
#include <time.h>
#include "config.h"
#include "timeline.h"
/*
** Shorten a UUID so that is the minimum length needed to contain
** at least one digit in the range 'a'..'f'. The minimum length is 10.
*/
static void shorten_uuid(char *zDest, const char *zSrc){
int i;
|
| ︙ | ︙ |