| 1 | Cookies.js |
|---|
| 2 | * Provides support for reading, creating, changing, and deleting cookies. |
|---|
| 3 | |
|---|
| 4 | Evaluation.js |
|---|
| 5 | * Provides a class that represents a single evaluation. |
|---|
| 6 | * Provides functionality for generating the HTML for itself. |
|---|
| 7 | * Provides functionality for remembering user input. |
|---|
| 8 | |
|---|
| 9 | Evaluations.js |
|---|
| 10 | * Provides a class that represents the collection of evaluations belonging to a single |
|---|
| 11 | event. |
|---|
| 12 | * Provides functionality for generating the HTML for itself. |
|---|
| 13 | * Provides functionality for expanding/collapsing its evaluations. |
|---|
| 14 | |
|---|
| 15 | Event.js |
|---|
| 16 | * Provides a class that represents an event containing a properties and evaluations. |
|---|
| 17 | * Provides functionality for generating the HTML for itself. |
|---|
| 18 | * Provides functionality for expanding/collapsing its evaluations. |
|---|
| 19 | |
|---|
| 20 | Events.js |
|---|
| 21 | * Provides a class that is a collection of events. |
|---|
| 22 | * Provides functionality for adding and retreiving events. |
|---|
| 23 | * Provides functionality for collapsing/expanding events, properties and evalautions. |
|---|
| 24 | * Provides functionality for retreiving properties and evaluations. |
|---|
| 25 | * No two events can have the same time. |
|---|
| 26 | * Stores the document and window references for the window which the events and their |
|---|
| 27 | components are displayed on. |
|---|
| 28 | * These references are used in Event, Evaluations, Evaluation, Properties, and Property |
|---|
| 29 | to get html elements by ID in order to perform features that expanding/collapsing an |
|---|
| 30 | event. |
|---|
| 31 | * These references should be set before the 'html' method of Event, Evaluations, |
|---|
| 32 | Evaluation, Properties, or Property has been called. |
|---|
| 33 | |
|---|
| 34 | PopulateEvents.js |
|---|
| 35 | * This script inputs the data for the events. |
|---|
| 36 | |
|---|
| 37 | PopulateIncidents.js |
|---|
| 38 | * This script inputs the data for the incidents. |
|---|
| 39 | |
|---|
| 40 | Property.js |
|---|
| 41 | * Provides a class that represents an occurrence in an event. For example, a message to |
|---|
| 42 | Paramics. |
|---|
| 43 | * Provides functionality for generating the HTML for itself. |
|---|
| 44 | |
|---|
| 45 | Properties.js |
|---|
| 46 | * Provides a class that represents a collection the properties belongs to a single event. |
|---|
| 47 | * Provides functionality for generating the HTML for itself. |
|---|
| 48 | * Provides functionality for expanding/collapsing its properties. |
|---|
| 49 | |
|---|
| 50 | Script.html |
|---|
| 51 | * Provides html content for the buttons for manipulating and navigating the events. |
|---|
| 52 | * Provides the frame in which the events are displayed. |
|---|
| 53 | |
|---|
| 54 | Script.js |
|---|
| 55 | * Provides functionality for highlighting the current event and displaying the events |
|---|
| 56 | * Provides functionality for sizing the frame that displays the events. |
|---|
| 57 | * Provides functionality for jumping to the current event and highlighting the current |
|---|
| 58 | event. |
|---|
| 59 | |
|---|
| 60 | Scripts.html |
|---|
| 61 | * Provides the html container that events are displayed in. |
|---|
| 62 | |
|---|
| 63 | Scripts.js |
|---|
| 64 | * Holds a reference for the events. |
|---|
| 65 | * When the event html is displayed on Scripts.html, the 'events' reference is used in |
|---|
| 66 | html element's javascript attributes. |
|---|
| 67 | |
|---|
| 68 | Summary.html |
|---|
| 69 | * Provides the html document base for displaying the incidents overview. |
|---|
| 70 | |
|---|
| 71 | Summary.js |
|---|
| 72 | * Provides functionality for displaying the html of the incidents overview on summary.html. |
|---|
| 73 | |
|---|
| 74 | Time.js |
|---|
| 75 | * Provides a class that stores and formats time. |
|---|
| 76 | |
|---|
| 77 | |
|---|
| 78 | |
|---|