- Timestamp:
- Dec 27, 2007, 8:25:08 AM (16 years ago)
- Location:
- trunk/bin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bin/Parameter.cc
r519 r538 74 74 help(); 75 75 exit(0); // always exit after printing help 76 } 77 else if (myargv=="--ignore-cache"){ 78 ignore_cache_=true; 79 ok=true; 76 80 } 77 81 else if (myargv=="-r" || myargv=="--root"){ … … 181 185 force_=false; 182 186 generate_config_=false; 187 ignore_cache_=false; 183 188 report_=true; 184 189 revisions_=false; … … 217 222 << "to standard output and exit\n" 218 223 << "-h, --help\tdisplay this help and exit\n" 224 << " --ignore-cache\tIgnore cache files and analyze " 225 << "everything from repository\n" 219 226 << " --no-report\tCreate no HTML report\n" 220 227 << " --revisions\tUse revision numbers as time scale " -
trunk/bin/Parameter.h
r519 r538 41 41 inline bool force(void) const { return force_; } 42 42 inline bool generate_config(void) const { return generate_config_; } 43 inline bool ignore_cache(void) const { return ignore_cache_; } 43 44 inline bool report(void) const { return report_; } 44 45 inline bool revisions(void) const { return revisions_; } … … 59 60 bool force_; 60 61 bool generate_config_; 62 bool ignore_cache_; 61 63 bool report_; 62 64 bool revisions_; -
trunk/bin/svndigest.cc
r533 r538 151 151 if (option->verbose()) 152 152 std::cout << "Parsing directory tree" << std::endl; 153 StatsCollection stats(tree->parse(option->verbose() ));153 StatsCollection stats(tree->parse(option->verbose(), option->ignore_cache())); 154 154 155 155 if (option->report()) {
Note: See TracChangeset
for help on using the changeset viewer.