<?php

	$page_data = $this->info("data");

	/* add the nomalized page info
		*/
	$page_data->editNode("data.page", null, "id=" . $this->info("id") . ";class=" . $this->info("class"));
	$page_data->editNode("data.page.title", $this->info("title"));

	/* manually remove anything that shouldn't be visible
		*/
	$page_data->removeNode("data.settings.title");

	/* do a standard cleanout
		*/
	$this->cleanXmlOutput($page_data->xml_array);

	/* print away
		*/
	print $page_data->toString();

?>