* Starts the importer.
*/
public static void main(String[] args) throws Exception {
File root = new File(args[0]);
File sources[] = root.listFiles();
DAOFactory.setConfiguredFactory(new FileDAOFactory());
Blog blog = new Blog(args[1]);
blog.setProperty(Blog.TIMEZONE_KEY, args[2]);
for (int i = 0; i < sources.length; i++) {
importFile(blog, sources[i]);