Changes between Version 19 and Version 20 of APP_BUG_REPORT_FORM_R0
- Timestamp:
- 05/21/09 17:57:43 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
APP_BUG_REPORT_FORM_R0
v19 v20 79 79 80 80 * Create a class {{{org.sophie2.main.func.help.bugreport.BugReportDialog}}} that extends {{{org.sophie2.base.dialogs.Dialog<BugReportDialogInput, Void>}}}. 81 * ... 81 * Use {{{BoundTextField}}}s. 82 * The e-mail text field should perform validation using regular expression. 82 83 * Register the dialog in the help module. 83 84 84 * Create a controller enumeration {{{org.sophie2.main.func.help.bugreport.BugReportLogic}}} 85 * method {{{BugReportDialogInput generateReport()}}} that collects all required report data: 86 * 85 * The e-mail address will be stored in a plain text file. 86 * Currently there is no configuration file, so the proposed solution is temporary and should be replaced after the configuration file functionality is implemented. 87 * Use {{{FileEntryManager}}}'s methods {{{getReadableFileEntry}}} and {{{getWritableFileEntry}}}. 88 89 * Create a controller {{{enum org.sophie2.main.func.help.bugreport.BugReportLogic}}} 90 * method {{{BugReportDialogInput collectReportData(Throwable t)}}} that collects all required report data: 91 * the exception is taken as a parameter 92 * reads the log file 93 * gets all system properties 94 * reads the e-mail address from a file 95 * the explanation is an empty string 96 * the attached file is null 87 97 * SHOW_BUG_REPORT_FORM: invokes the dialog using {{{DialogManager.get().showDialog}}} with argument - report generated by {{{generateReport}}}. 98 * method {{{String generateReport(BugReportDialogInput)}}} that serializes all the data to string. 99 * The exception is serialized using printStackTrace. 100 * SAVE_TO_FILE: opens a file dialog, saves the result of {{{generateReport}}} and closes the form. 101 * CLOSE: closes the form. 88 102 89 103 * Create a class {{{org.sophie2.main.func.help.bugreport.SophieExceptionHandler}}} that implements {{{Thread.UncaughtExceptionHandler}}}.