You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.0 KiB
32 lines
1.0 KiB
12 years ago
|
/** @mainpage ./tdeconf_update
|
||
15 years ago
|
|
||
12 years ago
|
tdeconf_update is a tool designed to update config files. Over time applications
|
||
15 years ago
|
sometimes need to rearrange the way configuration options are stored. Since
|
||
|
such an update shouldn't influence the configuration options that the user
|
||
|
has selected, the application must take care that the options stored in the
|
||
|
old way will still be honored.
|
||
|
|
||
|
What used to happen is that the application looks up both the old and the
|
||
|
new configuration option and then decides which one to use. This method has
|
||
|
several drawbacks:
|
||
|
- The application may need to read more configuration files than strictly
|
||
|
needed, resulting in a slower startup.
|
||
|
- The application becomes bigger with code that will only be used once.
|
||
|
|
||
12 years ago
|
tdeconf_update addresses these problems by offering a framework to update
|
||
15 years ago
|
configuration files without adding code to the application itself.
|
||
|
|
||
14 years ago
|
See the README file for more information.
|
||
15 years ago
|
|
||
|
@authors
|
||
|
Waldo Bastian \<bastian@kde.org\>
|
||
|
|
||
|
@maintainers
|
||
|
[Unknown/None]
|
||
|
|
||
|
@licenses
|
||
|
@lgpl
|
||
|
|
||
|
*/
|
||
|
// vim:ts=4:sw=4:expandtab:filetype=doxygen
|