Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | [c541b6e734] Remove unintended white space change in wiki.c |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | technoteattachcli |
Files: | files | file ages | folders |
SHA1: |
d4dc7ad8dc8cbce73b4b077f45928e9c |
User & Date: | dave.vines 2016-01-05 10:12:56 |
Context
2016-03-13
| ||
23:55 | Merged trunk for changes since January and test suite improvements. ... (check-in: 8fa24960 user: rberteig tags: technoteattachcli) | |
2016-01-05
| ||
10:12 | [c541b6e734] Remove unintended white space change in wiki.c ... (check-in: d4dc7ad8 user: dave.vines tags: technoteattachcli) | |
08:40 | [c541b6e734] Move attachment command from wiki.c to attach.c ... (check-in: 64a5ef28 user: dave.vines tags: technoteattachcli) | |
Changes
Changes to src/wiki.c.
︙ | ︙ | |||
1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 | const char *zFile; /* Name of the output file (0=stdout) */ const char *zETime; /* The name of the technote to export */ int rid; /* Artifact ID of the wiki page */ int i; /* Loop counter */ char *zBody = 0; /* Wiki page content */ Blob body; /* Wiki page content */ Manifest *pWiki = 0; /* Parsed wiki page content */ zETime = find_option("technote","t",1); if( !zETime ){ if( (g.argc!=4) && (g.argc!=5) ){ usage("export PAGENAME ?FILE?"); } zPageName = g.argv[3]; rid = db_int(0, "SELECT x.rid FROM tag t, tagxref x" | > | 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 | const char *zFile; /* Name of the output file (0=stdout) */ const char *zETime; /* The name of the technote to export */ int rid; /* Artifact ID of the wiki page */ int i; /* Loop counter */ char *zBody = 0; /* Wiki page content */ Blob body; /* Wiki page content */ Manifest *pWiki = 0; /* Parsed wiki page content */ zETime = find_option("technote","t",1); if( !zETime ){ if( (g.argc!=4) && (g.argc!=5) ){ usage("export PAGENAME ?FILE?"); } zPageName = g.argv[3]; rid = db_int(0, "SELECT x.rid FROM tag t, tagxref x" |
︙ | ︙ |