DokuWiki

It's better when it's simple

User Tools

Site Tools


plugin:timeline

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
plugin:timeline [2010-01-28 16:36] 194.154.90.2plugin:timeline [2019-08-11 15:47] (current) Aleksandr
Line 1: Line 1:
-====== timeline plugin ======+===== timeline Plugin =====
  
 ---- plugin ---- ---- plugin ----
Line 12: Line 12:
 similar    :  similar    : 
 tags       : media, images, diagram, time 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 =====+==== Download and Installation ====
  
-Download and install the plugin using the [[plugin:plugin|Plugin Manager]] using +Search and install the plugin using the [[plugin:extension|Extension Manager]]. Refer to [[:Plugins]] on how to install plugins manually.
- the following URL. Refer to [[:Plugins]] on how to install plugins manually.+
  
-  * http://dik.pp.ru/dokuwiki/plugins/timeline/timeline-2010-01-27-02.tgz+  * http://dik.pp.ru/dokuwiki/plugins/timeline/timeline-2010-01-27-02.tgz (FIXME broken links)
  
 Old versions: Old versions:
-  * http://dik.pp.ru/dokuwiki/plugins/timeline/timeline-2009-07-30-01.tgz+  * http://dik.pp.ru/dokuwiki/plugins/timeline/timeline-2009-07-30-01.tgz (FIXME broken links)
  
  
-===== Revision History =====+==== Revision History ====
  
 ^Date  ^Version  ^Description  ^ ^Date  ^Version  ^Description  ^
-|04.08.2009  |01  |First version. +|2010-01-27  |02  |Internal DokuWiki links from time band added  | 
-|27.01.2010  |02  |Internal DokuWiki links from time band added |+|2009-08-04  |01  |First version  |
  
  
-===== Description =====+==== 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. 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. 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 ====+ 
 +=== Features === 
   * colored time band with the one day granularity   * colored time band with the one day granularity
   * any amount colored subintervals   * any amount colored subintervals
Line 46: Line 55:
  
  
-===== Usage =====+==== Usage ==== 
 <code> <code>
 <timeline interval=dd/mm/yyyy-dd/mm/yyyy [color=hexcolor] [[scale={w|m|y}] [mark]]> <timeline interval=dd/mm/yyyy-dd/mm/yyyy [color=hexcolor] [[scale={w|m|y}] [mark]]>
-highlite=dd/mm/yyyy-dd/mm/yyyy[:hex color][=internal wiki page link] ...+highlight=dd/mm/yyyy-dd/mm/yyyy[:hex color][=internal wiki page link] ...
 </timeline> </timeline>
 </code> </code>
  
 In a case if scale is used, it is possible to specify scale markers. Markers are put under following standards: 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; +  ''w'' -- ISO-8601 week number of year, weeks starting on Monday; 
-    * m - numeric representation of a month, without leading zeros; +  ''m'' -- numeric representation of a month, without leading zeros; 
-    * y - a two digits representation of a year.+  ''y'' -- a two digits representation of a year.
  
-===== Example ===== 
  
-==== Code ====+==== Example ==== 
 + 
 +=== Code === 
 <code> <code>
 ^Bob  ^ ^Bob  ^
Line 77: Line 89:
  
 Where: Where:
-    * holidays <timeline interval=01/01/2009-10/01/2009>highlight=01/01/2009-10/01/2009</timeline> +  * holidays <timeline interval=01/01/2009-10/01/2009>highlight=01/01/2009-10/01/2009</timeline> 
-    * sickness <timeline interval=01/01/2009-10/01/2009>highlight=01/01/2009-10/01/2009:557dcc</timeline>+  * sickness <timeline interval=01/01/2009-10/01/2009>highlight=01/01/2009-10/01/2009:557dcc</timeline>
 </code> </code>
  
-==== Result ====+ 
 +=== Result ===
  
 {{http://dik.pp.ru/dokuwiki/plugins/timeline/timeline_example.png|here}}. {{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:
 +
 +<code php>
 +  if( $this->scale ) {
 +    if( $this->mark ) $markline = "\n<tr class=\"timeline mark\">";
 +    $renderer->doc .= "\n<tr class=\"timeline ruler\">";
 +    foreach($this->ruler as $value) {
 +
 +      $renderer->doc .= "\n<td border=\"0\">".
 +                          ($value?"<span>&nbsp</span>":"&nbsp;").
 +                        "</td>";
 +      if( $this->mark ) {
 +        $markline .= "\n<td border=\"0\">";
 +        if ($value) {$markline .="<span>".array_shift($this->marker)."</span>";}
 +        $markline .=  "</td>";
 +      }
 +                   }
 +    $renderer->doc .= "\n</tr>";
 +    if( $this->mark ) {
 +      $markline .= "\n</tr>";
 +      $renderer->doc .= $markline;
 +    }
 +</code>
 +
 +An my extra-code in style.css:
 +
 +<code 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;}
 +</code>
 +
 +
 +=== 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...
plugin/timeline.1264692973.txt.gz · Last modified: 2010-01-28 16:36 by 194.154.90.2

Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki