===== timeline Plugin ===== ---- plugin ---- description: Add TimeLine capability to DokuWiki author : Oleg Karachevtsev email : olegkarachevtsev@mail.ru type : syntax lastupdate : 2009-07-30 compatible : 2009-01-30 depends : conflicts : similar : tags : media, images, diagram, time downloadurl: http://dik.pp.ru/dokuwiki/plugins/timeline/timeline-2010-01-27-02.tgz bugtracker : sourcerepo : donationurl: screenshot_img: ---- ==== Download and Installation ==== Search and install the plugin using the [[plugin:extension|Extension Manager]]. Refer to [[:Plugins]] on how to install plugins manually. * http://dik.pp.ru/dokuwiki/plugins/timeline/timeline-2010-01-27-02.tgz (FIXME broken links) Old versions: * http://dik.pp.ru/dokuwiki/plugins/timeline/timeline-2009-07-30-01.tgz (FIXME broken links) ==== Revision History ==== ^Date ^Version ^Description ^ |2010-01-27 |02 |Internal DokuWiki links from time band added | |2009-08-04 |01 |First version | ==== Description ==== Timeline plugin can be used to visualize the temporal data. Timeline plugin uses linear time scale with the one-day granularity. There are day, week, month time scales. The band is described by the time interval. Inside a band several subintervals can be emphasized. You can set color for a band itself or for an emphasizing. === Features === * colored time band with the one day granularity * any amount colored subintervals * detection of the interval intersection, the OR'ed colors will be used for intersection * choose time scale from day, week, month * choose time markers for time scale * internal DokuWiki links from time band(no link from intersection) ==== Usage ==== highlight=dd/mm/yyyy-dd/mm/yyyy[:hex color][=internal wiki page link] ... In a case if scale is used, it is possible to specify scale markers. Markers are put under following standards: * ''w'' -- ISO-8601 week number of year, weeks starting on Monday; * ''m'' -- numeric representation of a month, without leading zeros; * ''y'' -- a two digits representation of a year. ==== Example ==== === Code === ^Bob ^ highlight=03/07/2009-16/07/2009=bob holiday july highlight=14/07/2009-22/07/2009:557dcc=Bob sick-list 1 highlight=01/09/2009-14/09/2009 highlight=29/12/2009-30/12/2009 ^Joe ^ highlight=19/06/2009-04/07/2009 highlight=14/09/2009-27/09/2009 Where: * holidays highlight=01/01/2009-10/01/2009 * sickness highlight=01/01/2009-10/01/2009:557dcc === Result === {{http://dik.pp.ru/dokuwiki/plugins/timeline/timeline_example.png|here}}. ==== Suggestions ==== === font-size === At the moment the marks are direktly in the table-cells (td). I put them into an extra span-Element. So with some css-code I can use a bigger font-size for the marks. It ended up in some more code to also change the ruler to be shown over the time-band and the marks under the band. You can now stack bands. So here is the part of the syntax.php I changed: if( $this->scale ) { if( $this->mark ) $markline = "\n"; $renderer->doc .= "\n"; foreach($this->ruler as $value) { $renderer->doc .= "\n". ($value?" ":" "). ""; if( $this->mark ) { $markline .= "\n"; if ($value) {$markline .="".array_shift($this->marker)."";} $markline .= ""; } } $renderer->doc .= "\n"; if( $this->mark ) { $markline .= "\n"; $renderer->doc .= $markline; } An my extra-code in style.css: div.timeline tr.mark span { position:absolute; border-left: 1px solid black; } div.timeline tr.ruler span { position:absolute; border-left: 1px solid black; height:9px; margin-top:-9px; } div.dokuwiki div.timeline table {font-size: 0px;} div.dokuwiki div.timeline table td {} div.dokuwiki div.timeline tr.mark {font-size: 11px;} div.dokuwiki div.timeline tr.ruler {font-size: 0px;} === Comments === Thanks, this is great! In your next update, could you please add a function to highlight the current date? I'd also like to have multiple timelines represented on the same timeframe or time scale. E.g One page showing all my project timelines for the next 2-3 years, but each project will have a different start and end date, however the earliest project should be leftmost on the chart. Thanks. Andre. Checked with Release 2010-11-07 "Anteater": Works fine, but I had to add a slash in line 203 for adresssing the image ( **"/lib…"** instead of **"lib…"**), Thanks, NoSi The Downloadlinks are dead! Please fix the download links...