From 75458f730c96c6892df40da34a2966a349319007 Mon Sep 17 00:00:00 2001 From: André Erdmann Date: Wed, 10 Jul 2013 15:57:32 +0200 Subject: remove deprecated documentation files config/*.reference and doc/man/* are out-of-date and redundant since the provided documentation is available in doc/rst/. --- config/R-overlay.conf.reference | 342 ---------------------------------- config/repo.list.reference | 105 ----------- config/simple-deprules.conf.reference | 167 ----------------- 3 files changed, 614 deletions(-) delete mode 100644 config/R-overlay.conf.reference delete mode 100644 config/repo.list.reference delete mode 100644 config/simple-deprules.conf.reference (limited to 'config') diff --git a/config/R-overlay.conf.reference b/config/R-overlay.conf.reference deleted file mode 100644 index 067e1a7..0000000 --- a/config/R-overlay.conf.reference +++ /dev/null @@ -1,342 +0,0 @@ -# R-overlay.conf -# This file explains how to write a R overlay main config, -# it can also be used as config file. -# -# -- Table of contents -- -# -# 1 -- config value types and file syntax -# 2 -- config quickstart (basic overview of options to set) -# 3 -- config entries -# a -- misc -# b -- overlay -# c -- other config files -# d -- logging -# e -- other (debugging, testing, ...) -# -# -- end of ToC -- - -# = config value types and file syntax = - -# This file is parsed using shlex (shell-like syntax) -# * '#' is the comment char -# * variables ("${X}") are not supported -# * whitespace is ignored (in most cases) -# => whitespace in file paths is generally not supported, -# but may work with some restrictions -# * quotes are optional, but allow to span long values over multiple lines, -# e.g. << -# SIMPLE_RULES_FILE=" -# -# " -# >> -# -# -# some options have value type restrictions, -# -# special value types used in this config ("* allowed values: "): -# -# log level -- choose from {DEBUG, INFO, WARN, WARNING, ERROR, CRITICAL} -# bool -- string that represents a boolean value, -# true := {y,yes,on,1,true,enabled} -# false := {n,no,off,0,false,disabled} -# other values are not allowed -# -# -# implicit value types: -# -# list -- option has multiple values separated by whitespace, -# use quotes to specify more than one value -# -# file, dir -- value will be expanded ( ~ => ${HOME}, x => ${PWD}/x etc.), -# value has to be a file (or dir) if it exists -# -# -- often leads to errors (in case of value type restrictions), -# just comment out config entries -# -# -# -# "*** NOT IN USE ***" means that an option is read and integrated into -# the config tree, but never used (normal entry in config/entrymap). -# => value will be validated -# -# "***