MMBase configuration dumper

The object and relations of MMBase sites typicaly grow in time since it's possible to create new object types and relation in time. This utility modules help to create an app1 configration based on a running cloud

Dumping an mmbase live configuration from a jsp

Here is a sime example that shows how you can dump a full mmbase configuration using a jsp

<%@page import="net.sf.mmapps.modules.config.*,net.sf.mmapps.modules.config.dumper.*"%>
<%@taglib uri="http://www.mmbase.org/mmbase-taglib-1.0" prefix="mm" %>
<mm:cloud jspvar="cloud">
<% Configuration configuration = Dumper.getConfiguration(cloud); %>
<% ConfigurationXMLWriter.writeConfiguration(configuration,new java.io.File("/tmp/dump"));%>
</mm:cloud>