Module:Page: Difference between revisions

Content deleted Content added
Forgot some parameters
Hmmm, I thought frame would pass automatically, but it came up as a nil error
Line 69:
function p.id(frame)
field="id"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.interwiki(frame)
field="interwiki"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.namespace(frame)
field="namespace"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.fragment(frame)
field="fragment"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.nsText(frame)
field="nsText"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.subjectNsText(frame)
field="subjectNsText"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.text(frame)
field="text"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.prefixedText(frame)
field="prefixedText"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end