模組:沙盒/Liangent/ArticleData/timeline

维基百科,自由的百科全书
文档图示 模块文档[创建]
local actions = require( 'Module:ArticleData/actions' )

return {

	epoch = {
		timestamp = '20140301000000',
		data = {
			['华纳兄弟'] = { tags = { 'GA' } },
			['胡春香'] = { tags = { 'FA' } },
		},
	},

	events = {
		{
			timestamp = '20140322000000',
			title = '汤姆叔叔的小屋',
			action = actions.tagGA,
		},
		{
			timestamp = '20140324000000',
			title = 'Rosetta@home',
			action = actions.tagFA,
		},
		{
			timestamp = '20140328000000',
			title = '史蒂芬·霍金',
			action = actions.tagGA,
		},
		{
			timestamp = '20140402000000',
			title = '汤姆叔叔的小屋',
			action = actions.tagFA, -- imply actions.untagGA
		},
		{
			timestamp = '20140418000000',
			title = '史蒂芬·霍金',
			action = actions.untagGA,
		},
	},

}