Get Action Returns the inherited path of at file

Parameters

Usage:

/OpenForum/Actions/GetInheritedFilePath?pageName=PageName&fileName=FileName

Server Side Javascript for GET method

if(typeof(pageName)=="undefined") { transaction.setResult(transaction.SHOW_PAGE); } else { fileName = transaction.getParameter("fileName"); path = file.getPageInheritedFilePath(pageName,fileName); if(path==null) { path="null"; } transaction.sendPage( path ); }