Configuration Cleanup

- Fixed typos in default config file.
- Removed default values for edit.verbose and echo.command, both of
  which are deprecated.
This commit is contained in:
Paul Beckingham
2012-02-05 14:37:22 -05:00
parent 412396d35b
commit c0f8ab3249

View File

@@ -76,7 +76,6 @@ std::string Config::_defaults =
"avoidlastcolumn=no # Fixes Cygwin width problem\n"
"hyphenate=on # Hyphenates lines wrapped on non-word-breaks\n"
"#editor=vi # Preferred text editor\n"
"edit.verbose=yes # Include comments in files created during task edit. Deprecated\n"
"\n"
"# Miscellaneous\n"
"verbose=yes # Provide maximal feedback\n"
@@ -84,7 +83,6 @@ std::string Config::_defaults =
"#verbose=list # Comma-separated list. May contain any subset of:\n"
"#verbose=blank,header,footnote,label,new-id,affected,edit,special\n"
"confirmation=yes # Confirmation on delete, big changes\n"
"echo.command=yes # Details on command just run. Deprecated\n"
"annotations=full # Level of verbosity for annotations: full, sparse or none\n"
"indent.annotation=2 # Indent spaces for annotations\n"
"indent.report=0 # Indent spaces for whole report\n"
@@ -137,17 +135,17 @@ std::string Config::_defaults =
"dependency.confirmation=on # Should dependency chain repair be confirmed?\n"
"\n"
"# Urgency Coefficients\n"
"urgency.next.coefficient=10.0 # Urgency coefficients for 'next' special tag\n"
"urgency.blocking.coefficient=9.0 # Urgency coefficients for blocking tasks\n"
"urgency.blocked.coefficient=-8.0 # Urgency coefficients for blocked tasks\n"
"urgency.due.coefficient=7.0 # Urgency coefficients for due dates\n"
"urgency.priority.coefficient=6.0 # Urgency coefficients for priorities\n"
"urgency.waiting.coefficient=5.0 # Urgency coefficients for waiting status\n"
"urgency.active.coefficient=4.0 # Urgency coefficients for active tasks\n"
"urgency.project.coefficient=3.0 # Urgency coefficients for projects\n"
"urgency.tags.coefficient=2.0 # Urgency coefficients for tags\n"
"urgency.annotations.coefficient=1.0 # Urgency coefficients for annotations\n"
"urgency.age.coefficient=5.0 # Urgency coefficients for age\n"
"urgency.next.coefficient=10.0 # Urgency coefficient for 'next' special tag\n"
"urgency.blocking.coefficient=9.0 # Urgency coefficient for blocking tasks\n"
"urgency.blocked.coefficient=-8.0 # Urgency coefficient for blocked tasks\n"
"urgency.due.coefficient=7.0 # Urgency coefficient for due dates\n"
"urgency.priority.coefficient=6.0 # Urgency coefficient for priorities\n"
"urgency.waiting.coefficient=5.0 # Urgency coefficient for waiting status\n"
"urgency.active.coefficient=4.0 # Urgency coefficient for active tasks\n"
"urgency.project.coefficient=3.0 # Urgency coefficient for projects\n"
"urgency.tags.coefficient=2.0 # Urgency coefficient for tags\n"
"urgency.annotations.coefficient=1.0 # Urgency coefficient for annotations\n"
"urgency.age.coefficient=5.0 # Urgency coefficient for age\n"
"urgency.age.max=365 # Maximum age in days\n"
"\n"
"#urgency.user.project.foo.coefficient=5.0 # Urgency coefficients for 'foo' project\n"