Update of /cvsroot/babeldoc/babeldoc/modules/gui/src/com/babeldoc/gui/wizard/addconfig
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv1742/modules/gui/src/com/babeldoc/gui/wizard/addconfig
Modified Files:
AddConfigWizard.java
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: AddConfigWizard.java
===================================================================
RCS file: /cvsroot/babeldoc/babeldoc/modules/gui/src/com/babeldoc/gui/wizard/addconfig/AddConfigWizard.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** AddConfigWizard.java 13 Sep 2003 15:33:11 -0000 1.1
--- AddConfigWizard.java 4 Aug 2007 11:37:27 -0000 1.2
***************
*** 96,105 ****
* @return
*/
! public static final AddConfigWizard run() {
AddConfigWizard wizard = new AddConfigWizard(new AddConfigModel());
WizardDialog wiz = new WizardDialog(I18n.get("gui.wizard.addstage.title"),
new AddConfigController(wizard.getModel()));
wiz.pack();
! wiz.show();
return wizard;
--- 96,109 ----
* @return
*/
! /**
! * @return
! */
! public static final AddConfigWizard run() {
AddConfigWizard wizard = new AddConfigWizard(new AddConfigModel());
WizardDialog wiz = new WizardDialog(I18n.get("gui.wizard.addstage.title"),
new AddConfigController(wizard.getModel()));
wiz.pack();
! //wiz.show(); Deprecated
! wiz.setVisible(true);
return wizard;
|