From: Santi B. <san...@us...> - 2007-08-04 11:38:03
|
Update of /cvsroot/babeldoc/babeldoc In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv1742 Modified Files: .cvsignore .project .classpath Added Files: velocity.jar Log Message: 2007-08-04 Added readme/doc with javadoc generation 2007-03-15 Many changes: - MailboxScanner can filter by field TO - Can debug MailboxScanner - Add timeout connection parameter to MailboxScanner - MailboxScanner obtain the value of the properties: 'to', 'from' and 'reply to' - Add three parameters that they allowed to deny a regular expression from filters (to,from and reply) - Add encoding parameter to Pipeline Writefile - Pipeline HttpClient save cookie information - Add parameter to pipeline HttpClient. It indicates if we want copy attributes in the new document - Pipeline HttpClient can send files in the parameters of POST method. To Manage the MIME types automatically (from the extension of the file) when adding attached files - Names of attached files in SmtpWriterPipelineStage don't contains absolute path - When decompressing a file in DecompressionPipeline, the name and the extension of the decompressed file it's original name Index: .cvsignore =================================================================== RCS file: /cvsroot/babeldoc/babeldoc/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** .cvsignore 10 Mar 2006 13:07:37 -0000 1.2 --- .cvsignore 4 Aug 2007 11:37:26 -0000 1.3 *************** *** 1,2 **** --- 1,3 ---- bin build + .externalToolBuilders Index: .project =================================================================== RCS file: /cvsroot/babeldoc/babeldoc/.project,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** .project 10 Mar 2006 12:40:37 -0000 1.1 --- .project 4 Aug 2007 11:37:26 -0000 1.2 *************** *** 7,17 **** <buildSpec> <buildCommand> ! <name>org.eclipse.jdt.core.javabuilder</name> <arguments> </arguments> </buildCommand> </buildSpec> <natures> <nature>org.eclipse.jdt.core.javanature</nature> </natures> </projectDescription> --- 7,39 ---- <buildSpec> <buildCommand> ! <name>org.eclipse.ui.externaltools.ExternalToolBuilder</name> ! <triggers>auto,full,incremental,</triggers> ! <arguments> ! <dictionary> ! <key>LaunchConfigHandle</key> ! <value><project>/.externalToolBuilders/babeldoc.launch</value> ! </dictionary> ! </arguments> ! </buildCommand> ! <buildCommand> ! <name>org.eclipse.wst.validation.validationbuilder</name> <arguments> </arguments> </buildCommand> + <buildCommand> + <name>org.eclipse.ui.externaltools.ExternalToolBuilder</name> + <triggers>full,incremental,</triggers> + <arguments> + <dictionary> + <key>LaunchConfigHandle</key> + <value><project>/.externalToolBuilders/org.eclipse.jdt.core.javabuilder.launch</value> + </dictionary> + </arguments> + </buildCommand> </buildSpec> <natures> + <nature>org.eclipse.jem.workbench.JavaEMFNature</nature> <nature>org.eclipse.jdt.core.javanature</nature> + <nature>org.eclipse.jem.beaninfo.BeanInfoNature</nature> </natures> </projectDescription> --- NEW FILE: velocity.jar --- (This appears to be a binary file; contents omitted.) Index: .classpath =================================================================== RCS file: /cvsroot/babeldoc/babeldoc/.classpath,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** .classpath 10 Mar 2006 13:10:15 -0000 1.2 --- .classpath 4 Aug 2007 11:37:27 -0000 1.3 *************** *** 1,15 **** <?xml version="1.0" encoding="UTF-8"?> <classpath> <classpathentry kind="src" path="modules/core/src"/> <classpathentry kind="src" path="modules/conversion/src"/> ! <classpathentry kind="src" path="modules/crypto/src"/> ! <classpathentry kind="src" path="modules/gui/src"/> ! <classpathentry kind="src" path="modules/init/src"/> ! <classpathentry kind="src" path="modules/scanner/src"/> <classpathentry kind="src" path="modules/soap/src"/> ! <classpathentry kind="src" path="modules/sql/src"/> <classpathentry kind="src" path="modules/web/src"/> - <classpathentry kind="src" path="modules/xslfo/src"/> - <classpathentry kind="src" path="support/src"/> <classpathentry kind="src" path="modules/babelfish/src"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> --- 1,16 ---- <?xml version="1.0" encoding="UTF-8"?> <classpath> + <classpathentry kind="src" path="modules/gui/src"/> + <classpathentry kind="src" path="modules/j2ee/gensrc"/> + <classpathentry kind="src" path="modules/j2ee/src"/> + <classpathentry kind="src" path="modules/crypto/src"/> <classpathentry kind="src" path="modules/core/src"/> + <classpathentry kind="src" path="modules/sql/src"/> <classpathentry kind="src" path="modules/conversion/src"/> ! <classpathentry kind="src" path="modules/xslfo/src"/> <classpathentry kind="src" path="modules/soap/src"/> ! <classpathentry kind="src" path="modules/scanner/src"/> ! <classpathentry kind="src" path="modules/init/src"/> <classpathentry kind="src" path="modules/web/src"/> <classpathentry kind="src" path="modules/babelfish/src"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> *************** *** 39,43 **** <classpathentry kind="lib" path="modules/core/lib/commons-beanutils.jar"/> <classpathentry kind="lib" path="modules/core/lib/commons-dbcp.jar"/> - <classpathentry kind="lib" path="modules/core/lib/commons-httpclient.jar"/> <classpathentry kind="lib" path="modules/core/lib/docbook-xalan.jar"/> <classpathentry kind="lib" path="modules/core/lib/js.jar"/> --- 40,43 ---- *************** *** 52,55 **** --- 52,57 ---- <classpathentry kind="lib" path="modules/xslfo/lib/fop.jar"/> <classpathentry kind="lib" path="support/ant/lib/ant.jar"/> + <classpathentry kind="lib" path="modules/core/lib/commons-codec-1.3.jar"/> + <classpathentry kind="lib" path="modules/core/lib/commons-httpclient.jar"/> <classpathentry kind="output" path="bin"/> </classpath> |