- 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!
23 lines
538 B
JavaScript
23 lines
538 B
JavaScript
// JS-YAML's default schema for `safeLoad` function.
|
|
// It is not described in the YAML specification.
|
|
//
|
|
// This schema is based on standard YAML's Core schema and includes most of
|
|
// extra types described at YAML tag repository. (http://yaml.org/type/)
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
module.exports = require('./core').extend({
|
|
implicit: [
|
|
require('../type/timestamp'),
|
|
require('../type/merge')
|
|
],
|
|
explicit: [
|
|
require('../type/binary'),
|
|
require('../type/omap'),
|
|
require('../type/pairs'),
|
|
require('../type/set')
|
|
]
|
|
});
|