- Timestamp:
- Jun 12, 2010, 7:33:49 AM (13 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/NEWS
r1081 r1087 5 5 Version 0.8 (released NOT YET) 6 6 - Gnuplot replaced with plplot (ticket:97) 7 - option --copyright deprecated; use new program snvcopyright (ticket #307) 7 8 - new option --format (ticket:438) 8 9 - new option --anchor-format (ticket:279) -
trunk/bin/svndigestParameter.cc
r1085 r1087 56 56 anchor_format_(cmd_,"anchor-format", 57 57 "override anchor image format defined in config file"), 58 copyright_(cmd_, "copyright", " update copyright statement"),58 copyright_(cmd_, "copyright", "DEPRECATED update copyright statement"), 59 59 force_(cmd_, "f,force", 60 60 std::string("if sub-directory named <ROOT> exists in target dire")+ … … 66 66 target_(cmd_, "t,target", "output directory [.]") 67 67 { 68 // set default values69 /*70 if (!target_.present())71 target_.value(".");72 */73 68 } 74 69 … … 113 108 target_.value(pwd()); 114 109 chdir(save_wd); 110 } 111 if (copyright()) { 112 std::cerr << "svndigest: option `--copyright' is deprecated " 113 << "and will disappear in the future.\n" 114 << "Use svncopyright instaed.\n"; 115 115 } 116 116 } … … 173 173 void svndigestParameter::set_default2(void) 174 174 { 175 175 if (!target_.present()) 176 target_.value("."); 176 177 } 177 178
Note: See TracChangeset
for help on using the changeset viewer.