Fossil

Check-in [ee1ff73a9e]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:missing parameter type
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: ee1ff73a9ef622d2c9d1399cd7bdf1109b7cc85d
User & Date: jan.nijtmans 2012-12-03 20:48:48.744
Context
2012-12-04
00:17
Change the encoding on the ZIP archive generator so that it preserves UTF8 filenames. ... (check-in: 3ff5ca0573 user: drh tags: trunk)
2012-12-03
22:03
Set bit 11 in the "general purpose bit flag" to 1. This indicates (according to the pkware documentation) that all filenames are in utf-8, in stead of IBM-437. This should fix ticket [838bde7990d8e190957cbfe7f15c77322dc54e57] ... (Closed-Leaf check-in: ceb11b0787 user: jan.nijtmans tags: utf8-in-zip)
20:48
missing parameter type ... (check-in: ee1ff73a9e user: jan.nijtmans tags: trunk)
2012-12-01
20:17
Add mimetype mappings for .docx, .pptx, and .xlsx. ... (check-in: 4e23c42f7e user: drh tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/rebuild.c.
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
  }
}


/*
** Called after each artifact is processed
*/
static void rebuild_step_done(rid){
  /* assert( bag_find(&bagDone, rid)==0 ); */
  bag_insert(&bagDone, rid);
  if( ttyOutput ){
    processCnt++;
    if (!g.fQuiet && totalSize>0) {
      percent_complete((processCnt*1000)/totalSize);
    }







|







183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
  }
}


/*
** Called after each artifact is processed
*/
static void rebuild_step_done(int rid){
  /* assert( bag_find(&bagDone, rid)==0 ); */
  bag_insert(&bagDone, rid);
  if( ttyOutput ){
    processCnt++;
    if (!g.fQuiet && totalSize>0) {
      percent_complete((processCnt*1000)/totalSize);
    }