Module:Template test case/config

Nothing to hide, but nothing to show you either.
Revision as of 01:29, 28 November 2014 by wikipedia>Mr. Stradivarius (add a messages table and expand the comments)
Jump to navigation Jump to search

Documentation for this module may be created at Module:Template test case/config/doc

-------------------------------------------------------------------------------
--                    Module:Template test case/config
-- This module holds configuration data for [[Module:Template test case]].
-------------------------------------------------------------------------------

return {

-------------------------------------------------------------------------------
-- Options
-------------------------------------------------------------------------------

-- The magic word used in place of the template name when making nowiki
-- invocations.
templateNameMagicWord = '__TEMPLATENAME__',

-- The subpage that sandboxes are typically stored on. Used when loading
-- wrapper template config so that wrapper template sandboxes load the same
-- config as wrapper templates.
sandboxSubpage = 'sandbox',

-------------------------------------------------------------------------------
-- Messages
-------------------------------------------------------------------------------

msg = {

-- The error message to use if a nowiki invocation is used but the template
-- name magic word is not found.
['nowiki-magic-word-error'] = "the template invocation must include '$1' in " ..
	"place of the template name",

},

-------------------------------------------------------------------------------
-- Wrapper template config.
-- The wrapper template config is a table with wrapper template names as keys,
-- and subtables containing two fields:
--   func - the function name to be used with that template. This must be a
--       function exported by the main module. This is optional: the default
--       value is "table".
--   args - a table of default arguments to be used with that template. This is
--       is optional.
-------------------------------------------------------------------------------

wrappers = {
	['Template:Test case'] = {},
	['Template:Testcase table'] = {
		args = {_format = 'columns'}
	},
	['Template:Testcase rows'] = {
		args = {_format = 'rows'}
	},
	['Template:Test case nowiki'] = {
		func = 'nowiki'
	}
}

-------------------------------------------------------------------------------
-- End config
-------------------------------------------------------------------------------

}