Module:Page: Difference between revisions

Content deleted Content added
(Forgot I split this variable into two instead of reusing)
I bet there's a better way to do this but I didn't think of it...
Line 102:
end
 
function p.prefixedTextfullText(frame)
field="prefixedTextfullText"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.rootText(frame)
field="rootText"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.baseText(frame)
field="baseText"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.subpageText(frame)
field="subpageText"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.canTalk(frame)
field="canTalk"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.exists(frame)
field="exists"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.fileExists(frame)
field="fileExists"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.isContentPage(frame)
field="isContentPage"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.isExternal(frame)
field="isExternal"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.isLocal(frame)
field="isLocal"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.isRedirect(frame)
field="isRedirect"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.isSpecialPage(frame)
field="isSpecialPage"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.isSubpage(frame)
field="isSubpage"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.isTalkPage(frame)
field="isTalkPage"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.isSubpageOf(frame)
field="isSubpageOf"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.inNamespace(frame)
field="inNamespace"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.inNamespaces(frame)
field="inNamespaces"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.hasSubjectNamespace(frame)
field="hasSubjectNamespace"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.contentModel(frame)
field="contentModel"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.basePageTitle(frame)
field="basePageTitle"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.rootPageTitle(frame)
field="rootPageTitle"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.talkPageTitle(frame)
field="talkPageTitle"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.subjectPageTitle(frame)
field="subjectPageTitle"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.subPageTitle(frame)
field="subPageTitle"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.partialUrl(frame)
field="partialUrl"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.fullUrl(frame)
field="fullUrl"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.localUrl(frame)
field="localUrl"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.canonicalUrl(frame)
field="canonicalUrl"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end
 
function p.getContent(frame)
field="getContent"
return p.main(frame) -- I ''think'' that frame, field automatically is available to p.main
end