Edge Rewrite
// HTMLRewriter · presentation

This page was redesigned at the edge.

Cloudflare fetched the original article and streamed it through HTMLRewriter to apply an entirely new visual system without rebuilding the source page.

// request.cf · coarse context

A page that knows where it met you.

Only coarse request metadata is shown. This demo does not display or persist visitor IP addresses.

Country
US
Cloudflare location
CMH
Connection
HTTP/2
Language
Not provided

Ray ID: a23331e89957ecfa

Jump to content

Module:Sandbox/Johnuniq/temp

From Wikipedia, the free encyclopedia
-- Show parameters from frame.

local function parms(t)
	local result = {}
	for i, v in ipairs(t) do
		result[i] = v
	end
	for k, v in pairs(t) do
		result[k] = v
	end
	return result
end

local function main(frame)
	local dump = require('Module:Dump')._dump
	local result = dump({
		frame_args = parms(frame.args),
		parent_args = parms(frame:getParent().args),
	}, 'frame')
	mw.logObject(result)
	return result
end

return { main = main }