668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
|
eflg |= MFESTFLG_UUID;
}
if( (pInclude==0 || glob_match(pInclude, "manifest.tags"))
&& !glob_match(pExclude, "manifest.tags")
&& (flg & MFESTFLG_TAGS) ){
eflg |= MFESTFLG_TAGS;
}
if( eflg & MFESTFLG_RAW ){
blob_append(&filename, "manifest", -1);
zName = blob_str(&filename);
if( listFlag ) fossil_print("%s\n", zName);
if( pZip ){
zip_add_folders(&sArchive, zName);
zip_add_file(&sArchive, zName, &mfile, 0);
|
>
>
>
>
|
|
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
|
eflg |= MFESTFLG_UUID;
}
if( (pInclude==0 || glob_match(pInclude, "manifest.tags"))
&& !glob_match(pExclude, "manifest.tags")
&& (flg & MFESTFLG_TAGS) ){
eflg |= MFESTFLG_TAGS;
}
if( (pInclude==0 || glob_match(pInclude, "manifest.descr"))
&& !glob_match(pExclude, "manifest.descr")
&& (flg & MFESTFLG_DESCR) ){
eflg |= MFESTFLG_DESCR;
}
if( eflg & MFESTFLG_RAW ){
blob_append(&filename, "manifest", -1);
zName = blob_str(&filename);
if( listFlag ) fossil_print("%s\n", zName);
if( pZip ){
zip_add_folders(&sArchive, zName);
zip_add_file(&sArchive, zName, &mfile, 0);
|
702
703
704
705
706
707
708
709
710
711
712
713
714
715
|
Blob tagslist;
blob_zero(&tagslist);
get_checkin_taglist(rid, &tagslist);
zip_add_folders(&sArchive, zName);
zip_add_file(&sArchive, zName, &tagslist, 0);
blob_reset(&tagslist);
}
}
}
manifest_file_rewind(pManifest);
if( pZip ) zip_add_file(&sArchive, "", 0, 0);
while( (pFile = manifest_file_next(pManifest,0))!=0 ){
int fid;
if( pInclude!=0 && !glob_match(pInclude, pFile->zName) ) continue;
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
|
Blob tagslist;
blob_zero(&tagslist);
get_checkin_taglist(rid, &tagslist);
zip_add_folders(&sArchive, zName);
zip_add_file(&sArchive, zName, &tagslist, 0);
blob_reset(&tagslist);
}
}
if( eflg & MFESTFLG_DESCR ){
blob_resize(&filename, nPrefix);
blob_append(&filename, "manifest.descr", -1);
zName = blob_str(&filename);
if( listFlag ) fossil_print("%s\n", zName);
if( pZip ){
CommitDescr cd;
Blob descr;
blob_zero(&descr);
describe_commit(rid_to_uuid(rid), "version*", &cd);
blob_appendf(&descr, "%s-%d-%10.10s\n", cd.zRelTagname,
cd.nCommitsSince, cd.zCommitHash);
zip_add_folders(&sArchive, zName);
zip_add_file(&sArchive, zName, &descr, 0);
blob_reset(&descr);
}
}
}
manifest_file_rewind(pManifest);
if( pZip ) zip_add_file(&sArchive, "", 0, 0);
while( (pFile = manifest_file_next(pManifest,0))!=0 ){
int fid;
if( pInclude!=0 && !glob_match(pInclude, pFile->zName) ) continue;
|