Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | merge from trunk |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | StvPrivateHook2 |
| Files: | files | file ages | folders |
| SHA1: |
4a094f46ade70bd9d1e4ffa48cbe94b4 |
| User & Date: | wolfgang 2010-11-01 18:52:37.000 |
Context
|
2010-11-02
| ||
| 18:23 | merge from trunk ... (check-in: cb75de51b5 user: wolfgang tags: StvPrivateHook2) | |
|
2010-11-01
| ||
| 18:52 | merge from trunk ... (check-in: 4a094f46ad user: wolfgang tags: StvPrivateHook2) | |
| 14:23 | Fix a typo in the file format documentation reported on the Tcl/Tk chatroom. ... (check-in: d0753799e4 user: drh tags: trunk, release) | |
|
2010-10-31
| ||
| 11:10 | makemake.tcl updated to generate valid Makefile.dmc ... (check-in: 4146190600 user: wolfgang tags: StvPrivateHook2) | |
Changes
Changes to src/main.c.
| ︙ | ︙ | |||
1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 |
** COMMAND: sqlite3
**
** Usage: %fossil sqlite3 ?DATABASE? ?OPTIONS?
**
** Run the standalone sqlite3 command-line shell on DATABASE with OPTIONS.
** If DATABASE is omitted, then the repository that serves the working
** directory is opened.
*/
void sqlite3_cmd(void){
extern int sqlite3_shell(int, char**);
sqlite3_shell(g.argc-1, g.argv+1);
}
/*
| > > > > | 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 |
** COMMAND: sqlite3
**
** Usage: %fossil sqlite3 ?DATABASE? ?OPTIONS?
**
** Run the standalone sqlite3 command-line shell on DATABASE with OPTIONS.
** If DATABASE is omitted, then the repository that serves the working
** directory is opened.
**
** WARNING: Careless use of this command can corrupt a Fossil repository
** in ways that are unrecoverable. Be sure you know what you are doing before
** running any SQL commands that modifies the repository database.
*/
void sqlite3_cmd(void){
extern int sqlite3_shell(int, char**);
sqlite3_shell(g.argc-1, g.argv+1);
}
/*
|
| ︙ | ︙ |
Changes to www/fileformat.wiki.
| ︙ | ︙ | |||
117 118 119 120 121 122 123 | A delta-manifest records only changes from its baseline. A manifest must have exactly one C-card. The sole argument to the C-card is a check-in comment that describes the check-in that the manifest defines. The check-in comment is text. The following escape sequences are applied to the text: A space (ASCII 0x20) is represented as "\s" (ASCII 0x5C, 0x73). A | | | 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 | A delta-manifest records only changes from its baseline. A manifest must have exactly one C-card. The sole argument to the C-card is a check-in comment that describes the check-in that the manifest defines. The check-in comment is text. The following escape sequences are applied to the text: A space (ASCII 0x20) is represented as "\s" (ASCII 0x5C, 0x73). A newline (ASCII 0x0a) is "\n" (ASCII 0x5C, x6E). A backslash (ASCII 0x5C) is represented as two backslashes "\\". Apart from space and newline, no other whitespace characters are allowed in the check-in comment. Nor are any unprintable characters allowed in the comment. A manifest must have exactly one D-card. The sole argument to the D-card is a date-time stamp in the ISO8601 format. The |
| ︙ | ︙ |