- Made configs work! configs: - debug - logging - logfile - ipget_endpoint_set - ipget_endpoint_get - site_name - search_enable - post_ranking_auto - index_post_sort - comment_sync_on_write - comment_auto_sync - logging framework! loglevels: - -1 - none - 0 - basic - 10 - datahorder - 1337 - haxxer now just logging commands!
18 lines
278 B
JavaScript
18 lines
278 B
JavaScript
// Standard YAML's Failsafe schema.
|
|
// http://www.yaml.org/spec/1.2/spec.html#id2802346
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
var Schema = require('../schema');
|
|
|
|
|
|
module.exports = new Schema({
|
|
explicit: [
|
|
require('../type/str'),
|
|
require('../type/seq'),
|
|
require('../type/map')
|
|
]
|
|
});
|