Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Remove a bunch of unused code. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
62f8acbe731dfe4dd21e77e88bd516fa |
| User & Date: | drh 2010-10-14 18:48:11.000 |
Context
|
2010-10-14
| ||
| 19:14 | Remove all use of ctypes.h in order to avoid compiler warnings and other problems associated with changing locales. ... (check-in: 2fac809165 user: drh tags: trunk) | |
| 18:48 | Remove a bunch of unused code. ... (check-in: 62f8acbe73 user: drh tags: trunk) | |
| 18:38 | Work towards including full text of deleted and added files in a diff when the -N or --new-file option is used. Ticket [e90d38c2054e9b44792eb] ... (check-in: 585360b47d user: drh tags: trunk) | |
Changes
Changes to src/config.h.
| ︙ | ︙ | |||
83 84 85 86 87 88 89 | #ifndef _RC_COMPILE_ #include "sqlite3.h" /* ** Typedef for a 64-bit integer */ | | | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | #ifndef _RC_COMPILE_ #include "sqlite3.h" /* ** Typedef for a 64-bit integer */ typedef sqlite3_int64 i64; typedef sqlite3_uint64 u64; /* ** Unsigned character type */ typedef unsigned char u8; /* In the timeline, check-in messages are truncated at the first space ** that is more than MX_CKIN_MSG from the beginning, or at the first ** paragraph break that is more than MN_CKIN_MSG from the beginning. */ #define MN_CKIN_MSG 100 #define MX_CKIN_MSG 300 |
| ︙ | ︙ |
Changes to src/report.c.
| ︙ | ︙ | |||
581 582 583 584 585 586 587 | @ title AS 'Title', @ wiki(substr(description,0,80)) AS 'Description' @ FROM ticket @ </pre></blockquote> @ } | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | 581 582 583 584 585 586 587 588 589 590 591 592 593 594 |
@ title AS 'Title',
@ wiki(substr(description,0,80)) AS 'Description'
@ FROM ticket
@ </pre></blockquote>
@
}
/*
** The state of the report generation.
*/
struct GenerateHTML {
int rn; /* Report number */
int nCount; /* Row number */
int nCol; /* Number of columns */
|
| ︙ | ︙ | |||
1103 1104 1105 1106 1107 1108 1109 |
sqlite3_set_authorizer(g.db, report_query_authorizer, (void*)&zErr1);
sqlite3_exec(g.db, zSql, output_separated_file, &count, &zErr2);
sqlite3_set_authorizer(g.db, 0, 0);
if( zFilter ){
free(zSql);
}
}
| < | 1074 1075 1076 1077 1078 1079 1080 |
sqlite3_set_authorizer(g.db, report_query_authorizer, (void*)&zErr1);
sqlite3_exec(g.db, zSql, output_separated_file, &count, &zErr2);
sqlite3_set_authorizer(g.db, 0, 0);
if( zFilter ){
free(zSql);
}
}
|