Below magento code snippet is used for getting complete giant system configuration xml display as a readable plain text.
You can view whole system configuration xml by calling the following code from any magento module controller:
<?php header('Content-Type: text/plain'); $config = Mage::getConfig() ->loadModulesConfiguration('system.xml') ->getNode() ->asXML(); ?>