969eb271ad2c5a82687c643f60f49a7f86915035
[fanfix.git] / src / be / nikiroo / fanfix / bundles / Config.java
1 package be.nikiroo.fanfix.bundles;
2
3 import be.nikiroo.utils.resources.Meta;
4
5 /**
6 * The configuration options.
7 *
8 * @author niki
9 */
10 public enum Config {
11 @Meta(what = "language", where = "", format = "language (example: en-GB) or nothing for default system language", info = "Force the language (can be overwritten again with the env variable $LANG)")
12 LANG, //
13 @Meta(what = "directory", where = "", format = "absolute path, $HOME variable supported, / is always accepted as dir separator", info = "The directory where to store temporary files, defaults to a directory 'fanfic-tmp' in the system default temporary directory")
14 CACHE_DIR, //
15 @Meta(what = "delay in hours", where = "", format = "integer | 0: no cache | -1: infinite time cache which is default", info = "The delay after which a cached resource that is thought to change ~often is considered too old and triggers a refresh")
16 CACHE_MAX_TIME_CHANGING, //
17 @Meta(what = "delay in hours", where = "", format = "integer | 0: no cache | -1: infinite time cache which is default", info = "The delay after which a cached resource that is thought to change rarely is considered too old and triggers a refresh")
18 CACHE_MAX_TIME_STABLE, //
19 @Meta(what = "string", where = "", format = "", info = "The user-agent to use to download files")
20 USER_AGENT, //
21 @Meta(what = "directory", where = "", format = "absolute path, $HOME variable supported, / is always accepted as dir separator", info = "The directory where to get the default story covers")
22 DEFAULT_COVERS_DIR, //
23 @Meta(what = "directory", where = "", format = "absolute path, $HOME variable supported, / is always accepted as dir separator", info = "The directory where to store the library")
24 LIBRARY_DIR, //
25 @Meta(what = "boolean", where = "", format = "'true' or 'false'", info = "Show debug information on errors")
26 DEBUG_ERR, //
27 @Meta(what = "image format", where = "", format = "PNG, JPG, BMP...", info = "Image format to use for cover images")
28 IMAGE_FORMAT_COVER, //
29 @Meta(what = "image format", where = "", format = "PNG, JPG, BMP...", info = "Image format to use for content images")
30 IMAGE_FORMAT_CONTENT, //
31 @Meta(what = "", where = "", format = "not used", info = "This key is only present to allow access to suffixes")
32 LATEX_LANG, //
33 @Meta(what = "LaTeX output language", where = "LaTeX", format = "", info = "LaTeX full name for English")
34 LATEX_LANG_EN, //
35 @Meta(what = "LaTeX output language", where = "LaTeX", format = "", info = "LaTeX full name for French")
36 LATEX_LANG_FR, //
37 @Meta(what = "other 'by' prefixes before author name", where = "", format = "coma-separated list", info = "used to identify the author")
38 BYS, //
39 @Meta(what = "Chapter identification languages", where = "", format = "coma-separated list", info = "used to identify a starting chapter in text mode")
40 CHAPTER, //
41 @Meta(what = "Chapter identification string", where = "", format = "", info = "used to identify a starting chapter in text mode")
42 CHAPTER_EN, //
43 @Meta(what = "Chapter identification string", where = "", format = "", info = "used to identify a starting chapter in text mode")
44 CHAPTER_FR, //
45 }