Index: trunk/quest-plugin-mfc/.classpath
===================================================================
--- trunk/quest-plugin-mfc/.classpath	(revision 715)
+++ trunk/quest-plugin-mfc/.classpath	(revision 728)
@@ -8,4 +8,5 @@
 	</classpathentry>
 	<classpathentry kind="src" path="src/main/java"/>
+	<classpathentry kind="src" path="src/main/resources"/>
 	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6">
 		<attributes>
Index: trunk/quest-plugin-mfc/src/main/java/de/ugoe/cs/quest/plugin/mfc/commands/CMDconvertDirToXml.java
===================================================================
--- trunk/quest-plugin-mfc/src/main/java/de/ugoe/cs/quest/plugin/mfc/commands/CMDconvertDirToXml.java	(revision 715)
+++ trunk/quest-plugin-mfc/src/main/java/de/ugoe/cs/quest/plugin/mfc/commands/CMDconvertDirToXml.java	(revision 728)
@@ -27,5 +27,5 @@
 	@Override
 	public String help() {
-		return "convertDirToXml <sourceFolder> <targetFile> {<base64>}";
+		return "convertDirToXml <sourceDirectory> <targetFile> {<base64>}";
 	}
 
Index: trunk/quest-plugin-mfc/src/main/resources/manuals/convertDirToXml
===================================================================
--- trunk/quest-plugin-mfc/src/main/resources/manuals/convertDirToXml	(revision 728)
+++ trunk/quest-plugin-mfc/src/main/resources/manuals/convertDirToXml	(revision 728)
@@ -0,0 +1,10 @@
+Pre-processes a directory of log files created by the MFCUsageMonitor (aka usagelog.dll, userlog.dll) and converts the data into a single XML file that contains all sessions. Optionally, the pre-processing can decode the data from a base64 encoding.
+
+$USAGE$
+<sourceDirectory> directory where the files to be pre-processed are located
+<targetFile> processed file
+<base64> optional; if true, the files are base64 decoded; default: false
+
+Example(s):
+convertDirToXml usagedata/mfcraw usagedata/mfc.xml
+convertDirToXml usagedata/mfcraw usagedata/mfc.xml true
Index: trunk/quest-plugin-mfc/src/main/resources/manuals/convertToXml
===================================================================
--- trunk/quest-plugin-mfc/src/main/resources/manuals/convertToXml	(revision 728)
+++ trunk/quest-plugin-mfc/src/main/resources/manuals/convertToXml	(revision 728)
@@ -0,0 +1,10 @@
+Pre-processes log file created by the MFCUsageMonitor (aka usagelog.dll, userlog.dll) and converts the data into a single XML file that contains all sessions. Optionally, the pre-processing can decode the data from a base64 encoding.
+
+$USAGE$
+<sourceFile> file to be pre-processed
+<targetFile> processed file
+<base64> optional; if true, the file is base64 decoded; default: false
+
+Example(s):
+convertToXml usagedata/mfcraw.log usagedata/mfc.xml
+convertToXml usagedata/mfcraw.log usagedata/mfc.xml true
Index: trunk/quest-plugin-mfc/src/main/resources/manuals/parseXML
===================================================================
--- trunk/quest-plugin-mfc/src/main/resources/manuals/parseXML	(revision 728)
+++ trunk/quest-plugin-mfc/src/main/resources/manuals/parseXML	(revision 728)
@@ -0,0 +1,11 @@
+Parses a log file that contains MFC sessions into a collection of sequences.
+
+$USAGE$
+<filename> name of the log file
+<sequencesName> optional; name of the sequences; default: sequences
+<countMessageOccurences> optional; if true, a statistic how often each message occurs in the log intended for debugging and optimization is generated; default: false
+
+Example(s):
+parseXML usagedata/mfc.xml
+parseXML usagedata/mfc.xml mfc_sequences
+parseXML usagedata/mfc.xml mfc_sequences true
