<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-GB">
	<id>https://stockhub.co/index.php?action=history&amp;feed=atom&amp;title=Module%3ATelevision_critical_response%2Fsandbox</id>
	<title>Module:Television critical response/sandbox - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://stockhub.co/index.php?action=history&amp;feed=atom&amp;title=Module%3ATelevision_critical_response%2Fsandbox"/>
	<link rel="alternate" type="text/html" href="https://stockhub.co/index.php?title=Module:Television_critical_response/sandbox&amp;action=history"/>
	<updated>2026-05-24T15:25:36Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.5</generator>
	<entry>
		<id>https://stockhub.co/index.php?title=Module:Television_critical_response/sandbox&amp;diff=147194&amp;oldid=prev</id>
		<title>imported&gt;WOSlinker: use require(&#039;strict&#039;) instead of require(&#039;Module:No globals&#039;)</title>
		<link rel="alternate" type="text/html" href="https://stockhub.co/index.php?title=Module:Television_critical_response/sandbox&amp;diff=147194&amp;oldid=prev"/>
		<updated>2022-10-21T10:03:17Z</updated>

		<summary type="html">&lt;p&gt;use require(&amp;#039;strict&amp;#039;) instead of require(&amp;#039;Module:No globals&amp;#039;)&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;-- This module implements {{Television critical response}}.&lt;br /&gt;
&lt;br /&gt;
require(&amp;#039;strict&amp;#039;)&lt;br /&gt;
local yesno = require(&amp;#039;Module:Yesno&amp;#039;)&lt;br /&gt;
&lt;br /&gt;
--------------------------------------------------------------------------------&lt;br /&gt;
-- CriticalResponse class&lt;br /&gt;
-- The main class.&lt;br /&gt;
--------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
local CriticalResponse = {}&lt;br /&gt;
&lt;br /&gt;
function CriticalResponse.cellspan(SeasonEntries, SeasonEntries_ordered, key, cell, multipart)&lt;br /&gt;
	local spanlength = 1&lt;br /&gt;
	&lt;br /&gt;
	for i = cell+1, #SeasonEntries_ordered do&lt;br /&gt;
		local entry = SeasonEntries[SeasonEntries_ordered[i]]&lt;br /&gt;
		-- Split season, then regular season&lt;br /&gt;
		if entry.startA then&lt;br /&gt;
			if not entry[key..&amp;#039;A&amp;#039;] then spanlength = spanlength + 1&lt;br /&gt;
			else break end&lt;br /&gt;
			if not entry[key..&amp;#039;B&amp;#039;] then spanlength = spanlength + 1&lt;br /&gt;
			else break end&lt;br /&gt;
		else&lt;br /&gt;
			if not entry[key] and (not entry.special and multipart) then&lt;br /&gt;
				spanlength = spanlength + 1&lt;br /&gt;
			else break end&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	return spanlength&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
-- Sorting function&lt;br /&gt;
function CriticalResponse.series_sort(op1, op2)&lt;br /&gt;
	local n1,s1 = string.match(op1,&amp;quot;(%d+)(%a*)&amp;quot;)&lt;br /&gt;
	local n2,s2 = string.match(op2,&amp;quot;(%d+)(%a*)&amp;quot;)&lt;br /&gt;
	local n1N,n2N = tonumber(n1),tonumber(n2)&lt;br /&gt;
&lt;br /&gt;
	if n1N == n2N then&lt;br /&gt;
		return s1 &amp;lt; s2&lt;br /&gt;
	else&lt;br /&gt;
		return n1N &amp;lt; n2N&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
-- Function to add either text or {{N/a}} to cell&lt;br /&gt;
function CriticalResponse.season_cell(text, frame)&lt;br /&gt;
	local cell&lt;br /&gt;
	&lt;br /&gt;
	if string.find(text or &amp;#039;&amp;#039;, &amp;#039;table-na&amp;#039;, 0, true) ~= nil then&lt;br /&gt;
		local findpipe = string.find(text, &amp;#039; | &amp;#039;, 0, true)&lt;br /&gt;
		if findpipe ~= nil then&lt;br /&gt;
			cell = CriticalResponse.series_attributes( frame:expandTemplate{title=&amp;#039;N/A&amp;#039;,args={string.sub(text,findpipe+3)}} )&lt;br /&gt;
		else&lt;br /&gt;
			cell = CriticalResponse.series_attributes( frame:expandTemplate{title=&amp;#039;N/A&amp;#039;} )&lt;br /&gt;
		end&lt;br /&gt;
	else&lt;br /&gt;
		cell = mw.html.create(&amp;#039;td&amp;#039;):wikitext(text)&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	return cell&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
-- Allow usages of {{N/A}} cells&lt;br /&gt;
function CriticalResponse.series_attributes(infoParam)&lt;br /&gt;
	local entries = {}&lt;br /&gt;
	local infoCell = mw.html.create(&amp;#039;td&amp;#039;)&lt;br /&gt;
	local attrMatch = &amp;#039;([%a-]*)=&amp;quot;([^&amp;quot;]*)&amp;quot;&amp;#039;&lt;br /&gt;
	&lt;br /&gt;
	while true do&lt;br /&gt;
		local a,b = string.match(infoParam,attrMatch)&lt;br /&gt;
		if a == nil or b == nil then break end&lt;br /&gt;
		infoCell:attr(a,b)&lt;br /&gt;
		infoParam = string.gsub(infoParam,attrMatch,&amp;#039;&amp;#039;,1)&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	infoParam = string.gsub(infoParam,&amp;#039;%s*|%s*&amp;#039;,&amp;#039;&amp;#039;,1)&lt;br /&gt;
	infoCell:wikitext(infoParam)&lt;br /&gt;
	&lt;br /&gt;
	return infoCell&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function CriticalResponse.new(frame, args)&lt;br /&gt;
	args = args or {}&lt;br /&gt;
	&lt;br /&gt;
	local initialArticle = args[&amp;#039;1&amp;#039;] or &amp;#039;&amp;#039;&lt;br /&gt;
	local categories = &amp;#039;&amp;#039;&lt;br /&gt;
	local title = mw.title.getCurrentTitle()&lt;br /&gt;
	local hide_rotten_tomatoes = yesno(args.hide_rotten_tomatoes)&lt;br /&gt;
	local hide_metacritic = yesno(args.hide_metacritic)&lt;br /&gt;
	local show_cinemascore = yesno(args.show_cinemascore)&lt;br /&gt;
	local hide_season = yesno(args.hide_season)&lt;br /&gt;
	local series_name = tostring(title):gsub(&amp;quot;%s%((.-)%)&amp;quot;,&amp;quot;&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
	-- Create critical response table&lt;br /&gt;
	local root = mw.html.create((args.multiseries or not args.series) and &amp;#039;table&amp;#039; or &amp;#039;&amp;#039;)&lt;br /&gt;
	local cellPadding = &amp;#039;0 8px&amp;#039;&lt;br /&gt;
	local basePadding = &amp;#039;0.2em 0.4em&amp;#039;&lt;br /&gt;
	&lt;br /&gt;
	root&lt;br /&gt;
		:addClass(&amp;#039;wikitable&amp;#039;)&lt;br /&gt;
		:addClass(&amp;#039;plainrowheaders&amp;#039;)&lt;br /&gt;
		:css(&amp;#039;text-align&amp;#039;, &amp;#039;center&amp;#039;)&lt;br /&gt;
		&lt;br /&gt;
	-- Remove float if multiple series&lt;br /&gt;
	if not args.multiseries then&lt;br /&gt;
		root:css(&amp;#039;float&amp;#039;, &amp;#039;right&amp;#039;)&lt;br /&gt;
		root:css(&amp;#039;margin&amp;#039;, &amp;#039;10px&amp;#039;)&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	-- Sortable&lt;br /&gt;
	if args.sortable or args.multiseries then&lt;br /&gt;
		root:addClass(&amp;#039;sortable&amp;#039;);&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	-- Width&lt;br /&gt;
	if args.width then&lt;br /&gt;
		root:css(&amp;#039;width&amp;#039;, args.width)&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	-- Caption&lt;br /&gt;
	if not args.series then&lt;br /&gt;
		local formatted_caption&lt;br /&gt;
		&lt;br /&gt;
		if args.caption then&lt;br /&gt;
			formatted_caption = args.caption&lt;br /&gt;
		elseif args.title and args.multiseries then&lt;br /&gt;
			formatted_caption = &amp;#039;Critical response of &amp;#039; .. args.title&lt;br /&gt;
		elseif args.title then&lt;br /&gt;
			formatted_caption = &amp;#039;Critical response of &amp;lt;i&amp;gt;&amp;#039; .. args.title .. &amp;#039;&amp;lt;/i&amp;gt;&amp;#039;&lt;br /&gt;
		else&lt;br /&gt;
			formatted_caption = &amp;#039;Critical response of &amp;lt;i&amp;gt;&amp;#039; .. series_name .. &amp;#039;&amp;lt;/i&amp;gt;&amp;#039;&lt;br /&gt;
		end&lt;br /&gt;
		&lt;br /&gt;
		if args.show_caption then&lt;br /&gt;
			-- Visible caption option&lt;br /&gt;
			root:tag(&amp;#039;caption&amp;#039;):wikitext(formatted_caption)&lt;br /&gt;
		elseif formatted_caption then&lt;br /&gt;
			-- If a visible caption isn&amp;#039;t defined, then default to the screenreader-only caption&lt;br /&gt;
			root:tag(&amp;#039;caption&amp;#039;):wikitext(frame:expandTemplate{title=&amp;#039;Screen reader-only&amp;#039;,args={formatted_caption}})&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	-- Extract seasons info and place into a 3D array&lt;br /&gt;
	local SeasonEntries = {}&lt;br /&gt;
	local SeasonCount = 0&lt;br /&gt;
	for k,v in pairs(args) do&lt;br /&gt;
		local str, num, str2 = string.match(k, &amp;#039;([^%d]*)(%d*)(%a*)&amp;#039;)&lt;br /&gt;
		if num ~= &amp;#039;&amp;#039; then&lt;br /&gt;
			-- Special&lt;br /&gt;
			local special = false&lt;br /&gt;
			if string.sub(str2,1,1) == &amp;#039;S&amp;#039; then&lt;br /&gt;
				special = true&lt;br /&gt;
				num = num .. str2&lt;br /&gt;
				str2 = &amp;#039;&amp;#039;&lt;br /&gt;
			end&lt;br /&gt;
			-- Add to entries, create if necessary&lt;br /&gt;
			if not SeasonEntries[num] then&lt;br /&gt;
				SeasonEntries[num] = {}&lt;br /&gt;
				SeasonCount = SeasonCount + 1&lt;br /&gt;
			end&lt;br /&gt;
			SeasonEntries[num][str .. str2] = v&lt;br /&gt;
			if special then&lt;br /&gt;
				SeasonEntries[num][&amp;#039;special&amp;#039;] = &amp;#039;y&amp;#039;&lt;br /&gt;
			end&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	-- Order table by season number&lt;br /&gt;
	local SeasonEntries_ordered = {}&lt;br /&gt;
	for k in pairs(SeasonEntries) do&lt;br /&gt;
		table.insert(SeasonEntries_ordered, k)&lt;br /&gt;
	end&lt;br /&gt;
	table.sort(SeasonEntries_ordered,CriticalResponse.series_sort)&lt;br /&gt;
	&lt;br /&gt;
	local firstRow = args.multiseries and {} or SeasonEntries[SeasonEntries_ordered[1]]&lt;br /&gt;
&lt;br /&gt;
	-- Headers&lt;br /&gt;
	do&lt;br /&gt;
		if args.multiseries or not args.series then&lt;br /&gt;
			local headerRow = root:tag(&amp;#039;tr&amp;#039;)&lt;br /&gt;
			headerRow&lt;br /&gt;
				:css(&amp;#039;text-align&amp;#039;, &amp;#039;center&amp;#039;)&lt;br /&gt;
			&lt;br /&gt;
			-- Multiple series header&lt;br /&gt;
			if args.multiseries then&lt;br /&gt;
				headerRow:tag(&amp;#039;th&amp;#039;)&lt;br /&gt;
					:attr(&amp;#039;scope&amp;#039;, &amp;#039;col&amp;#039;)&lt;br /&gt;
					:css(&amp;#039;padding&amp;#039;, cellPadding)&lt;br /&gt;
					:wikitext(&amp;#039;Title&amp;#039;)&lt;br /&gt;
			end&lt;br /&gt;
			&lt;br /&gt;
			-- Season header&lt;br /&gt;
			if not hide_season then&lt;br /&gt;
				headerRow:tag(&amp;#039;th&amp;#039;)&lt;br /&gt;
					:attr(&amp;#039;scope&amp;#039;, &amp;#039;col&amp;#039;)&lt;br /&gt;
					:css(&amp;#039;min-width&amp;#039;, &amp;#039;50px&amp;#039;)&lt;br /&gt;
					:css(&amp;#039;padding&amp;#039;, cellPadding)&lt;br /&gt;
					:addClass(&amp;#039;unsortable&amp;#039;)&lt;br /&gt;
					:wikitext(args.seriesT or args.seasonT or &amp;#039;Season&amp;#039;)&lt;br /&gt;
			end&lt;br /&gt;
&lt;br /&gt;
			-- Rotten Tomatoes header&lt;br /&gt;
			if not hide_rotten_tomatoes then&lt;br /&gt;
				headerRow:tag(&amp;#039;th&amp;#039;)&lt;br /&gt;
					:attr(&amp;#039;scope&amp;#039;, &amp;#039;col&amp;#039;)&lt;br /&gt;
					:wikitext(&amp;#039;[[Rotten Tomatoes]]&amp;#039;)&lt;br /&gt;
			end&lt;br /&gt;
&lt;br /&gt;
			-- Metacritic header&lt;br /&gt;
			if not hide_metacritic then&lt;br /&gt;
				headerRow:tag(&amp;#039;th&amp;#039;)&lt;br /&gt;
					:attr(&amp;#039;scope&amp;#039;, &amp;#039;col&amp;#039;)&lt;br /&gt;
					:wikitext(&amp;#039;[[Metacritic]]&amp;#039;)&lt;br /&gt;
			end&lt;br /&gt;
			&lt;br /&gt;
			-- CinemaScore header&lt;br /&gt;
			if show_cinemascore then&lt;br /&gt;
				headerRow:tag(&amp;#039;th&amp;#039;)&lt;br /&gt;
					:attr(&amp;#039;scope&amp;#039;, &amp;#039;col&amp;#039;)&lt;br /&gt;
					:wikitext(&amp;#039;[[CinemaScore]]&amp;#039;)&lt;br /&gt;
			end&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	-- Season rows&lt;br /&gt;
	do&lt;br /&gt;
		if args.multiseries then&lt;br /&gt;
			-- Multi series individual entries&lt;br /&gt;
			if args.multiseries ~= &amp;quot;y&amp;quot; then&lt;br /&gt;
				root:node(args.multiseries)&lt;br /&gt;
			end&lt;br /&gt;
		else&lt;br /&gt;
			-- One row entries, only categorized in the mainspace&lt;br /&gt;
			if SeasonCount == 1 then&lt;br /&gt;
				categories = categories .. &amp;#039;[[Category:Articles using Template:Television critical response with only one row]]&amp;#039;&lt;br /&gt;
			end&lt;br /&gt;
		&lt;br /&gt;
			-- Determine number of rows in the whole table&lt;br /&gt;
			local SeasonEntriesRows = 0&lt;br /&gt;
			for X = 1, #SeasonEntries_ordered do&lt;br /&gt;
				local season, entry = SeasonEntries_ordered[X], SeasonEntries[SeasonEntries_ordered[X]]&lt;br /&gt;
				SeasonEntriesRows = SeasonEntriesRows + 1&lt;br /&gt;
			end&lt;br /&gt;
			&lt;br /&gt;
			for X = 1, #SeasonEntries_ordered do&lt;br /&gt;
				local season, entry = SeasonEntries_ordered[X], SeasonEntries[SeasonEntries_ordered[X]]&lt;br /&gt;
				&lt;br /&gt;
				-- Season rows for each season&lt;br /&gt;
				for k0 = string.byte(&amp;#039;A&amp;#039;)-1, string.byte(&amp;#039;Z&amp;#039;) do&lt;br /&gt;
					local k = string.char(k0)&lt;br /&gt;
					if k0 == string.byte(&amp;#039;A&amp;#039;)-1 then k = &amp;#039;&amp;#039; end&lt;br /&gt;
					&lt;br /&gt;
					-- New season row&lt;br /&gt;
					local seasonRow = (entry[&amp;#039;rotten_tomatoes&amp;#039; .. k] or entry[&amp;#039;metacritic&amp;#039; .. k] or entry[&amp;#039;cinemascore&amp;#039; .. k]) and root:tag(&amp;#039;tr&amp;#039;) or mw.html.create(&amp;#039;tr&amp;#039;)&lt;br /&gt;
					&lt;br /&gt;
					-- Series name for group overviews&lt;br /&gt;
					if X == 1 and (k == &amp;#039;&amp;#039; or k == &amp;#039;A&amp;#039;) and args.series then&lt;br /&gt;
						seasonRow:tag(&amp;#039;th&amp;#039;)&lt;br /&gt;
							:attr(&amp;#039;scope&amp;#039;, &amp;#039;row&amp;#039;)&lt;br /&gt;
							:attr(&amp;#039;rowspan&amp;#039;, SeasonEntriesRows)&lt;br /&gt;
							:wikitext(args.series)&lt;br /&gt;
					end&lt;br /&gt;
					&lt;br /&gt;
					-- Season number link, included only in the first row&lt;br /&gt;
					if not hide_season then&lt;br /&gt;
						if k == &amp;#039;&amp;#039; or k == &amp;#039;A&amp;#039; then&lt;br /&gt;
							seasonRow:tag(args.series and &amp;#039;td&amp;#039; or &amp;#039;th&amp;#039;)&lt;br /&gt;
								:attr(&amp;#039;scope&amp;#039;, &amp;#039;row&amp;#039;)&lt;br /&gt;
								:attr(&amp;#039;colspan&amp;#039;, entry.special or 1)&lt;br /&gt;
								:css(&amp;#039;text-align&amp;#039;, &amp;#039;center&amp;#039;)&lt;br /&gt;
								:wikitext((entry.link and &amp;#039;[[&amp;#039; .. entry.link .. &amp;#039;|&amp;#039; .. (entry.linkT or season) .. &amp;#039;]]&amp;#039; or (entry.linkT or season)) .. (entry.linkR or &amp;#039;&amp;#039;))&lt;br /&gt;
						end&lt;br /&gt;
					end&lt;br /&gt;
				&lt;br /&gt;
					-- Rotten Tomatoes&lt;br /&gt;
					if not hide_rotten_tomatoes and entry[&amp;#039;rotten_tomatoes&amp;#039; .. k] ~= &amp;#039;metacritic&amp;#039; then&lt;br /&gt;
						if entry[&amp;#039;rotten_tomatoes&amp;#039; .. k] then&lt;br /&gt;
							local thisCell = CriticalResponse.season_cell(entry[&amp;#039;rotten_tomatoes&amp;#039; .. k], frame)&lt;br /&gt;
								:css(&amp;#039;padding&amp;#039;,basePadding)&lt;br /&gt;
							seasonRow:node(thisCell)&lt;br /&gt;
						else&lt;br /&gt;
							local infoCell = CriticalResponse.series_attributes( frame:expandTemplate{title=&amp;#039;N/A&amp;#039;} )&lt;br /&gt;
							infoCell:css(&amp;#039;padding&amp;#039;,basePadding)&lt;br /&gt;
							seasonRow:node(infoCell)&lt;br /&gt;
						end&lt;br /&gt;
					end&lt;br /&gt;
					&lt;br /&gt;
					-- Metacritic&lt;br /&gt;
					if not hide_metacritic and entry[&amp;#039;metacritic&amp;#039; .. k] ~= &amp;#039;rotten_tomatoes&amp;#039; then&lt;br /&gt;
						if entry[&amp;#039;metacritic&amp;#039; .. k] then&lt;br /&gt;
							local thisCell = CriticalResponse.season_cell(entry[&amp;#039;metacritic&amp;#039; .. k], frame)&lt;br /&gt;
								:css(&amp;#039;padding&amp;#039;,cellPadding)&lt;br /&gt;
							seasonRow:node(thisCell)&lt;br /&gt;
						else&lt;br /&gt;
							local infoCell = CriticalResponse.series_attributes( frame:expandTemplate{title=&amp;#039;N/A&amp;#039;} )&lt;br /&gt;
							infoCell:css(&amp;#039;padding&amp;#039;,cellPadding)&lt;br /&gt;
							seasonRow:node(infoCell)&lt;br /&gt;
						end&lt;br /&gt;
					end&lt;br /&gt;
					&lt;br /&gt;
					-- CinemaScore&lt;br /&gt;
					if show_cinemascore and entry[&amp;#039;cinemascore&amp;#039; .. k] ~= &amp;#039;rotten_tomatoes&amp;#039; then&lt;br /&gt;
						if entry[&amp;#039;cinemascore&amp;#039; .. k] then&lt;br /&gt;
							local thisCell = CriticalResponse.season_cell(entry[&amp;#039;cinemascore&amp;#039; .. k], frame)&lt;br /&gt;
								:css(&amp;#039;padding&amp;#039;,cellPadding)&lt;br /&gt;
							seasonRow:node(thisCell)&lt;br /&gt;
						else&lt;br /&gt;
							local infoCell = CriticalResponse.series_attributes( frame:expandTemplate{title=&amp;#039;N/A&amp;#039;} )&lt;br /&gt;
							infoCell:css(&amp;#039;padding&amp;#039;,cellPadding)&lt;br /&gt;
							seasonRow:node(infoCell)&lt;br /&gt;
						end&lt;br /&gt;
					end&lt;br /&gt;
				&lt;br /&gt;
				end -- End k0 string.byte&lt;br /&gt;
			end -- End &amp;#039;for&amp;#039; SeasonEntries_ordered&lt;br /&gt;
		end -- End &amp;#039;if&amp;#039; multiseries&lt;br /&gt;
	end -- End &amp;#039;do&amp;#039; season rows&lt;br /&gt;
&lt;br /&gt;
	return (args.dontclose and mw.ustring.gsub(tostring(root), &amp;quot;&amp;lt;/table&amp;gt;&amp;quot;, &amp;quot;&amp;quot;) or tostring(root)) .. categories&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--------------------------------------------------------------------------------&lt;br /&gt;
-- Exports&lt;br /&gt;
--------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
local p = {}&lt;br /&gt;
&lt;br /&gt;
function p.main(frame)&lt;br /&gt;
	local args = require(&amp;#039;Module:Arguments&amp;#039;).getArgs(frame, {&lt;br /&gt;
		wrappers = &amp;#039;Template:Television critical response&amp;#039;&lt;br /&gt;
	})&lt;br /&gt;
	return CriticalResponse.new(frame, args)&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>imported&gt;WOSlinker</name></author>
	</entry>
</feed>