Hello Task List Tool

Hello Task List Tool

Warning

This information is out of date: Task List Tool Exercise has the current information

Information

This details the design of the hello task list tool.

Requirements

  • Store a series of tasks that are shared and visible in a worksite

  • Any maintainer in the worksite should be allowed to add items to the task list

    • Adding should occur using an add button and a textbox at the top of the list

  • Any maintainer in the worksite should be allowed to remove items from the task list

    • Removal should occur using a button to the right of each item, no confirmation is necessary

  • Any member of a worksite should be able to view the tasks in the list

    • Tasks should appear in the order entered and should be numbered

Design

Alternative Design for Iteration 3


Sample HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>Task List Tool</title> </head> <body> <strong>Hello, Aaron Zeckoski</strong><br/> You may add or remove items from the tasklist.<br/> <br/> <form action="this" method="post"> <table> <tr> <td width="30">1.</td> <td width="300">Update the conference planning page</td> <td width="50"><input type="button" name="remove" value="Remove"/></td> </tr> <tr> <td>2.</td> <td>Create a list of task list requirements</td> <td><input type="button" name="remove" value="Remove"/></td> </tr> <tr> <td>3.</td> <td>Create mockup of the tool</td> <td><input type="button" name="remove" value="Remove"/></td> </tr> </table> <br/> <input type="text" name="item" value="" size="40" /> <input type="button" name="add" value="Add task" /> </form> </body> </html>

 

Comments