From 1a886ec82f13a01253e5611aeb18e3c845e2668d Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Sun, 24 Jun 2012 21:44:10 +0530 Subject: conversion/ConvertDirectory.java: only a small addition -- to print out the file that is under "conversion" conversion/FileSieve.java: update the regex to ignore hidden files, ".ttf" files. parsers/Header.java: * Now the blog post goes bettween the
&
tag, Header class was modified to reflect this change. * "Powered by scruf" line must go at the bottom of every html page that is generated by this program, Header class was modified to reflect this. parsers/Images.java: I have modified the "regex" and relevant code to make the "image description" optional. --- conversion/ConvertDirectory.java | 1 + 1 file changed, 1 insertion(+) (limited to 'conversion/ConvertDirectory.java') diff --git a/conversion/ConvertDirectory.java b/conversion/ConvertDirectory.java index 063bd87..838b746 100644 --- a/conversion/ConvertDirectory.java +++ b/conversion/ConvertDirectory.java @@ -24,6 +24,7 @@ public class ConvertDirectory { if(file.isFile()) { can = canConvert.check(file); if(can) { + System.out.println("Converting..."+file.getName()); html.convert(file); index.add(file); } -- cgit v1.2.3