Changes between Version 6 and Version 7 of BUG_REPORT_FORM_R0


Ignore:
Timestamp:
11/10/09 19:20:01 (15 years ago)
Author:
deni
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BUG_REPORT_FORM_R0

    v6 v7  
    4444 
    4545= Design = 
    46 ^(Describe your design here.)^ 
     46 * Restore the 'Attach File' control from an older version of trunk: 
     47   * In {{{ BugReportDialog }}} there should be: 
     48     * a nested class {{{ AttachmentField }}} extending BoundTextField; 
     49     * public Prop<AttachmentField> attachmentField() - text field for the absolute name of the attached file; 
     50     * ATTACH_FILE in EventIds enum. 
     51   * The operation ON_ATTACH_FILE in {{{ BugReportLogic }}} should handle changing the attached file in the bug report form. 
    4752 
     53 * 'Send Report' button: 
     54   * add SEND_REPORT BugReportDialog.EventIds enum 
     55   * in BugReportDialog.swingComponent...create() create a new {{{ LogicR3Button }}} that fires a SEND_REPORT event when clicked and add it to the bottom panel 
     56 
     57 * 'Send Report' logic: 
     58   * A new operation ON_SEND_REPORT in {{{ BugReportLogic }}} should handle a user request to send a bug report. 
     59   * Using the util class ConnectionUtil (see below) it will open a new HTTP connection to "sophie2.org/bugreports", send the bug report data (which may include an attached file) as a multi-part HTTP request and read the response from the server 
     60   * If no exceptions occurred during the communication with the server, an informative {{{ MessageDialogInput }}} will be shown. 
     61     * The response of the server will be a string which will be shown in this dialog. 
     62   * If an exception occured during the communication with the server, an error dialog will appear to inform the user that ther bug report was not processed. 
     63     * (?) However, no new bug report form will appear. 
     64 
     65 * Move some of the logic for sending multi-part requests from {{{ FacadeInvocationHandler }}} to a new class {{{ ConnectionUtil }}} in {{{ org.sophie2.base.commons.util }}} package. 
     66   * The new class will contain the following methods: 
     67     * {{{ public static HttpURLConnection createConnection(String urlAddress) throws IOException }}} - creates an HttpURLConnection to the HTTP server referred to by the given URL. 
     68     * {{{ public static void writeData(HttpURLConnection connection, String[] names, Object[] dataValues) throws IOException }}} - sends a multi-part POST request using the specified connection (as if from a form using ENCTYPE="multipart/form-data"). 
     69       * The {{{ names }}} argument contains the names of the fields to send. 
     70       * The {{{ values }}} argument contains the values to send. They should be either Strings or Files. 
     71       * Files are Base64 encoded. 
     72     * {{{ public static String readResponse(HttpURLConnection connection) throws IOException }}} - reads the response sent through the specified connection. 
     73 
     74 * Database: 
     75   * Create a new database on sophie2.org with a single table {{{ reports }}}. 
     76   * The table should contain the following columns: 
     77     * id - INTEGER AUTO_INCREMENT PRIMARY KEY 
     78     * date - DATETIME - the time when the report was submitted 
     79     * stacktrace - TEXT - stacktrace of the exception that caused the bug report form to appear and the user to submit the report 
     80     * log - TEXT - the contents of Sophie's Log file around the time when the exception occurred 
     81     * systemProperties - TEXT - all Java system properties at the moment of the bug report submission, serialized as string. 
     82     * email - VARCHAR(50) - user e-mail 
     83     * userExplanation - TEXT - user notes 
     84 
     85 * Php script to process the bug reports: 
     86   * reads the data in $_POST and using a simple sql query, writes it in the database; 
     87   * renames the attached files in the way specified in the implementation idea and uploads them in a special folder on the server 
     88 
     89 * Source code: [8007] 
     90    
    4891= Implementation = 
    4992^(Describe and link the implementation results here (from the wiki or the repository).)^