2020-05-08 00:48:47 +00:00
|
|
|
import tables
|
|
|
|
import types, prefs_impl
|
|
|
|
from config import get
|
|
|
|
from parsecfg import nil
|
2019-08-13 17:44:29 +00:00
|
|
|
|
2020-05-08 00:48:47 +00:00
|
|
|
export genUpdatePrefs, genResetPrefs
|
2019-08-15 16:41:35 +00:00
|
|
|
|
2020-05-08 00:48:47 +00:00
|
|
|
var defaultPrefs*: Prefs
|
2019-10-23 10:32:23 +00:00
|
|
|
|
2020-05-08 00:48:47 +00:00
|
|
|
proc updateDefaultPrefs*(cfg: parsecfg.Config) =
|
|
|
|
genDefaultPrefs()
|
2019-09-08 10:22:52 +00:00
|
|
|
|
2020-05-08 00:48:47 +00:00
|
|
|
proc getPrefs*(cookies: Table[string, string]): Prefs =
|
|
|
|
result = defaultPrefs
|
|
|
|
genCookiePrefs()
|