| 1 |
// $Id: README.txt,v 1.7.2.1.2.2 2009/07/23 20:56:45 xamanu Exp $
|
| 2 |
|
| 3 |
DESCRIPTION
|
| 4 |
-----------
|
| 5 |
Timeline is a DHTML-based AJAXy widget for visualizing temporal information.
|
| 6 |
It works in a similar way as Google Maps but for time-based events.
|
| 7 |
|
| 8 |
This Drupal module is based on a JavaScript widget developed by the MIT
|
| 9 |
SIMILE project. Several demo timelines demonstrating the full range of
|
| 10 |
capabilities for this widget are available on the SIMILE project site at:
|
| 11 |
- http://code.google.com/p/simile-widgets/
|
| 12 |
|
| 13 |
This module is a style plugin for the Views module that represents date
|
| 14 |
information of nodes on horizontal or vertical timeline display.
|
| 15 |
- http://drupal.org/project/views
|
| 16 |
|
| 17 |
The timeline provides support for the Date module. CCK date fields can be used
|
| 18 |
to display all kinds of information on the timeline.
|
| 19 |
- http://drupal.org/project/cck
|
| 20 |
- http://drupal.org/project/date
|
| 21 |
|
| 22 |
The SIMILE Timeline (and Ajax) libraries can be used from the SIMILE server
|
| 23 |
or can be downloaded and installed into your (local) Drupal installation using
|
| 24 |
the libraries module. (See INSTALL.txt for more information). By default, the
|
| 25 |
SIMILE Timeline (and Ajax) libraries can be used from the SIMILE server.
|
| 26 |
- http://drupal.org/project/libraries
|
| 27 |
|
| 28 |
A view is provided by default to get you started quickly:
|
| 29 |
* timeline_nodes: plots any nodes by their created date
|
| 30 |
|
| 31 |
Timeline events with only a start date are displayed as points on the
|
| 32 |
timeline view, whilst events with both a start and date are displayed as
|
| 33 |
continuous colored blocks (not dissimilar to Gantt chart entries).
|
| 34 |
|
| 35 |
|
| 36 |
REQUIREMENTS
|
| 37 |
------------
|
| 38 |
Please refer to the accompanying INSTALL.txt file.
|
| 39 |
|
| 40 |
|
| 41 |
INSTALLATION
|
| 42 |
------------
|
| 43 |
Please refer to the accompanying INSTALL.txt file.
|
| 44 |
|
| 45 |
|
| 46 |
USAGE
|
| 47 |
-----
|
| 48 |
After installing the module, do the following to create a new timeline view:
|
| 49 |
|
| 50 |
1. Make sure the `views' and `views_ui' modules are installed and enabled.
|
| 51 |
2. Go to administer >> views >> add.
|
| 52 |
3. Make a new view that is of the view type "Node"
|
| 53 |
4. Under Fields, add that fields that you would like to have populate the title,
|
| 54 |
start and end dates and body of the timeline popup.
|
| 55 |
Note: Make sure that you are using exclusive date fields. Don't choose "Show from and to date"
|
| 56 |
5. Set any other views settings, such as the maximum number of nodes to
|
| 57 |
show, filters to select only certain nodes or dates, etc. You'll likely
|
| 58 |
want to disable the view's pager option in order to get all events to
|
| 59 |
show up on the timeline.
|
| 60 |
6. Under "Basic settings" >> "Style" select the option "Timeline".
|
| 61 |
7. Configure the Timeline display (click the gear next to the style selector).
|
| 62 |
Set the orientation, display and field settings that control how the
|
| 63 |
timeline looks and behaves.
|
| 64 |
Please take special care when selecting the "field usage". These fields let you map
|
| 65 |
the fields selected in your view to the fields used by the timeline.
|
| 66 |
8. Save your view and navigate to it to test out the timeline. In case you
|
| 67 |
don't see the timeline at all, that most likely indicates the view
|
| 68 |
selection criteria didn't result in any nodes to be displayed.
|
| 69 |
|
| 70 |
|
| 71 |
CREDITS
|
| 72 |
---------------
|
| 73 |
Version 2.x
|
| 74 |
Maintained by Felix Delattre [1] with kindly support of Jeff Miccolis (Development Seed) [2].
|
| 75 |
The included Fancy Theme is based on work by Shawn Kindling [3]
|
| 76 |
|
| 77 |
Version 1.x
|
| 78 |
Originally created by David Donohue [4] and further developed by Arto Bendiken [5] and
|
| 79 |
Jeff Miccolis (Development Seed) [2].
|
| 80 |
|
| 81 |
|
| 82 |
Both timelines are based on the Timeline developed by the SIMILE project [6]
|
| 83 |
|
| 84 |
|
| 85 |
[1] Felix Delattre -> xamanu -> http://drupal.org/user/359937
|
| 86 |
[2] Jeff Miccolis -> jmiccolis -> http://drupal.org/user/31731
|
| 87 |
[3] Shawn Kindling -> http://keelingdesign.com/theming_a_simile_timeline
|
| 88 |
[4] David Donohue -> dado -> http://drupal.org/user/16745
|
| 89 |
[5] Art Bendiken -> arto -> http://drupal.org/user/26089
|
| 90 |
[6] SIMILE project -> http://code.google.com/p/simile-widgets/
|
| 91 |
|
| 92 |
|
| 93 |
TROUBLESHOOTING
|
| 94 |
---------------
|
| 95 |
To post bug reports or feature requests please use the following issue
|
| 96 |
trackers for the Drupal module and the MIT SIMILE widget, respectively:
|
| 97 |
- http://drupal.org/project/issues/timeline
|
| 98 |
- http://code.google.com/p/simile-widgets/issues/list
|